
Initial commit new file: AUTHORS new file: COPYING new file: ChangeLog new file: INSTALL new file: Makefile.am new file: NEWS new file: README new file: TODO new file: autogen.sh new file: config.guess new file: config.h.in new file: config.rpath new file: config.sub new file: configure.in new file: data/Makefile.am new file: data/clipit-startup.desktop.in new file: data/clipit.desktop.in new file: depcomp new file: doc/Makefile.am new file: doc/clipit.1 new file: install-sh new file: m4/ChangeLog new file: m4/Makefile.in new file: m4/gettext.m4 new file: m4/iconv.m4 new file: m4/intltool.m4 new file: m4/lib-ld.m4 new file: m4/lib-link.m4 new file: m4/lib-prefix.m4 new file: m4/nls.m4 new file: m4/po.m4 new file: m4/progtest.m4 new file: missing new file: po/Makefile.in.in new file: po/POTFILES.in new file: po/POTFILES.skip new file: po/cs.po new file: po/da.po new file: po/de.po new file: po/es.po new file: po/fr.po new file: po/hu.po new file: po/it.po new file: po/ja.po new file: po/nb.po new file: po/pl.po new file: po/pl_PL.po new file: po/pt_BR.po new file: po/ro.po new file: po/ru.po new file: po/sv.po new file: po/tr.po new file: po/zh_CN.po new file: src/Makefile.am new file: src/clipit-i18n.h new file: src/daemon.c new file: src/daemon.h new file: src/eggaccelerators.c new file: src/eggaccelerators.h new file: src/history.c new file: src/history.h new file: src/keybinder.c new file: src/keybinder.h new file: src/main.c new file: src/main.h new file: src/preferences.c new file: src/preferences.h new file: src/utils.c new file: src/utils.h
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
# nls.m4 serial 5 (gettext-0.18)
|
|
dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation,
|
|
dnl Inc.
|
|
dnl This file is free software; the Free Software Foundation
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
dnl
|
|
dnl This file can can be used in projects which are not available under
|
|
dnl the GNU General Public License or the GNU Library General Public
|
|
dnl License but which still want to provide support for the GNU gettext
|
|
dnl functionality.
|
|
dnl Please note that the actual code of the GNU gettext library is covered
|
|
dnl by the GNU Library General Public License, and the rest of the GNU
|
|
dnl gettext package package is covered by the GNU General Public License.
|
|
dnl They are *not* in the public domain.
|
|
|
|
dnl Authors:
|
|
dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
|
|
dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
|
|
|
|
AC_PREREQ([2.50])
|
|
|
|
AC_DEFUN([AM_NLS],
|
|
[
|
|
AC_MSG_CHECKING([whether NLS is requested])
|
|
dnl Default is enabled NLS
|
|
AC_ARG_ENABLE([nls],
|
|
[ --disable-nls do not use Native Language Support],
|
|
USE_NLS=$enableval, USE_NLS=yes)
|
|
AC_MSG_RESULT([$USE_NLS])
|
|
AC_SUBST([USE_NLS])
|
|
])
|