changed the gettext domain prefix to gimp20.

2003-07-20  Sven Neumann  <sven@gimp.org>

	* configure.in: changed the gettext domain prefix to gimp20.

	* m4macros/Makefile.am
	* m4macros/gimp-1.4.m4: removed this file ...
	* m4macros/gimp-2.0.m4: ... and readded it with a new name.
	Changed the macro to AM_PATH_GIMP_2_0().

	* configure.in: added --without-aa option as a way to work around
	broken aalib installations.

	* INSTALL: document --without-aa and --without-mng.
This commit is contained in:
Sven Neumann 2003-07-20 12:40:30 +00:00 committed by Sven Neumann
parent 8e6328c773
commit 1ea55851c3
7 changed files with 35 additions and 11 deletions

View File

@ -1,6 +1,20 @@
2003-07-20 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/scripts/rendermap.scm: applied patch from
* configure.in: changed the gettext domain prefix to gimp20.
* m4macros/Makefile.am
* m4macros/gimp-1.4.m4: removed this file ...
* m4macros/gimp-2.0.m4: ... and readded it with a new name.
Changed the macro to AM_PATH_GIMP_2_0().
* configure.in: added --without-aa option as a way to work around
broken aalib installations.
* INSTALL: document --without-aa and --without-mng.
2003-07-20 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/scripts/rendermap.scm: applied a patch from
Alastair M. Robinson that fixes the name of the default gradient
(bug #117851).

View File

@ -78,7 +78,7 @@ recognizes. These are:
the gimp uses to search for its configuration files from ~/.gimp-1.3
(the directory .gimp-1.3 in the users home directory) to DIR.
--without-libtiff, without-libjpeg, --without-libpng. configure
--without-libtiff, --without-libjpeg, --without-libpng. configure
will bail out if libtiff, libjpeg or libpng can not be found. You
better fix the underlying problem and install these libraries with
their header files. If you absolutely want to compile GIMP without
@ -90,6 +90,12 @@ recognizes. These are:
causing any trouble at compile-time, you can build --without-exif.
Get libexif from http://www.sourceforge.net/projects/libexif.
--without-mng, --without-aa. The MNG plug-in needs libmng and
configure checks for its presense. If for some reason you don't
want to build the MNG plug-in even though the library is installed,
use --without-mng to disable it expliticely. The same switch exists
for aalib, use --without-aa if you run into problems.
--enable-gtk-doc. This option controls whether the libgimp API
references will be created using gtk-doc. The HTML pages are
included in a standard tarball, so you will only need this if you

6
NEWS
View File

@ -4,11 +4,13 @@
GIMP 1.3 is the development branch of The GIMP. Here's where the
development takes place on the road to the next stable release.
development takes place on the road to the next stable release
GIMP version 2.0.
Overview of Changes in GIMP 1.3.17
==================================
- Changed all(?) references to GIMP-1.4 to GIMP-2.0 [Sven]
- Allow to transform paths using the transform tools [Mitch]
- Added a simple CMYK color selector [Sven]
- Added naive RGB <-> CMYK conversion routines [Sven]
@ -27,7 +29,7 @@ Overview of Changes in GIMP 1.3.17
- Lots of bug fixes
Other contributors:
Eric Pierce, Joao S. O. Bueno
Eric Pierce, Joao S. O. Bueno, Alastair M. Robinson
Overview of Changes in GIMP 1.3.16

2
README
View File

@ -3,7 +3,7 @@ The GIMP: The GNU Image Manipulation Program
This is version 1.3, the developers version of The GIMP. Only use it
if you are brave and curious and want to participate development
towards the next stable release version. This is a developers
towards the next stable release GIMP version 2.0. This is a developers
version. We know it has bugs and it might not even compile. You have
been warned!

View File

@ -274,7 +274,7 @@ AC_CHECK_FUNCS(difftime putenv mmap)
# Internationalisation
######################
GETTEXT_PACKAGE=gimp14
GETTEXT_PACKAGE=gimp20
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
[The prefix for our gettext translation domains.])
@ -841,7 +841,9 @@ fi
# Check for libaa
#################
if test -z "$LIBAA"; then
AC_ARG_WITH(aa, [ --without-aa do not build the AA plug-in])
if x$with_aa != xno test -z "$LIBAA"; then
AC_CHECK_LIB(aa, aa_printf,
[AC_CHECK_HEADER(aalib.h,
AA='aa'; LIBAA='-laa',

View File

@ -1,6 +1,6 @@
# Makefile.am for gimp/m4macros
installed_m4 = gimp-1.4.m4
installed_m4 = gimp-2.0.m4
EXTRA_DIST = $(installed_m4)

View File

@ -1,11 +1,11 @@
# Configure paths for GIMP-1.4
# Configure paths for GIMP-2.0
# Manish Singh 98-6-11
# Shamelessly stolen from Owen Taylor
dnl AM_PATH_GIMP_1_4([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl AM_PATH_GIMP_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for GIMP, and define GIMP_CFLAGS and GIMP_LIBS
dnl
AC_DEFUN(AM_PATH_GIMP_1_4,
AC_DEFUN(AM_PATH_GIMP_2_0,
[dnl
dnl Get the cflags and libraries from the gimptool-1.3 script
dnl