mirror of https://github.com/GNOME/gimp.git
make perl use the GLIB_CFLAGS/LIBS vars properly. corrected documentation
* configure.in: make perl use the GLIB_CFLAGS/LIBS vars properly. * app/drawable_cmds.c: corrected documentation for gimp_drawable_fill.
This commit is contained in:
parent
682b1f3c65
commit
064e081cd8
|
@ -1,3 +1,11 @@
|
|||
Sat Oct 31 01:37:23 CET 1998 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* configure.in: make perl use the GLIB_CFLAGS/LIBS vars properly.
|
||||
|
||||
Tue Oct 6 11:07:56 CEST 1998 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* app/drawable_cmds.c: corrected documentation for gimp_drawable_fill.
|
||||
|
||||
Fri Oct 30 01:53:56 1998 Jay Cox (jaycox@earthlink.net)
|
||||
|
||||
* app/parasitelist.c
|
||||
|
|
|
@ -132,7 +132,7 @@ ProcArg drawable_fill_args[] =
|
|||
},
|
||||
{ PDB_INT32,
|
||||
"fill_type",
|
||||
"type of fill: { BG-IMAGE-FILL (0), WHITE-IMAGE-FILL (1), TRANS-IMAGE-FILL (2) }"
|
||||
"type of fill: { FG-IMAGE-FILL (0), BG-IMAGE-FILL (1), WHITE-IMAGE-FILL (2), TRANS-IMAGE-FILL (3), NO-IMAGE-FILL (4) }"
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -474,9 +474,9 @@ if eval "test x$enable_perl != xno"; then
|
|||
fi
|
||||
|
||||
dnl these are gross hacks
|
||||
GIMP_CFLAGS="$CFLAGS -I$srcdir -I\$topdir/../.. $GTK_CFLAGS"
|
||||
GIMP_CFLAGS="$CFLAGS $GLIB_CFLAGS -I$srcdir -I\$topdir/../.. $GTK_CFLAGS"
|
||||
GIMP_CFLAGS_NOUI="$GIMP_CFLAGS"
|
||||
GIMP_LIBS="$LIBS -L\$topdir/../../libgimp/.libs -L\$topdir/../../libgimp -lgimp"
|
||||
GIMP_LIBS="$LIBS $GLIB_LIBS -L\$topdir/../../libgimp/.libs -L\$topdir/../../libgimp -lgimp"
|
||||
GIMP_LIBS_NOUI="$GIMP_LIBS"
|
||||
GIMPTOOL="../../gimptool"
|
||||
IN_GIMP=1
|
||||
|
|
Loading…
Reference in New Issue