mirror of https://github.com/GNOME/gimp.git
adjusted version numbers, added warning
2001-01-17 Sven Neumann <sven@gimp.org> * INSTALL: adjusted version numbers, added warning * configure.in: changed .gimp to .gimp-1.3
This commit is contained in:
parent
54eede5898
commit
969e0521a3
|
@ -1,3 +1,9 @@
|
||||||
|
2001-01-17 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* INSTALL: adjusted version numbers, added warning
|
||||||
|
|
||||||
|
* configure.in: changed .gimp to .gimp-1.3
|
||||||
|
|
||||||
2001-01-17 Michael Natterer <mitch@gimp.org>
|
2001-01-17 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/gimprc.c: factored the color parsing code out to the new
|
* app/gimprc.c: factored the color parsing code out to the new
|
||||||
|
|
15
INSTALL
15
INSTALL
|
@ -1,5 +1,8 @@
|
||||||
There are six basic steps to building and installing the
|
THIS IS A DEVELOPMENT VERSION OF THE GIMP !! YOU SHOULD BE USING THE
|
||||||
GIMP:
|
STABLE VERSION 1.2 INSTEAD !! YOU HAVE BEEN WARNED!
|
||||||
|
|
||||||
|
|
||||||
|
There are six basic steps to building and installing the GIMP:
|
||||||
|
|
||||||
1. You need to have installed GTK version 1.2.8 or better. Do not try
|
1. You need to have installed GTK version 1.2.8 or better. Do not try
|
||||||
to use the unstable GTK+ versions 1.3.x, it will not work.
|
to use the unstable GTK+ versions 1.3.x, it will not work.
|
||||||
|
@ -24,8 +27,8 @@ packages are included below. Here is an illustration of commands that
|
||||||
might be used to build and install the GIMP. The actual configuration,
|
might be used to build and install the GIMP. The actual configuration,
|
||||||
compilation and installation output is not shown.
|
compilation and installation output is not shown.
|
||||||
|
|
||||||
% tar xvfz gimp-1.2.0.tar.gz # unpack the sources
|
% tar xvfz gimp-1.3.0.tar.gz # unpack the sources
|
||||||
% cd gimp-1.2.0 # change to the toplevel directory
|
% cd gimp-1.3.0 # change to the toplevel directory
|
||||||
% ./configure # run the `configure' script
|
% ./configure # run the `configure' script
|
||||||
% make # build the GIMP
|
% make # build the GIMP
|
||||||
% make install # install the GIMP
|
% make install # install the GIMP
|
||||||
|
@ -56,8 +59,8 @@ recognizes. These are:
|
||||||
is intended primarily as a convenience for developers.
|
is intended primarily as a convenience for developers.
|
||||||
|
|
||||||
4. --enable-gimpdir=DIR. This option changes the default directory
|
4. --enable-gimpdir=DIR. This option changes the default directory
|
||||||
the gimp uses to search for its configuration files from ~/.gimp (the
|
the gimp uses to search for its configuration files from ~/.gimp-1.3
|
||||||
directory .gimp in the users home directory) to DIR.
|
(the directory .gimp-1.3 in the users home directory) to DIR.
|
||||||
|
|
||||||
5. --enable-perl and --disable-perl. The perl extension does not build
|
5. --enable-perl and --disable-perl. The perl extension does not build
|
||||||
on all systems. If you experience problems use --disable-perl
|
on all systems. If you experience problems use --disable-perl
|
||||||
|
|
|
@ -60,7 +60,7 @@ AC_ARG_ENABLE(ansi, [ --enable-ansi turn on strict ansi [default=no]]
|
||||||
|
|
||||||
dnl Possibly change default gimpdir from .gimp
|
dnl Possibly change default gimpdir from .gimp
|
||||||
gimpdir=.$PACKAGE-$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
|
gimpdir=.$PACKAGE-$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION
|
||||||
AC_ARG_ENABLE(gimpdir, [ --enable-gimpdir=DIR change default gimpdir from .gimp to DIR],
|
AC_ARG_ENABLE(gimpdir, [ --enable-gimpdir=DIR change default gimpdir from .gimp-1.3 to DIR],
|
||||||
if eval "test x$enable_gimpdir != x"; then
|
if eval "test x$enable_gimpdir != x"; then
|
||||||
if eval "test x$enable_gimpdir != xyes"; then
|
if eval "test x$enable_gimpdir != xyes"; then
|
||||||
gimpdir=$enable_gimpdir
|
gimpdir=$enable_gimpdir
|
||||||
|
|
Loading…
Reference in New Issue