diff -Nru lxinput-0.1.1/INSTALL lxinput-0.3.0/INSTALL --- lxinput-0.1.1/INSTALL 2009-07-06 19:17:11.000000000 +0000 +++ lxinput-0.3.0/INSTALL 2010-05-23 17:09:27.000000000 +0000 @@ -4,8 +4,10 @@ Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. - This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. Basic Installation ================== @@ -13,7 +15,11 @@ Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for -instructions specific to this package. +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses @@ -42,7 +48,7 @@ you want to change it or regenerate `configure' using a newer version of `autoconf'. -The simplest way to compile this package is: + 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. @@ -53,12 +59,22 @@ 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with - the package. + the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and - documentation. + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. - 5. You can remove the program binaries and object files from the + 6. 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 @@ -67,8 +83,15 @@ all sorts of other programs in order to regenerate files that came with the distribution. - 6. Often, you can also type `make uninstall' to remove the installed - files again. + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. Compilers and Options ===================== @@ -93,7 +116,8 @@ own directory. To do this, you can use 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 `..'. +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have @@ -120,7 +144,8 @@ By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving -`configure' the option `--prefix=PREFIX'. +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you @@ -131,15 +156,46 @@ 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. +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= 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 @@ -152,6 +208,13 @@ you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + Particular systems ================== @@ -288,7 +351,7 @@ `configure' can determine that directory automatically. `--prefix=DIR' - Use DIR as the installation prefix. *Note Installation Names:: + Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. diff -Nru lxinput-0.1.1/Makefile.am lxinput-0.3.0/Makefile.am --- lxinput-0.1.1/Makefile.am 2009-07-06 20:54:15.000000000 +0000 +++ lxinput-0.3.0/Makefile.am 2010-08-02 11:41:50.000000000 +0000 @@ -8,8 +8,13 @@ uidir=$(datadir)/lxinput ui_DATA = $(ui_in_files:.glade=.ui) -desktopfiledir=$(datadir)/applications -desktopfile_DATA=data/lxinput.desktop +desktopdir=$(datadir)/applications +desktop_in_files = \ + data/lxinput.desktop.in \ + $(NULL) +desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) +@INTLTOOL_DESKTOP_RULE@ + iconsdir=$(datadir)/lxinput icons_DATA= \ @@ -18,7 +23,7 @@ EXTRA_DIST = \ $(ui_DATA) \ - $(desktopfile_DATA) \ + $(desktop_DATA) \ $(icons_DATA) \ $(NULL) diff -Nru lxinput-0.1.1/Makefile.in lxinput-0.3.0/Makefile.in --- lxinput-0.1.1/Makefile.in 2009-07-07 11:45:35.000000000 +0000 +++ lxinput-0.3.0/Makefile.in 2010-08-03 09:05:47.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -35,9 +35,8 @@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure $(top_srcdir)/data/lxinput.desktop.in \ - AUTHORS COPYING ChangeLog INSTALL NEWS depcomp install-sh \ - ltmain.sh missing mkinstalldirs + $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ + depcomp install-sh ltmain.sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in @@ -45,9 +44,9 @@ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = data/lxinput.desktop +CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = @@ -79,9 +78,9 @@ am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__installdirs = "$(DESTDIR)$(desktopfiledir)" \ - "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(uidir)" -DATA = $(desktopfile_DATA) $(icons_DATA) $(ui_DATA) +am__installdirs = "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(iconsdir)" \ + "$(DESTDIR)$(uidir)" +DATA = $(desktop_DATA) $(icons_DATA) $(ui_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ @@ -183,6 +182,7 @@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ @@ -196,6 +196,8 @@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ +XLIB_CFLAGS = @XLIB_CFLAGS@ +XLIB_LIBS = @XLIB_LIBS@ XMLCATALOG = @XMLCATALOG@ XML_CATALOG_FILE = @XML_CATALOG_FILE@ XSLTPROC = @XSLTPROC@ @@ -249,8 +251,12 @@ uidir = $(datadir)/lxinput ui_DATA = $(ui_in_files:.glade=.ui) -desktopfiledir = $(datadir)/applications -desktopfile_DATA = data/lxinput.desktop +desktopdir = $(datadir)/applications +desktop_in_files = \ + data/lxinput.desktop.in \ + $(NULL) + +desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) iconsdir = $(datadir)/lxinput icons_DATA = \ data/input-keyboard.png \ @@ -258,7 +264,7 @@ EXTRA_DIST = \ $(ui_DATA) \ - $(desktopfile_DATA) \ + $(desktop_DATA) \ $(icons_DATA) \ $(NULL) @@ -321,28 +327,26 @@ distclean-hdr: -rm -f config.h stamp-h1 -data/lxinput.desktop: $(top_builddir)/config.status $(top_srcdir)/data/lxinput.desktop.in - cd $(top_builddir) && $(SHELL) ./config.status $@ -install-desktopfileDATA: $(desktopfile_DATA) +install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) - test -z "$(desktopfiledir)" || $(MKDIR_P) "$(DESTDIR)$(desktopfiledir)" - @list='$(desktopfile_DATA)'; test -n "$(desktopfiledir)" || list=; \ + test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)" + @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopfiledir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopfiledir)" || exit $$?; \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ done -uninstall-desktopfileDATA: +uninstall-desktopDATA: @$(NORMAL_UNINSTALL) - @list='$(desktopfile_DATA)'; test -n "$(desktopfiledir)" || list=; \ + @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ - echo " ( cd '$(DESTDIR)$(desktopfiledir)' && rm -f" $$files ")"; \ - cd "$(DESTDIR)$(desktopfiledir)" && rm -f $$files + echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(desktopdir)" && rm -f $$files install-iconsDATA: $(icons_DATA) @$(NORMAL_INSTALL) test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" @@ -391,7 +395,7 @@ # (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'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -416,7 +420,7 @@ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): - @failcom='exit 1'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -580,7 +584,8 @@ fi; \ done -test -n "$(am__skip_mode_fix)" \ - || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -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 {} {} \; \ @@ -624,17 +629,17 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ - unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac @@ -698,7 +703,7 @@ all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: - for dir in "$(DESTDIR)$(desktopfiledir)" "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(uidir)"; do \ + for dir in "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(uidir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive @@ -748,8 +753,7 @@ info-am: -install-data-am: install-desktopfileDATA install-iconsDATA \ - install-uiDATA +install-data-am: install-desktopDATA install-iconsDATA install-uiDATA install-dvi: install-dvi-recursive @@ -795,7 +799,7 @@ ps-am: -uninstall-am: uninstall-desktopfileDATA uninstall-iconsDATA \ +uninstall-am: uninstall-desktopDATA uninstall-iconsDATA \ uninstall-uiDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ @@ -808,16 +812,17 @@ 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-desktopfileDATA install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-iconsDATA install-info install-info-am \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip install-uiDATA installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ + install-data-am install-desktopDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-iconsDATA install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip install-uiDATA 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 \ - uninstall-desktopfileDATA uninstall-iconsDATA uninstall-uiDATA + uninstall-desktopDATA uninstall-iconsDATA uninstall-uiDATA +@INTLTOOL_DESKTOP_RULE@ %.ui: %.glade cp $< $@ diff -Nru lxinput-0.1.1/aclocal.m4 lxinput-0.3.0/aclocal.m4 --- lxinput-0.1.1/aclocal.m4 2009-07-06 19:17:09.000000000 +0000 +++ lxinput-0.3.0/aclocal.m4 2010-08-03 09:03:17.000000000 +0000 @@ -1,4 +1,4 @@ -# generated automatically by aclocal 1.11 -*- Autoconf -*- +# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. @@ -13,8 +13,8 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],, -[m4_warning([this file was generated for autoconf 2.63. +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],, +[m4_warning([this file was generated for autoconf 2.65. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) @@ -746,14 +746,16 @@ # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], -[if test -n "$$1"; then - pkg_cv_[]$1="$$1" - elif test -n "$PKG_CONFIG"; then - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - else - pkg_failed=untried +[if test -n "$PKG_CONFIG"; then + if test -n "$$1"; then + pkg_cv_[]$1="$$1" + else + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) + fi +else + pkg_failed=untried fi[]dnl ])# _PKG_CONFIG @@ -797,9 +799,9 @@ if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` + $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD @@ -849,7 +851,7 @@ [am__api_version='1.11' 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.11], [], +m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -865,7 +867,7 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.11])dnl +[AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) diff -Nru lxinput-0.1.1/config.h.in lxinput-0.3.0/config.h.in --- lxinput-0.1.1/config.h.in 2009-07-07 11:45:33.000000000 +0000 +++ lxinput-0.3.0/config.h.in 2010-08-03 09:05:46.000000000 +0000 @@ -63,6 +63,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION diff -Nru lxinput-0.1.1/configure lxinput-0.3.0/configure --- lxinput-0.1.1/configure 2009-07-07 11:45:35.000000000 +0000 +++ lxinput-0.3.0/configure 2010-08-03 09:05:48.000000000 +0000 @@ -1,18 +1,22 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.63. +# Generated by GNU Autoconf 2.65. +# # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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. ## -## --------------------- ## +## -------------------- ## +## 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 +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which @@ -20,23 +24,15 @@ alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; + 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 - as_nl=' ' export as_nl @@ -44,7 +40,13 @@ as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else @@ -55,7 +57,7 @@ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; - case $arg in + case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; @@ -78,13 +80,6 @@ } 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 @@ -94,15 +89,15 @@ IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. -case $0 in +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 + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done IFS=$as_save_IFS ;; @@ -114,12 +109,16 @@ fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); 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 +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' @@ -131,330 +130,299 @@ LANGUAGE=C export LANGUAGE -# 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 || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - # CDPATH. -$as_unset CDPATH - +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then - if (eval ":") 2>/dev/null; then - as_have_required=yes + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST else - as_have_required=no + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac 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 -} +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_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 - : +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes else - exitcode=1 - echo positional parameters were not saved. + as_have_required=no fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : -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 + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false 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 + as_found=: + case $as_dir in #( /*) for as_base in sh bash ksh sh5; do - as_candidate_shells="$as_candidate_shells $as_dir/$as_base" + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi done;; esac + as_found=false done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } 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=: - # Pre-4.2 versions of Zsh do 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=: - # Pre-4.2 versions of Zsh do 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 + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV 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; } + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, +$0: including any error possibly output before this +$0: message. Then install a modern shell, or manually run +$0: the script under such a shell if you do have one." + fi + exit 1 fi - - fi - fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_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 || +$as_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" || as_fn_error "cannot create directory $as_dir" -(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 -} +} # as_fn_mkdir_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append -exitcode=0 -if as_func_success; then - : +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' else - exitcode=1 - echo as_func_success failed. -fi + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi -if as_func_ret_success; then - : +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr else - exitcode=1 - echo as_func_ret_success failed. + as_expr=false fi -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false fi -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname else - exitcode=1 - echo positional parameters were not saved. + as_dirname=false fi -test \$exitcode = 0") || { - echo No shell found that supports shell functions. - echo Please tell bug-autoconf@gnu.org about your system, - echo including any error possibly output before this message. - echo This can help us improve future autoconf versions. - echo Configuration will now proceed without shell functions. -} +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` +# 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 - 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. :-) + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= @@ -471,8 +439,7 @@ s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_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 @@ -482,29 +449,18 @@ 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 +case `echo -n x` in #((((( -n*) - case `echo 'x\c'` in + case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; 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 @@ -534,7 +490,7 @@ rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then - as_mkdir_p=: + as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false @@ -553,10 +509,10 @@ if test -d "$1"; then test -d "$1/."; else - case $1 in + case $1 in #( -*)set "./$1";; esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' @@ -570,8 +526,8 @@ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - -exec 7<&0 &1 +test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, @@ -589,7 +545,6 @@ subdirs= MFLAGS= MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME= @@ -597,6 +552,7 @@ PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= +PACKAGE_URL= ac_unique_file="configure.in" # Factoring default headers for most tests. @@ -645,6 +601,8 @@ XML_CATALOG_FILE XSLTPROC GETTEXT_PACKAGE +XLIB_LIBS +XLIB_CFLAGS GTK_LIBS GTK_CFLAGS PKG_CONFIG @@ -764,6 +722,7 @@ program_transform_name prefix exec_prefix +PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION @@ -791,7 +750,9 @@ CPP PKG_CONFIG GTK_CFLAGS -GTK_LIBS' +GTK_LIBS +XLIB_CFLAGS +XLIB_LIBS' # Initialize some variables set by options. @@ -900,8 +861,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 - { (exit 1); exit 1; }; } + as_fn_error "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -927,8 +887,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 - { (exit 1); exit 1; }; } + as_fn_error "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1132,8 +1091,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 - { (exit 1); exit 1; }; } + as_fn_error "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1149,8 +1107,7 @@ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 - { (exit 1); exit 1; }; } + as_fn_error "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in @@ -1180,17 +1137,17 @@ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; - -*) { $as_echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } + -*) as_fn_error "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information." ;; *=*) 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 && - { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error "invalid variable name: \`$ac_envvar'" ;; + esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; @@ -1207,15 +1164,13 @@ if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { $as_echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } + as_fn_error "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; - fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 - { (exit 1); exit 1; }; } ;; + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi @@ -1238,8 +1193,7 @@ [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac - { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; } + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' @@ -1269,11 +1223,9 @@ ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - { $as_echo "$as_me: error: working directory cannot be determined" >&2 - { (exit 1); exit 1; }; } + as_fn_error "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 - { (exit 1); exit 1; }; } + as_fn_error "pwd does not report name of working directory" # Find the source files, if location was not specified. @@ -1312,13 +1264,11 @@ fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 - { (exit 1); exit 1; }; } + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then @@ -1435,16 +1385,19 @@ 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 + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility GTK_CFLAGS C compiler flags for GTK, overriding pkg-config GTK_LIBS linker flags for GTK, overriding pkg-config + XLIB_CFLAGS C compiler flags for XLIB, overriding pkg-config + XLIB_LIBS linker flags for XLIB, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. +Report bugs to the package provider. _ACEOF ac_status=$? fi @@ -1508,21 +1461,372 @@ if $ac_init_version; then cat <<\_ACEOF configure -generated by GNU Autoconf 2.63 +generated by GNU Autoconf 2.65 -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright (C) 2009 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 + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + 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 ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + 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 ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists, giving a warning if it cannot be compiled using +# the include files in INCLUDES and setting the cache variable VAR +# accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_header_mongrel + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_header_compile + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* 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 $2 (); +/* 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_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_func 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 $as_me, which was -generated by GNU Autoconf 2.63. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -1558,8 +1862,8 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" -done + $as_echo "PATH: $as_dir" + done IFS=$as_save_IFS } >&5 @@ -1596,9 +1900,9 @@ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" + as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else @@ -1614,13 +1918,13 @@ -* ) ac_must_keep_next=true ;; esac fi - ac_configure_args="$ac_configure_args '$ac_arg'" + as_fn_append 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; } +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there @@ -1645,13 +1949,13 @@ case $ac_val in #( *${as_nl}*) case $ac_var in #( - *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) $as_unset $ac_var ;; + *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done @@ -1723,39 +2027,41 @@ exit $exit_status ' 0 for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal + trap 'ac_signal='$ac_signal'; as_fn_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 +$as_echo "/* confdefs.h */" > 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 +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. @@ -1773,8 +2079,8 @@ for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue - if test -r "$ac_site_file"; then - { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" @@ -1782,10 +2088,10 @@ 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 - { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; @@ -1793,7 +2099,7 @@ esac fi else - { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -1808,11 +2114,11 @@ eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) - { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) - { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; @@ -1822,17 +2128,17 @@ ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else - { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi - { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac @@ -1844,35 +2150,20 @@ esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; + *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then - { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi - - - - - - - - - - - - - - - - +## -------------------- ## +## Main body of script. ## +## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -1885,24 +2176,16 @@ ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; 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 + for ac_t in install-sh install.sh shtool; do + if test -f "$ac_dir/$ac_t"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/$ac_t -c" + break 2 + fi + done done if test -z "$ac_aux_dir"; then - { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 -$as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, @@ -1928,10 +2211,10 @@ # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then +if test "${ac_cv_path_install+set}" = set; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -1939,11 +2222,11 @@ 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/* | \ + # 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\\/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. @@ -1980,7 +2263,7 @@ ;; esac -done + done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir @@ -1996,7 +2279,7 @@ INSTALL=$ac_install_sh fi fi -{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -2007,7 +2290,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 @@ -2018,15 +2301,11 @@ ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) - { { $as_echo "$as_me:$LINENO: error: unsafe absolute working directory name" >&5 -$as_echo "$as_me: error: unsafe absolute working directory name" >&2;} - { (exit 1); exit 1; }; };; + as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) - { { $as_echo "$as_me:$LINENO: error: unsafe srcdir value: \`$srcdir'" >&5 -$as_echo "$as_me: error: unsafe srcdir value: \`$srcdir'" >&2;} - { (exit 1); exit 1; }; };; + as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's @@ -2048,11 +2327,8 @@ # 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". - { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken -alias in your environment" >&5 -$as_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; }; } + as_fn_error "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file @@ -2061,13 +2337,10 @@ # Ok. : else - { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files! -Check your system clock" >&5 -$as_echo "$as_me: error: newly created file is older than distributed files! -Check your system clock" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 fi -{ $as_echo "$as_me:$LINENO: result: yes" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" @@ -2095,7 +2368,7 @@ am_missing_run="$MISSING --run " else am_missing_run= - { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi @@ -2116,9 +2389,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_STRIP+set}" = set; then +if test "${ac_cv_prog_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then @@ -2129,24 +2402,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then - { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2156,9 +2429,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then @@ -2169,24 +2442,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2195,7 +2468,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -2208,10 +2481,10 @@ fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -{ $as_echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then - if test "${ac_cv_path_mkdir+set}" = set; then + if test "${ac_cv_path_mkdir+set}" = set; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR @@ -2219,7 +2492,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do + 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 #( @@ -2231,11 +2504,12 @@ esac done done -done + done IFS=$as_save_IFS fi + test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else @@ -2243,11 +2517,10 @@ # 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 -{ $as_echo "$as_me:$LINENO: result: $MKDIR_P" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" @@ -2260,9 +2533,9 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_AWK+set}" = set; then +if test "${ac_cv_prog_AWK+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then @@ -2273,24 +2546,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then - { $as_echo "$as_me:$LINENO: result: $AWK" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2298,11 +2571,11 @@ test -n "$AWK" && break done -{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_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 +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF @@ -2320,11 +2593,11 @@ rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:$LINENO: result: yes" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi @@ -2344,9 +2617,7 @@ am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then - { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 -$as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi @@ -2362,7 +2633,7 @@ # Define the identity of the package. PACKAGE=lxinput - VERSION=0.1.1 + VERSION=0.3.0 cat >>confdefs.h <<_ACEOF @@ -2405,16 +2676,16 @@ ac_config_headers="$ac_config_headers config.h" -{ $as_echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. -if test "${enable_maintainer_mode+set}" = set; then +if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no fi - { $as_echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= @@ -2440,7 +2711,7 @@ .PHONY: am__doit END # If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= @@ -2468,12 +2739,12 @@ fi -{ $as_echo "$as_me:$LINENO: result: $_am_result" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then +if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi @@ -2498,9 +2769,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -2511,24 +2782,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2538,9 +2809,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -2551,24 +2822,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2577,7 +2848,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -2591,9 +2862,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -2604,24 +2875,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2631,9 +2902,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -2645,18 +2916,18 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then @@ -2675,10 +2946,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2690,9 +2961,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -2703,24 +2974,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2734,9 +3005,9 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -2747,24 +3018,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -2777,7 +3048,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -2788,57 +3059,37 @@ fi -test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; }; } +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } # Provide some information about the compiler. -$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 -{ (ac_try="$ac_compiler --version >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler --version >&5") 2>&5 - ac_status=$? - $as_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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler -v >&5") 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -V >&5" +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler -V >&5") 2>&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -2854,8 +3105,8 @@ # 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. -{ $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: @@ -2871,17 +3122,17 @@ done rm -f $ac_rmfiles -if { (ac_try="$ac_link_default" +if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; 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, @@ -2898,7 +3149,7 @@ # certainly right. break;; *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi @@ -2917,84 +3168,42 @@ else ac_file='' fi - -{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -if test -z "$ac_file"; then - $as_echo "$as_me: failed program was:" >&5 +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: C compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; }; } +{ as_fn_set_status 77 +as_fn_error "C compiler cannot create executables +See \`config.log' for more details." "$LINENO" 5; }; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } fi - +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } 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. -{ $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_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 - { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_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 -$as_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 -{ $as_echo "$as_me:$LINENO: result: yes" >&5 -$as_echo "yes" >&6; } - rm -f -r a.out a.out.dSYM 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. -{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } -if { (ac_try="$ac_link" +if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; 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 @@ -3009,32 +3218,83 @@ esac done else - { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; }; } +as_fn_error "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." "$LINENO" 5; } fi - -rm -f conftest$ac_cv_exeext -{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT -{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } -if test "${ac_cv_objext+set}" = set; then +if test "${ac_cv_objext+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3046,17 +3306,17 @@ } _ACEOF rm -f conftest.o conftest.obj -if { (ac_try="$ac_compile" +if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in @@ -3069,31 +3329,23 @@ $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; }; } +as_fn_error "cannot compute suffix of object files: cannot compile +See \`config.log' for more details." "$LINENO" 5; } fi - rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then +if test "${ac_cv_c_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3107,37 +3359,16 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_compiler_gnu=no + 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 -{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes @@ -3146,20 +3377,16 @@ fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then +if test "${ac_cv_prog_cc_g+set}" = set; then : $as_echo_n "(cached) " >&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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3170,35 +3397,11 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else - $as_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 + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3209,36 +3412,12 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_compile "$LINENO"; then : - ac_c_werror_flag=$ac_save_c_werror_flag +else + 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3249,42 +3428,17 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes -else - $as_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 -{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS @@ -3301,18 +3455,14 @@ CFLAGS= fi fi -{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then +if test "${ac_cv_prog_cc_c89+set}" = set; then : $as_echo_n "(cached) " >&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 +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -3369,32 +3519,9 @@ -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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 + if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg -else - $as_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 @@ -3405,17 +3532,19 @@ # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) - { $as_echo "$as_me:$LINENO: result: none needed" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) - { $as_echo "$as_me:$LINENO: result: unsupported" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac +if test "x$ac_cv_prog_cc_c89" != xno; then : +fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -3425,9 +3554,9 @@ depcc="$CC" am_compiler_list= -{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then @@ -3535,7 +3664,7 @@ fi fi -{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type @@ -3551,17 +3680,13 @@ -{ $as_echo "$as_me:$LINENO: checking for library containing strerror" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 $as_echo_n "checking for library containing strerror... " >&6; } -if test "${ac_cv_search_strerror+set}" = set; then +if test "${ac_cv_search_strerror+set}" = set; then : $as_echo_n "(cached) " >&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 +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. @@ -3586,54 +3711,27 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then + if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_strerror=$ac_res -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext - if test "${ac_cv_search_strerror+set}" = set; then +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext + if test "${ac_cv_search_strerror+set}" = set; then : break fi done -if test "${ac_cv_search_strerror+set}" = set; then - : +if test "${ac_cv_search_strerror+set}" = set; then : + else ac_cv_search_strerror=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 $as_echo "$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror -if test "$ac_res" != no; then +if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi @@ -3646,9 +3744,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3659,24 +3757,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -3686,9 +3784,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -3699,24 +3797,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -3725,7 +3823,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -3739,9 +3837,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3752,24 +3850,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -3779,9 +3877,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3793,18 +3891,18 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then @@ -3823,10 +3921,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -3838,9 +3936,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -3851,24 +3949,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -3882,9 +3980,9 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -3895,24 +3993,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -3925,7 +4023,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -3936,62 +4034,42 @@ fi -test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; }; } +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } # Provide some information about the compiler. -$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 -{ (ac_try="$ac_compiler --version >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler --version >&5") 2>&5 - ac_status=$? - $as_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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler -v >&5") 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -V >&5" +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler -V >&5") 2>&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done -{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then +if test "${ac_cv_c_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4005,37 +4083,16 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_compiler_gnu=no + 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 -{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes @@ -4044,20 +4101,16 @@ fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then +if test "${ac_cv_prog_cc_g+set}" = set; then : $as_echo_n "(cached) " >&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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4068,35 +4121,11 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else - $as_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 + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4107,36 +4136,12 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_compile "$LINENO"; then : - ac_c_werror_flag=$ac_save_c_werror_flag +else + 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4147,42 +4152,17 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes -else - $as_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 -{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS @@ -4199,18 +4179,14 @@ CFLAGS= fi fi -{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then +if test "${ac_cv_prog_cc_c89+set}" = set; then : $as_echo_n "(cached) " >&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 +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -4267,32 +4243,9 @@ -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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 + if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg -else - $as_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 @@ -4303,17 +4256,19 @@ # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) - { $as_echo "$as_me:$LINENO: result: none needed" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) - { $as_echo "$as_me:$LINENO: result: unsupported" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac +if test "x$ac_cv_prog_cc_c89" != xno; then : +fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -4323,9 +4278,9 @@ depcc="$CC" am_compiler_list= -{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then @@ -4433,7 +4388,7 @@ fi fi -{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type @@ -4456,9 +4411,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -4469,24 +4424,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -4496,9 +4451,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -4509,24 +4464,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -4535,7 +4490,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -4549,9 +4504,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -4562,24 +4517,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -4589,9 +4544,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -4603,18 +4558,18 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then @@ -4633,10 +4588,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -4648,9 +4603,9 @@ 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 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_CC+set}" = set; then +if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then @@ -4661,24 +4616,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:$LINENO: result: $CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -4692,9 +4647,9 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then @@ -4705,24 +4660,24 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -4735,7 +4690,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -4746,62 +4701,42 @@ fi -test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; }; } +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } # Provide some information about the compiler. -$as_echo "$as_me:$LINENO: checking for C compiler version" >&5 +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 -{ (ac_try="$ac_compiler --version >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler --version >&5") 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -v >&5" +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler -v >&5") 2>&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? - $as_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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_compiler -V >&5") 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done -{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then +if test "${ac_cv_c_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4815,37 +4750,16 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_compiler_gnu=no + 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 -{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes @@ -4854,20 +4768,16 @@ fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then +if test "${ac_cv_prog_cc_g+set}" = set; then : $as_echo_n "(cached) " >&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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4878,35 +4788,11 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else - $as_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 + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4917,36 +4803,12 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_compile "$LINENO"; then : - ac_c_werror_flag=$ac_save_c_werror_flag +else + 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4957,42 +4819,17 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes -else - $as_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 -{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS @@ -5009,18 +4846,14 @@ CFLAGS= fi fi -{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then +if test "${ac_cv_prog_cc_c89+set}" = set; then : $as_echo_n "(cached) " >&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 +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -5077,32 +4910,9 @@ -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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 + if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg -else - $as_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 @@ -5113,17 +4923,19 @@ # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) - { $as_echo "$as_me:$LINENO: result: none needed" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) - { $as_echo "$as_me:$LINENO: result: unsupported" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac +if test "x$ac_cv_prog_cc_c89" != xno; then : +fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -5133,9 +4945,9 @@ depcc="$CC" am_compiler_list= -{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then @@ -5243,7 +5055,7 @@ fi fi -{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type @@ -5266,14 +5078,14 @@ 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 -{ $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&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 + if test "${ac_cv_prog_CPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded @@ -5288,11 +5100,7 @@ # 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include @@ -5301,78 +5109,34 @@ #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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_cpp "$LINENO"; then : +else # 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else - $as_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 +if $ac_preproc_ok; then : break fi @@ -5384,7 +5148,7 @@ else ac_cv_prog_CPP=$CPP fi -{ $as_echo "$as_me:$LINENO: result: $CPP" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -5395,11 +5159,7 @@ # 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include @@ -5408,87 +5168,40 @@ #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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_cpp "$LINENO"; then : +else # 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else - $as_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 - : +if $ac_preproc_ok; then : + else - { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; }; } +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi ac_ext=c @@ -5498,9 +5211,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if test "${ac_cv_path_GREP+set}" = set; then +if test "${ac_cv_path_GREP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then @@ -5511,7 +5224,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do + 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 @@ -5531,7 +5244,7 @@ $as_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` + as_fn_arith $ac_count + 1 && ac_count=$as_val 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" @@ -5546,26 +5259,24 @@ $ac_path_GREP_found && break 3 done done -done + done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then - { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 -$as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" -{ $as_echo "$as_me:$LINENO: checking for egrep" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } -if test "${ac_cv_path_EGREP+set}" = set; then +if test "${ac_cv_path_EGREP+set}" = set; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 @@ -5579,7 +5290,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do + 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 @@ -5599,7 +5310,7 @@ $as_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` + as_fn_arith $ac_count + 1 && ac_count=$as_val 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" @@ -5614,12 +5325,10 @@ $ac_path_EGREP_found && break 3 done done -done + done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then - { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 -$as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP @@ -5627,21 +5336,17 @@ fi fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" -{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } -if test "${ac_cv_header_stdc+set}" = set; then +if test "${ac_cv_header_stdc+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -5656,48 +5361,23 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_header_stdc=no + 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then - : + $EGREP "memchr" >/dev/null 2>&1; then : + else ac_cv_header_stdc=no fi @@ -5707,18 +5387,14 @@ 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then - : + $EGREP "free" >/dev/null 2>&1; then : + else ac_cv_header_stdc=no fi @@ -5728,14 +5404,10 @@ 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 + 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 + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -5762,336 +5434,87 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$ac_try_echo") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - $as_echo "$as_me: program exited with status $ac_status" >&5 -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_run "$LINENO"; then : -( exit $ac_status ) -ac_cv_header_stdc=no +else + ac_cv_header_stdc=no fi -rm -rf conftest.dSYM -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext fi - fi fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then -cat >>confdefs.h <<\_ACEOF -#define STDC_HEADERS 1 -_ACEOF +$as_echo "#define STDC_HEADERS 1" >>confdefs.h 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=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF +fi +done + for ac_header in locale.h +do : + ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" +if test "x$ac_cv_header_locale_h" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_LOCALE_H 1 +_ACEOF +fi +done - -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=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 -$as_echo_n "checking for $ac_header... " >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + if test $ac_cv_header_locale_h = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 +$as_echo_n "checking for LC_MESSAGES... " >&6; } +if test "${am_cv_val_LC_MESSAGES+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -$ac_includes_default - -#include <$ac_header> +#include +int +main () +{ +return LC_MESSAGES + ; + 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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" +if ac_fn_c_try_link "$LINENO"; then : + am_cv_val_LC_MESSAGES=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_Header=no" + am_cv_val_LC_MESSAGES=no fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -ac_res=`eval 'as_val=${'$as_ac_Header'} - $as_echo "$as_val"'` - { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -as_val=`eval 'as_val=${'$as_ac_Header'} - $as_echo "$as_val"'` - if test "x$as_val" = x""yes; then - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 +$as_echo "$am_cv_val_LC_MESSAGES" >&6; } + if test $am_cv_val_LC_MESSAGES = yes; then -done - - - - -for ac_header in locale.h -do -as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 -$as_echo_n "checking for $ac_header... " >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - $as_echo_n "(cached) " >&6 -fi -ac_res=`eval 'as_val=${'$as_ac_Header'} - $as_echo "$as_val"'` - { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 -$as_echo_n "checking $ac_header usability... " >&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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_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 -{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 -$as_echo_n "checking $ac_header presence... " >&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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_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 -{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} - - ;; -esac -{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 -$as_echo_n "checking for $ac_header... " >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - $as_echo_n "(cached) " >&6 -else - eval "$as_ac_Header=\$ac_header_preproc" -fi -ac_res=`eval 'as_val=${'$as_ac_Header'} - $as_echo "$as_val"'` - { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - -fi -as_val=`eval 'as_val=${'$as_ac_Header'} - $as_echo "$as_val"'` - if test "x$as_val" = x""yes; then - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - if test $ac_cv_header_locale_h = yes; then - { $as_echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 -$as_echo_n "checking for LC_MESSAGES... " >&6; } -if test "${am_cv_val_LC_MESSAGES+set}" = set; then - $as_echo_n "(cached) " >&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 () -{ -return LC_MESSAGES - ; - 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then - am_cv_val_LC_MESSAGES=yes -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - am_cv_val_LC_MESSAGES=no -fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -{ $as_echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 -$as_echo "$am_cv_val_LC_MESSAGES" >&6; } - if test $am_cv_val_LC_MESSAGES = yes; then - -cat >>confdefs.h <<\_ACEOF -#define HAVE_LC_MESSAGES 1 -_ACEOF +$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h fi fi @@ -6104,150 +5527,20 @@ XGETTEXT=: INTLLIBS= - if test "${ac_cv_header_libintl_h+set}" = set; then - { $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 -$as_echo_n "checking for libintl.h... " >&6; } -if test "${ac_cv_header_libintl_h+set}" = set; then - $as_echo_n "(cached) " >&6 -fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 -$as_echo "$ac_cv_header_libintl_h" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:$LINENO: checking libintl.h usability" >&5 -$as_echo_n "checking libintl.h usability... " >&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 -_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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_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 -{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:$LINENO: checking libintl.h presence" >&5 -$as_echo_n "checking libintl.h presence... " >&6; } -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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 - $as_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 -{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: libintl.h: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: libintl.h: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5 -$as_echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;} - { $as_echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5 -$as_echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;} - - ;; -esac -{ $as_echo "$as_me:$LINENO: checking for libintl.h" >&5 -$as_echo_n "checking for libintl.h... " >&6; } -if test "${ac_cv_header_libintl_h+set}" = set; then - $as_echo_n "(cached) " >&6 -else - ac_cv_header_libintl_h=$ac_header_preproc -fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5 -$as_echo "$ac_cv_header_libintl_h" >&6; } - -fi -if test "x$ac_cv_header_libintl_h" = x""yes; then + ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" +if test "x$ac_cv_header_libintl_h" = x""yes; then : gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # - { $as_echo "$as_me:$LINENO: checking for ngettext in libc" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 $as_echo_n "checking for ngettext in libc... " >&6; } -if test "${gt_cv_func_ngettext_libc+set}" = set; then +if test "${gt_cv_func_ngettext_libc+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include @@ -6260,54 +5553,25 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_ngettext_libc=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - gt_cv_func_ngettext_libc=no + gt_cv_func_ngettext_libc=no fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 $as_echo "$gt_cv_func_ngettext_libc" >&6; } if test "$gt_cv_func_ngettext_libc" = "yes" ; then - { $as_echo "$as_me:$LINENO: checking for dgettext in libc" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 $as_echo_n "checking for dgettext in libc... " >&6; } -if test "${gt_cv_func_dgettext_libc+set}" = set; then +if test "${gt_cv_func_dgettext_libc+set}" = set; then : $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include @@ -6320,141 +5584,26 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_dgettext_libc=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - gt_cv_func_dgettext_libc=no + gt_cv_func_dgettext_libc=no fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 $as_echo "$gt_cv_func_dgettext_libc" >&6; } fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then - -for ac_func in bind_textdomain_codeset -do -as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 -$as_echo_n "checking for $ac_func... " >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - $as_echo_n "(cached) " >&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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then - eval "$as_ac_var=yes" -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval 'as_val=${'$as_ac_var'} - $as_echo "$as_val"'` - { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -as_val=`eval 'as_val=${'$as_ac_var'} - $as_echo "$as_val"'` - if test "x$as_val" = x""yes; then + for ac_func in bind_textdomain_codeset +do : + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi @@ -6469,18 +5618,14 @@ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then - { $as_echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } -if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then +if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. @@ -6498,55 +5643,26 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_bindtextdomain=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_intl_bindtextdomain=no + ac_cv_lib_intl_bindtextdomain=no fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } -if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then - { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 +if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_ngettext+set}" = set; then +if test "${ac_cv_lib_intl_ngettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. @@ -6564,55 +5680,26 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_intl_ngettext=no + ac_cv_lib_intl_ngettext=no fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } -if test "x$ac_cv_lib_intl_ngettext" = x""yes; then - { $as_echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5 +if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 $as_echo_n "checking for dgettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_dgettext+set}" = set; then +if test "${ac_cv_lib_intl_dgettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. @@ -6630,43 +5717,18 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dgettext=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_intl_dgettext=no + ac_cv_lib_intl_dgettext=no fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 $as_echo "$ac_cv_lib_intl_dgettext" >&6; } -if test "x$ac_cv_lib_intl_dgettext" = x""yes; then +if test "x$ac_cv_lib_intl_dgettext" = x""yes; then : gt_cv_func_dgettext_libintl=yes fi @@ -6676,22 +5738,18 @@ if test "$gt_cv_func_dgettext_libintl" != "yes" ; then - { $as_echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 $as_echo_n "checking if -liconv is needed to use gettext... " >&6; } - { $as_echo "$as_me:$LINENO: result: " >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 $as_echo "" >&6; } - { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_ngettext+set}" = set; then +if test "${ac_cv_lib_intl_ngettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. @@ -6709,55 +5767,26 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_intl_ngettext=no + ac_cv_lib_intl_ngettext=no fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } -if test "x$ac_cv_lib_intl_ngettext" = x""yes; then - { $as_echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5 +if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 $as_echo_n "checking for dcgettext in -lintl... " >&6; } -if test "${ac_cv_lib_intl_dcgettext+set}" = set; then +if test "${ac_cv_lib_intl_dcgettext+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. @@ -6775,43 +5804,18 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dcgettext=yes else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_lib_intl_dcgettext=no + ac_cv_lib_intl_dcgettext=no fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; } -if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then +if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then : gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv else @@ -6833,102 +5837,12 @@ glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset - -for ac_func in bind_textdomain_codeset -do -as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 -$as_echo_n "checking for $ac_func... " >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - $as_echo_n "(cached) " >&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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then - eval "$as_ac_var=yes" -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval 'as_val=${'$as_ac_var'} - $as_echo "$as_val"'` - { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -as_val=`eval 'as_val=${'$as_ac_var'} - $as_echo "$as_val"'` - if test "x$as_val" = x""yes; then + for ac_func in bind_textdomain_codeset +do : + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi @@ -6958,15 +5872,13 @@ if test "$gt_cv_have_gettext" = "yes"; then -cat >>confdefs.h <<\_ACEOF -#define HAVE_GETTEXT 1 -_ACEOF +$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_MSGFMT+set}" = set; then +if test "${ac_cv_path_MSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in @@ -6991,118 +5903,28 @@ fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != "no"; then - { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" - -for ac_func in dcgettext -do -as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 -$as_echo_n "checking for $ac_func... " >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - $as_echo_n "(cached) " >&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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then - eval "$as_ac_var=yes" -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval 'as_val=${'$as_ac_var'} - $as_echo "$as_val"'` - { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -as_val=`eval 'as_val=${'$as_ac_var'} - $as_echo "$as_val"'` - if test "x$as_val" = x""yes; then + for ac_func in dcgettext +do : + ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" +if test "x$ac_cv_func_dcgettext" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +#define HAVE_DCGETTEXT 1 _ACEOF fi done MSGFMT_OPTS= - { $as_echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 $as_echo_n "checking if msgfmt accepts -c... " >&6; } cat >conftest.foo <<_ACEOF @@ -7117,14 +5939,14 @@ "Content-Transfer-Encoding: 8bit\n" _ACEOF -if { ($as_echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5 +if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - MSGFMT_OPTS=-c; { $as_echo "$as_me:$LINENO: result: yes" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } -else { $as_echo "$as_me:$LINENO: result: no" >&5 +else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } echo "$as_me: failed input was:" >&5 sed 's/^/| /' conftest.foo >&5 @@ -7132,9 +5954,9 @@ # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_GMSGFMT+set}" = set; then +if test "${ac_cv_path_GMSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in @@ -7147,14 +5969,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" @@ -7163,19 +5985,19 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_XGETTEXT+set}" = set; then +if test "${ac_cv_path_XGETTEXT+set}" = set; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in @@ -7200,18 +6022,14 @@ fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -7223,155 +6041,44 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : CATOBJEXT=.gmo DATADIRNAME=share else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - case $host in + case $host in *-*-solaris*) - { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 -$as_echo_n "checking for bind_textdomain_codeset... " >&6; } -if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then - $as_echo_n "(cached) " >&6 + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + CATOBJEXT=.gmo + DATADIRNAME=share else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. - For example, HP-UX 11i declares gettimeofday. */ -#define bind_textdomain_codeset innocuous_bind_textdomain_codeset + CATOBJEXT=.mo + DATADIRNAME=lib +fi -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char bind_textdomain_codeset (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef bind_textdomain_codeset - -/* 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 bind_textdomain_codeset (); -/* 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_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset -choke me -#endif - -int -main () -{ -return bind_textdomain_codeset (); - ; - 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then - ac_cv_func_bind_textdomain_codeset=yes -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_func_bind_textdomain_codeset=no -fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 -$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } -if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then - CATOBJEXT=.gmo - DATADIRNAME=share -else - CATOBJEXT=.mo - DATADIRNAME=lib -fi - - ;; - *) - CATOBJEXT=.mo - DATADIRNAME=lib - ;; - esac -fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext - LIBS="$glib_save_LIBS" - INSTOBJEXT=.mo - else - gt_cv_have_gettext=no - fi - fi - -fi +fi if test "$gt_cv_have_gettext" = "yes" ; then -cat >>confdefs.h <<\_ACEOF -#define ENABLE_NLS 1 -_ACEOF +$as_echo "#define ENABLE_NLS 1" >>confdefs.h fi @@ -7379,7 +6086,7 @@ if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else - { $as_echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } XGETTEXT=":" fi @@ -7412,7 +6119,7 @@ if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - { $as_echo "$as_me:$LINENO: checking for catalogs to be installed" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 $as_echo_n "checking for catalogs to be installed... " >&6; } NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do @@ -7437,7 +6144,7 @@ fi done LINGUAS=$NEW_LINGUAS - { $as_echo "$as_me:$LINENO: result: $LINGUAS" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 $as_echo "$LINGUAS" >&6; } fi @@ -7470,16 +6177,16 @@ < $srcdir/po/POTFILES.in > po/POTFILES - { $as_echo "$as_me:$LINENO: checking whether NLS is requested" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. -if test "${enable_nls+set}" = set; then +if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi - { $as_echo "$as_me:$LINENO: result: $USE_NLS" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } @@ -7487,35 +6194,31 @@ case "$am__api_version" in 1.01234) - { { $as_echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5 -$as_echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 ;; *) ;; esac if test -n "0.40.0"; then - { $as_echo "$as_me:$LINENO: checking for intltool >= 0.40.0" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.40.0" >&5 $as_echo_n "checking for intltool >= 0.40.0... " >&6; } INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.40.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` - { $as_echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || - { { $as_echo "$as_me:$LINENO: error: Your intltool is too old. You need intltool 0.40.0 or later." >&5 -$as_echo "$as_me: error: Your intltool is too old. You need intltool 0.40.0 or later." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "Your intltool is too old. You need intltool 0.40.0 or later." "$LINENO" 5 fi # Extract the first word of "intltool-update", so it can be a program name with args. set dummy intltool-update; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then +if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_UPDATE in @@ -7528,14 +6231,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -7543,19 +6246,19 @@ fi INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE if test -n "$INTLTOOL_UPDATE"; then - { $as_echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 $as_echo "$INTLTOOL_UPDATE" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-merge", so it can be a program name with args. set dummy intltool-merge; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then +if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_MERGE in @@ -7568,14 +6271,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -7583,19 +6286,19 @@ fi INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE if test -n "$INTLTOOL_MERGE"; then - { $as_echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 $as_echo "$INTLTOOL_MERGE" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-extract", so it can be a program name with args. set dummy intltool-extract; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then +if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_EXTRACT in @@ -7608,14 +6311,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -7623,18 +6326,16 @@ fi INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT if test -n "$INTLTOOL_EXTRACT"; then - { $as_echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 $as_echo "$INTLTOOL_EXTRACT" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then - { { $as_echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5 -$as_echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "The intltool scripts were not found. Please install intltool." "$LINENO" 5 fi INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' @@ -7756,9 +6457,9 @@ # Check the gettext tools to make sure they are GNU # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_XGETTEXT+set}" = set; then +if test "${ac_cv_path_XGETTEXT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $XGETTEXT in @@ -7771,14 +6472,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -7786,19 +6487,19 @@ fi XGETTEXT=$ac_cv_path_XGETTEXT if test -n "$XGETTEXT"; then - { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_MSGMERGE+set}" = set; then +if test "${ac_cv_path_MSGMERGE+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MSGMERGE in @@ -7811,14 +6512,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -7826,19 +6527,19 @@ fi MSGMERGE=$ac_cv_path_MSGMERGE if test -n "$MSGMERGE"; then - { $as_echo "$as_me:$LINENO: result: $MSGMERGE" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_MSGFMT+set}" = set; then +if test "${ac_cv_path_MSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MSGFMT in @@ -7851,14 +6552,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_MSGFMT="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -7866,19 +6567,19 @@ fi MSGFMT=$ac_cv_path_MSGFMT if test -n "$MSGFMT"; then - { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_GMSGFMT+set}" = set; then +if test "${ac_cv_path_GMSGFMT+set}" = set; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in @@ -7891,14 +6592,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" @@ -7907,33 +6608,29 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then - { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 -$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then - { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5 -$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then +if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_PERL in @@ -7946,14 +6643,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -7961,41 +6658,35 @@ fi INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL if test -n "$INTLTOOL_PERL"; then - { $as_echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 $as_echo "$INTLTOOL_PERL" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_PERL"; then - { { $as_echo "$as_me:$LINENO: error: perl not found" >&5 -$as_echo "$as_me: error: perl not found" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "perl not found" "$LINENO" 5 fi -{ $as_echo "$as_me:$LINENO: checking for perl >= 5.8.1" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 $as_echo_n "checking for perl >= 5.8.1... " >&6; } $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then - { { $as_echo "$as_me:$LINENO: error: perl 5.8.1 is required for intltool" >&5 -$as_echo "$as_me: error: perl 5.8.1 is required for intltool" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "perl 5.8.1 is required for intltool" "$LINENO" 5 else IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`" - { $as_echo "$as_me:$LINENO: result: $IT_PERL_VERSION" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 $as_echo "$IT_PERL_VERSION" >&6; } fi if test "x" != "xno-xml"; then - { $as_echo "$as_me:$LINENO: checking for XML::Parser" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 $as_echo_n "checking for XML::Parser... " >&6; } if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then - { $as_echo "$as_me:$LINENO: result: ok" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } else - { { $as_echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5 -$as_echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "XML::Parser perl module is required for intltool" "$LINENO" 5 fi fi @@ -8005,11 +6696,7 @@ # Set DATADIRNAME correctly if it is not set yet # (copied from glib-gettext.m4) if test -z "$DATADIRNAME"; then - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -8021,120 +6708,13 @@ 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then +if ac_fn_c_try_link "$LINENO"; then : DATADIRNAME=share else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - case $host in + case $host in *-*-solaris*) - { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5 -$as_echo_n "checking for bind_textdomain_codeset... " >&6; } -if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then - $as_echo_n "(cached) " >&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 bind_textdomain_codeset to an innocuous variant, in case declares bind_textdomain_codeset. - For example, HP-UX 11i declares gettimeofday. */ -#define bind_textdomain_codeset innocuous_bind_textdomain_codeset - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char bind_textdomain_codeset (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef bind_textdomain_codeset - -/* 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 bind_textdomain_codeset (); -/* 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_bind_textdomain_codeset || defined __stub___bind_textdomain_codeset -choke me -#endif - -int -main () -{ -return bind_textdomain_codeset (); - ; - 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 ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" -$as_echo "$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 - $as_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 && { - test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext - }; then - ac_cv_func_bind_textdomain_codeset=yes -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_func_bind_textdomain_codeset=no -fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 -$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; } -if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : DATADIRNAME=share else DATADIRNAME=lib @@ -8146,10 +6726,8 @@ ;; esac fi - -rm -rf conftest.dSYM -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext fi @@ -8164,9 +6742,9 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in @@ -8179,14 +6757,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -8194,10 +6772,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -8207,9 +6785,9 @@ ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then +if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in @@ -8222,14 +6800,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -8237,10 +6815,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -8249,7 +6827,7 @@ else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac @@ -8262,13 +6840,13 @@ fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 - { $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - { $as_echo "$as_me:$LINENO: result: yes" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi @@ -8276,40 +6854,44 @@ fi pkg_failed=no -{ $as_echo "$as_me:$LINENO: checking for GTK" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } -if test -n "$GTK_CFLAGS"; then - pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\"") >&5 +if test -n "$PKG_CONFIG"; then + if test -n "$GTK_CFLAGS"; then + pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi - else - pkg_failed=untried + fi +else + pkg_failed=untried fi -if test -n "$GTK_LIBS"; then - pkg_cv_GTK_LIBS="$GTK_LIBS" - elif test -n "$PKG_CONFIG"; then - if test -n "$PKG_CONFIG" && \ - { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\"") >&5 +if test -n "$PKG_CONFIG"; then + if test -n "$GTK_LIBS"; then + pkg_cv_GTK_LIBS="$GTK_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi - else - pkg_failed=untried + fi +else + pkg_failed=untried fi @@ -8322,25 +6904,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$pkg_modules" 2>&1` + GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$pkg_modules"` else - GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors "$pkg_modules" 2>&1` + GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$pkg_modules"` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 - { { $as_echo "$as_me:$LINENO: error: Package requirements ($pkg_modules) were not met: - -$GTK_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -Alternatively, you may set the environment variables GTK_CFLAGS -and GTK_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details. -" >&5 -$as_echo "$as_me: error: Package requirements ($pkg_modules) were not met: + as_fn_error "Package requirements ($pkg_modules) were not met: $GTK_PKG_ERRORS @@ -8350,12 +6921,11 @@ Alternatively, you may set the environment variables GTK_CFLAGS and GTK_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. -" >&2;} - { (exit 1); exit 1; }; } +" "$LINENO" 5 elif test $pkg_failed = untried; then - { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -{ { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +as_fn_error "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. @@ -8364,38 +6934,834 @@ See the pkg-config man page for more details. To get pkg-config, see . -See \`config.log' for more details." >&5 -$as_echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +See \`config.log' for more details." "$LINENO" 5; } +else + GTK_CFLAGS=$pkg_cv_GTK_CFLAGS + GTK_LIBS=$pkg_cv_GTK_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + : +fi + + + + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XLIB" >&5 +$as_echo_n "checking for XLIB... " >&6; } + +if test -n "$PKG_CONFIG"; then + if test -n "$XLIB_CFLAGS"; then + pkg_cv_XLIB_CFLAGS="$XLIB_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\"x11\"\""; } >&5 + ($PKG_CONFIG --exists --print-errors ""x11"") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_XLIB_CFLAGS=`$PKG_CONFIG --cflags ""x11"" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$XLIB_LIBS"; then + pkg_cv_XLIB_LIBS="$XLIB_LIBS" + else + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\"x11\"\""; } >&5 + ($PKG_CONFIG --exists --print-errors ""x11"") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_XLIB_LIBS=`$PKG_CONFIG --libs ""x11"" 2>/dev/null` +else + pkg_failed=yes +fi + fi +else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + XLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors ""x11""` + else + XLIB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors ""x11""` + fi + # Put the nasty error message in config.log where it belongs + echo "$XLIB_PKG_ERRORS" >&5 + + as_fn_error "Package requirements (\"x11\") were not met: + +$XLIB_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables XLIB_CFLAGS +and XLIB_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" "$LINENO" 5 +elif test $pkg_failed = untried; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. -Alternatively, you may set the environment variables GTK_CFLAGS -and GTK_LIBS to avoid the need to call pkg-config. +Alternatively, you may set the environment variables XLIB_CFLAGS +and XLIB_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; }; } +See \`config.log' for more details." "$LINENO" 5; } else - GTK_CFLAGS=$pkg_cv_GTK_CFLAGS - GTK_LIBS=$pkg_cv_GTK_LIBS - { $as_echo "$as_me:$LINENO: result: yes" >&5 + XLIB_CFLAGS=$pkg_cv_XLIB_CFLAGS + XLIB_LIBS=$pkg_cv_XLIB_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } : fi -# Check whether --enable-man was given. -if test "${enable_man+set}" = set; then - enableval=$enable_man; enable_man="${enableval}" -else - enable_man=no +# Check whether --enable-man was given. +if test "${enable_man+set}" = set; then : + enableval=$enable_man; enable_man="${enableval}" +else + enable_man=no + +fi + + +# Generate po/LINGUAS on the fly rather than relying on translators +# to maintain it manually. This also overcome the problem that Transifex +# cannot add a language to po/LINGUAS if a new po file is submitted. +rm -f $srcdir/po/LINGUAS +for po_file in `ls $srcdir/po/*.po | sort`; +do + lang=`echo "$po_file" | sed "s|.*/po/\(.*\)\.po|\1|g"` + echo $lang >> $srcdir/po/LINGUAS +done + +GETTEXT_PACKAGE=lxinput + + + for ac_header in locale.h +do : + ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" +if test "x$ac_cv_header_locale_h" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_LOCALE_H 1 +_ACEOF + +fi + +done + + if test $ac_cv_header_locale_h = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 +$as_echo_n "checking for LC_MESSAGES... " >&6; } +if test "${am_cv_val_LC_MESSAGES+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +return LC_MESSAGES + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + am_cv_val_LC_MESSAGES=yes +else + am_cv_val_LC_MESSAGES=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 +$as_echo "$am_cv_val_LC_MESSAGES" >&6; } + if test $am_cv_val_LC_MESSAGES = yes; then + +$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h + + fi + fi + USE_NLS=yes + + + gt_cv_have_gettext=no + + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= + + ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" +if test "x$ac_cv_header_libintl_h" = x""yes; then : + gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 +$as_echo_n "checking for ngettext in libc... " >&6; } +if test "${gt_cv_func_ngettext_libc+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include + +int +main () +{ +return !ngettext ("","", 1) + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + gt_cv_func_ngettext_libc=yes +else + gt_cv_func_ngettext_libc=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 +$as_echo "$gt_cv_func_ngettext_libc" >&6; } + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 +$as_echo_n "checking for dgettext in libc... " >&6; } +if test "${gt_cv_func_dgettext_libc+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include + +int +main () +{ +return !dgettext ("","") + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + gt_cv_func_dgettext_libc=yes +else + gt_cv_func_dgettext_libc=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 +$as_echo "$gt_cv_func_dgettext_libc" >&6; } + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + for ac_func in bind_textdomain_codeset +do : + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 +_ACEOF + +fi +done + + fi + + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 +$as_echo_n "checking for bindtextdomain in -lintl... " >&6; } +if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* 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 bindtextdomain (); +int +main () +{ +return bindtextdomain (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_bindtextdomain=yes +else + ac_cv_lib_intl_bindtextdomain=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 +$as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } +if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 +$as_echo_n "checking for ngettext in -lintl... " >&6; } +if test "${ac_cv_lib_intl_ngettext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* 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 ngettext (); +int +main () +{ +return ngettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_ngettext=yes +else + ac_cv_lib_intl_ngettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 +$as_echo "$ac_cv_lib_intl_ngettext" >&6; } +if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 +$as_echo_n "checking for dgettext in -lintl... " >&6; } +if test "${ac_cv_lib_intl_dgettext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* 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 dgettext (); +int +main () +{ +return dgettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_dgettext=yes +else + ac_cv_lib_intl_dgettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 +$as_echo "$ac_cv_lib_intl_dgettext" >&6; } +if test "x$ac_cv_lib_intl_dgettext" = x""yes; then : + gt_cv_func_dgettext_libintl=yes +fi + +fi + +fi + + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 +$as_echo_n "checking if -liconv is needed to use gettext... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 +$as_echo "" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 +$as_echo_n "checking for ngettext in -lintl... " >&6; } +if test "${ac_cv_lib_intl_ngettext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* 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 ngettext (); +int +main () +{ +return ngettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_ngettext=yes +else + ac_cv_lib_intl_ngettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 +$as_echo "$ac_cv_lib_intl_ngettext" >&6; } +if test "x$ac_cv_lib_intl_ngettext" = x""yes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 +$as_echo_n "checking for dcgettext in -lintl... " >&6; } +if test "${ac_cv_lib_intl_dcgettext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* 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 dcgettext (); +int +main () +{ +return dcgettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_dcgettext=yes +else + ac_cv_lib_intl_dcgettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 +$as_echo "$ac_cv_lib_intl_dcgettext" >&6; } +if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then : + gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv +else + : +fi + +else + : +fi + + fi + + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + for ac_func in bind_textdomain_codeset +do : + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 +_ACEOF + +fi +done + + LIBS="$glib_save_LIBS" + + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi + + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + +$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h + + # Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_path_MSGFMT+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + case "$MSGFMT" in + /*) + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then + ac_cv_path_MSGFMT="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" + ;; +esac +fi +MSGFMT="$ac_cv_path_MSGFMT" +if test "$MSGFMT" != "no"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 +$as_echo "$MSGFMT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + for ac_func in dcgettext +do : + ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" +if test "x$ac_cv_func_dcgettext" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DCGETTEXT 1 +_ACEOF + +fi +done + + MSGFMT_OPTS= + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 +$as_echo_n "checking if msgfmt accepts -c... " >&6; } + cat >conftest.foo <<_ACEOF + +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: test 1.0\n" +"PO-Revision-Date: 2007-02-15 12:01+0100\n" +"Last-Translator: test \n" +"Language-Team: C \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +_ACEOF +if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 + ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +echo "$as_me: failed input was:" >&5 +sed 's/^/| /' conftest.foo >&5 +fi + + # Extract the first word of "gmsgfmt", so it can be a program name with args. +set dummy gmsgfmt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_path_GMSGFMT+set}" = set; then : + $as_echo_n "(cached) " >&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" + $as_echo "$as_me:${as_lineno-$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 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 +$as_echo "$GMSGFMT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + # Extract the first word of "xgettext", so it can be a program name with args. +set dummy xgettext; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_path_XGETTEXT+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + case "$XGETTEXT" in + /*) + ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then + ac_cv_path_XGETTEXT="$ac_dir/$ac_word" + break + fi + fi + 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 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 +$as_echo "$XGETTEXT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + CATOBJEXT=.gmo + DATADIRNAME=share +else + case $host in + *-*-solaris*) + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then : + CATOBJEXT=.gmo + DATADIRNAME=share +else + CATOBJEXT=.mo + DATADIRNAME=lib +fi + + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + +fi + + + + if test "$gt_cv_have_gettext" = "yes" ; then + +$as_echo "#define ENABLE_NLS 1" >>confdefs.h + + fi + + if test "$XGETTEXT" != ":"; then + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 +$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } + XGETTEXT=":" + fi + fi + + # We need to process the po/ directory. + POSUB=po + + ac_config_commands="$ac_config_commands default-2" + + + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done + + + + + + + + + + + + + + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 +$as_echo_n "checking for catalogs to be installed... " >&6; } + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; 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 + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 +$as_echo "$LINGUAS" >&6; } + fi + + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi -fi + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi -GETTEXT_PACKAGE=lxinput + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES cat >>confdefs.h <<_ACEOF @@ -8404,11 +7770,11 @@ if test x"$enable_man" = x"yes"; then - # Extract the first word of "xsltproc", so it can be a program name with args. + # Extract the first word of "xsltproc", so it can be a program name with args. set dummy xsltproc; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_XSLTPROC+set}" = set; then +if test "${ac_cv_path_XSLTPROC+set}" = set; then : $as_echo_n "(cached) " >&6 else case $XSLTPROC in @@ -8421,14 +7787,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_XSLTPROC="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS ;; @@ -8436,23 +7802,23 @@ fi XSLTPROC=$ac_cv_path_XSLTPROC if test -n "$XSLTPROC"; then - { $as_echo "$as_me:$LINENO: result: $XSLTPROC" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XSLTPROC" >&5 $as_echo "$XSLTPROC" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi - if test -z "$XSLTPROC"; then - enable_man=no - fi + if test -z "$XSLTPROC"; then + enable_man=no + fi # check for the presence of the XML catalog # Check whether --with-xml-catalog was given. -if test "${with_xml_catalog+set}" = set; then +if test "${with_xml_catalog+set}" = set; then : withval=$with_xml_catalog; else with_xml_catalog=/etc/xml/catalog @@ -8461,23 +7827,23 @@ jh_found_xmlcatalog=true XML_CATALOG_FILE="$with_xml_catalog" - { $as_echo "$as_me:$LINENO: checking for XML catalog ($XML_CATALOG_FILE)" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML catalog ($XML_CATALOG_FILE)" >&5 $as_echo_n "checking for XML catalog ($XML_CATALOG_FILE)... " >&6; } if test -f "$XML_CATALOG_FILE"; then - { $as_echo "$as_me:$LINENO: result: found" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 $as_echo "found" >&6; } else jh_found_xmlcatalog=false - { $as_echo "$as_me:$LINENO: result: not found" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } fi # check for the xmlcatalog program # Extract the first word of "xmlcatalog", so it can be a program name with args. set dummy xmlcatalog; ac_word=$2 -{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_path_XMLCATALOG+set}" = set; then +if test "${ac_cv_path_XMLCATALOG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $XMLCATALOG in @@ -8490,14 +7856,14 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + 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_XMLCATALOG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS test -z "$ac_cv_path_XMLCATALOG" && ac_cv_path_XMLCATALOG="no" @@ -8506,10 +7872,10 @@ fi XMLCATALOG=$ac_cv_path_XMLCATALOG if test -n "$XMLCATALOG"; then - { $as_echo "$as_me:$LINENO: result: $XMLCATALOG" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMLCATALOG" >&5 $as_echo "$XMLCATALOG" >&6; } else - { $as_echo "$as_me:$LINENO: result: no" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi @@ -8525,35 +7891,35 @@ fi - { $as_echo "$as_me:$LINENO: checking for DocBook XML DTD V4.1.2 in XML catalog" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DocBook XML DTD V4.1.2 in XML catalog" >&5 $as_echo_n "checking for DocBook XML DTD V4.1.2 in XML catalog... " >&6; } if $jh_found_xmlcatalog && \ - { ($as_echo "$as_me:$LINENO: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"-//OASIS//DTD DocBook XML V4.1.2//EN\" >&2") >&5 + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"-//OASIS//DTD DocBook XML V4.1.2//EN\" >&2"; } >&5 ($XMLCATALOG --noout "$XML_CATALOG_FILE" "-//OASIS//DTD DocBook XML V4.1.2//EN" >&2) 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - { $as_echo "$as_me:$LINENO: result: found" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 $as_echo "found" >&6; } else - { $as_echo "$as_me:$LINENO: result: not found" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } enable_man=no fi - { $as_echo "$as_me:$LINENO: checking for DocBook XSL Stylesheets >= 1.70.1 in XML catalog" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DocBook XSL Stylesheets >= 1.70.1 in XML catalog" >&5 $as_echo_n "checking for DocBook XSL Stylesheets >= 1.70.1 in XML catalog... " >&6; } if $jh_found_xmlcatalog && \ - { ($as_echo "$as_me:$LINENO: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl\" >&2") >&5 + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$XMLCATALOG --noout \"\$XML_CATALOG_FILE\" \"http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl\" >&2"; } >&5 ($XMLCATALOG --noout "$XML_CATALOG_FILE" "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl" >&2) 2>&5 ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - { $as_echo "$as_me:$LINENO: result: found" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 $as_echo "found" >&6; } else - { $as_echo "$as_me:$LINENO: result: not found" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } enable_man=no fi @@ -8569,8 +7935,7 @@ fi - -ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in data/lxinput.desktop man/Makefile" +ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in man/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -8599,13 +7964,13 @@ case $ac_val in #( *${as_nl}*) case $ac_var in #( - *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) $as_unset $ac_var ;; + *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done @@ -8613,8 +7978,8 @@ (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 \). + # `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" @@ -8637,11 +8002,11 @@ if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then test "x$cache_file" != "x/dev/null" && - { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else - { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi @@ -8661,8 +8026,8 @@ ac_i=`$as_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' + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs @@ -8678,59 +8043,42 @@ fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then - { { $as_echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -$as_echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"MAINTAINER_MODE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -$as_echo "$as_me: error: conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi ac_config_commands="$ac_config_commands po/stamp-it" if test -z "${ENABLE_REGENERATE_MAN_TRUE}" && test -z "${ENABLE_REGENERATE_MAN_FALSE}"; then - { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_REGENERATE_MAN\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -$as_echo "$as_me: error: conditional \"ENABLE_REGENERATE_MAN\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"ENABLE_REGENERATE_MAN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : ${CONFIG_STATUS=./config.status} ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. @@ -8740,17 +8088,18 @@ debug=false ac_cs_recheck=false ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## 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 +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which @@ -8758,23 +8107,15 @@ alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; + 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 - as_nl=' ' export as_nl @@ -8782,7 +8123,13 @@ as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else @@ -8793,7 +8140,7 @@ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; - case $arg in + case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; @@ -8816,13 +8163,6 @@ } 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 @@ -8832,15 +8172,15 @@ IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. -case $0 in +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 + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done IFS=$as_save_IFS ;; @@ -8852,12 +8192,16 @@ fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); 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 +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' @@ -8869,7 +8213,89 @@ LANGUAGE=C export LANGUAGE -# Required to use basename. +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr @@ -8883,8 +8309,12 @@ as_basename=false fi +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi -# Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ @@ -8904,76 +8334,25 @@ } 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" || - { $as_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 +# 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 ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in +case `echo -n x` in #((((( -n*) - case `echo 'x\c'` in + case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; 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 @@ -9002,8 +8381,56 @@ rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_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 || +$as_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" || as_fn_error "cannot create directory $as_dir" + + +} # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then - as_mkdir_p=: + as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false @@ -9022,10 +8449,10 @@ if test -d "$1"; then test -d "$1/."; else - case $1 in + case $1 in #( -*)set "./$1";; esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' @@ -9040,13 +8467,19 @@ exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 -# Save the log message, to keep $[0] and so on meaningful, and to +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=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 $as_me, which was -generated by GNU Autoconf 2.63. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -9078,13 +8511,15 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. -Usage: $0 [OPTION]... [FILE]... +Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit + --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files @@ -9103,16 +8538,17 @@ Configuration commands: $config_commands -Report bugs to ." +Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status -configured by $0, generated by GNU Autoconf 2.63, - with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" -Copyright (C) 2008 Free Software Foundation, Inc. +Copyright (C) 2009 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -9148,6 +8584,8 @@ ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) @@ -9155,20 +8593,19 @@ case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac - CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" + as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac - CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" + as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header - { $as_echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; };; + as_fn_error "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ @@ -9176,11 +8613,10 @@ ac_cs_silent=: ;; # This is an error. - -*) { $as_echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } ;; + -*) as_fn_error "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; - *) ac_config_targets="$ac_config_targets $1" + *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac @@ -9224,6 +8660,7 @@ AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 @@ -9235,16 +8672,14 @@ "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; + "default-2") CONFIG_COMMANDS="$CONFIG_COMMANDS default-2" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; - "data/lxinput.desktop") CONFIG_FILES="$CONFIG_FILES data/lxinput.desktop" ;; "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;; "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; - *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done @@ -9271,7 +8706,7 @@ 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 + trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. @@ -9282,11 +8717,7 @@ { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") -} || -{ - $as_echo "$as_me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. @@ -9294,10 +8725,16 @@ if test -n "$CONFIG_FILES"; then -ac_cr=' ' +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' + ac_cs_awk_cr='\r' else ac_cs_awk_cr=$ac_cr fi @@ -9311,24 +8748,18 @@ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || - { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 -$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || - { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 -$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then - { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 -$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -9350,7 +8781,7 @@ t delim :nl h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p @@ -9364,7 +8795,7 @@ t nl :delim h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p @@ -9417,9 +8848,7 @@ else cat fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ - || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 -$as_echo "$as_me: error: could not setup config files machinery" >&2;} - { (exit 1); exit 1; }; } + || as_fn_error "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove $(srcdir), @@ -9460,9 +8889,7 @@ if test -z "$ac_t"; then break elif $ac_last_try; then - { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 -$as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi @@ -9547,9 +8974,7 @@ _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 -$as_echo "$as_me: error: could not setup config headers machinery" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" @@ -9562,9 +8987,7 @@ esac case $ac_mode$ac_tag in :[FHL]*:*);; - :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 -$as_echo "$as_me: error: invalid tag $ac_tag" >&2;} - { (exit 1); exit 1; }; };; + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac @@ -9592,12 +9015,10 @@ [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || - { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 -$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} - { (exit 1); exit 1; }; };; + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - ac_file_inputs="$ac_file_inputs '$ac_f'" + as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't @@ -9608,7 +9029,7 @@ `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. @@ -9621,9 +9042,7 @@ case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin" \ - || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 -$as_echo "$as_me: error: could not create $ac_file" >&2;} - { (exit 1); exit 1; }; } ;; + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac @@ -9651,47 +9070,7 @@ 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=`$as_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 || -$as_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" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } + as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in @@ -9748,7 +9127,6 @@ # 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= - ac_sed_dataroot=' /datarootdir/ { p @@ -9758,12 +9136,11 @@ /@docdir@/p /@infodir@/p /@localedir@/p -/@mandir@/p -' +/@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 @@ -9773,7 +9150,7 @@ s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; + s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF @@ -9802,14 +9179,12 @@ $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ - || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 -$as_echo "$as_me: error: could not create $ac_file" >&2;} - { (exit 1); exit 1; }; } + || as_fn_error "could not create $ac_file" "$LINENO" 5 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"; } && - { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 $as_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;} @@ -9819,9 +9194,7 @@ -) cat "$tmp/out" && rm -f "$tmp/out";; *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; esac \ - || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 -$as_echo "$as_me: error: could not create $ac_file" >&2;} - { (exit 1); exit 1; }; } + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; :H) # @@ -9832,25 +9205,19 @@ $as_echo "/* $configure_input */" \ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" } >"$tmp/config.h" \ - || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 -$as_echo "$as_me: error: could not create $ac_file" >&2;} - { (exit 1); exit 1; }; } + || as_fn_error "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$tmp/config.h" "$ac_file" \ - || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 -$as_echo "$as_me: error: could not create $ac_file" >&2;} - { (exit 1); exit 1; }; } + || as_fn_error "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ - || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 -$as_echo "$as_me: error: could not create -" >&2;} - { (exit 1); exit 1; }; } + || as_fn_error "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" @@ -9888,7 +9255,7 @@ s/.*/./; q'`/stamp-h$_am_stamp_count ;; - :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac @@ -9983,47 +9350,7 @@ 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=`$as_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 || -$as_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" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -$as_echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } + as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done @@ -10033,11 +9360,12 @@ "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac ;; + "default-2":C) case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac ;; "po/stamp-it":C) if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then - { { $as_echo "$as_me:$LINENO: error: po/Makefile.in.in was not created by intltoolize." >&5 -$as_echo "$as_me: error: po/Makefile.in.in was not created by intltoolize." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 fi rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" >"po/stamp-it.tmp" @@ -10060,15 +9388,12 @@ done # for ac_tag -{ (exit 0); exit 0; } +as_fn_exit 0 _ACEOF -chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || - { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. @@ -10089,10 +9414,10 @@ 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; } + $ac_cs_success || as_fn_exit $? fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi diff -Nru lxinput-0.1.1/configure.in lxinput-0.3.0/configure.in --- lxinput-0.1.1/configure.in 2009-06-24 19:53:14.000000000 +0000 +++ lxinput-0.3.0/configure.in 2010-08-03 09:07:30.000000000 +0000 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(configure.in) -AM_INIT_AUTOMAKE(lxinput, 0.1.1) +AM_INIT_AUTOMAKE(lxinput, 0.3.0) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE @@ -18,6 +18,10 @@ AC_SUBST(GTK_CFLAGS) AC_SUBST(GTK_LIBS) +PKG_CHECK_MODULES(XLIB, "x11") +AC_SUBST(XLIB_CFLAGS) +AC_SUBST(XLIB_LIBS) + AC_ARG_ENABLE(man, [AC_HELP_STRING([--enable-man], [regenerate roff man pages from Docbook @<:@default=no@:>@])], @@ -25,32 +29,39 @@ [enable_man=no] ) +# Generate po/LINGUAS on the fly rather than relying on translators +# to maintain it manually. This also overcome the problem that Transifex +# cannot add a language to po/LINGUAS if a new po file is submitted. +rm -f $srcdir/po/LINGUAS +for po_file in `ls $srcdir/po/*.po | sort`; +do + lang=`echo "$po_file" | sed "s|.*/po/\(.*\)\.po|\1|g"` + echo $lang >> $srcdir/po/LINGUAS +done + GETTEXT_PACKAGE=lxinput AC_SUBST(GETTEXT_PACKAGE) +AM_GLIB_GNU_GETTEXT AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.]) if test x"$enable_man" = x"yes"; then - AC_PATH_PROG([XSLTPROC], [xsltproc]) - if test -z "$XSLTPROC"; then - enable_man=no - fi - - dnl check for DocBook DTD and stylesheets in the local catalog. - JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN], - [DocBook XML DTD V4.1.2], [], enable_man=no) - JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl], - [DocBook XSL Stylesheets >= 1.70.1], [], enable_man=no) + AC_PATH_PROG([XSLTPROC], [xsltproc]) + if test -z "$XSLTPROC"; then + enable_man=no + fi + + dnl check for DocBook DTD and stylesheets in the local catalog. + JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN], + [DocBook XML DTD V4.1.2], [], enable_man=no) + JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl], + [DocBook XSL Stylesheets >= 1.70.1], [], enable_man=no) fi AM_CONDITIONAL(ENABLE_REGENERATE_MAN, test "x$enable_man" != "xno") -dnl Add the languages which your application supports here. -dnl ALL_LINGUAS="af ar cs da de es et eu fa fi fr gl hr hu id it ja ko lt ml ms nb nl nn pl ps pt pt_BR ru sk sl sv tr uk ur ur_PK vi zh_CN zh_TW" - AC_OUTPUT([ Makefile src/Makefile po/Makefile.in -data/lxinput.desktop man/Makefile ]) diff -Nru lxinput-0.1.1/data/lxinput.desktop lxinput-0.3.0/data/lxinput.desktop --- lxinput-0.1.1/data/lxinput.desktop 2009-07-07 11:45:50.000000000 +0000 +++ lxinput-0.3.0/data/lxinput.desktop 2010-08-07 17:35:33.000000000 +0000 @@ -1,15 +1,67 @@ [Desktop Entry] Type=Application Name=Keyboard and Mouse +Name[ar]=لوحة المفاتيح والفأرة +Name[bg]=Клавиатура и мишка +Name[bn]=কী-বোর্ড এবং মাউস +Name[da]=Tastatur og mus +Name[de]=Tastatur und Maus +Name[el]=Πληκτρολόγιο και ποντίκι +Name[en_GB]=Keyboard and Mouse +Name[es]=Teclado y ratón +Name[fo]=Knappaborð og mús +Name[fr]=Clavier et souris +Name[he]=מקלדת ועכבר +Name[hr]=Tipkovnica i miš +Name[hu]=Billentyűzet és egér +Name[it]=Tastiera e Mouse Name[ja]=キーボードとマウス +Name[lt]=Klaviatūra ir pelė +Name[pl]=Klawiatura i mysz +Name[pt]=Teclado e Rato +Name[pt_BR]=Teclado e mouse +Name[ru]=Клавиатура и мышь +Name[sk]=Klávesnica a myš +Name[sl]=Tipkovnica in miška +Name[sr]=Тастатура и миш +Name[sr@latin]=Tastatura i miš +Name[sv]=Tangentbord och mus +Name[uk]=Клавіатура і миша +Name[vi]=Bàn phím và chuột Name[zh_TW]=鍵盤及滑鼠 Icon=input-keyboard Exec=lxinput Comment=Configure keyboard, mouse, and other input devices +Comment[ar]=اضبط لوحة المفاتيح، الفأرة وأجهزة الإدخال الأخرى +Comment[bg]=Настройка на клавиатурата, мишката идруги входящи устройства +Comment[bn]=কী-বোর্ড, মাউস এবং অন্যান্য ইনপুট ডিভাইস কনফিগার +Comment[da]=Konfigurer tastatur, mus og andre inddataenheder +Comment[de]=Maus, Tastatur und andere Eingabegeräte konfigurieren +Comment[el]=Ρυθμίσεις πληκτρολογίου, ποντικιού και άλλων συσκευών εισόδου +Comment[en_GB]=Configure keyboard, mouse, and other input devices +Comment[es]=Configurar el teclado, ratón y otros dispositivos de entrada +Comment[fa]=پیکربندی صفحه کلید، موشواره و دیگر دستگاه‌های ورودی +Comment[fo]=Samanset knappaborð, mús, og arðar inntøkutóleindir +Comment[fr]=Configure le clavier, la souris et d'autres périphériques d'entrée +Comment[he]=הגדרת המקלדת, העכבר והתקני קלט נוספים +Comment[hr]=Konfiguriraj tipkovnicu, miš, i druge ulazne uređaje +Comment[hu]=Billentyűzet, egér és egyéb beviteli eszközök beállítása +Comment[it]=Configura tastiera, mouse, ed altri dispositivi di imput Comment[ja]=キーボードやマウス、その他の入力機器の設定 +Comment[lt]=Konfigūruoti klaviatūrą, pelę ir kitus įvedimo įrenginius +Comment[pl]=Skonfiguruj klawiaturę, mysz i inne urządzenia wejściowe +Comment[pt]=Configurar teclado, rato e outros dispositivos +Comment[pt_BR]=Configurar teclado, mouse e outros dispositivos de entrada +Comment[ru]=Настроить клавиатуру, мышь и другие устройства ввода +Comment[sk]=Nastaviť klávesnicu, myš a ostatné vstupné zariadenia +Comment[sl]=Nastavitve tipkovnice, miške in drugih vhodnih enot +Comment[sr]=Подесите тастатуру, миш и друге улазне уређаје +Comment[sr@latin]=Podesite tastaturu, miš i druge ulazne uređaje +Comment[sv]=Inställningar för tangentbord, mus och andra inmatningsenheter +Comment[uk]=Налаштування клавіатури, миші та інших вхідних пристроїв +Comment[vi]=Cấu hình bàn phím, chuột, và các thiết bị đầu vào khác Comment[zh_TW]=設定鍵盤、滑鼠、及其他輸入裝置 StartupNotify=true Terminal=false Categories=GTK;Settings;HardwareSettings; OnlyShowIn=LXDE; - diff -Nru lxinput-0.1.1/data/lxinput.desktop.in lxinput-0.3.0/data/lxinput.desktop.in --- lxinput-0.1.1/data/lxinput.desktop.in 2009-06-18 03:39:43.000000000 +0000 +++ lxinput-0.3.0/data/lxinput.desktop.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Keyboard and Mouse -Name[ja]=キーボードとマウス -Name[zh_TW]=鍵盤及滑鼠 -Icon=input-keyboard -Exec=lxinput -Comment=Configure keyboard, mouse, and other input devices -Comment[ja]=キーボードやマウス、その他の入力機器の設定 -Comment[zh_TW]=設定鍵盤、滑鼠、及其他輸入裝置 -StartupNotify=true -Terminal=false -Categories=GTK;Settings;HardwareSettings; -OnlyShowIn=LXDE; - diff -Nru lxinput-0.1.1/debian/apport/source_lxinput.py lxinput-0.3.0/debian/apport/source_lxinput.py --- lxinput-0.1.1/debian/apport/source_lxinput.py 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/debian/apport/source_lxinput.py 2010-08-09 21:43:22.000000000 +0000 @@ -0,0 +1,42 @@ +""" + Copyright (c) 2010 Julien Lavergne + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +""" + +import os +import apport.hookutils + +#Detect session +session = os.environ['DESKTOP_SESSION'] + +#If it's not a specific session, fallback to LXDE +if not session: + session = "LXDE" + +#Set location of various configuration files +system_conf = "/etc/xdg/lxsession/" +home_conf = os.path.expanduser("~/.config/lxsession/") + +#Set description for each file reported by apport +report_config_system = "Config_System_" + session +report_config_home = "Config_Home_" + session + +def add_info(report): + # If a config file exist in HOME, report it instead of the system one. + if os.path.exists(os.path.join(home_conf,session,"desktop.conf")): + report[report_config_home] = apport.hookutils.read_file(os.path.join(home_conf,session,"desktop.conf")) + else: + report[report_config_system] = apport.hookutils.read_file(os.path.join(system_conf,session,"desktop.conf")) diff -Nru lxinput-0.1.1/debian/changelog lxinput-0.3.0/debian/changelog --- lxinput-0.1.1/debian/changelog 2013-10-31 15:02:37.000000000 +0000 +++ lxinput-0.3.0/debian/changelog 2011-02-26 19:05:30.000000000 +0000 @@ -1,14 +1,96 @@ -lxinput (0.1.1-1ubuntu2~ppa1) karmic; urgency=low +lxinput (0.3.0-0ubuntu4~ppa1) natty; urgency=low - * Backport to karmic. + * debian/patches + - 80_translations.patch: Update translations from git (2011-02-19) - -- Julien Lavergne Thu, 19 Nov 2009 08:58:06 -0600 + -- Julien Lavergne Sat, 26 Feb 2011 20:05:21 +0100 -lxinput (0.1.1-1ubuntu1) lucid; urgency=low +lxinput (0.3.0-0ubuntu3) natty; urgency=low - * debian/control: Allow installation with lxsession (>= 0.3.9) + * debian/rules: + - Use --with autoreconf. + - Add flags to prepare GTK3 migration. + - Pass --as-needed for LDFLAGS. + - Install apport hook only on Ubuntu. + * debian/apport: + - Move apport hook in a subdirectory. + * debian/control: + - Build-depends on lsb-release, needed to detect the distribution. + - Wrap depends and build-depends. + - Build-depends on dh-autoreconf. + * debian/patches/ + - 01_layout_button.patch: Add a button to launch a program to change the + keyboard layout. Only lxkeymap supported so far. + - 02_build_system_clean.patch: Remove .glade to .ui convertion, and don't + clean .ui files. + - 03_gseal_enable_migration.patch: Fixes when gseal is available, to prepare + GTK3 migration. + + -- Julien Lavergne Tue, 22 Feb 2011 00:26:48 +0100 + +lxinput (0.3.0-0ubuntu2) maverick; urgency=low + + * debian/source_lxinput.py: + - Test the correct config file. + * debian/rules: + - Remove autoreconf call, not needed for stable release. + + -- Julien Lavergne Sat, 21 Aug 2010 19:11:52 +0200 + +lxinput (0.3.0-0ubuntu1) maverick; urgency=low + + [ Julien Lavergne ] + * Sync with Debian LXDE git. + * debian/source_lxinput.py + - Add apport hook for lxinput, to collect config file. + * debian/install + - Install apport hook. - -- Julien Lavergne Wed, 04 Nov 2009 20:40:04 +0100 + [ Andrew Lee (李健秋) ] + * New upstream release + - Fixed incorrect path of config file + - Fixed wrongly transformed mouse threshold parameter + (LP: #563534) + - Fixed incorrect path of desktop entry file template + - Fixed broken translation in bg.po + - Fixed configure.in and Makefile.am to add proper xlib flags + (Closes: #555573) + - Translation updates + + -- Julien Lavergne Mon, 09 Aug 2010 00:48:39 +0200 + +lxinput (0.1.1+git20100807-1) experimental; urgency=low + + * Fix FTBFS on kFreeBSD. (Closes:#591650) + * Sync with upstream. + * Drop depends on lxde-settings-daemon. + + -- Andrew Lee (李健秋) Sat, 07 Aug 2010 12:55:00 -0400 + +lxinput (0.1.1+git20100802-1) experimental; urgency=low + + * Sync with upstream git version. + * Bumped Standard-version to 3.9.1 + + -- Andrew Lee (李健秋) Mon, 02 Aug 2010 17:38:40 -0400 + +lxinput (0.1.1-3) unstable; urgency=low + + * Applied ubuntu patch. (Closes:582545) + Thanks Julien Lavergne + * Use DH7 + * Use team maintenance address + * Aded Vcs-Git and Vcs-Browser tags + * Bumped Standard-Version to 3.8.4 + + -- Andrew Lee (李健秋) Mon, 24 May 2010 18:20:59 +0800 + +lxinput (0.1.1-2) unstable; urgency=low + + * Update depends on lxde-settings-daemon | lxsession (>=0.4.0) + * Bumped Standard-Version to 3.8.3 + + -- Andrew Lee (李健秋) Mon, 16 Nov 2009 11:29:31 +0800 lxinput (0.1.1-1) unstable; urgency=low diff -Nru lxinput-0.1.1/debian/control lxinput-0.3.0/debian/control --- lxinput-0.1.1/debian/control 2013-10-31 15:02:37.000000000 +0000 +++ lxinput-0.3.0/debian/control 2011-02-21 22:48:39.000000000 +0000 @@ -2,14 +2,27 @@ Section: x11 Priority: optional Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Andrew Lee (李健秋) -Build-Depends: debhelper (>= 7), autotools-dev, libgtk2.0-dev (>=2.12), intltool, docbook-xsl -Standards-Version: 3.8.2 +XSBC-Original-Maintainer: Debian LXDE Packaging Team +Uploaders: Andrew Lee (李健秋) +Build-Depends: debhelper (>= 7.0.50~), + autotools-dev, + libgtk2.0-dev (>=2.12), + intltool, + docbook-xsl, + libtool, + libltdl-dev, + lsb-release, + dh-autoreconf +Standards-Version: 3.9.1 Homepage: http://lxde.org +Vcs-Git: git://git.debian.org/git/collab-maint/lxinput.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/lxinput.git;a=summary Package: lxinput Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, lxde-settings-daemon (>= 0.4.1 ) | lxsession (>= 0.3.9) +Depends: ${shlibs:Depends}, + ${misc:Depends}, + lxsession (>= 0.4.4) Description: a program to configure keyboard and mouse settings for LXDE LXInput is a program to configure keyboard and mouse settings for LXDE. Features: diff -Nru lxinput-0.1.1/debian/menu lxinput-0.3.0/debian/menu --- lxinput-0.1.1/debian/menu 2013-10-31 15:02:37.000000000 +0000 +++ lxinput-0.3.0/debian/menu 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -?package(lxinput):needs="wm" section="Applications/System"\ - title="lxinput" command="/usr/bin/lxinput" diff -Nru lxinput-0.1.1/debian/patches/01_layout_button.patch lxinput-0.3.0/debian/patches/01_layout_button.patch --- lxinput-0.1.1/debian/patches/01_layout_button.patch 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/debian/patches/01_layout_button.patch 2010-10-27 18:17:07.000000000 +0000 @@ -0,0 +1,667 @@ +Index: lxinput/data/lxinput.ui +=================================================================== +--- lxinput.orig/data/lxinput.ui ++++ lxinput/data/lxinput.ui +@@ -1 +1,583 @@ +-12Input Device PreferencesFalsecenterinput-mousedialogFalseTrue2TrueTrueTrue106True0noneTrue12True102466True0Sensitivity:12GTK_FILLGTK_FILL100TrueTruediscontinuousmouse_accel_adj0right23GTK_FILL100TrueTruediscontinuousmouse_threshold_adj0right2312GTK_FILLTrueHigh3412GTK_FILLGTK_FILLTrueLow1212GTK_FILLGTK_FILLTrueFast34GTK_FILLGTK_FILLTrueSlow12GTK_FILLGTK_FILLTrue0Acceleration:GTK_FILLGTK_FILLTrue<b>Motion</b>TrueFalse0Left handed (Swap left and right mouse buttons)TrueTrueFalseTrueFalse1True6True16input-mouse0TrueMouse1FalseTrue106True0noneTrue12True106TrueDelay before each key starts repeating2466True0Repeat delay:GTK_FILLGTK_FILL100TrueTruediscontinuouskb_daley_adj0right23GTK_FILL100TrueTrueInterval between each key repeatdiscontinuouskb_interval_adj0right2312GTK_FILLTrueLong3412GTK_FILLGTK_FILLTrueShort1212GTK_FILLGTK_FILLTrueLong34GTK_FILLGTK_FILLTrueShort12GTK_FILLGTK_FILLTrue0Repeat interval:12GTK_FILLGTK_FILL0True0Type in the following box to test your keyboard settingsFalse1TrueTrueFalse2True<b>Character Repeat</b>TrueFalse0Beep when there is an error of keyboard inputTrueTrueFalseTrueFalse11True6True16input-keyboard0TrueKeyboard11False2TrueTouch Pad2False1Trueendgtk-cancelTrueTrueTrueTrueFalseFalse0gtk-okTrueTrueTrueTrueFalseFalse1Falseend0cancelok50010011001001001003010210101010100101101010102010110101010 ++ ++ ++ ++ ++ ++ 12 ++ Input Device Preferences ++ False ++ center ++ input-mouse ++ dialog ++ ++ ++ True ++ 2 ++ ++ ++ True ++ True ++ ++ ++ True ++ 10 ++ 6 ++ ++ ++ True ++ 0 ++ none ++ ++ ++ True ++ 12 ++ ++ ++ True ++ 10 ++ 2 ++ 4 ++ 6 ++ 6 ++ ++ ++ True ++ 0 ++ Sensitivity: ++ ++ ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ 100 ++ True ++ True ++ discontinuous ++ mouse_accel_adj ++ 0 ++ right ++ ++ ++ 2 ++ 3 ++ GTK_FILL ++ ++ ++ ++ ++ 100 ++ True ++ True ++ discontinuous ++ mouse_threshold_adj ++ 0 ++ right ++ ++ ++ 2 ++ 3 ++ 1 ++ 2 ++ GTK_FILL ++ ++ ++ ++ ++ True ++ High ++ ++ ++ 3 ++ 4 ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ Low ++ ++ ++ 1 ++ 2 ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ Fast ++ ++ ++ 3 ++ 4 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ Slow ++ ++ ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ 0 ++ Acceleration: ++ ++ ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ ++ ++ ++ ++ True ++ <b>Motion</b> ++ True ++ ++ ++ ++ ++ False ++ 0 ++ ++ ++ ++ ++ Left handed (Swap left and right mouse buttons) ++ True ++ True ++ False ++ True ++ ++ ++ False ++ 1 ++ ++ ++ ++ ++ ++ ++ True ++ 6 ++ ++ ++ True ++ 16 ++ input-mouse ++ ++ ++ 0 ++ ++ ++ ++ ++ True ++ Mouse ++ ++ ++ 1 ++ ++ ++ ++ ++ False ++ ++ ++ ++ ++ True ++ 10 ++ 6 ++ ++ ++ True ++ 0 ++ none ++ ++ ++ True ++ 12 ++ ++ ++ True ++ 10 ++ 6 ++ ++ ++ True ++ Delay before each key starts repeating ++ 2 ++ 4 ++ 6 ++ 6 ++ ++ ++ True ++ 0 ++ Repeat delay: ++ ++ ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ 100 ++ True ++ True ++ discontinuous ++ kb_daley_adj ++ 0 ++ right ++ ++ ++ 2 ++ 3 ++ GTK_FILL ++ ++ ++ ++ ++ 100 ++ True ++ True ++ Interval between each key repeat ++ discontinuous ++ kb_interval_adj ++ 0 ++ right ++ ++ ++ 2 ++ 3 ++ 1 ++ 2 ++ GTK_FILL ++ ++ ++ ++ ++ True ++ Long ++ ++ ++ 3 ++ 4 ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ Short ++ ++ ++ 1 ++ 2 ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ Long ++ ++ ++ 3 ++ 4 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ Short ++ ++ ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ True ++ 0 ++ Repeat interval: ++ ++ ++ 1 ++ 2 ++ GTK_FILL ++ GTK_FILL ++ ++ ++ ++ ++ 0 ++ ++ ++ ++ ++ True ++ 0 ++ Type in the following box to test your keyboard settings ++ ++ ++ False ++ 1 ++ ++ ++ ++ ++ True ++ True ++ ++ ++ False ++ 2 ++ ++ ++ ++ ++ ++ ++ ++ ++ True ++ <b>Character Repeat</b> ++ True ++ ++ ++ ++ ++ False ++ 0 ++ ++ ++ ++ ++ Beep when there is an error of keyboard input ++ True ++ True ++ False ++ True ++ ++ ++ False ++ 1 ++ ++ ++ ++ ++ True ++ ++ ++ True ++ Keyboard layout ++ right ++ ++ ++ False ++ end ++ 1 ++ ++ ++ ++ ++ True ++ True ++ True ++ image10 ++ right ++ ++ ++ False ++ end ++ 0 ++ ++ ++ ++ ++ False ++ False ++ 2 ++ ++ ++ ++ ++ 1 ++ ++ ++ ++ ++ True ++ 6 ++ ++ ++ True ++ 16 ++ input-keyboard ++ ++ ++ 0 ++ ++ ++ ++ ++ True ++ Keyboard ++ ++ ++ 1 ++ ++ ++ ++ ++ 1 ++ False ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ 2 ++ ++ ++ ++ ++ True ++ Touch Pad ++ ++ ++ 2 ++ False ++ ++ ++ ++ ++ 1 ++ ++ ++ ++ ++ True ++ end ++ ++ ++ gtk-cancel ++ True ++ True ++ True ++ True ++ ++ ++ False ++ False ++ 0 ++ ++ ++ ++ ++ gtk-ok ++ True ++ True ++ True ++ True ++ ++ ++ False ++ False ++ 1 ++ ++ ++ ++ ++ False ++ end ++ 0 ++ ++ ++ ++ ++ ++ cancel ++ ok ++ ++ ++ ++ 500 ++ 100 ++ 1100 ++ 100 ++ 100 ++ 100 ++ ++ ++ 30 ++ 10 ++ 210 ++ 10 ++ 10 ++ 10 ++ ++ ++ 100 ++ 10 ++ 110 ++ 10 ++ 10 ++ 10 ++ ++ ++ 20 ++ 10 ++ 110 ++ 10 ++ 10 ++ 10 ++ ++ ++ True ++ input-keyboard ++ ++ +Index: lxinput/src/lxinput.c +=================================================================== +--- lxinput.orig/src/lxinput.c ++++ lxinput/src/lxinput.c +@@ -42,6 +42,8 @@ static GtkToggleButton* mouse_left_hande + static GtkRange *kb_delay; + static GtkRange *kb_interval; + static GtkToggleButton* kb_beep; ++static GtkButton* kb_layout; ++static GtkLabel* kb_layout_label; + + static int accel = 20, old_accel = 20; + static int threshold = 10, old_threshold = 10; +@@ -128,6 +130,39 @@ static gboolean on_change_val(GtkRange * + return FALSE; + } + ++static const gchar* detect_keymap_program() ++{ ++ const gchar *program = NULL; ++ ++ /*find if lxkeymap is in the path*/ ++ program = "lxkeymap"; ++ if (g_find_program_in_path(program)) ++ { ++ return program; ++ } ++ /*TODO ++ Add other keymap executable*/ ++ else ++ { ++ return NULL; ++ } ++ ++} ++ ++static void on_kb_layout_clicked(GtkButton *button, gpointer user_data) ++{ ++ ++ int status; ++ char* output = NULL; ++ const gchar *program = detect_keymap_program(); ++ ++ if (program) ++ { ++ g_spawn_command_line_sync(program, &output, NULL, &status, NULL ); ++ } ++ ++} ++ + static void set_range_stops(GtkRange* range, int interval ) + { + /* +@@ -201,6 +236,16 @@ int main(int argc, char** argv) + kb_delay = (GtkRange*)gtk_builder_get_object(builder,"kb_delay"); + kb_interval = (GtkRange*)gtk_builder_get_object(builder,"kb_interval"); + kb_beep = (GtkToggleButton*)gtk_builder_get_object(builder,"beep"); ++ kb_layout = (GtkButton*)gtk_builder_get_object(builder,"keyboard_layout"); ++ ++ const gchar *program = detect_keymap_program(); ++ if (program == NULL) ++ { ++ /* Hide the button if there is no program to set keymap */ ++ kb_layout_label = (GtkLabel*)gtk_builder_get_object(builder,"keyboard_layout_label"); ++ gtk_widget_set_visible(kb_layout_label, FALSE); ++ gtk_widget_set_visible(kb_layout, FALSE); ++ } + + g_object_unref( builder ); + +@@ -229,6 +274,7 @@ int main(int argc, char** argv) + set_range_stops(kb_interval, 10); + g_signal_connect(kb_interval, "value-changed", G_CALLBACK(on_kb_range_changed), &kb_interval); + g_signal_connect(kb_beep, "toggled", G_CALLBACK(on_kb_beep_toggle), NULL); ++ g_signal_connect(kb_layout, "clicked", G_CALLBACK(on_kb_layout_clicked), NULL); + + if( gtk_dialog_run( (GtkDialog*)dlg ) == GTK_RESPONSE_OK ) + { diff -Nru lxinput-0.1.1/debian/patches/02_build_system_clean.patch lxinput-0.3.0/debian/patches/02_build_system_clean.patch --- lxinput-0.1.1/debian/patches/02_build_system_clean.patch 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/debian/patches/02_build_system_clean.patch 2010-10-27 16:28:10.000000000 +0000 @@ -0,0 +1,28 @@ +Index: lxinput/Makefile.am +=================================================================== +--- lxinput.orig/Makefile.am ++++ lxinput/Makefile.am +@@ -2,11 +2,8 @@ NULL= + + SUBDIRS = src po man + +-ui_in_files= \ +- data/lxinput.glade \ +- $(NULL) +-uidir=$(datadir)/lxinput +-ui_DATA = $(ui_in_files:.glade=.ui) ++uidir = $(datadir)/lxinput ++ui_DATA = data/lxinput.ui + + desktopdir=$(datadir)/applications + desktop_in_files = \ +@@ -28,9 +25,4 @@ EXTRA_DIST = \ + $(NULL) + + CLEANFILES = \ +- $(ui_DATA) \ + $(NULL) +- +-%.ui: %.glade +- cp $< $@ +- $(top_builddir)/src/xml-purge $@ diff -Nru lxinput-0.1.1/debian/patches/03_gseal_enable_migration.patch lxinput-0.3.0/debian/patches/03_gseal_enable_migration.patch --- lxinput-0.1.1/debian/patches/03_gseal_enable_migration.patch 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/debian/patches/03_gseal_enable_migration.patch 2010-10-28 18:56:19.000000000 +0000 @@ -0,0 +1,80 @@ +Index: lxinput/src/lxinput.c +=================================================================== +--- lxinput.orig/src/lxinput.c ++++ lxinput/src/lxinput.c +@@ -57,7 +57,7 @@ static gboolean beep = TRUE, old_beep = + static void on_mouse_accel_changed(GtkRange* range, gpointer user_data) + { + accel = (int)gtk_range_get_value(range); +- XChangePointerControl(GDK_DISPLAY(), True, False, ++ XChangePointerControl(gdk_display_get_default(), True, False, + accel, 10, 0); + } + +@@ -65,7 +65,7 @@ static void on_mouse_threshold_changed(G + { + /* threshold = 110 - sensitivity. The lower the threshold, the higher the sensitivity */ + threshold = 110 - (int)gtk_range_get_value(range); +- XChangePointerControl(GDK_DISPLAY(), False, True, ++ XChangePointerControl(gdk_display_get_default(), False, True, + 0, 10, threshold); + } + +@@ -73,7 +73,7 @@ static void on_kb_range_changed(GtkRange + { + *val = (int)gtk_range_get_value(range); + /* apply keyboard values */ +- XkbSetAutoRepeatRate(GDK_DISPLAY(), XkbUseCoreKbd, delay, interval); ++ XkbSetAutoRepeatRate(gdk_display_get_default(), XkbUseCoreKbd, delay, interval); + } + + /* This function is taken from Gnome's control-center 2.6.0.3 (gnome-settings-mouse.c) and was modified*/ +@@ -85,11 +85,11 @@ static void set_left_handed_mouse() + gint idx_1 = 0, idx_3 = 1; + + buttons = g_alloca (DEFAULT_PTR_MAP_SIZE); +- n_buttons = XGetPointerMapping (GDK_DISPLAY(), buttons, DEFAULT_PTR_MAP_SIZE); ++ n_buttons = XGetPointerMapping (GDK_DISPLAY_XDISPLAY(gdk_display_get_default()), buttons, DEFAULT_PTR_MAP_SIZE); + if (n_buttons > DEFAULT_PTR_MAP_SIZE) + { + buttons = g_alloca (n_buttons); +- n_buttons = XGetPointerMapping (GDK_DISPLAY(), buttons, n_buttons); ++ n_buttons = XGetPointerMapping (gdk_display_get_default(), buttons, n_buttons); + } + + for (i = 0; i < n_buttons; i++) +@@ -105,7 +105,7 @@ static void set_left_handed_mouse() + { + buttons[idx_1] = ((n_buttons < 3) ? 2 : 3); + buttons[idx_3] = 1; +- XSetPointerMapping (GDK_DISPLAY(), buttons, n_buttons); ++ XSetPointerMapping (gdk_display_get_default(), buttons, n_buttons); + } + } + +@@ -120,7 +120,7 @@ static void on_kb_beep_toggle(GtkToggleB + XKeyboardControl values; + beep = gtk_toggle_button_get_active(btn); + values.bell_percent = beep ? -1 : 0; +- XChangeKeyboardControl(GDK_DISPLAY(), KBBellPercent, &values); ++ XChangeKeyboardControl(gdk_display_get_default(), KBBellPercent, &values); + } + + static gboolean on_change_val(GtkRange *range, GtkScrollType scroll, +@@ -311,14 +311,14 @@ int main(int argc, char** argv) + delay = old_delay; + interval = old_interval; + beep = old_beep; +- XkbSetAutoRepeatRate(GDK_DISPLAY(), XkbUseCoreKbd, delay, interval); ++ XkbSetAutoRepeatRate(gdk_display_get_default(), XkbUseCoreKbd, delay, interval); + /* FIXME: beep? */ + + /* mouse */ + accel = old_accel; + threshold = old_threshold; + left_handed = old_left_handed; +- XChangePointerControl(GDK_DISPLAY(), True, True, ++ XChangePointerControl(gdk_display_get_default(), True, True, + accel, 10, threshold); + set_left_handed_mouse(); + } diff -Nru lxinput-0.1.1/debian/patches/80_translations.patch lxinput-0.3.0/debian/patches/80_translations.patch --- lxinput-0.1.1/debian/patches/80_translations.patch 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/debian/patches/80_translations.patch 2011-02-26 19:04:12.000000000 +0000 @@ -0,0 +1,1593 @@ +Description: Upstream changes introduced in version 0.3.0-0ubuntu4~ppa1 + This patch has been created by dpkg-source during the package build. + Here's the last changelog entry, hopefully it gives details on why + those changes were made: + . + lxinput (0.3.0-0ubuntu4~ppa1) UNRELEASED; urgency=low + . + * + . + The person named in the Author field signed this changelog entry. +Author: Julien Lavergne + +--- +The information above should follow the Patch Tagging Guidelines, please +checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here +are templates for supplementary fields that you might want to add: + +Origin: , +Bug: +Bug-Debian: http://bugs.debian.org/ +Bug-Ubuntu: https://launchpad.net/bugs/ +Forwarded: +Reviewed-By: +Last-Update: + +--- lxinput-0.3.0.orig/po/zh_CN.po ++++ lxinput-0.3.0/po/zh_CN.po +@@ -3,107 +3,109 @@ + # 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: \n" + "POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +-"Last-Translator: FULL NAME \n" ++"PO-Revision-Date: 2010-10-15 13:42+0200\n" ++"Last-Translator: Yinghua_Wang \n" + "Language-Team: LANGUAGE \n" ++"Language: zh_CN\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: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +-msgstr "" ++msgstr "字符重复" + + #: ../data/lxinput.glade.h:2 + msgid "Motion" +-msgstr "" ++msgstr "动作" + + #: ../data/lxinput.glade.h:3 + msgid "Acceleration:" +-msgstr "" ++msgstr "加速:" + + #: ../data/lxinput.glade.h:4 + msgid "Beep when there is an error of keyboard input" +-msgstr "" ++msgstr "在键盘输入有错误时发声" + + #: ../data/lxinput.glade.h:5 + msgid "Delay before each key starts repeating" +-msgstr "" ++msgstr "在按键开始重复前的延时" + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +-msgstr "" ++msgstr "快" + + #: ../data/lxinput.glade.h:7 + msgid "High" +-msgstr "" ++msgstr "高" + + #: ../data/lxinput.glade.h:8 + msgid "Input Device Preferences" +-msgstr "" ++msgstr "输入设备偏好设置" + + #: ../data/lxinput.glade.h:9 + msgid "Interval between each key repeat" +-msgstr "" ++msgstr "按键重复间隔" + + #: ../data/lxinput.glade.h:10 + msgid "Keyboard" +-msgstr "" ++msgstr "键盘" + + #: ../data/lxinput.glade.h:11 + msgid "Left handed (Swap left and right mouse buttons)" +-msgstr "" ++msgstr "左手习惯(切换左右鼠标键)" + + #: ../data/lxinput.glade.h:12 + msgid "Long" +-msgstr "" ++msgstr "长" + + #: ../data/lxinput.glade.h:13 + msgid "Low" +-msgstr "" ++msgstr "低" + + #: ../data/lxinput.glade.h:14 + msgid "Mouse" +-msgstr "" ++msgstr "鼠标" + + #: ../data/lxinput.glade.h:15 + msgid "Repeat delay:" +-msgstr "" ++msgstr "重复延迟:" + + #: ../data/lxinput.glade.h:16 + msgid "Repeat interval:" +-msgstr "" ++msgstr "重复间隔:" + + #: ../data/lxinput.glade.h:17 + msgid "Sensitivity:" +-msgstr "" ++msgstr "敏感度:" + + #: ../data/lxinput.glade.h:18 + msgid "Short" +-msgstr "" ++msgstr "短" + + #: ../data/lxinput.glade.h:19 + msgid "Slow" +-msgstr "" ++msgstr "慢" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "" ++msgstr "触摸板" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "" ++msgstr "在下面的框中输入来测试您的键盘设置" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "配置键盘、鼠标和其他输入设备" + + #: ../data/lxinput.desktop.in.h:2 + msgid "Keyboard and Mouse" +-msgstr "" ++msgstr "键盘和鼠标" +--- lxinput-0.3.0.orig/po/tr.po ++++ lxinput-0.3.0/po/tr.po +@@ -7,9 +7,9 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: 2010-01-26 04:19+0200\n" +-"Last-Translator: Kılıç \n" ++"POT-Creation-Date: 2010-09-05 05:43+0000\n" ++"PO-Revision-Date: 2010-09-05 23:50+0200\n" ++"Last-Translator: Mehmet Gülmen \n" + "Language-Team: LANGUAGE \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" +@@ -20,7 +20,7 @@ msgstr "" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +-msgstr "Birem Yineleme" ++msgstr "Karakter Yineleme" + + #: ../data/lxinput.glade.h:2 + msgid "Motion" +@@ -28,11 +28,11 @@ msgstr "Devinim" + + #: ../data/lxinput.glade.h:3 + msgid "Acceleration:" +-msgstr "Hızlanma:" ++msgstr "Hız:" + + #: ../data/lxinput.glade.h:4 + msgid "Beep when there is an error of keyboard input" +-msgstr "Tuştakımı girdisinde bir yanlışlık olduğunda sesle uyar" ++msgstr "Klavye girdisinde bir yanlışlık olduğunda sesle uyar" + + #: ../data/lxinput.glade.h:5 + msgid "Delay before each key starts repeating" +@@ -56,7 +56,7 @@ msgstr "Herbir tuş yinelemesi arasında + + #: ../data/lxinput.glade.h:10 + msgid "Keyboard" +-msgstr "Tuştakımı" ++msgstr "Klavye" + + #: ../data/lxinput.glade.h:11 + msgid "Left handed (Swap left and right mouse buttons)" +@@ -96,21 +96,20 @@ msgstr "Yavaş" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "Dokunut" ++msgstr "Touchpad" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "Tuştakımı ayarlarınızı sınamak için aşağıdaki kutuya birşeyler yazın" ++msgstr "Klavye ayarlarınızı sınamak için aşağıdaki kutuya birşeyler yazın" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Klavye, fare ve diğer girdi aygıtlarını yapılandırın" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "Tuştakımı" ++msgstr "Klavye ve Fare" + +-#, fuzzy + #~ msgid "input-keyboard" + #~ msgstr "Tuştakımı" ++ +--- lxinput-0.3.0.orig/po/fi.po ++++ lxinput-0.3.0/po/fi.po +@@ -2,13 +2,12 @@ + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# +-#, fuzzy ++# + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-24 01:27+0800\n" ++"POT-Creation-Date: 2010-11-26 06:54+0000\n" + "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" + "Last-Translator: FULL NAME \n" + "Language-Team: LANGUAGE \n" +@@ -26,84 +25,86 @@ msgstr "" + + #: ../data/lxinput.glade.h:3 + msgid "Acceleration:" +-msgstr "" ++msgstr "Kiihtyvyys:" + + #: ../data/lxinput.glade.h:4 + msgid "Beep when there is an error of keyboard input" +-msgstr "" ++msgstr "Piippaa kun näppäinmistön näppäilyssä tapahtuu virhe" + + #: ../data/lxinput.glade.h:5 + msgid "Delay before each key starts repeating" +-msgstr "" ++msgstr "Odota hetki ennen kuin näppäintä aletaan toistamaan" + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +-msgstr "" ++msgstr "Nopea" + + #: ../data/lxinput.glade.h:7 + msgid "High" +-msgstr "" ++msgstr "Korkea" + + #: ../data/lxinput.glade.h:8 + msgid "Input Device Preferences" +-msgstr "" ++msgstr "Syötelaitteen ominaisuudet" + + #: ../data/lxinput.glade.h:9 + msgid "Interval between each key repeat" +-msgstr "" ++msgstr "Näppäimen toiston viive" + + #: ../data/lxinput.glade.h:10 + msgid "Keyboard" +-msgstr "" ++msgstr "Näppäinmistö" + + #: ../data/lxinput.glade.h:11 + msgid "Left handed (Swap left and right mouse buttons)" +-msgstr "" ++msgstr "Vasenkätinen (Vaihda oikean ja vesamman hiiren napin paikkoja)" + + #: ../data/lxinput.glade.h:12 + msgid "Long" +-msgstr "" ++msgstr "Pitkä" + + #: ../data/lxinput.glade.h:13 + msgid "Low" +-msgstr "" ++msgstr "Matala" + + #: ../data/lxinput.glade.h:14 + msgid "Mouse" +-msgstr "" ++msgstr "Hiiri" + + #: ../data/lxinput.glade.h:15 ++#, fuzzy + msgid "Repeat delay:" +-msgstr "" ++msgstr "Toiston aloituksen viive:" + + #: ../data/lxinput.glade.h:16 ++#, fuzzy + msgid "Repeat interval:" +-msgstr "" ++msgstr "Toiston viive:" + + #: ../data/lxinput.glade.h:17 + msgid "Sensitivity:" +-msgstr "" ++msgstr "Herkkyys:" + + #: ../data/lxinput.glade.h:18 + msgid "Short" +-msgstr "" ++msgstr "Lyhyt" + + #: ../data/lxinput.glade.h:19 + msgid "Slow" +-msgstr "" ++msgstr "Hidas" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "" ++msgstr "Kosketuslevy" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "" ++msgstr "Voit kokeilla näppäinmistön asetuksia alla olevaan laatikkoon" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Muokkaa näppäinmistön, hiiren ja muiden syöttölaitteiden asetuksia" + + #: ../data/lxinput.desktop.in.h:2 + msgid "Keyboard and Mouse" +-msgstr "" ++msgstr "Näppäinmistö ja hiiri" +--- lxinput-0.3.0.orig/po/sl.po ++++ lxinput-0.3.0/po/sl.po +@@ -8,20 +8,22 @@ msgstr "" + "Project-Id-Version: LXInput\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-07-03 07:38+0000\n" +-"PO-Revision-Date: 2009-06-28 16:44+0100\n" +-"Last-Translator: Matej Gačnik \n" ++"PO-Revision-Date: 2011-02-14 15:08+0200\n" ++"Last-Translator: Klemen \n" + "Language-Team: Slovenian \n" ++"Language: sl\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" ++"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " ++"n%100==4 ? 2 : 3);\n" ++"X-Generator: Pootle 2.0.5\n" + "X-Poedit-Language: slovenian\n" + "X-Poedit-Country: SLOVENIA\n" +-"X-Generator: Pootle 1.1.0\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +-msgstr "Ponavljanje znaka" ++msgstr "Ponavljanje znakov" + + #: ../data/lxinput.glade.h:2 + msgid "Motion" +@@ -33,11 +35,11 @@ msgstr "Pospeševanje:" + + #: ../data/lxinput.glade.h:4 + msgid "Beep when there is an error of keyboard input" +-msgstr "Sproži zvočno opozorilo, če pride do napake pri tipkovniškem vnosu" ++msgstr "Sproži zvočno opozorilo, ko pride do napake pri vnosu s tipkovnico" + + #: ../data/lxinput.glade.h:5 + msgid "Delay before each key starts repeating" +-msgstr "Zakasnitev, po preteku katere se znaki začno ponavljati" ++msgstr "Zakasnitev, po preteku katere se tipke začno ponavljati" + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +@@ -49,11 +51,11 @@ msgstr "Visoko" + + #: ../data/lxinput.glade.h:8 + msgid "Input Device Preferences" +-msgstr "Nastavitve vhodne naprave" ++msgstr "Nastavitve vnosnih naprav" + + #: ../data/lxinput.glade.h:9 + msgid "Interval between each key repeat" +-msgstr "Interval med vsako posamezno ponavitvijo znaka" ++msgstr "Časovni razmik med vsako posamezno ponovitvijo tipk" + + #: ../data/lxinput.glade.h:10 + msgid "Keyboard" +@@ -73,7 +75,7 @@ msgstr "Nizko" + + #: ../data/lxinput.glade.h:14 + msgid "Mouse" +-msgstr "Miš" ++msgstr "Miška" + + #: ../data/lxinput.glade.h:15 + msgid "Repeat delay:" +@@ -81,7 +83,7 @@ msgstr "Zakasnitev ponavljanja:" + + #: ../data/lxinput.glade.h:16 + msgid "Repeat interval:" +-msgstr "Interval ponavljanja:" ++msgstr "Hitrost ponavljanja:" + + #: ../data/lxinput.glade.h:17 + msgid "Sensitivity:" +@@ -101,11 +103,11 @@ msgstr "Sledilna ploščica" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "Testiraj nastavitve tipkovnice tako, da vtipkaš besedilo v pričujoče besedilno polje" ++msgstr "Za preizkus nastavitev vtipkajte besedilo:" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "Nastavitve tipkovnice, miške in drugih vhodnih enot" ++msgstr "Nastavite tipkovnico, miško in druge vnosne naprave" + + #: ../data/lxinput.desktop.in.h:2 + msgid "Keyboard and Mouse" +--- /dev/null ++++ lxinput-0.3.0/po/lg.po +@@ -0,0 +1,116 @@ ++# This is the Luganda translation of lxinput. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the lxinput package. ++# Kizito Birabwa , 2010. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: PACKAGE VERSION\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2010-08-03 11:52+0200\n" ++"PO-Revision-Date: 2010-11-06 15:07+0000\n" ++"Last-Translator: kizito \n" ++"Language-Team: Luganda \n" ++"Language: lg\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Pootle 2.0.5\n" ++ ++#: ../data/lxinput.glade.h:1 ++msgid "Character Repeat" ++msgstr "Obwangu bw'enziriŋŋana y'okuteekawo bubonero" ++ ++#: ../data/lxinput.glade.h:2 ++msgid "Motion" ++msgstr "Entambula" ++ ++#: ../data/lxinput.glade.h:3 ++msgid "Acceleration:" ++msgstr "Enyanguwa y'akasonga:" ++ ++#: ../data/lxinput.glade.h:4 ++msgid "Beep when there is an error of keyboard input" ++msgstr "Akade kavuge nga wazzewo kiremya mu kuwandisa mapeesa" ++ ++#: ../data/lxinput.glade.h:5 ++msgid "Delay before each key starts repeating" ++msgstr "Akasirikiriro akabawo eppeesa liryoke liddemu akabonero" ++ ++#: ../data/lxinput.glade.h:6 ++msgid "Fast" ++msgstr "Mangu" ++ ++#: ../data/lxinput.glade.h:7 ++msgid "High" ++msgstr "Kungi" ++ ++#: ../data/lxinput.glade.h:8 ++msgid "Input Device Preferences" ++msgstr "Nteekateeka z'ebikozesebwa okuyingiza bintu mu kompyuta" ++ ++#: ../data/lxinput.glade.h:9 ++msgid "Interval between each key repeat" ++msgstr "" ++"Akaseera akayitawo eppeesa liryoke liddemu okussawo akabonero nga " ++"erinwyezezza wansi" ++ ++#: ../data/lxinput.glade.h:10 ++msgid "Keyboard" ++msgstr "Mapeesa agawandisibwa" ++ ++#: ../data/lxinput.glade.h:11 ++msgid "Left handed (Swap left and right mouse buttons)" ++msgstr "" ++"Nkozesa kkono (wanyisa enkola y'amapeesa g'akasongesebwa aga kkono ne ddyo)" ++ ++#: ../data/lxinput.glade.h:12 ++msgid "Long" ++msgstr "Kawanvu" ++ ++#: ../data/lxinput.glade.h:13 ++msgid "Low" ++msgstr "Kutono" ++ ++#: ../data/lxinput.glade.h:14 ++msgid "Mouse" ++msgstr "Akasongesebwa" ++ ++#: ../data/lxinput.glade.h:15 ++msgid "Repeat delay:" ++msgstr "Akasirikiriro:" ++ ++#: ../data/lxinput.glade.h:16 ++msgid "Repeat interval:" ++msgstr "Akaseera wakati w'enziriŋano:" ++ ++#: ../data/lxinput.glade.h:17 ++msgid "Sensitivity:" ++msgstr "Okuwulira kw'akasongesebwa:" ++ ++#: ../data/lxinput.glade.h:18 ++msgid "Short" ++msgstr "Kampi" ++ ++#: ../data/lxinput.glade.h:19 ++msgid "Slow" ++msgstr "Mpola" ++ ++#: ../data/lxinput.glade.h:20 ++msgid "Touch Pad" ++msgstr "Kasongesebwa k'osiisiriza" ++ ++#: ../data/lxinput.glade.h:21 ++msgid "Type in the following box to test your keyboard settings" ++msgstr "Wandika wano olabe by'otegese bwe bikola" ++ ++#: ../data/lxinput.desktop.in.h:1 ++msgid "Configure keyboard, mouse, and other input devices" ++msgstr "" ++"Teekateeka enkola y'amapeesa agawandisibwa, akasongesebwa n'ebirala " ++"ebikozesebwa okuyingiza bintu mu kompyuta" ++ ++#: ../data/lxinput.desktop.in.h:2 ++msgid "Keyboard and Mouse" ++msgstr "Mapeesa agawandisibwa n'akasongesebwa" +--- lxinput-0.3.0.orig/po/id.po ++++ lxinput-0.3.0/po/id.po +@@ -1,13 +1,13 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# Rahman Yusri Aftian , 2009. +-# ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# Rahman Yusri Aftian , 2009. ++# + msgid "" + msgstr "" + "Project-Id-Version: lxinput-id\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-24 01:27+0800\n" ++"POT-Creation-Date: 2010-08-25 05:40+0000\n" + "PO-Revision-Date: 2009-05-23 03:54+0200\n" + "Last-Translator: Rahman Yusri Aftian \n" + "Language-Team: LANGUAGE \n" +@@ -102,13 +102,11 @@ msgstr "Tipe yang berikut untuk menguji + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Tata papan tik, tetikus, dan perangkat masukan lain" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "Papan Ketik" ++msgstr "Papan Ketik dan Tetikus" + +-#, fuzzy + #~ msgid "input-keyboard" + #~ msgstr "Papan Ketik" +--- lxinput-0.3.0.orig/po/nl.po ++++ lxinput-0.3.0/po/nl.po +@@ -8,13 +8,15 @@ msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: 2009-12-05 14:29+0100\n" +-"Last-Translator: Tim Van den Eynde \n" ++"PO-Revision-Date: 2010-08-30 11:11+0200\n" ++"Last-Translator: Sander \n" + "Language-Team: LANGUAGE \n" ++"Language: nl\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: Pootle 1.1.0\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -102,12 +104,11 @@ msgstr "Tiep in onderstaand kader om uw + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Instellen van toetsenbord, muis, en andere invoerapparaten" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "Toetsenbord" ++msgstr "Toetsenbord en Muis" + + #, fuzzy + #~ msgid "input-keyboard" +--- lxinput-0.3.0.orig/po/pt_BR.po ++++ lxinput-0.3.0/po/pt_BR.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: lxinput\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-06-20 05:45+0000\n" ++"POT-Creation-Date: 2010-10-15 06:03+0000\n" + "PO-Revision-Date: 2009-05-14 12:42-0300\n" + "Last-Translator: Thiago Avelino \n" + "Language-Team: Brazilian Portuguese \n" +@@ -38,11 +38,11 @@ msgstr "Atraso antes que cada tecla come + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +-msgstr "Rápido" ++msgstr "Rápida" + + #: ../data/lxinput.glade.h:7 + msgid "High" +-msgstr "Alto" ++msgstr "Alta" + + #: ../data/lxinput.glade.h:8 + msgid "Input Device Preferences" +@@ -66,7 +66,7 @@ msgstr "Longo" + + #: ../data/lxinput.glade.h:13 + msgid "Low" +-msgstr "Baixo" ++msgstr "Baixa" + + #: ../data/lxinput.glade.h:14 + msgid "Mouse" +@@ -90,15 +90,15 @@ msgstr "Curto" + + #: ../data/lxinput.glade.h:19 + msgid "Slow" +-msgstr "Lento" ++msgstr "Lenta" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "Touch Pad" ++msgstr "Touchpad" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "Digite no seguinte campo para testar a configuração do teclado" ++msgstr "Digite no campo abaixo para testar a configuração do teclado" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +--- lxinput-0.3.0.orig/po/nb.po ++++ lxinput-0.3.0/po/nb.po +@@ -3,107 +3,109 @@ + # 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: \n" + "POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +-"Last-Translator: FULL NAME \n" ++"PO-Revision-Date: 2010-12-10 07:27+0200\n" ++"Last-Translator: Sam \n" + "Language-Team: LANGUAGE \n" ++"Language: nb\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +-msgstr "" ++msgstr "Tegnrepetisjon" + + #: ../data/lxinput.glade.h:2 + msgid "Motion" +-msgstr "" ++msgstr "Bevegelse" + + #: ../data/lxinput.glade.h:3 + msgid "Acceleration:" +-msgstr "" ++msgstr "Akselerasjon:" + + #: ../data/lxinput.glade.h:4 + msgid "Beep when there is an error of keyboard input" +-msgstr "" ++msgstr "Gi lydsignal ved feiltasting" + + #: ../data/lxinput.glade.h:5 + msgid "Delay before each key starts repeating" +-msgstr "" ++msgstr "Forsinkelse før tastetrykk gjentar seg" + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +-msgstr "" ++msgstr "Rask" + + #: ../data/lxinput.glade.h:7 + msgid "High" +-msgstr "" ++msgstr "Høy" + + #: ../data/lxinput.glade.h:8 + msgid "Input Device Preferences" +-msgstr "" ++msgstr "Innstillinger for inndataenheter" + + #: ../data/lxinput.glade.h:9 + msgid "Interval between each key repeat" +-msgstr "" ++msgstr "Intervall mellom hver tastegjentagelse" + + #: ../data/lxinput.glade.h:10 + msgid "Keyboard" +-msgstr "" ++msgstr "Tastatur" + + #: ../data/lxinput.glade.h:11 + msgid "Left handed (Swap left and right mouse buttons)" +-msgstr "" ++msgstr "Venstrehendt (bytter om venstre og høyre museknapp)" + + #: ../data/lxinput.glade.h:12 + msgid "Long" +-msgstr "" ++msgstr "Lang" + + #: ../data/lxinput.glade.h:13 + msgid "Low" +-msgstr "" ++msgstr "Lav" + + #: ../data/lxinput.glade.h:14 + msgid "Mouse" +-msgstr "" ++msgstr "Mus" + + #: ../data/lxinput.glade.h:15 + msgid "Repeat delay:" +-msgstr "" ++msgstr "Gjentagelsesforsinkelse:" + + #: ../data/lxinput.glade.h:16 + msgid "Repeat interval:" +-msgstr "" ++msgstr "Gjentagelsesinterval:" + + #: ../data/lxinput.glade.h:17 + msgid "Sensitivity:" +-msgstr "" ++msgstr "Følsomhet:" + + #: ../data/lxinput.glade.h:18 + msgid "Short" +-msgstr "" ++msgstr "Kort" + + #: ../data/lxinput.glade.h:19 + msgid "Slow" +-msgstr "" ++msgstr "Sakte" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "" ++msgstr "Styreplate" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "" ++msgstr "Skriv her for å prøve tastaturinnstillingene" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Innstillinger for tastatur, mus og andre inndataenheter" + + #: ../data/lxinput.desktop.in.h:2 + msgid "Keyboard and Mouse" +-msgstr "" ++msgstr "Tastatur og mus" +--- lxinput-0.3.0.orig/po/sr@latin.po ++++ lxinput-0.3.0/po/sr@latin.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-28 04:53+0000\n" ++"POT-Creation-Date: 2010-08-17 05:38+0000\n" + "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" + "Last-Translator: FULL NAME \n" + "Language-Team: LANGUAGE \n" +@@ -32,9 +32,8 @@ msgid "Beep when there is an error of ke + msgstr "Pusti zvuk na greške kod unosa sa tatature" + + #: ../data/lxinput.glade.h:5 +-#, fuzzy + msgid "Delay before each key starts repeating" +-msgstr "Kašnjenje pre ponavljanja svakog tastera" ++msgstr "Kašnjenje pre početka ponavljanja svakog tastera" + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +--- lxinput-0.3.0.orig/po/fa.po ++++ lxinput-0.3.0/po/fa.po +@@ -2,19 +2,19 @@ + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# ++# + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-24 01:27+0800\n" ++"POT-Creation-Date: 2010-08-16 05:41+0000\n" + "PO-Revision-Date: 2010-07-06 13:10+0200\n" + "Last-Translator: Hamidreza \n" + "Language-Team: LANGUAGE \n" +-"Language: fa\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Language: fa\n" + "Plural-Forms: nplurals=1; plural=0;\n" + "X-Generator: Pootle 2.0.1\n" + +@@ -107,10 +107,8 @@ msgid "Configure keyboard, mouse, and ot + msgstr "پیکربندی صفحه کلید، موشواره و دیگر دستگاه‌های ورودی" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "صفحه کلید" ++msgstr "صفحه کلید و موشی" + +-#, fuzzy + #~ msgid "input-keyboard" + #~ msgstr "صفحه کلید" +--- lxinput-0.3.0.orig/po/hr.po ++++ lxinput-0.3.0/po/hr.po +@@ -8,12 +8,16 @@ msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-05-27 04:20+0000\n" +-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +-"Last-Translator: FULL NAME \n" ++"PO-Revision-Date: 2010-12-30 23:43+0200\n" ++"Last-Translator: zvacet \n" + "Language-Team: LANGUAGE \n" ++"Language: hr\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" ++"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -49,7 +53,7 @@ msgstr "Postavke ulaznog uređaja" + + #: ../data/lxinput.glade.h:9 + msgid "Interval between each key repeat" +-msgstr "Interval između ponavljanja svake tipke " ++msgstr "Interval između ponavljanja svake tipke" + + #: ../data/lxinput.glade.h:10 + msgid "Keyboard" +--- lxinput-0.3.0.orig/po/af.po ++++ lxinput-0.3.0/po/af.po +@@ -8,15 +8,15 @@ msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: 2010-01-14 11:43+0200\n" +-"Last-Translator: F Wolff \n" ++"PO-Revision-Date: 2010-09-01 23:39+0200\n" ++"Last-Translator: F \n" + "Language-Team: LANGUAGE \n" ++"Language: af\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: af\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Pootle 2.0.0\n" ++"X-Generator: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -96,7 +96,7 @@ msgstr "Stadig" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "" ++msgstr "Raakblad" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +@@ -104,12 +104,11 @@ msgstr "Tik in die volgende boksie om di + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Stel sleutelbord, muis en ander toevertoestelle op" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "Sleutelbord" ++msgstr "Sleutelbord en muis" + + #, fuzzy + #~ msgid "input-keyboard" +--- lxinput-0.3.0.orig/po/lt.po ++++ lxinput-0.3.0/po/lt.po +@@ -8,13 +8,16 @@ msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-06-27 05:34+0000\n" +-"PO-Revision-Date: 2009-05-21 18:12+0200\n" +-"Last-Translator: Julius Vitkauskas \n" ++"PO-Revision-Date: 2011-01-04 23:12+0200\n" ++"Last-Translator: Julius \n" + "Language-Team: LANGUAGE \n" ++"Language: lt\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: Pootle 1.1.0\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" ++"100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -98,7 +101,7 @@ msgstr "Touchpad" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "Čia galite įvesti tekstą ir taip išbandyti jūsų klaviatūros nustatymams:" ++msgstr "Čia galite įvesti tekstą ir taip išbandyti jūsų klaviatūros nustatymams" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +--- lxinput-0.3.0.orig/po/LINGUAS ++++ lxinput-0.3.0/po/LINGUAS +@@ -1,6 +1,7 @@ + af + ar + ast ++be + bg + bn + bn_IN +@@ -27,6 +28,7 @@ id + it + ja + ko ++lg + lt + ml + ms +--- lxinput-0.3.0.orig/po/pl.po ++++ lxinput-0.3.0/po/pl.po +@@ -1,24 +1,23 @@ +-# translation of pl.po to Polish +-# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# ++# Polish translation for lxinput package ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the lxinput package. + # Artur Kruszewski , 2009. ++# Piotr Sokół , 2010, 2011. ++# + msgid "" + msgstr "" +-"Project-Id-Version: PACKAGE VERSION\n" +-"Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: 2010-05-31 17:06+0200\n" +-"Last-Translator: Artur \n" +-"Language-Team: Artur Kruszewski \n" +-"Language: pl\n" ++"Project-Id-Version: lxinput\n" ++"Report-Msgid-Bugs-To: http://sourceforge.net/projects/lxde/support\n" ++"POT-Creation-Date: 2010-11-26 06:54+0000\n" ++"PO-Revision-Date: 2011-02-19 20:08+0100\n" ++"Last-Translator: Piotr Sokół \n" ++"Language-Team: Polish <>\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +-"|| n%100>=20) ? 1 : 2);\n" +-"X-Generator: Pootle 2.0.1\n" ++"Language: pl\n" ++"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n" ++"%100<10 || n%100>=20)) ? 1 : 2));\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -34,15 +33,15 @@ msgstr "Przyspieszenie:" + + #: ../data/lxinput.glade.h:4 + msgid "Beep when there is an error of keyboard input" +-msgstr "Ostrzeż sygnałem dźwiękowym w przypadku błędu wejścia klawiatury" ++msgstr "Ostrzeganie sygnałem dźwiękowym w przypadku błędu wejścia klawiatury" + + #: ../data/lxinput.glade.h:5 + msgid "Delay before each key starts repeating" +-msgstr "Czas opóźnienia przed rozpoczęciem powtarzania danego znaku" ++msgstr "Określa czas opóźnienia przed rozpoczęciem powtarzania danego znaku" + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +-msgstr "Szybko" ++msgstr "Duże" + + #: ../data/lxinput.glade.h:7 + msgid "High" +@@ -50,11 +49,11 @@ msgstr "Wysoka" + + #: ../data/lxinput.glade.h:8 + msgid "Input Device Preferences" +-msgstr "Właściwości urządzeń wejściowych" ++msgstr "Urządzenia wejściowe" + + #: ../data/lxinput.glade.h:9 + msgid "Interval between each key repeat" +-msgstr "Przerwa między kolejnymi powtórzeniami znaku" ++msgstr "Określa czas przerwy pomiędzy kolejnymi powtórzeniami znaku" + + #: ../data/lxinput.glade.h:10 + msgid "Keyboard" +@@ -62,8 +61,7 @@ msgstr "Klawiatura" + + #: ../data/lxinput.glade.h:11 + msgid "Left handed (Swap left and right mouse buttons)" +-msgstr "" +-"Tryb dla leworęcznych (Zamienia funkcje prawego i lewego przycisku myszy)" ++msgstr "Zamienienie funkcji prawego i lewego przycisku myszy" + + #: ../data/lxinput.glade.h:12 + msgid "Long" +@@ -95,24 +93,22 @@ msgstr "Krótki" + + #: ../data/lxinput.glade.h:19 + msgid "Slow" +-msgstr "Wolno" ++msgstr "Małe" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "Panel dotykowy (touchpad)" ++msgstr "Gładzik" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +-msgstr "Wpisz tekst w następujące pole aby przetestować ustawienia klawiatury" ++msgstr "" ++"Proszę wprowadzić tekst w poniższe pole, aby przetestować ustawienia " ++"klawiatury:" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "Skonfiguruj klawiaturę, mysz i inne urządzenia wejściowe" ++msgstr "Konfiguruje klawiaturę, mysz i inne urządzenia wejściowe" + + #: ../data/lxinput.desktop.in.h:2 + msgid "Keyboard and Mouse" + msgstr "Klawiatura i mysz" +- +-#, fuzzy +-#~ msgid "input-keyboard" +-#~ msgstr "Klawiatura" +--- lxinput-0.3.0.orig/po/pt.po ++++ lxinput-0.3.0/po/pt.po +@@ -1,15 +1,15 @@ + # Portuguese translation of lxinput + # Copyright (C) 2009, THE lxinput COPYRIGHT HOLDER + # This file is distributed under the same license as the lxinput package +-# Sérgio Marques (smarquespt@gmail.com), 2009 +-# ++# Sérgio Marques , 2009-2010. ++# Adaptado ao acordo ortográfico de 1990 + msgid "" + msgstr "" + "Project-Id-Version: lxinput\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-05-31 04:48+0000\n" +-"PO-Revision-Date: 2010-02-13 19:31-0000\n" +-"Last-Translator: Sergio Marques \n" ++"PO-Revision-Date: 2010-09-20 16:07-0000\n" ++"Last-Translator: Sérgio Marques \n" + "Language-Team: Portuguese\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" +@@ -20,7 +20,7 @@ msgstr "" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +-msgstr "Repita Caractere" ++msgstr "Repita o caractere" + + #: ../data/lxinput.glade.h:2 + msgid "Motion" +@@ -48,7 +48,7 @@ msgstr "Alta" + + #: ../data/lxinput.glade.h:8 + msgid "Input Device Preferences" +-msgstr "Preferências de Dispositivos" ++msgstr "Preferências de dispositivos" + + #: ../data/lxinput.glade.h:9 + msgid "Interval between each key repeat" +@@ -60,7 +60,7 @@ msgstr "Teclado" + + #: ../data/lxinput.glade.h:11 + msgid "Left handed (Swap left and right mouse buttons)" +-msgstr "Canhoto (Trocar botões esquerdo e direito do rato)" ++msgstr "Canhoto (trocar botões esquerdo e direito do rato)" + + #: ../data/lxinput.glade.h:12 + msgid "Long" +@@ -96,7 +96,7 @@ msgstr "Lenta" + + #: ../data/lxinput.glade.h:20 + msgid "Touch Pad" +-msgstr "Touch Pad" ++msgstr "Painel de toque" + + #: ../data/lxinput.glade.h:21 + msgid "Type in the following box to test your keyboard settings" +@@ -108,7 +108,5 @@ msgstr "Configurar teclado, rato e outro + + #: ../data/lxinput.desktop.in.h:2 + msgid "Keyboard and Mouse" +-msgstr "Teclado e Rato" ++msgstr "Teclado e rato" + +-#~ msgid "input-keyboard" +-#~ msgstr "Teclado" +--- /dev/null ++++ lxinput-0.3.0/po/be.po +@@ -0,0 +1,112 @@ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# FIRST AUTHOR , YEAR. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: PACKAGE VERSION\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2010-08-03 11:52+0200\n" ++"PO-Revision-Date: 2010-08-25 14:29+0200\n" ++"Last-Translator: Анік \n" ++"Language-Team: LANGUAGE \n" ++"Language: be\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" ++"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Pootle 2.0.5\n" ++ ++#: ../data/lxinput.glade.h:1 ++msgid "Character Repeat" ++msgstr "Паўтарэнне сімвалаў" ++ ++#: ../data/lxinput.glade.h:2 ++msgid "Motion" ++msgstr "Рух" ++ ++#: ../data/lxinput.glade.h:3 ++msgid "Acceleration:" ++msgstr "Паскарэнне:" ++ ++#: ../data/lxinput.glade.h:4 ++msgid "Beep when there is an error of keyboard input" ++msgstr "Гукавы сігнал, калі ёсць памылкі ўводу даных з клавіятуры" ++ ++#: ../data/lxinput.glade.h:5 ++msgid "Delay before each key starts repeating" ++msgstr "Затрымка перад паўтарэннем кожнай клавішы" ++ ++#: ../data/lxinput.glade.h:6 ++msgid "Fast" ++msgstr "Хутка" ++ ++#: ../data/lxinput.glade.h:7 ++msgid "High" ++msgstr "Высока" ++ ++#: ../data/lxinput.glade.h:8 ++msgid "Input Device Preferences" ++msgstr "Налады прылады ўводу" ++ ++#: ../data/lxinput.glade.h:9 ++msgid "Interval between each key repeat" ++msgstr "Інтэрвал паміж паўтарэннем кожнай клавішы" ++ ++#: ../data/lxinput.glade.h:10 ++msgid "Keyboard" ++msgstr "Клавіятура" ++ ++#: ../data/lxinput.glade.h:11 ++msgid "Left handed (Swap left and right mouse buttons)" ++msgstr "Для ляўшэй (Змяніць дзеянні левай і правай кнопак мышы)" ++ ++#: ../data/lxinput.glade.h:12 ++msgid "Long" ++msgstr "Доўга" ++ ++#: ../data/lxinput.glade.h:13 ++msgid "Low" ++msgstr "Нізка" ++ ++#: ../data/lxinput.glade.h:14 ++msgid "Mouse" ++msgstr "Мыш" ++ ++#: ../data/lxinput.glade.h:15 ++msgid "Repeat delay:" ++msgstr "Затрымка паўтарэння:" ++ ++#: ../data/lxinput.glade.h:16 ++msgid "Repeat interval:" ++msgstr "Інтэрвал паўтарэння:" ++ ++#: ../data/lxinput.glade.h:17 ++msgid "Sensitivity:" ++msgstr "Адчувальнасць:" ++ ++#: ../data/lxinput.glade.h:18 ++msgid "Short" ++msgstr "Каратка" ++ ++#: ../data/lxinput.glade.h:19 ++msgid "Slow" ++msgstr "Павольна" ++ ++#: ../data/lxinput.glade.h:20 ++msgid "Touch Pad" ++msgstr "Тачпад" ++ ++#: ../data/lxinput.glade.h:21 ++msgid "Type in the following box to test your keyboard settings" ++msgstr "Увядзіце тэкст у гэтым полі для праверкі вашых налад клавіятуры" ++ ++#: ../data/lxinput.desktop.in.h:1 ++msgid "Configure keyboard, mouse, and other input devices" ++msgstr "Наладзіць клавіятуру, мыш і іншыя прылады ўводу" ++ ++#: ../data/lxinput.desktop.in.h:2 ++msgid "Keyboard and Mouse" ++msgstr "Клавіятура і мыш" +--- lxinput-0.3.0.orig/po/gl.po ++++ lxinput-0.3.0/po/gl.po +@@ -2,12 +2,12 @@ + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# ++# + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-24 01:27+0800\n" ++"POT-Creation-Date: 2010-09-03 05:42+0000\n" + "PO-Revision-Date: 2009-10-27 15:17+0100\n" + "Last-Translator: Indalecio Freiría Santos \n" + "Language-Team: Proxecto Trasno \n" +@@ -102,13 +102,11 @@ msgstr "Teclee no seguinte cadro para co + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Configurar o teclado, o rato e outros dispositivos de entrada" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "Teclado" ++msgstr "Teclado e rato" + +-#, fuzzy + #~ msgid "input-keyboard" + #~ msgstr "Teclado" +--- lxinput-0.3.0.orig/po/cs.po ++++ lxinput-0.3.0/po/cs.po +@@ -2,12 +2,12 @@ + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# ++# + msgid "" + msgstr "" + "Project-Id-Version: lxinput\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-24 01:27+0800\n" ++"POT-Creation-Date: 2010-11-01 10:38+0000\n" + "PO-Revision-Date: 2009-12-09 17:56+0100\n" + "Last-Translator: Michal Várady \n" + "Language-Team: \n" +@@ -15,8 +15,8 @@ msgstr "" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" + "X-Poedit-Language: Czech\n" +-"X-Poedit-Country: CZECH REPUBLIC\n" + "X-Poedit-SourceCharset: utf-8\n" ++"X-Poedit-Country: CZECH REPUBLIC\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -104,13 +104,11 @@ msgstr "Nastavení klávesnice můžete + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Nastavení klávesnice, myši a ostatních vstupních zařízení" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "Klávesnice" ++msgstr "Klávesnice a myš" + +-#, fuzzy + #~ msgid "input-keyboard" + #~ msgstr "Klávesnice" +--- lxinput-0.3.0.orig/po/sr.po ++++ lxinput-0.3.0/po/sr.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-05-28 04:53+0000\n" ++"POT-Creation-Date: 2010-08-17 05:38+0000\n" + "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" + "Last-Translator: FULL NAME \n" + "Language-Team: LANGUAGE \n" +@@ -32,9 +32,8 @@ msgid "Beep when there is an error of ke + msgstr "Пусти звук на грешке код уноса са тататуре" + + #: ../data/lxinput.glade.h:5 +-#, fuzzy + msgid "Delay before each key starts repeating" +-msgstr "Кашњење пре понављања сваког тастера" ++msgstr "Кашњење пре почетка понављања сваког тастера" + + #: ../data/lxinput.glade.h:6 + msgid "Fast" +--- lxinput-0.3.0.orig/po/bn_IN.po ++++ lxinput-0.3.0/po/bn_IN.po +@@ -8,13 +8,15 @@ msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: 2009-07-27 12:28+0200\n" ++"PO-Revision-Date: 2010-09-02 05:27+0200\n" + "Last-Translator: Sankarshan \n" + "Language-Team: LANGUAGE \n" ++"Language: bn_IN\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: Pootle 1.1.0\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -58,7 +60,7 @@ msgstr "কী-বোর্ড" + + #: ../data/lxinput.glade.h:11 + msgid "Left handed (Swap left and right mouse buttons)" +-msgstr "" ++msgstr "বাঁ হাতের জন্য (বাম ও ডান দিকের মাউস বোতাম পরিবর্তন করুন)" + + # বিরাম সম্পন্ন ? + #: ../data/lxinput.glade.h:12 +@@ -103,12 +105,11 @@ msgstr "কী-বোর্ড এর + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "কী-বোর্ড, মাউস ও অন্যান্য ইনপুট ডিভাইস সঞ্চালন করুন" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "কী-বোর্ড" ++msgstr "কী-বোর্ড এবং মাউস" + + #, fuzzy + #~ msgid "input-keyboard" +--- lxinput-0.3.0.orig/po/ca.po ++++ lxinput-0.3.0/po/ca.po +@@ -8,12 +8,15 @@ msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2010-05-24 01:27+0800\n" +-"PO-Revision-Date: 2009-09-14 00:29+0100\n" +-"Last-Translator: \n" ++"PO-Revision-Date: 2010-08-26 23:46+0200\n" ++"Last-Translator: Josep \n" + "Language-Team: LXDE Catalan translators group\n" ++"Language: ca\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Pootle 2.0.5\n" + + #: ../data/lxinput.glade.h:1 + msgid "Character Repeat" +@@ -102,12 +105,11 @@ msgstr "" + + #: ../data/lxinput.desktop.in.h:1 + msgid "Configure keyboard, mouse, and other input devices" +-msgstr "" ++msgstr "Configureu el teclat, ratolí i altres dispositius d'entrada" + + #: ../data/lxinput.desktop.in.h:2 +-#, fuzzy + msgid "Keyboard and Mouse" +-msgstr "Teclat" ++msgstr "Teclat i ratolí" + + #, fuzzy + #~ msgid "input-keyboard" +--- lxinput-0.3.0.orig/data/lxinput.desktop ++++ lxinput-0.3.0/data/lxinput.desktop +@@ -1,24 +1,36 @@ + [Desktop Entry] + Type=Application + Name=Keyboard and Mouse ++Name[af]=Sleutelbord en muis + Name[ar]=لوحة المفاتيح والفأرة ++Name[be]=Клавіятура і мыш + Name[bg]=Клавиатура и мишка + Name[bn]=কী-বোর্ড এবং মাউস ++Name[bn_IN]=কী-বোর্ড এবং মাউস ++Name[ca]=Teclat i ratolí ++Name[cs]=Klávesnice a myš + Name[da]=Tastatur og mus + Name[de]=Tastatur und Maus + Name[el]=Πληκτρολόγιο και ποντίκι + Name[en_GB]=Keyboard and Mouse + Name[es]=Teclado y ratón ++Name[fa]=صفحه کلید و موشی ++Name[fi]=Näppäinmistö ja hiiri + Name[fo]=Knappaborð og mús + Name[fr]=Clavier et souris ++Name[gl]=Teclado e rato + Name[he]=מקלדת ועכבר + Name[hr]=Tipkovnica i miš + Name[hu]=Billentyűzet és egér ++Name[id]=Papan Ketik dan Tetikus + Name[it]=Tastiera e Mouse + Name[ja]=キーボードとマウス ++Name[lg]=Mapeesa agawandisibwa n'akasongesebwa + Name[lt]=Klaviatūra ir pelė ++Name[nb]=Tastatur og mus ++Name[nl]=Toetsenbord en Muis + Name[pl]=Klawiatura i mysz +-Name[pt]=Teclado e Rato ++Name[pt]=Teclado e rato + Name[pt_BR]=Teclado e mouse + Name[ru]=Клавиатура и мышь + Name[sk]=Klávesnica a myš +@@ -26,40 +38,55 @@ Name[sl]=Tipkovnica in miška + Name[sr]=Тастатура и миш + Name[sr@latin]=Tastatura i miš + Name[sv]=Tangentbord och mus ++Name[tr]=Klavye ve Fare + Name[uk]=Клавіатура і миша + Name[vi]=Bàn phím và chuột ++Name[zh_CN]=键盘和鼠标 + Name[zh_TW]=鍵盤及滑鼠 + Icon=input-keyboard + Exec=lxinput + Comment=Configure keyboard, mouse, and other input devices ++Comment[af]=Stel sleutelbord, muis en ander toevertoestelle op + Comment[ar]=اضبط لوحة المفاتيح، الفأرة وأجهزة الإدخال الأخرى ++Comment[be]=Наладзіць клавіятуру, мыш і іншыя прылады ўводу + Comment[bg]=Настройка на клавиатурата, мишката идруги входящи устройства + Comment[bn]=কী-বোর্ড, মাউস এবং অন্যান্য ইনপুট ডিভাইস কনফিগার ++Comment[bn_IN]=কী-বোর্ড, মাউস ও অন্যান্য ইনপুট ডিভাইস সঞ্চালন করুন ++Comment[ca]=Configureu el teclat, ratolí i altres dispositius d'entrada ++Comment[cs]=Nastavení klávesnice, myši a ostatních vstupních zařízení + Comment[da]=Konfigurer tastatur, mus og andre inddataenheder + Comment[de]=Maus, Tastatur und andere Eingabegeräte konfigurieren + Comment[el]=Ρυθμίσεις πληκτρολογίου, ποντικιού και άλλων συσκευών εισόδου + Comment[en_GB]=Configure keyboard, mouse, and other input devices + Comment[es]=Configurar el teclado, ratón y otros dispositivos de entrada + Comment[fa]=پیکربندی صفحه کلید، موشواره و دیگر دستگاه‌های ورودی ++Comment[fi]=Muokkaa näppäinmistön, hiiren ja muiden syöttölaitteiden asetuksia + Comment[fo]=Samanset knappaborð, mús, og arðar inntøkutóleindir + Comment[fr]=Configure le clavier, la souris et d'autres périphériques d'entrée ++Comment[gl]=Configurar o teclado, o rato e outros dispositivos de entrada + Comment[he]=הגדרת המקלדת, העכבר והתקני קלט נוספים + Comment[hr]=Konfiguriraj tipkovnicu, miš, i druge ulazne uređaje + Comment[hu]=Billentyűzet, egér és egyéb beviteli eszközök beállítása ++Comment[id]=Tata papan tik, tetikus, dan perangkat masukan lain + Comment[it]=Configura tastiera, mouse, ed altri dispositivi di imput + Comment[ja]=キーボードやマウス、その他の入力機器の設定 ++Comment[lg]=Teekateeka enkola y'amapeesa agawandisibwa, akasongesebwa n'ebirala ebikozesebwa okuyingiza bintu mu kompyuta + Comment[lt]=Konfigūruoti klaviatūrą, pelę ir kitus įvedimo įrenginius +-Comment[pl]=Skonfiguruj klawiaturę, mysz i inne urządzenia wejściowe ++Comment[nb]=Innstillinger for tastatur, mus og andre inndataenheter ++Comment[nl]=Instellen van toetsenbord, muis, en andere invoerapparaten ++Comment[pl]=Konfiguruje klawiaturę, mysz i inne urządzenia wejściowe + Comment[pt]=Configurar teclado, rato e outros dispositivos + Comment[pt_BR]=Configurar teclado, mouse e outros dispositivos de entrada + Comment[ru]=Настроить клавиатуру, мышь и другие устройства ввода + Comment[sk]=Nastaviť klávesnicu, myš a ostatné vstupné zariadenia +-Comment[sl]=Nastavitve tipkovnice, miške in drugih vhodnih enot ++Comment[sl]=Nastavite tipkovnico, miško in druge vnosne naprave + Comment[sr]=Подесите тастатуру, миш и друге улазне уређаје + Comment[sr@latin]=Podesite tastaturu, miš i druge ulazne uređaje + Comment[sv]=Inställningar för tangentbord, mus och andra inmatningsenheter ++Comment[tr]=Klavye, fare ve diğer girdi aygıtlarını yapılandırın + Comment[uk]=Налаштування клавіатури, миші та інших вхідних пристроїв + Comment[vi]=Cấu hình bàn phím, chuột, và các thiết bị đầu vào khác ++Comment[zh_CN]=配置键盘、鼠标和其他输入设备 + Comment[zh_TW]=設定鍵盤、滑鼠、及其他輸入裝置 + StartupNotify=true + Terminal=false diff -Nru lxinput-0.1.1/debian/patches/series lxinput-0.3.0/debian/patches/series --- lxinput-0.1.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/debian/patches/series 2011-02-26 19:04:44.000000000 +0000 @@ -0,0 +1,4 @@ +01_layout_button.patch +02_build_system_clean.patch +03_gseal_enable_migration.patch +80_translations.patch diff -Nru lxinput-0.1.1/debian/rules lxinput-0.3.0/debian/rules --- lxinput-0.1.1/debian/rules 2013-10-31 15:02:37.000000000 +0000 +++ lxinput-0.3.0/debian/rules 2011-02-21 22:45:48.000000000 +0000 @@ -1,105 +1,51 @@ #!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. - +# -*- mode: makefile; coding: utf-8 -*- +# Copyright (C) 2009-2010 Andrew Lee (李健秋) +# Description: Main Debian packaging script for morituri +# +# 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, see . # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +DISTRO = "$(shell lsb_release -si)" -# These are used for cross-compiling and for saving the configure script -# from having to guess our platform (since we know it already) -DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) -ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) -CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) -else -CROSS= --build $(DEB_BUILD_GNU_TYPE) -endif - - - -config.status: configure - dh_testdir - # Add here commands to configure the package. -ifneq "$(wildcard /usr/share/misc/config.sub)" "" - cp -f /usr/share/misc/config.sub config.sub +# GTK3 migration +CFLAGS+=-DGTK_DISABLE_SINGLE_INCLUDES +CFLAGS+=-DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED +CFLAGS+=-DGSEAL_ENABLE +CFLAGS+=-DGDK_PIXBUF_DISABLE_DEPRECATED +CFLAGS+=-DG_DISABLE_DEPRECATED + +LDFLAGS+=-Wl,-z,defs -Wl,--as-needed + +%: + dh --with autoreconf $@ + +override_dh_auto_configure: + dh_auto_configure -- --enable-man + +override_dh_auto_clean: + rm -f man/lxpanel.1 man/lxpanelctl.1 + dh_auto_clean + +override_dh_install: + dh_install + #Install apport hook only on Ubuntu +ifeq ($(DISTRO),"Ubuntu") + dh_install -plxinput debian/apport/source_lxinput.py usr/share/apport/package-hooks endif -ifneq "$(wildcard /usr/share/misc/config.guess)" "" - cp -f /usr/share/misc/config.guess config.guess -endif - ./configure $(CROSS) --enable-man --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" - - -build: build-stamp - -build-stamp: config.status - dh_testdir - # Add here commands to compile the package. - $(MAKE) - #docbook-to-man debian/lxinput.sgml > lxinput.1 - - touch $@ - -clean: - dh_testdir - dh_testroot - rm -f build-stamp - - # Add here commands to clean up after the build process. - [ ! -f Makefile ] || $(MAKE) distclean - rm -f config.sub config.guess - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_prep - dh_installdirs - - # Add here commands to install the package into debian/lxinput. - $(MAKE) DESTDIR=$(CURDIR)/debian/lxinput install - - -# Build architecture-independent files here. -binary-indep: install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installexamples -# dh_install -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_python -# dh_installinit -# dh_installcron -# dh_installinfo - dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms -# dh_perl -# dh_makeshlibs - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb +override_dh_auto_test: + : -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install diff -Nru lxinput-0.1.1/debian/source/format lxinput-0.3.0/debian/source/format --- lxinput-0.1.1/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/debian/source/format 2013-10-31 15:02:37.232565571 +0000 @@ -0,0 +1 @@ +3.0 (quilt) diff -Nru lxinput-0.1.1/ltmain.sh lxinput-0.3.0/ltmain.sh --- lxinput-0.1.1/ltmain.sh 2009-07-07 11:45:34.000000000 +0000 +++ lxinput-0.3.0/ltmain.sh 2010-08-03 09:05:46.000000000 +0000 @@ -1,6 +1,6 @@ # Generated from ltmain.m4sh. -# ltmain.sh (GNU libtool) 2.2.6 +# ltmain.sh (GNU libtool) 2.2.6b # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc. @@ -65,7 +65,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.2.6 +# $progname: (GNU libtool) 2.2.6b Debian-2.2.6b-2ubuntu1 # automake: $automake_version # autoconf: $autoconf_version # @@ -73,9 +73,9 @@ PROGRAM=ltmain.sh PACKAGE=libtool -VERSION=2.2.6 +VERSION="2.2.6b Debian-2.2.6b-2ubuntu1" TIMESTAMP="" -package_revision=1.3012 +package_revision=1.3017 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then @@ -116,15 +116,15 @@ : ${CP="cp -f"} : ${ECHO="echo"} -: ${EGREP="/usr/bin/grep -E"} -: ${FGREP="/usr/bin/grep -F"} -: ${GREP="/usr/bin/grep"} +: ${EGREP="/bin/grep -E"} +: ${FGREP="/bin/grep -F"} +: ${GREP="/bin/grep"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} -: ${SED="/opt/local/bin/gsed"} +: ${SED="/bin/sed"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} @@ -5033,7 +5033,10 @@ case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; - link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then @@ -5344,19 +5347,19 @@ # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_duplicate_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; + esac + fi + tmp_libs="$tmp_libs $deplib" + done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if $opt_duplicate_deps ; then - case "$tmp_libs " in - *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; - esac - fi - tmp_libs="$tmp_libs $deplib" - done continue fi # $pass = conv @@ -5893,6 +5896,7 @@ if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do + path= case $deplib in -L*) path="$deplib" ;; *.la) @@ -6206,6 +6210,9 @@ revision="$number_minor" lt_irix_increment=no ;; + *) + func_fatal_configuration "$modename: unknown library version type \`$version_type'" + ;; esac ;; no) diff -Nru lxinput-0.1.1/man/Makefile.in lxinput-0.3.0/man/Makefile.in --- lxinput-0.1.1/man/Makefile.in 2009-07-07 11:45:35.000000000 +0000 +++ lxinput-0.3.0/man/Makefile.in 2010-08-03 09:05:47.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -38,7 +38,7 @@ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = @@ -127,6 +127,7 @@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ @@ -140,6 +141,8 @@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ +XLIB_CFLAGS = @XLIB_CFLAGS@ +XLIB_LIBS = @XLIB_LIBS@ XMLCATALOG = @XMLCATALOG@ XML_CATALOG_FILE = @XML_CATALOG_FILE@ XSLTPROC = @XSLTPROC@ diff -Nru lxinput-0.1.1/man/lxinput.1 lxinput-0.3.0/man/lxinput.1 --- lxinput-0.1.1/man/lxinput.1 2009-07-06 19:17:30.000000000 +0000 +++ lxinput-0.3.0/man/lxinput.1 2010-08-03 09:05:56.000000000 +0000 @@ -1,7 +1,7 @@ '\" t .\" Title: LXINPUT .\" Author: Ying-Chun Liu -.\" Generator: DocBook XSL Stylesheets v1.75.1 +.\" Generator: DocBook XSL Stylesheets v1.75.2 .\" Date: March 2, 2008 .\" Manual: http://LXDE.org .\" Source: http://LXDE.org @@ -9,6 +9,15 @@ .\" .TH "LXINPUT" "1" "March 2, 2008" "http://LXDE\&.org" "http://LXDE.org" .\" ----------------------------------------------------------------- +.\" * Define some portability stuff +.\" ----------------------------------------------------------------- +.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.\" http://bugs.debian.org/507673 +.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html +.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.ie \n(.g .ds Aq \(aq +.el .ds Aq ' +.\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation @@ -50,5 +59,5 @@ .RE .SH "COPYRIGHT" .br -CopyrightCopyright \(co 2008 paulliu +Copyright \(co 2008 paulliu .br diff -Nru lxinput-0.1.1/mkinstalldirs lxinput-0.3.0/mkinstalldirs --- lxinput-0.1.1/mkinstalldirs 2009-07-07 11:45:35.000000000 +0000 +++ lxinput-0.3.0/mkinstalldirs 1970-01-01 00:00:00.000000000 +0000 @@ -1,162 +0,0 @@ -#! /bin/sh -# mkinstalldirs --- make directory hierarchy - -scriptversion=2009-04-28.21; # UTC - -# Original author: Noah Friedman -# Created: 1993-05-16 -# Public domain. -# -# This file is maintained in Automake, please report -# bugs to or send patches to -# . - -nl=' -' -IFS=" "" $nl" -errstatus=0 -dirmode= - -usage="\ -Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... - -Create each directory DIR (with mode MODE, if specified), including all -leading file name components. - -Report bugs to ." - -# process command line arguments -while test $# -gt 0 ; do - case $1 in - -h | --help | --h*) # -h for help - echo "$usage" - exit $? - ;; - -m) # -m PERM arg - shift - test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } - dirmode=$1 - shift - ;; - --version) - echo "$0 $scriptversion" - exit $? - ;; - --) # 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 - -# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and -# mkdir -p a/c at the same time, both will detect that a is missing, -# one will create a, then the other will try to create a and die with -# a "File exists" error. This is a problem when calling mkinstalldirs -# from a parallel make. We use --version in the probe to restrict -# ourselves to GNU mkdir, which is thread-safe. -case $dirmode in - '') - if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then - echo "mkdir -p -- $*" - exec mkdir -p -- "$@" - else - # On NextStep and OpenStep, the `mkdir' command does not - # recognize any option. It will interpret all options as - # directories to create, and then abort because `.' already - # exists. - test -d ./-p && rmdir ./-p - test -d ./--version && rmdir ./--version - fi - ;; - *) - if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && - test ! -d ./--version; then - echo "mkdir -m $dirmode -p -- $*" - exec mkdir -m "$dirmode" -p -- "$@" - else - # Clean up after NextStep and OpenStep mkdir. - for d in ./-m ./-p ./--version "./$dirmode"; - do - test -d $d && rmdir $d - done - fi - ;; -esac - -for file -do - case $file in - /*) pathcomp=/ ;; - *) pathcomp= ;; - esac - oIFS=$IFS - IFS=/ - set fnord $file - shift - IFS=$oIFS - - for d - do - test "x$d" = x && continue - - 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 -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" -# time-stamp-end: "; # UTC" -# End: diff -Nru lxinput-0.1.1/po/LINGUAS lxinput-0.3.0/po/LINGUAS --- lxinput-0.1.1/po/LINGUAS 2009-05-24 12:18:48.000000000 +0000 +++ lxinput-0.3.0/po/LINGUAS 2010-08-03 09:05:53.000000000 +0000 @@ -1,16 +1,26 @@ -# Please keep it in alphabetical order af ar +ast +bg +bn +bn_IN +ca cs da de +el +en_GB es +es_VE et eu fa fi +fo fr +frp gl +he hr hu id @@ -27,10 +37,14 @@ ps pt pt_BR +ro ru sk sl +sr +sr@latin sv +th tr uk ur diff -Nru lxinput-0.1.1/po/Makefile.in.in lxinput-0.3.0/po/Makefile.in.in --- lxinput-0.1.1/po/Makefile.in.in 2009-07-07 11:45:34.000000000 +0000 +++ lxinput-0.3.0/po/Makefile.in.in 2010-08-03 09:05:46.000000000 +0000 @@ -56,7 +56,7 @@ PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) -USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep '^$$lang$$' $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep '^$$lang$$'`"; then printf "$$lang "; fi; done; fi) +USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) @@ -129,7 +129,7 @@ done # Empty stubs to satisfy archaic automake needs -dvi info tags TAGS ID: +dvi info ctags tags CTAGS TAGS ID: # Define this as empty until I found a useful application. install-exec installcheck: diff -Nru lxinput-0.1.1/po/POTFILES.in lxinput-0.3.0/po/POTFILES.in --- lxinput-0.1.1/po/POTFILES.in 2009-04-28 14:26:00.000000000 +0000 +++ lxinput-0.3.0/po/POTFILES.in 2010-08-07 17:35:01.000000000 +0000 @@ -1,4 +1,4 @@ src/lxinput.c data/lxinput.glade - +data/lxinput.desktop.in diff -Nru lxinput-0.1.1/po/af.po lxinput-0.3.0/po/af.po --- lxinput-0.1.1/po/af.po 2009-05-19 12:11:47.000000000 +0000 +++ lxinput-0.3.0/po/af.po 2010-08-07 17:35:01.000000000 +0000 @@ -7,14 +7,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-18 22:18+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-01-14 11:43+0200\n" "Last-Translator: F Wolff \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.0\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -98,4 +100,17 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "Tik ind ie volgende boksie om die sleutelbordinstellings te toets" +msgstr "Tik in die volgende boksie om die sleutelbordinstellings te toets" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Sleutelbord" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Sleutelbord" diff -Nru lxinput-0.1.1/po/ar.po lxinput-0.3.0/po/ar.po --- lxinput-0.1.1/po/ar.po 2009-05-01 13:18:43.000000000 +0000 +++ lxinput-0.3.0/po/ar.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,16 +1,17 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Ahmad Farghal , 2009. +# Tareq Al Jurf , 2010. # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: lxde.lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-01 12:00+0200\n" -"Last-Translator: Ahmad Farghal \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-07-10 05:29+0000\n" +"PO-Revision-Date: 2010-07-11 01:18+0300\n" +"Last-Translator: Tareq Al Jurf \n" +"Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -99,3 +100,15 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "اكتب في الصندوق التالي لتختبر إعدادات لوحة المفاتيح" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "اضبط لوحة المفاتيح، الفأرة وأجهزة الإدخال الأخرى" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "لوحة المفاتيح والفأرة" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "لوحة المفاتيح" diff -Nru lxinput-0.1.1/po/ast.po lxinput-0.3.0/po/ast.po --- lxinput-0.1.1/po/ast.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/ast.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: lxinput.ast\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-08 16:12+0100\n" +"Last-Translator: astur \n" +"Language-Team: asturian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Poedit-Language: asturian\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Repetición de carauteres" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Movimientu" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Aceleración:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Pitar cuando heba un fallu d'entrada pol tecláu" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Allanciu enantes de que cada tecla entame a repetise" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Rápidu" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Altu" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Preferencies del preséu d'entrada" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Intervalu ente cada repetición d'una tecla" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Tecláu" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Maniegu (intercamudar botones esquierdu y drechu del mur)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Llargu" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Baxu" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Mur" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Allanciu de la repetición:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Intervalu de la repetición:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Sensibilidá:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Curtiu" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Sele" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Panel táctil" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Escribi na siguiente caxa pa comprobar la configuración del tecláu" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Tecláu" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Tecláu" diff -Nru lxinput-0.1.1/po/bg.po lxinput-0.3.0/po/bg.po --- lxinput-0.1.1/po/bg.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/bg.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,117 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: lxinput\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-31 09:30+0200\n" +"Last-Translator: Радослав \n" +"Language-Team: MIME-Version: 1.0\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.1\n" +"X-Poedit-Language: Bulgarian\n" +"X-Poedit-Country: BULGARIA\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Символно повтаряне" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Движение" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Ускорение:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Бипни, когато има проблем с клавиатурния вход" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Забавяне преди да започне повторението на клавишите" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Бърза" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Висока" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Свойства на входно устройство" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Интервал между повторението на клавишите" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Клавиатура" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Лява ръка (Разменя ляв и десен бутон)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Дълга" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Ниска" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Мишка" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Задържане на повторението:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Период на повтаряне:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Чувствителност:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Къса" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Бавна" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Посочващо устройство" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Пишете в следващата кутия, за да тествате настройките на клавиатурата" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Настройка на клавиатурата, мишката идруги входящи устройства" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Клавиатура и мишка" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Клавиатура" diff -Nru lxinput-0.1.1/po/bn.po lxinput-0.3.0/po/bn.po --- lxinput-0.1.1/po/bn.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/bn.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,117 @@ +# Bengali translation of lxinput.po +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Sankarshan , 2009. +# Israt Jahan , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: bn\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-30 12:57+0200\n" +"Last-Translator: Jamil \n" +"Language-Team: Bengali \n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.1\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "অক্ষর পুনরাবৃত্তি" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "চালনা" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "গতিবেগ:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "কীবোর্ড ইনপুটে ত্রুটিতে আওয়াজ করা হবে" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "প্রতি কী-এর পুনরাবৃত্তির পূর্বে যতক্ষণ দেরী হবে" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "দ্রুত" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "উচুঁ" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "ইনপুট ডিভাইসের পছন্দসমূহ" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "প্রতি কী-এর মধ্যবর্তী বিরতি" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "কী-বোর্ড" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "বামহাতী (বাম এবং ডান মাউস বোতামের মাঝে সোয়াপ করে)" + +# বিরাম সম্পন্ন ? +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "দীর্ঘ" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "নীচের" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "মাউস" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "পুনরাবৃত্তির বিরাম:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "পুনরাবৃত্তির বিরতি:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "স্পর্শকাতরতা:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "ছোট" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "ধীরে" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "টাচ-প্যাড" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "কী-বোর্ড এর সেটিং পরীক্ষা করার জন্য নিচের বাক্সে এইটি টাইপ করুন" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "কী-বোর্ড, মাউস এবং অন্যান্য ইনপুট ডিভাইস কনফিগার" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "কী-বোর্ড এবং মাউস" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "কী-বোর্ড" diff -Nru lxinput-0.1.1/po/bn_IN.po lxinput-0.3.0/po/bn_IN.po --- lxinput-0.1.1/po/bn_IN.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/bn_IN.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-07-27 12:28+0200\n" +"Last-Translator: Sankarshan \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "অক্ষর পুনরাবৃত্তি" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "চালনা" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "গতিবেগ:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "কীবোর্ড ইনপুটে ত্রুটিতে আওয়াজ করা হবে" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "প্রতি কী-এর পুনরাবৃত্তির পূর্বে একটি দেরী হবে" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "দ্রুত" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "উচুঁ" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "ইনপুট যন্ত্রের বিশেষ বৈশিষ্ট্য" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "প্রতি কী-এর মধ্যবর্তী বিরাম" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "কী-বোর্ড" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "" + +# বিরাম সম্পন্ন ? +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "লম্বা" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "নীচের" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "মাউস" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "পুনরাবৃত্তির বিরাম:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "পুনরাবৃত্তির সময়সীমা:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "ছোট" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "ধীরে" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "টাচ-প্যাড" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "কী-বোর্ড এর সেটিং পরীক্ষা করার জন্য এইটি টাইপ করুন" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "কী-বোর্ড" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "কী-বোর্ড" diff -Nru lxinput-0.1.1/po/ca.po lxinput-0.3.0/po/ca.po --- lxinput-0.1.1/po/ca.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/ca.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,114 @@ +# lxinput.po CATALAN TRANSLATION +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-09-14 00:29+0100\n" +"Last-Translator: \n" +"Language-Team: LXDE Catalan translators group\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Repetició de caràcters" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Moviment" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Acceleració" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Pita quan es detecti un error en l'entrada de teclat" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Demora abans de començar a repetir les tecles" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Ràpid" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Alt" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Preferències del dispositiu d'entrada" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Intèrval entre la repetició de tecles" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Teclat" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Esquerrà (intercanvia els botons dret i esquerra del ratolí)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Llarg" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Baix" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Ratolí" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Repeteix la demora:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Repeteix l'interval:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Sensibilitat:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Curt" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Lent" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Touchpad" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "" +"Introduïu text a la següent caixa per verificar els paràmetres de teclat" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Teclat" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Teclat" diff -Nru lxinput-0.1.1/po/cs.po lxinput-0.3.0/po/cs.po --- lxinput-0.1.1/po/cs.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/cs.po 2010-08-07 17:35:01.000000000 +0000 @@ -3,99 +3,114 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-12-09 17:56+0100\n" +"Last-Translator: Michal Várady \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Czech\n" +"X-Poedit-Country: CZECH REPUBLIC\n" +"X-Poedit-SourceCharset: utf-8\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Opakování kláves" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Pohyb" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Akcelerace:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "Zvukový signál při chybě vstupu z klávesnice" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Prodleva před zahájením opakování stisknuté klávesy" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Rychlá" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Vysoká" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Předvolby vstupního zařízení" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Interval mezi opakováním kláves" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Klávesnice" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Pro leváka (Zamění levé a pravé tlačítko myši)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Dlouhá" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Nizká" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Myš" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Prodleva před opakováním:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Interval opakování:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Citlivost:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Krátká" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Pomalá" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "Touchpad" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" +msgstr "Nastavení klávesnice můžete ověřit psaním do tohoto pole" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Klávesnice" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Klávesnice" diff -Nru lxinput-0.1.1/po/da.po lxinput-0.3.0/po/da.po --- lxinput-0.1.1/po/da.po 2009-05-20 07:46:11.000000000 +0000 +++ lxinput-0.3.0/po/da.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,20 +1,19 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Danish translation LXInput. +# Copyright (C) 2010 LXInput & nedenstående oversættere. +# This file is distributed under the same license as the LXInput package. +# Joe Hansen (joedalton2@yahoo.dk), 2010. # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: LXInput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-19 18:48+0200\n" -"Last-Translator: charlie tyrrestrup \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-05-24 04:46+0000\n" +"PO-Revision-Date: 2010-05-24 11:00+0000\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -30,7 +29,7 @@ #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "Bip ved fejl-indtastning fra tastaturet" +msgstr "Bip ved fejlindtastning fra tastaturet" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" @@ -78,7 +77,7 @@ #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "Gentag interval::" +msgstr "Gentag interval:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" @@ -94,8 +93,18 @@ #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "Touch Pad" +msgstr "Pegeplade" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "Skriv i feltet for at teste dine indstillinger for tastaturet" +msgstr "Skriv i feltet for at teste din tastaturopsætning" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Konfigurer tastatur, mus og andre inddataenheder" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Tastatur og mus" + + diff -Nru lxinput-0.1.1/po/de.po lxinput-0.3.0/po/de.po --- lxinput-0.1.1/po/de.po 2009-04-30 09:26:10.000000000 +0000 +++ lxinput-0.3.0/po/de.po 2010-08-07 17:35:01.000000000 +0000 @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-08-02 05:38+0000\n" "PO-Revision-Date: 2009-04-30 00:51+0200\n" "Last-Translator: Christoph Wickert \n" "Language-Team: LANGUAGE \n" @@ -102,3 +102,14 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Zum Testen der Tastatureinstellungen in dem Feld tippen" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Maus, Tastatur und andere Eingabegeräte konfigurieren" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Tastatur und Maus" + +#~ msgid "input-keyboard" +#~ msgstr "Tastatur" diff -Nru lxinput-0.1.1/po/el.po lxinput-0.3.0/po/el.po --- lxinput-0.1.1/po/el.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/el.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: lxinput\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 04:46+0000\n" +"PO-Revision-Date: 2010-04-08 22:38+0200\n" +"Last-Translator: \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Greek\n" +"X-Poedit-Country: GREECE\n" +"X-Generator: Pootle 2.0.1\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Επανάληψη χαρακτήρα" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Κίνηση" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Επιτάχυνση:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Κουδούνισμα σε περίπτωση σφάλματος κατά την πληκτρολόγηση" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Καθυστέριση πριν την επανάληψη του πλήκτρου" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Γρήγορα" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Υψηλά" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Ιδιότητες συσκευής εισόδου" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Διάστημα μεταξύ επανάληψης πλήκτρου" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Πληκτρολόγιο" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Αριστερόχειρας (Εναλλαγή αριστερού και δεξιού κουμπιού του ποντικιού)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Μακριά" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Χαμηλά" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Ποντίκι" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Καθυστέρηση επανάληψης:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Διάστημα επανάληψης:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Ευαισθησία:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Κοντά" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Αργά" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Touch Pad" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Πληκτρολογίστε στο παρόν κουτάκι για να δοκιμάστε τις ρυθμίσεις πληκτρολογίου" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Ρυθμίσεις πληκτρολογίου, ποντικιού και άλλων συσκευών εισόδου" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Πληκτρολόγιο και ποντίκι" + +#~ msgid "input-keyboard" +#~ msgstr "Πληκτρολόγιο" diff -Nru lxinput-0.1.1/po/en_GB.po lxinput-0.3.0/po/en_GB.po --- lxinput-0.1.1/po/en_GB.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/en_GB.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,111 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-07-06 08:47+0000\n" +"PO-Revision-Date: 2010-03-28 17:45+0100\n" +"Last-Translator: Steve Cook (Yorvyk) \n" +"Language-Team: English UK en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Character Repeat" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Motion" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Acceleration:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Beep when there is a keyboard input error" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Delay before each key starts repeating" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Fast" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "High" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Input Device Preferences" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Interval between each key repeat" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Keyboard" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Left handed (Swap left and right mouse buttons)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Long" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Low" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Mouse" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Repeat delay:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Repeat interval:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Sensitivity:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Short" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Slow" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Touch Pad" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Type in the following box to test your keyboard settings" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Configure keyboard, mouse, and other input devices" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Keyboard and Mouse" + +#~ msgid "input-keyboard" +#~ msgstr "Keyboard" diff -Nru lxinput-0.1.1/po/es.po lxinput-0.3.0/po/es.po --- lxinput-0.1.1/po/es.po 2009-05-04 08:56:46.000000000 +0000 +++ lxinput-0.3.0/po/es.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,19 +1,21 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Spanish (Castilian) translation for lxinput. +# Copyright (C) 2010 The LXDE Team. +# This file is distributed under the same license as the lxinput package. +# Guillermo Iguaran , 2009. # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: lxinput 0.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-03 02:53+0200\n" -"Last-Translator: Guillermo Iguaran \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-05-27 04:20+0000\n" +"PO-Revision-Date: 2010-05-27 10:00-0500\n" +"Last-Translator: Hugo Florentino \n" +"Language-Team: Spanish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Poedit-Language: Spanish\n" "X-Generator: Pootle 1.1.0\n" #: ../data/lxinput.glade.h:1 @@ -98,5 +100,17 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "" -"Teclee en el siguiente cuadro para comprobar la configuración de su teclado" +msgstr "Teclee en el siguiente cuadro para comprobar la configuración de su teclado" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Configurar el teclado, ratón y otros dispositivos de entrada" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Teclado y ratón" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Teclado" + diff -Nru lxinput-0.1.1/po/es_VE.po lxinput-0.3.0/po/es_VE.po --- lxinput-0.1.1/po/es_VE.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/es_VE.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-05-03 02:53+0200\n" +"Last-Translator: Guillermo Iguaran \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Repetición de caracteres" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Movimiento" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Aceleración:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Pitar cuando haya un error de entrada por el teclado" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Retardo antes de que cada tecla comience a repetirse" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Rápido" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Alto" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Preferencias del dispositivo de entrada" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Intervalo entre cada repetición de una tecla" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Teclado" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Zurdo (intercambiar botones izquierdo y derecho del ratón)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Largo" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Bajo" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Ratón" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Retardo de la repetición:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Intervalo de la repetición:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Sensibilidad:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Corto" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Lento" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Panel táctil" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "" +"Teclee en el siguiente cuadro para comprobar la configuración de su teclado" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Teclado" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Teclado" diff -Nru lxinput-0.1.1/po/et.po lxinput-0.3.0/po/et.po --- lxinput-0.1.1/po/et.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/et.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,101 +1,115 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# lxinput'i eesti keele tõlge +# Estonian translation of lxinput +# Copyright (C) 2009 LXDE +# This file is distributed under the same license as the lxinput package. +# Mattias Põldaru , 2009. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-08-23 17:38+0300\n" +"Last-Translator: Mattias Põldaru \n" +"Language-Team: Gnome Estonian Translation Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Estonian\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Märgikordus" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Liikumine" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Kiirendus:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "Piiks klaviatuurisisendi vea korral" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Viivitus enne klahvi kordumise algust" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Kiire" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Kõrge" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Sisendseadme eelistused" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Vahemik klahvikorduste vahel" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Klaviatuur" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Vasakukäeline (vasak ja parem hiireklahv on vahetuses)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Pikk" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Madal" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Hiir" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Korduse viivitus:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Korduse intervall:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Tundlikkus:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Lühike" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Aeglane" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "Puuteplaat" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" +msgstr "Klaviatuurisätete proovimiseks võid siia tekstikasti trükkida" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Klaviatuur" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Klaviatuur" diff -Nru lxinput-0.1.1/po/eu.po lxinput-0.3.0/po/eu.po --- lxinput-0.1.1/po/eu.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/eu.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,3 +99,11 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/fa.po lxinput-0.3.0/po/fa.po --- lxinput-0.1.1/po/fa.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/fa.po 2010-08-07 17:35:01.000000000 +0000 @@ -3,99 +3,114 @@ # 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: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-07-06 13:10+0200\n" +"Last-Translator: Hamidreza \n" "Language-Team: LANGUAGE \n" +"Language: fa\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: Pootle 2.0.1\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "تکرار شخصیت" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "حرکت" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "شتاب:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "هنگام خطا در ورودی صفحه کلید بوق بزن" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "پیش از شروع تکرار هر کلید وقفه بینداز" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "سریع" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "زیاد" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "ترجیحات دستگاه ورودی" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "بین تکرار هر کلید فاصله بینداز" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "صفحه کلید" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "چپ دست (تعویض کلیدهای چپ و راست موشواره)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "طولانی" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "اندک" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "موشواره" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "تاخیر تکرار:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "فاصله تکرار:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "حساسیت:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "کوتاه" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "کم" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "صفحه لمسی" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "" +msgstr "برای امتحان تنظیمات صفحه کلید در کادر زیر تایپ کنید" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "پیکربندی صفحه کلید، موشواره و دیگر دستگاه‌های ورودی" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "صفحه کلید" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "صفحه کلید" diff -Nru lxinput-0.1.1/po/fi.po lxinput-0.3.0/po/fi.po --- lxinput-0.1.1/po/fi.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/fi.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,3 +99,11 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/fo.po lxinput-0.3.0/po/fo.po --- lxinput-0.1.1/po/fo.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/fo.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,115 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-06-08 17:54+0200\n" +"Last-Translator: Gunleif \n" +"Language-Team: LANGUAGE \n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.1\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Stava endurtøka" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Rørsla" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Ferðøking:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Bippa tá ið gali verður trýst á knappaborðið" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Drála áðrenn knappur byrjar endurtøku" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Skjótt" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Høgt" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Innstillingar fyri innskrivingar-tóleind" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Tíðarbil ímillum hvørja knappa-endurtøku" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Knappaborð" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Vinstrahanda (skift vinstru og høgru músaknappar)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Langur" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Lágur" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Mús" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Endurtøkudrál:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Endurtøku tíðarbil:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Viðkvæmi:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Stutt" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Spakuliga" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Peikipláta" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Skriva í kassan, fyri at royna knappaborðs-setingina" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Samanset knappaborð, mús, og arðar inntøkutóleindir" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Knappaborð og mús" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Knappaborð" diff -Nru lxinput-0.1.1/po/fr.po lxinput-0.3.0/po/fr.po --- lxinput-0.1.1/po/fr.po 2009-05-11 08:56:07.000000000 +0000 +++ lxinput-0.3.0/po/fr.po 2010-08-07 17:35:01.000000000 +0000 @@ -7,14 +7,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-09 03:10+0200\n" -"Last-Translator: Cilyan Olowen \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-08-02 19:52+0200\n" +"Last-Translator: Cilyan \n" "Language-Team: LANGUAGE \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 2.0.5\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -34,7 +36,7 @@ #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "Délai avant que le caractère ne soit répété." +msgstr "Délai avant que le caractère ne soit répété" #: ../data/lxinput.glade.h:6 msgid "Fast" @@ -50,7 +52,7 @@ #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "Intervalle entre chaque répétition de caractère." +msgstr "Intervalle entre chaque répétition de caractère" #: ../data/lxinput.glade.h:10 msgid "Keyboard" @@ -99,3 +101,15 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Tapez dans le champ ci-dessous pour tester vos paramètres clavier" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Configure le clavier, la souris et d'autres périphériques d'entrée" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Clavier et souris" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Clavier" diff -Nru lxinput-0.1.1/po/frp.po lxinput-0.3.0/po/frp.po --- lxinput-0.1.1/po/frp.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/frp.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,114 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-10-21 15:32+0200\n" +"Last-Translator: alexandre raymond \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Repeticion do Charactéro" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Mocion" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Acceleracion:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Bip quand i at n'erór d'entrâ do clavèr" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Temps per la repeticion do clavèr" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Rapido" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Yaut" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Preferences d'entrâ dos aparelys" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Interval de repeticion do clavèr" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Clavèr" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Gauchèr (chanje los botos de dreti et de gauchi de la rata)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Lonj" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Bas" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Rata" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Temps de repecicion:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Interval de repeticion:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Sensibilitâ:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Cort" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Plan" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Carro de déyt (Touch Pad)" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Carro per fâre de test da configuracion do clavèr" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Clavèr" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Clavèr" diff -Nru lxinput-0.1.1/po/gl.po lxinput-0.3.0/po/gl.po --- lxinput-0.1.1/po/gl.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/gl.po 2010-08-07 17:35:01.000000000 +0000 @@ -3,99 +3,112 @@ # 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: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-10-27 15:17+0100\n" +"Last-Translator: Indalecio Freiría Santos \n" +"Language-Team: Proxecto Trasno \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Repetición de caracteres" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Movemento" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Aceleración:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "Emitir un ton de aviso cando haxa un erro de entrada polo teclado" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Retardo antes de que cada tecla comece a repetirse" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Rápido" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Alto" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Preferencias do dispositivo de entrada" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Intervalo entre cada repetición dunha tecla" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Teclado" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Zurdo (intercambiar botóns esquerdo e dereito do rato)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Longo" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Baixo" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Rato" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Retardo da repetición:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Intervalo da repetición:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Sensibilidade:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Curto" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Lento" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "Panel táctil" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" +msgstr "Teclee no seguinte cadro para comprobar a configuración do seu teclado" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Teclado" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Teclado" diff -Nru lxinput-0.1.1/po/he.po lxinput-0.3.0/po/he.po --- lxinput-0.1.1/po/he.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/he.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-25 04:46+0000\n" +"PO-Revision-Date: 2009-09-21 08:53+0200\n" +"Last-Translator: Yaron Shahrbani \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "חזרה על התווים" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "תנועה" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "האצה:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "ישמע צפצוף כאשר מתרחשת שגיאה בקלט המקלדת" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "השהיה בטרם החזרה לאחר לחיצה על תו" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "מהירה" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "גבוהה" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "העדפות התקן קלט" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "משך ההשהיה עד לחזרה לאחר לחיצה על תו" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "מקלדת" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "מותאם לשמאליים (החלפה בין הלחצן השמאלי לימני בעכבר)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "ארוכה" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "נמוכה" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "עכבר" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "השהיה עד לחזרה:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "משך ההמתנה בין החזרות:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "רגישות:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "קצרה" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "איטית" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "משטח מגע" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "ניתן להקליד את בתיבת הטקסט שלהלן כדי לבדוק את הגדרות המקלדת שלך" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "הגדרת המקלדת, העכבר והתקני קלט נוספים" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "מקלדת ועכבר" + +#~ msgid "input-keyboard" +#~ msgstr "מקלדת" diff -Nru lxinput-0.1.1/po/hr.po lxinput-0.3.0/po/hr.po --- lxinput-0.1.1/po/hr.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/hr.po 2010-08-07 17:35:01.000000000 +0000 @@ -2,13 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# -#, fuzzy +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-27 04:20+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,15 +17,15 @@ #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Ponavljanje znakova" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Pokret" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Ubrzanje" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" @@ -34,63 +33,63 @@ #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Odgoda prije početka ponavljanja svake tipke" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Brzo" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Visoko" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Postavke ulaznog uređaja" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Interval između ponavljanja svake tipke " #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Tipkovnica" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Ljevoruki (zamjeni lijevo i desno dugme miša" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Dugo" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Nisko" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Miš" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Odgoda ponavljanja" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Interval ponavljanja" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Osjetljivost" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Kratko" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Sporo" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" @@ -98,4 +97,15 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "" +msgstr "Pišite u okvir za testiranje postavki tipkovnice" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Konfiguriraj tipkovnicu, miš, i druge ulazne uređaje" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Tipkovnica i miš" + +#~ msgid "input-keyboard" +#~ msgstr "Tipkovnica" diff -Nru lxinput-0.1.1/po/hu.po lxinput-0.3.0/po/hu.po --- lxinput-0.1.1/po/hu.po 2009-05-25 13:56:11.000000000 +0000 +++ lxinput-0.3.0/po/hu.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,18 +1,20 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Hungarian translation of lxinput. +# Copyright (C) 2009, 2010 The LXDE Team +# This file is distributed under the same license as the lxinput package. +# Attila Szervac , 2009. +# Laszlo Dvornik , 2010. # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-25 15:51+0100\n" -"Last-Translator: SZERVÁC Attila \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-08-05 05:43+0000\n" +"PO-Revision-Date: 2010-08-05 17:17+0200\n" +"Last-Translator: Laszlo Dvornik \n" +"Language-Team: Hungarian \n" +"Language: hu\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../data/lxinput.glade.h:1 @@ -45,11 +47,11 @@ #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "A beviteli eszközök jellemzői" +msgstr "Beviteli eszköz beállításai" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "Időköz az ismétlések közt" +msgstr "Időköz az ismétlések között" #: ../data/lxinput.glade.h:10 msgid "Keyboard" @@ -97,5 +99,12 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "Gépeld az alábbi dobozba a billentyűzet beállítások kipróbálásához" +msgstr "Gépelj az alábbi dobozba a billentyűzet beállítások kipróbálásához" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Billentyűzet, egér és egyéb beviteli eszközök beállítása" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Billentyűzet és egér" diff -Nru lxinput-0.1.1/po/id.po lxinput-0.3.0/po/id.po --- lxinput-0.1.1/po/id.po 2009-05-23 14:14:44.000000000 +0000 +++ lxinput-0.3.0/po/id.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,16 +1,16 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Rahman Yusri Aftian , 2009. +# msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: lxinput-id\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: 2009-05-23 03:54+0200\n" "Last-Translator: Rahman Yusri Aftian \n" -"Language-Team: LANGUAGE \n" +"Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -99,3 +99,16 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Tipe yang berikut untuk menguji papan tombol mu menentukan" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Papan Ketik" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Papan Ketik" diff -Nru lxinput-0.1.1/po/it.po lxinput-0.3.0/po/it.po --- lxinput-0.1.1/po/it.po 2009-05-19 12:11:47.000000000 +0000 +++ lxinput-0.3.0/po/it.po 2010-08-07 17:35:01.000000000 +0000 @@ -7,9 +7,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-19 13:41+0200\n" -"Last-Translator: Alessandro Pellizzari \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-23 20:34+0100\n" +"Last-Translator: Andrea Florio \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -99,3 +99,16 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Scrivi in questo box per provare le impostazioni di tastiera" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Configura tastiera, mouse, ed altri dispositivi di imput" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Tastiera e Mouse" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Tastiera" + diff -Nru lxinput-0.1.1/po/ja.po lxinput-0.3.0/po/ja.po --- lxinput-0.1.1/po/ja.po 2009-05-02 07:58:44.000000000 +0000 +++ lxinput-0.3.0/po/ja.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,9 +8,9 @@ msgstr "" "Project-Id-Version: lxinput 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-01 18:21+0900\n" -"PO-Revision-Date: 2009-05-01 18:22+0900\n" -"Last-Translator: Hironao Komatsu \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-24 01:27+0800\n" +"Last-Translator: Hong Jen Yee (PCMan) \n" "Language-Team: ja_JP \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -99,3 +99,15 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "キーボードの設定を試すためにこのボックスに入力してみてください" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "キーボードやマウス、その他の入力機器の設定" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "キーボードとマウス" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "キーボード" diff -Nru lxinput-0.1.1/po/ko.po lxinput-0.3.0/po/ko.po --- lxinput-0.1.1/po/ko.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/ko.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,3 +99,11 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/lt.po lxinput-0.3.0/po/lt.po --- lxinput-0.1.1/po/lt.po 2009-05-22 12:09:47.000000000 +0000 +++ lxinput-0.3.0/po/lt.po 2010-08-07 17:35:01.000000000 +0000 @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-06-27 05:34+0000\n" "PO-Revision-Date: 2009-05-21 18:12+0200\n" "Last-Translator: Julius Vitkauskas \n" "Language-Team: LANGUAGE \n" @@ -38,11 +38,11 @@ #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "Greitas" +msgstr "Greita" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "Aukštas" +msgstr "Didelis" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" @@ -58,7 +58,7 @@ #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "Kairiarankiams (sukeisti kairiojo ir dešiniojo pelės mygtuko funkcijas)" +msgstr "Sukeisti kairiojo ir dešiniojo pelės mygtuko funkcijas (kairiarankiams)" #: ../data/lxinput.glade.h:12 msgid "Long" @@ -66,7 +66,7 @@ #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "Žemas" +msgstr "Mažas" #: ../data/lxinput.glade.h:14 msgid "Mouse" @@ -90,7 +90,7 @@ #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "Lėtas" +msgstr "Lėta" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" @@ -98,4 +98,15 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "Įveskite šį tekstą išbandyti jūsų klaviatūros nustatymams" +msgstr "Čia galite įvesti tekstą ir taip išbandyti jūsų klaviatūros nustatymams:" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Konfigūruoti klaviatūrą, pelę ir kitus įvedimo įrenginius" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Klaviatūra ir pelė" + +#~ msgid "input-keyboard" +#~ msgstr "Klaviatūra" diff -Nru lxinput-0.1.1/po/ml.po lxinput-0.3.0/po/ml.po --- lxinput-0.1.1/po/ml.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/ml.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,3 +99,11 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/ms.po lxinput-0.3.0/po/ms.po --- lxinput-0.1.1/po/ms.po 2009-06-09 07:01:41.000000000 +0000 +++ lxinput-0.3.0/po/ms.po 2010-08-07 17:35:01.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-18 09:23-0400\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: 2009-06-09 02:57+0200\n" "Last-Translator: Payne Samad Loh \n" "Language-Team: LANGUAGE \n" @@ -111,3 +111,18 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Taip di dalam petak yang tersedia untuk menguji tetapan papan kekunci" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +# by Phyz +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Papan Kunci" + +# by Phyz +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Papan Kunci" diff -Nru lxinput-0.1.1/po/nb.po lxinput-0.3.0/po/nb.po --- lxinput-0.1.1/po/nb.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/nb.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,3 +99,11 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/nl.po lxinput-0.3.0/po/nl.po --- lxinput-0.1.1/po/nl.po 2009-05-04 19:14:44.000000000 +0000 +++ lxinput-0.3.0/po/nl.po 2010-08-07 17:35:01.000000000 +0000 @@ -7,13 +7,14 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-04 18:17+0100\n" -"Last-Translator: Sander De Voogdt \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-12-05 14:29+0100\n" +"Last-Translator: Tim Van den Eynde \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -29,7 +30,7 @@ #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "Bieptoon bij een toetsenbord input fout" +msgstr "Bieptoon bij verkeerde toetsenbordinput" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" @@ -99,3 +100,15 @@ msgid "Type in the following box to test your keyboard settings" msgstr "Tiep in onderstaand kader om uw toetsenbordinstellingen te testen" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Toetsenbord" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Toetsenbord" diff -Nru lxinput-0.1.1/po/nn.po lxinput-0.3.0/po/nn.po --- lxinput-0.1.1/po/nn.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/nn.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,101 +1,115 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Translation of lxinput to Norwegian Nynorsk +# Copyright © 2009 Karl Ove Hufthammer +# This file is distributed under the same license as the lxinput package. +# Karl Ove Hufthammer , 2009. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2009-07-27 19:46+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 0.3\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Teikngjentaking" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Rørsle" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Akselerasjon:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "Pip ved feiltasting" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Pause før gjentaking av tastetrykk" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Rask" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Høg" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Innstillingar for inneingar" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Intervall mellom kvar tastegjentaking" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Tastatur" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Venstrehendt (byter om venstre og høgre museknapp)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Lang" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Låg" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Mus" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Pause før gjentaking:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Gjentakingsintervall:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Følsemd:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Kort" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Sakte" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "Styrepute" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" +msgstr "Skriv noko her for å prøva tastaturinnstillingane" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Tastatur" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Tastatur" diff -Nru lxinput-0.1.1/po/pl.po lxinput-0.3.0/po/pl.po --- lxinput-0.1.1/po/pl.po 2009-05-01 14:25:11.000000000 +0000 +++ lxinput-0.3.0/po/pl.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,14 +8,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-01 00:31-0000\n" -"Last-Translator: Artur Kruszewski \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-31 17:06+0200\n" +"Last-Translator: Artur \n" "Language-Team: Artur Kruszewski \n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.1\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -59,7 +62,8 @@ #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "Tryb dla leworęcznych (Zamienia funkcje prawego i lewego przycisku myszy)" +msgstr "" +"Tryb dla leworęcznych (Zamienia funkcje prawego i lewego przycisku myszy)" #: ../data/lxinput.glade.h:12 msgid "Long" @@ -101,3 +105,14 @@ msgid "Type in the following box to test your keyboard settings" msgstr "Wpisz tekst w następujące pole aby przetestować ustawienia klawiatury" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Skonfiguruj klawiaturę, mysz i inne urządzenia wejściowe" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Klawiatura i mysz" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Klawiatura" diff -Nru lxinput-0.1.1/po/ps.po lxinput-0.3.0/po/ps.po --- lxinput-0.1.1/po/ps.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/ps.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,3 +99,11 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/pt.po lxinput-0.3.0/po/pt.po --- lxinput-0.1.1/po/pt.po 2009-05-13 18:05:36.000000000 +0000 +++ lxinput-0.3.0/po/pt.po 2010-08-07 17:35:01.000000000 +0000 @@ -2,21 +2,21 @@ # Copyright (C) 2009, THE lxinput COPYRIGHT HOLDER # This file is distributed under the same license as the lxinput package # Sérgio Marques (smarquespt@gmail.com), 2009 -# +# msgid "" msgstr "" -"Project-Id-Version: lxinput 0.1\n" +"Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-05 15:30-0000\n" -"Last-Translator: Sérgio Marques \n" +"POT-Creation-Date: 2010-05-31 04:48+0000\n" +"PO-Revision-Date: 2010-02-13 19:31-0000\n" +"Last-Translator: Sergio Marques \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: PORTUGAL\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -60,7 +60,7 @@ #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "Lado esquerdo (Trocar botões esquerdo e direito do rato)" +msgstr "Canhoto (Trocar botões esquerdo e direito do rato)" #: ../data/lxinput.glade.h:12 msgid "Long" @@ -96,11 +96,19 @@ #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "Painel de Toque" +msgstr "Touch Pad" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Digite os caracteres na caixa seguinte para testar o teclado" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Configurar teclado, rato e outros dispositivos" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Teclado e Rato" - +#~ msgid "input-keyboard" +#~ msgstr "Teclado" diff -Nru lxinput-0.1.1/po/pt_BR.po lxinput-0.3.0/po/pt_BR.po --- lxinput-0.1.1/po/pt_BR.po 2009-05-18 13:40:12.000000000 +0000 +++ lxinput-0.3.0/po/pt_BR.po 2010-08-07 17:35:01.000000000 +0000 @@ -2,12 +2,12 @@ # Copyright (C) 2009 The LXDE Team. # This file is distributed under the same license as the lxinput package. # Thiago Avelino , 2009. -# +# msgid "" msgstr "" "Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-06-20 05:45+0000\n" "PO-Revision-Date: 2009-05-14 12:42-0300\n" "Last-Translator: Thiago Avelino \n" "Language-Team: Brazilian Portuguese \n" @@ -30,7 +30,7 @@ #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "Beep quando houver um erro de entrada do teclado" +msgstr "Bipar quando houver um erro de entrada do teclado" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" @@ -58,7 +58,7 @@ #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "Canhoto (Alterna o botão esquerdo e direito do mouse)" +msgstr "Canhoto (alterna o botão esquerdo e direito do mouse)" #: ../data/lxinput.glade.h:12 msgid "Long" @@ -99,3 +99,14 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Digite no seguinte campo para testar a configuração do teclado" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Configurar teclado, mouse e outros dispositivos de entrada" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Teclado e mouse" + +#~ msgid "input-keyboard" +#~ msgstr "Teclado" diff -Nru lxinput-0.1.1/po/ro.po lxinput-0.3.0/po/ro.po --- lxinput-0.1.1/po/ro.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/ro.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,111 @@ +msgid "" +msgstr "" +"Project-Id-Version: LXDE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-01-24 11:10-0800\n" +"Last-Translator: alexxed \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Narro 0.9.4 on http://tradu.softwareliber.ro\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Repetiția caracterelor" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Mișcare" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Accelerație:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Bip când există o eroare de intrare de la tastatură" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "Timp în care o tastă apăsată nu se repetă" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Rapid" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Foarte rapid" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Preferințe pentru dispozitivele de intrare" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Interval între repetările tastei apăsate" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Tastatură" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Stângaci (inversează între ele butonul stâng și drept al mausului)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Lung" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Încet" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Maus" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Întârziere repetare:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Interval de repetare:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Sensibilitate:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Scurt" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Încet" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Suprafață tactilă" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Tastați în caseta de text pentru a testa setările tastaturii" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Tastatură" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Tastatură" diff -Nru lxinput-0.1.1/po/ru.po lxinput-0.3.0/po/ru.po --- lxinput-0.1.1/po/ru.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/ru.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,101 +1,116 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Alexander Kazancev , 2010. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-25 17:52+0200\n" +"Last-Translator: Max \n" "Language-Team: LANGUAGE \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.1\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Автоповтор символов" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Движение" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Ускорение:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "Звуковой сигнал при ошибках ввода с клавиатуры" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Задержка старта автоповтора" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Быстрое" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Высокая" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Настройки устройств ввода" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Интервал автоповтора" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Клавиатура" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Для левшей (поменять действия для левой и правой кнопок мыши)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Длиннее" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Низкая" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Мышь" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Задержка при автоповторе:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Шаг автоповтора:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Чувствительность:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Короче" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Медленное" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "Тачпад" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "" +msgstr "Наберите текст в этом поле для проверки ваших настроек клавиатуры" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Настроить клавиатуру, мышь и другие устройства ввода" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Клавиатура и мышь" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Клавиатура" diff -Nru lxinput-0.1.1/po/sk.po lxinput-0.3.0/po/sk.po --- lxinput-0.1.1/po/sk.po 2009-05-04 19:19:25.000000000 +0000 +++ lxinput-0.3.0/po/sk.po 2010-08-07 17:35:01.000000000 +0000 @@ -1,14 +1,14 @@ # Slovak translation of lxinput # Copyright (C) 2006 lxde team # This file is distributed under the same license as the lxinput package. -# Ivan Masár , 2009. +# Ivan Masár , 2009, 2010. # msgid "" msgstr "" "Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-05-04 12:59+0100\n" +"POT-Creation-Date: 2010-07-06 08:47+0000\n" +"PO-Revision-Date: 2010-07-06 12:17+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" @@ -97,5 +97,16 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "" -"Ak chcete otestovať svoje nastavenia klávesnice, píšte do nasledovného poľa" +msgstr "Ak chcete otestovať svoje nastavenia klávesnice, píšte do nasledovného poľa" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Nastaviť klávesnicu, myš a ostatné vstupné zariadenia" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Klávesnica a myš" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Klávesnica" diff -Nru lxinput-0.1.1/po/sl.po lxinput-0.3.0/po/sl.po --- lxinput-0.1.1/po/sl.po 2009-07-01 14:12:22.000000000 +0000 +++ lxinput-0.3.0/po/sl.po 2010-08-07 17:35:01.000000000 +0000 @@ -2,22 +2,22 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: LXInput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-07-03 07:38+0000\n" "PO-Revision-Date: 2009-06-28 16:44+0100\n" "Last-Translator: Matej Gačnik \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Poedit-Language: slovenian\n" "X-Poedit-Country: SLOVENIA\n" +"X-Generator: Pootle 1.1.0\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -103,3 +103,13 @@ msgid "Type in the following box to test your keyboard settings" msgstr "Testiraj nastavitve tipkovnice tako, da vtipkaš besedilo v pričujoče besedilno polje" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Nastavitve tipkovnice, miške in drugih vhodnih enot" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Tipkovnica in miška" + +#~ msgid "input-keyboard" +#~ msgstr "Tipkovnica" diff -Nru lxinput-0.1.1/po/sr.po lxinput-0.3.0/po/sr.po --- lxinput-0.1.1/po/sr.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/sr.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-28 04:53+0000\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=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Понављање карактера" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Кретање" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Убрзање:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Пусти звук на грешке код уноса са тататуре" + +#: ../data/lxinput.glade.h:5 +#, fuzzy +msgid "Delay before each key starts repeating" +msgstr "Кашњење пре понављања сваког тастера" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Брзо" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Високо" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Подешавања улазног уређаја" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Интервал између сваког поновљеног тастера" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Тастатура" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Леворуки (Замени лево и десно дугме миша)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Дуго" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Ниско" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Миш" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Кашњење код понављања:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Интервал понављања:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Осетљивост:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Кратко" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Споро" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Табла за контролу додиром" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "За проверу распореда ваше тастатуре куцајте у ово поље" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Подесите тастатуру, миш и друге улазне уређаје" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Тастатура и миш" diff -Nru lxinput-0.1.1/po/sr@latin.po lxinput-0.3.0/po/sr@latin.po --- lxinput-0.1.1/po/sr@latin.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/sr@latin.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-28 04:53+0000\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=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "Ponavljanje karaktera" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "Kretanje" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "Ubrzanje:" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "Pusti zvuk na greške kod unosa sa tatature" + +#: ../data/lxinput.glade.h:5 +#, fuzzy +msgid "Delay before each key starts repeating" +msgstr "Kašnjenje pre ponavljanja svakog tastera" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "Brzo" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "Visoko" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "Podešavanja ulaznog uređaja" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "Interval između svakog ponovljenog tastera" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "Tastatura" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "Levoruki (Zameni levo i desno dugme miša)" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "Dugo" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "Nisko" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "Miš" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "Kašnjenje kod ponavljanja:" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "Interval ponavljanja:" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "Osetljivost:" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "Kratko" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "Sporo" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "Tabla za kontrolu dodirom" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "Za proveru rasporeda vaše tastature kucajte u ovo polje" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Podesite tastaturu, miš i druge ulazne uređaje" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Tastatura i miš" diff -Nru lxinput-0.1.1/po/sv.po lxinput-0.3.0/po/sv.po --- lxinput-0.1.1/po/sv.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/sv.po 2010-08-07 17:35:01.000000000 +0000 @@ -7,14 +7,16 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: 2009-04-29 10:38+0200\n" -"Last-Translator: Martin Bagge \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-24 06:30+0200\n" +"Last-Translator: Martin \n" "Language-Team: LANGUAGE \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.1\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" @@ -82,7 +84,7 @@ #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "Känslighet" +msgstr "Känslighet:" #: ../data/lxinput.glade.h:18 msgid "Short" @@ -99,3 +101,15 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "För att pröva dina inställningar kan du skriva i följande ruta" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Inställningar för tangentbord, mus och andra inmatningsenheter" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Tangentbord och mus" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Tangentbord" diff -Nru lxinput-0.1.1/po/th.po lxinput-0.3.0/po/th.po --- lxinput-0.1.1/po/th.po 1970-01-01 00:00:00.000000000 +0000 +++ lxinput-0.3.0/po/th.po 2010-08-07 17:35:01.000000000 +0000 @@ -0,0 +1,109 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\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=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../data/lxinput.glade.h:1 +msgid "Character Repeat" +msgstr "" + +#: ../data/lxinput.glade.h:2 +msgid "Motion" +msgstr "" + +#: ../data/lxinput.glade.h:3 +msgid "Acceleration:" +msgstr "" + +#: ../data/lxinput.glade.h:4 +msgid "Beep when there is an error of keyboard input" +msgstr "" + +#: ../data/lxinput.glade.h:5 +msgid "Delay before each key starts repeating" +msgstr "" + +#: ../data/lxinput.glade.h:6 +msgid "Fast" +msgstr "" + +#: ../data/lxinput.glade.h:7 +msgid "High" +msgstr "" + +#: ../data/lxinput.glade.h:8 +msgid "Input Device Preferences" +msgstr "" + +#: ../data/lxinput.glade.h:9 +msgid "Interval between each key repeat" +msgstr "" + +#: ../data/lxinput.glade.h:10 +msgid "Keyboard" +msgstr "" + +#: ../data/lxinput.glade.h:11 +msgid "Left handed (Swap left and right mouse buttons)" +msgstr "" + +#: ../data/lxinput.glade.h:12 +msgid "Long" +msgstr "" + +#: ../data/lxinput.glade.h:13 +msgid "Low" +msgstr "" + +#: ../data/lxinput.glade.h:14 +msgid "Mouse" +msgstr "" + +#: ../data/lxinput.glade.h:15 +msgid "Repeat delay:" +msgstr "" + +#: ../data/lxinput.glade.h:16 +msgid "Repeat interval:" +msgstr "" + +#: ../data/lxinput.glade.h:17 +msgid "Sensitivity:" +msgstr "" + +#: ../data/lxinput.glade.h:18 +msgid "Short" +msgstr "" + +#: ../data/lxinput.glade.h:19 +msgid "Slow" +msgstr "" + +#: ../data/lxinput.glade.h:20 +msgid "Touch Pad" +msgstr "" + +#: ../data/lxinput.glade.h:21 +msgid "Type in the following box to test your keyboard settings" +msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/tr.po lxinput-0.3.0/po/tr.po --- lxinput-0.1.1/po/tr.po 2009-05-01 13:47:19.000000000 +0000 +++ lxinput-0.3.0/po/tr.po 2010-08-07 17:35:01.000000000 +0000 @@ -3,99 +3,114 @@ # 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: \n" -"POT-Creation-Date: 2009-05-01 15:21+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-01-26 04:19+0200\n" +"Last-Translator: Kılıç \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.1\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Birem Yineleme" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Devinim" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Hızlanma:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "Tuştakımı girdisinde bir yanlışlık olduğunda sesle uyar" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Herbir tuş yinelemeye başlamadan önceki gecikme" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Hızlı" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Yüksek" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Girdi Aygıtı Yeğlenenleri" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Herbir tuş yinelemesi arasındaki süre" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Tuştakımı" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Solak (Sol ve sağ fare düğmelerini değiştir)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Uzun" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Alçak" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Fare" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Yineleme gecikmesi:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Yineleme aralığı:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Duyarlılık:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Kısa" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Yavaş" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "Dokunut" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" +msgstr "Tuştakımı ayarlarınızı sınamak için aşağıdaki kutuya birşeyler yazın" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "Tuştakımı" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Tuştakımı" diff -Nru lxinput-0.1.1/po/uk.po lxinput-0.3.0/po/uk.po --- lxinput-0.1.1/po/uk.po 2009-05-17 01:09:21.000000000 +0000 +++ lxinput-0.3.0/po/uk.po 2010-08-07 17:35:01.000000000 +0000 @@ -2,12 +2,12 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-31 04:48+0000\n" "PO-Revision-Date: 2009-05-16 12:37+0200\n" "Last-Translator: Y P \n" "Language-Team: LANGUAGE \n" @@ -46,7 +46,7 @@ #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "Налаштування Пристрою Вводу" +msgstr "Налаштування пристрою вводу" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" @@ -99,3 +99,14 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "Надрукуйте в цьому полі для перевірки налаштувань клавіатури" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Налаштування клавіатури, миші та інших вхідних пристроїв" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Клавіатура і миша" + +#~ msgid "input-keyboard" +#~ msgstr "Клавіатура" diff -Nru lxinput-0.1.1/po/ur.po lxinput-0.3.0/po/ur.po --- lxinput-0.1.1/po/ur.po 2009-05-12 07:53:23.000000000 +0000 +++ lxinput-0.3.0/po/ur.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: lxinput 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-01 18:21+0900\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: 2009-05-12 04:08+0500\n" "Last-Translator: Muhammad Ali Makki \n" "Language-Team: Urdu \n" @@ -104,3 +104,15 @@ msgid "Type in the following box to test your keyboard settings" msgstr "اپنے کیبورد کی ترتیبات دیکھنے کے لیے ذیل کے بکس میں لکھیں" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "کیبورڈ" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "کیبورڈ" diff -Nru lxinput-0.1.1/po/ur_PK.po lxinput-0.3.0/po/ur_PK.po --- lxinput-0.1.1/po/ur_PK.po 2009-05-12 21:09:49.000000000 +0000 +++ lxinput-0.3.0/po/ur_PK.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: lxinput 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-01 18:21+0900\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: 2009-05-12 04:08+0500\n" "Last-Translator: Muhammad Ali Makki \n" "Language-Team: Urdu \n" @@ -104,3 +104,15 @@ msgid "Type in the following box to test your keyboard settings" msgstr "اپنے کیبورد کی ترتیبات دیکھنے کے لیے ذیل کے بکس میں لکھیں" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +#, fuzzy +msgid "Keyboard and Mouse" +msgstr "کیبورڈ" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "کیبورڈ" diff -Nru lxinput-0.1.1/po/vi.po lxinput-0.3.0/po/vi.po --- lxinput-0.1.1/po/vi.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/vi.po 2010-08-07 17:35:01.000000000 +0000 @@ -3,99 +3,113 @@ # 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: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-24 03:04+0200\n" +"Last-Translator: Mario \n" "Language-Team: LANGUAGE \n" +"Language: vi\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: Pootle 2.0.1\n" #: ../data/lxinput.glade.h:1 msgid "Character Repeat" -msgstr "" +msgstr "Lặp lại Ký tự" #: ../data/lxinput.glade.h:2 msgid "Motion" -msgstr "" +msgstr "Chuyển động" #: ../data/lxinput.glade.h:3 msgid "Acceleration:" -msgstr "" +msgstr "Tốc độ:" #: ../data/lxinput.glade.h:4 msgid "Beep when there is an error of keyboard input" -msgstr "" +msgstr "Kêu bíp khi có lỗi bộ nhập bàn phím" #: ../data/lxinput.glade.h:5 msgid "Delay before each key starts repeating" -msgstr "" +msgstr "Trễ trước khi mỗi phím bắt đầu lặp lại" #: ../data/lxinput.glade.h:6 msgid "Fast" -msgstr "" +msgstr "Nhanh" #: ../data/lxinput.glade.h:7 msgid "High" -msgstr "" +msgstr "Cao" #: ../data/lxinput.glade.h:8 msgid "Input Device Preferences" -msgstr "" +msgstr "Tùy chỉnh Thiết bị Nhập" #: ../data/lxinput.glade.h:9 msgid "Interval between each key repeat" -msgstr "" +msgstr "Khoảng thời gian giữa mỗi lần lặp lại phím" #: ../data/lxinput.glade.h:10 msgid "Keyboard" -msgstr "" +msgstr "Bàn phím" #: ../data/lxinput.glade.h:11 msgid "Left handed (Swap left and right mouse buttons)" -msgstr "" +msgstr "Thuận tay trái (Đổi chỗ nút chuột trái và chuột phải)" #: ../data/lxinput.glade.h:12 msgid "Long" -msgstr "" +msgstr "Dài" #: ../data/lxinput.glade.h:13 msgid "Low" -msgstr "" +msgstr "Thấp" #: ../data/lxinput.glade.h:14 msgid "Mouse" -msgstr "" +msgstr "Chuột" #: ../data/lxinput.glade.h:15 msgid "Repeat delay:" -msgstr "" +msgstr "Độ trễ lặp:" #: ../data/lxinput.glade.h:16 msgid "Repeat interval:" -msgstr "" +msgstr "Khoảng thời gian lặp:" #: ../data/lxinput.glade.h:17 msgid "Sensitivity:" -msgstr "" +msgstr "Độ nhạy:" #: ../data/lxinput.glade.h:18 msgid "Short" -msgstr "" +msgstr "Ngắn" #: ../data/lxinput.glade.h:19 msgid "Slow" -msgstr "" +msgstr "Chậm" #: ../data/lxinput.glade.h:20 msgid "Touch Pad" -msgstr "" +msgstr "Tấm cảm ứng" #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" -msgstr "" +msgstr "Nhập vào hộp thoại sau để kiểm tra thiết lập bàn phím của bạn" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "Cấu hình bàn phím, chuột, và các thiết bị đầu vào khác" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "Bàn phím và chuột" + +#, fuzzy +#~ msgid "input-keyboard" +#~ msgstr "Bàn phím" diff -Nru lxinput-0.1.1/po/zh_CN.po lxinput-0.3.0/po/zh_CN.po --- lxinput-0.1.1/po/zh_CN.po 2009-04-29 08:46:15.000000000 +0000 +++ lxinput-0.3.0/po/zh_CN.po 2010-08-07 17:35:01.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-29 10:11+0200\n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,3 +99,11 @@ #: ../data/lxinput.glade.h:21 msgid "Type in the following box to test your keyboard settings" msgstr "" + +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "" diff -Nru lxinput-0.1.1/po/zh_TW.po lxinput-0.3.0/po/zh_TW.po --- lxinput-0.1.1/po/zh_TW.po 2009-04-28 14:38:12.000000000 +0000 +++ lxinput-0.3.0/po/zh_TW.po 2010-08-07 17:35:01.000000000 +0000 @@ -7,9 +7,9 @@ msgstr "" "Project-Id-Version: lxinput\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-28 22:37+0800\n" -"PO-Revision-Date: 2009-04-28 22:37+0800\n" -"Last-Translator: 洪任諭 \n" +"POT-Creation-Date: 2010-05-24 01:27+0800\n" +"PO-Revision-Date: 2010-05-24 01:26+0800\n" +"Last-Translator: Hong Jen Yee (PCMan) \n" "Language-Team: zh_TW \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -101,3 +101,10 @@ msgid "Type in the following box to test your keyboard settings" msgstr "在下列方塊中打字來測試你的鍵盤設定" +#: ../data/lxinput.desktop.in.h:1 +msgid "Configure keyboard, mouse, and other input devices" +msgstr "設定鍵盤、滑鼠、及其他輸入裝置" + +#: ../data/lxinput.desktop.in.h:2 +msgid "Keyboard and Mouse" +msgstr "鍵盤及滑鼠" diff -Nru lxinput-0.1.1/src/Makefile.am lxinput-0.3.0/src/Makefile.am --- lxinput-0.1.1/src/Makefile.am 2009-04-28 14:26:00.000000000 +0000 +++ lxinput-0.3.0/src/Makefile.am 2010-08-03 09:07:30.000000000 +0000 @@ -1,7 +1,8 @@ INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"/lxinput\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - @GTK_CFLAGS@ \ + $(GTK_CFLAGS) \ + $(XLIB_CFLAGS) -Werror-implicit-function-declaration bin_PROGRAMS = lxinput @@ -9,9 +10,12 @@ lxinput_SOURCES = \ lxinput.c -lxinput_LDADD = @GTK_LIBS@ $(INTLLIBS) +lxinput_LDADD = \ + $(GTK_LIBS) \ + $(XLIB_LIBS) \ + $(INTLLIBS) noinst_PROGRAMS=xml-purge xml_purge_SOURCES=xml-purge.c -xml_purge_CFLAGS=@GTK_CFLAGS@ -xml_purge_LDADD=@GTK_LIBS@ +xml_purge_CFLAGS=$(GTK_CFLAGS) +xml_purge_LDADD=$(GTK_LIBS) diff -Nru lxinput-0.1.1/src/Makefile.in lxinput-0.3.0/src/Makefile.in --- lxinput-0.1.1/src/Makefile.in 2009-07-07 11:45:35.000000000 +0000 +++ lxinput-0.3.0/src/Makefile.in 2010-08-03 09:05:47.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.11 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, @@ -41,7 +41,7 @@ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = @@ -50,10 +50,11 @@ am_lxinput_OBJECTS = lxinput.$(OBJEXT) lxinput_OBJECTS = $(am_lxinput_OBJECTS) am__DEPENDENCIES_1 = -lxinput_DEPENDENCIES = $(am__DEPENDENCIES_1) +lxinput_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) am_xml_purge_OBJECTS = xml_purge-xml-purge.$(OBJEXT) xml_purge_OBJECTS = $(am_xml_purge_OBJECTS) -xml_purge_DEPENDENCIES = +xml_purge_DEPENDENCIES = $(am__DEPENDENCIES_1) xml_purge_LINK = $(CCLD) $(xml_purge_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) @@ -126,6 +127,7 @@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ @@ -139,6 +141,8 @@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ +XLIB_CFLAGS = @XLIB_CFLAGS@ +XLIB_LIBS = @XLIB_LIBS@ XMLCATALOG = @XMLCATALOG@ XML_CATALOG_FILE = @XML_CATALOG_FILE@ XSLTPROC = @XSLTPROC@ @@ -187,16 +191,20 @@ INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"/lxinput\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - @GTK_CFLAGS@ \ - -Werror-implicit-function-declaration + $(GTK_CFLAGS) \ + $(XLIB_CFLAGS) lxinput_SOURCES = \ lxinput.c -lxinput_LDADD = @GTK_LIBS@ $(INTLLIBS) +lxinput_LDADD = \ + $(GTK_LIBS) \ + $(XLIB_LIBS) \ + $(INTLLIBS) + xml_purge_SOURCES = xml-purge.c -xml_purge_CFLAGS = @GTK_CFLAGS@ -xml_purge_LDADD = @GTK_LIBS@ +xml_purge_CFLAGS = $(GTK_CFLAGS) +xml_purge_LDADD = $(GTK_LIBS) all: all-am .SUFFIXES: @@ -514,6 +522,7 @@ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-binPROGRAMS + -Werror-implicit-function-declaration # 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. diff -Nru lxinput-0.1.1/src/lxinput.c lxinput-0.3.0/src/lxinput.c --- lxinput-0.1.1/src/lxinput.c 2009-07-06 20:37:12.000000000 +0000 +++ lxinput-0.3.0/src/lxinput.c 2010-08-02 11:36:28.000000000 +0000 @@ -61,7 +61,7 @@ static void on_mouse_threshold_changed(GtkRange* range, gpointer user_data) { - /* threshold = sensitivity - 100. The lower the threshold, the higher the sensitivity */ + /* threshold = 110 - sensitivity. The lower the threshold, the higher the sensitivity */ threshold = 110 - (int)gtk_range_get_value(range); XChangePointerControl(GDK_DISPLAY(), False, True, 0, 10, threshold); @@ -138,9 +138,13 @@ static void load_settings() { - /* load settings form LXDE config files */ - file = g_build_filename( g_get_user_config_dir(), "lxde/config", NULL ); - gboolean ret = g_key_file_load_from_file( kf, file, 0, NULL ); + gboolean ret; + const char* session_name = g_getenv("DESKTOP_SESSION"); + /* load settings from current session config files */ + if(!session_name) + session_name = "LXDE"; + file = g_build_filename( g_get_user_config_dir(), "lxsession", session_name, "desktop.conf", NULL ); + ret = g_key_file_load_from_file( kf, file, 0, NULL ); if( ret ) { @@ -269,7 +273,7 @@ threshold = old_threshold; left_handed = old_left_handed; XChangePointerControl(GDK_DISPLAY(), True, True, - accel, 10, (110 - threshold)); + accel, 10, threshold); set_left_handed_mouse(); }