forked from gimp-plugins-justice/gimp-plugin-astronomy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more fixes to the autoconf process added, and improvements to distcheck
autoconf 2.70 and gettext makes it difficult to avoid adding version. Had to settle on using autoconf 2.70 (or higher) and using AM_GNU_GETTEXT_VERSION(0.21) in configure.ac Also made some further improvements to autogen.sh since it was still requesting/requiring intltools when it should now be using gettext. Also added 3 m4 files which appeared to be requested by autogen.sh Duplicated the SNIPPETs used in fix-ca to help 'make distcheck'
- Loading branch information
Showing
12 changed files
with
306 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,17 +8,24 @@ EXTRA_DIST = \ | |
Makefile.mingw \ | ||
config.h.win32 \ | ||
config.rpath \ | ||
m4/codeset.m4 \ | ||
m4/gettext.m4 \ | ||
m4/iconv.m4 \ | ||
m4/lib-ld.m4 \ | ||
m4/lib-prefix.m4 \ | ||
m4/po.m4 \ | ||
m4/glibc21.m4 \ | ||
m4/host-cpu-c-abi.m4 \ | ||
m4/iconv.m4 \ | ||
m4/intlmacosx.m4 \ | ||
m4/lcmessage.m4 \ | ||
m4/lib-ld.m4 \ | ||
m4/lib-link.m4 \ | ||
m4/lib-prefix.m4 \ | ||
m4/nls.m4 \ | ||
m4/po.m4 \ | ||
m4/progtest.m4 \ | ||
po/*.po po/*.gmo \ | ||
m4/host-cpu-c-abi.m4 \ | ||
po/de.po \ | ||
po/ru.po \ | ||
po/de.gmo \ | ||
po/ru.gmo \ | ||
po/boldquot.sed \ | ||
po/[email protected] \ | ||
po/[email protected] \ | ||
|
@@ -28,19 +35,15 @@ EXTRA_DIST = \ | |
po/Makefile.in \ | ||
po/Makefile.in.in \ | ||
po/Makevars \ | ||
po/POTFILES* \ | ||
po/Makevars.template \ | ||
po/POTFILES \ | ||
po/POTFILES.in \ | ||
po/quot.sed \ | ||
po/remove-potcdate.sed \ | ||
po/remove-potcdate.sin \ | ||
po/Rules-quot \ | ||
rpm/gimp-plugin-astronomy.spec.in \ | ||
rpm/gimp-plugin-astronomy.spec \ | ||
scripts/background_gradient_batch.scm \ | ||
scripts/border_information.scm \ | ||
scripts/brightness_contrast_batch.scm \ | ||
scripts/dark_subtraction.scm \ | ||
scripts/flat_division.scm \ | ||
scripts/mode_batch.scm \ | ||
scripts/normalize_batch.scm | ||
rpm/gimp-plugin-astronomy.spec | ||
|
||
nodist_EXTRA_DATA = .git .github | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# codeset.m4 serial 5 (gettext-0.18.2) | ||
dnl Copyright (C) 2000-2002, 2006, 2008-2014 Free Software Foundation, Inc. | ||
dnl This file is free software; the Free Software Foundation | ||
dnl gives unlimited permission to copy and/or distribute it, | ||
dnl with or without modifications, as long as this notice is preserved. | ||
|
||
dnl From Bruno Haible. | ||
|
||
AC_DEFUN([AM_LANGINFO_CODESET], | ||
[ | ||
AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset], | ||
[AC_LINK_IFELSE( | ||
[AC_LANG_PROGRAM( | ||
[[#include <langinfo.h>]], | ||
[[char* cs = nl_langinfo(CODESET); return !cs;]])], | ||
[am_cv_langinfo_codeset=yes], | ||
[am_cv_langinfo_codeset=no]) | ||
]) | ||
if test $am_cv_langinfo_codeset = yes; then | ||
AC_DEFINE([HAVE_LANGINFO_CODESET], [1], | ||
[Define if you have <langinfo.h> and nl_langinfo(CODESET).]) | ||
fi | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# glibc21.m4 serial 5 | ||
dnl Copyright (C) 2000-2002, 2004, 2008, 2010-2014 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. | ||
|
||
# Test for the GNU C Library, version 2.1 or newer, or uClibc. | ||
# From Bruno Haible. | ||
|
||
AC_DEFUN([gl_GLIBC21], | ||
[ | ||
AC_CACHE_CHECK([whether we are using the GNU C Library >= 2.1 or uClibc], | ||
[ac_cv_gnu_library_2_1], | ||
[AC_EGREP_CPP([Lucky], | ||
[ | ||
#include <features.h> | ||
#ifdef __GNU_LIBRARY__ | ||
#if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) | ||
Lucky GNU user | ||
#endif | ||
#endif | ||
#ifdef __UCLIBC__ | ||
Lucky user | ||
#endif | ||
], | ||
[ac_cv_gnu_library_2_1=yes], | ||
[ac_cv_gnu_library_2_1=no]) | ||
] | ||
) | ||
AC_SUBST([GLIBC21]) | ||
GLIBC21="$ac_cv_gnu_library_2_1" | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# lcmessage.m4 serial 7 (gettext-0.18.2) | ||
dnl Copyright (C) 1995-2002, 2004-2005, 2008-2014 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 <[email protected]>, 1995. | ||
|
||
# Check whether LC_MESSAGES is available in <locale.h>. | ||
|
||
AC_DEFUN([gt_LC_MESSAGES], | ||
[ | ||
AC_CACHE_CHECK([for LC_MESSAGES], [gt_cv_val_LC_MESSAGES], | ||
[AC_LINK_IFELSE( | ||
[AC_LANG_PROGRAM( | ||
[[#include <locale.h>]], | ||
[[return LC_MESSAGES]])], | ||
[gt_cv_val_LC_MESSAGES=yes], | ||
[gt_cv_val_LC_MESSAGES=no])]) | ||
if test $gt_cv_val_LC_MESSAGES = yes; then | ||
AC_DEFINE([HAVE_LC_MESSAGES], [1], | ||
[Define if your <locale.h> file defines LC_MESSAGES.]) | ||
fi | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# Makefile variables for PO directory in any package using GNU gettext. | ||
# | ||
# Copyright (C) 2003-2019 Free Software Foundation, Inc. | ||
# This file is free software; the Free Software Foundation gives | ||
# unlimited permission to use, copy, distribute, and modify it. | ||
|
||
# Usually the message domain is the same as the package name. | ||
DOMAIN = $(PACKAGE) | ||
|
||
# These two variables depend on the location of this directory. | ||
subdir = po | ||
top_builddir = .. | ||
|
||
# These options get passed to xgettext. | ||
XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ | ||
|
||
# This is the copyright holder that gets inserted into the header of the | ||
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding | ||
# package. (Note that the msgstr strings, extracted from the package's | ||
# sources, belong to the copyright holder of the package.) Translators are | ||
# expected to transfer the copyright for their translations to this person | ||
# or entity, or to disclaim their copyright. The empty string stands for | ||
# the public domain; in this case the translators are expected to disclaim | ||
# their copyright. | ||
COPYRIGHT_HOLDER = Free Software Foundation, Inc. | ||
|
||
# This tells whether or not to prepend "GNU " prefix to the package | ||
# name that gets inserted into the header of the $(DOMAIN).pot file. | ||
# Possible values are "yes", "no", or empty. If it is empty, try to | ||
# detect it automatically by scanning the files in $(top_srcdir) for | ||
# "GNU packagename" string. | ||
PACKAGE_GNU = | ||
|
||
# This is the email address or URL to which the translators shall report | ||
# bugs in the untranslated strings: | ||
# - Strings which are not entire sentences, see the maintainer guidelines | ||
# in the GNU gettext documentation, section 'Preparing Strings'. | ||
# - Strings which use unclear terms or require additional context to be | ||
# understood. | ||
# - Strings which make invalid assumptions about notation of date, time or | ||
# money. | ||
# - Pluralisation problems. | ||
# - Incorrect English spelling. | ||
# - Incorrect formatting. | ||
# It can be your email address, or a mailing list address where translators | ||
# can write to without being subscribed, or the URL of a web page through | ||
# which the translators can contact you. | ||
MSGID_BUGS_ADDRESS = | ||
|
||
# This is the list of locale categories, beyond LC_MESSAGES, for which the | ||
# message catalogs shall be used. It is usually empty. | ||
EXTRA_LOCALE_CATEGORIES = | ||
|
||
# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' | ||
# context. Possible values are "yes" and "no". Set this to yes if the | ||
# package uses functions taking also a message context, like pgettext(), or | ||
# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. | ||
USE_MSGCTXT = no | ||
|
||
# These options get passed to msgmerge. | ||
# Useful options are in particular: | ||
# --previous to keep previous msgids of translated messages, | ||
# --quiet to reduce the verbosity. | ||
MSGMERGE_OPTIONS = | ||
|
||
# These options get passed to msginit. | ||
# If you want to disable line wrapping when writing PO files, add | ||
# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and | ||
# MSGINIT_OPTIONS. | ||
MSGINIT_OPTIONS = | ||
|
||
# This tells whether or not to regenerate a PO file when $(DOMAIN).pot | ||
# has changed. Possible values are "yes" and "no". Set this to no if | ||
# the POT file is checked in the repository and the version control | ||
# program ignores timestamps. | ||
PO_DEPENDS_ON_POT = yes | ||
|
||
# This tells whether or not to forcibly update $(DOMAIN).pot and | ||
# regenerate PO files on "make dist". Possible values are "yes" and | ||
# "no". Set this to no if the POT file and PO files are maintained | ||
# externally. | ||
DIST_DEPENDS_ON_UPDATE_PO = yes |
Oops, something went wrong.