diff --git a/ChangeLog b/ChangeLog index d62b9aedcb..2b3b1f4b58 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 24 04:14:36 PST 1998 Manish Singh + + * configure.in: change to detect GTK 0.99.4 or higher + Sun Feb 22 02:43:12 PST 1998 Manish Singh * app/text_tool.c: use our own sort function to appease diff --git a/NOTES b/NOTES index 534e2d8540..39e26e5a87 100644 --- a/NOTES +++ b/NOTES @@ -1,9 +1,5 @@ Some notes on GIMP-0.99.18: -* The AA, MathMap, GAG, user_filter, rcm, FractalExplorer, and Gfig plugins -are included but not yet integrated into the build cause of instability or -other unresolved issues. - Please read the file TODO-DIST to find more information about things that were not included or that are (possibly) broken in this distribution. diff --git a/app/about_dialog.c b/app/about_dialog.c index 8036dec882..5875d87280 100644 --- a/app/about_dialog.c +++ b/app/about_dialog.c @@ -45,6 +45,7 @@ static char *scroll_text[] = "Roberto Boyd", "Seth Burgess", "Brent Burton", + "Francisco Bustamente", "Ed Connel", "Andreas Dilger", "Larry Ewing", diff --git a/app/dialogs/about-dialog.c b/app/dialogs/about-dialog.c index 8036dec882..5875d87280 100644 --- a/app/dialogs/about-dialog.c +++ b/app/dialogs/about-dialog.c @@ -45,6 +45,7 @@ static char *scroll_text[] = "Roberto Boyd", "Seth Burgess", "Brent Burton", + "Francisco Bustamente", "Ed Connel", "Andreas Dilger", "Larry Ewing", diff --git a/app/gui/about-dialog.c b/app/gui/about-dialog.c index 8036dec882..5875d87280 100644 --- a/app/gui/about-dialog.c +++ b/app/gui/about-dialog.c @@ -45,6 +45,7 @@ static char *scroll_text[] = "Roberto Boyd", "Seth Burgess", "Brent Burton", + "Francisco Bustamente", "Ed Connel", "Andreas Dilger", "Larry Ewing", diff --git a/configure.in b/configure.in index 82c5a743e7..7e2c6eea0e 100644 --- a/configure.in +++ b/configure.in @@ -68,10 +68,10 @@ AC_DEFUN(AC_GIMP_CHECK, LDFLAGS="$saved_ldflags $X_LDFLAGS $X_LIBS" dnl Dont cache this as it depends on CFLAGS, LDFLAGS, etc - AC_MSG_CHECKING([for gtk >= 0.99.3]) + AC_MSG_CHECKING([for gtk >= 0.99.4]) AC_TRY_COMPILE( [#include ], -[GtkArgSetFunc arg_set_func;], +[GtkTooltipsClass tipclass;], gtk_found=yes, gtk_found=no) AC_MSG_RESULT($gtk_found) @@ -148,18 +148,6 @@ dnl Test for libmpeg AC_MSG_WARN(*** MPEG plug-in will not be built ***)) fi -#dnl Test for libtcl -# if test -z "$LIBTCL_LIB"; then -# AC_CHECK_LIB(dl, dlopen, DL_LIBRARY=-ldl) -# AC_ARG_WITH(tcl, --with-{tcl/tk} use this tcl/tk library, -# AC_CHECK_LIB($with_tcl, Tcl_StaticPackage, -# GIMPTCL='gimptcl'; LIBTCL_LIB="-l$with_tcl -l$with_tk $DL_LIBRARY", -# AC_MSG_WARN(*** gimptcl plug-in will not be built ***), -lm $DL_LIBRARY), -# AC_CHECK_LIB(tcl, Tcl_StaticPackage, -# GIMPTCL='gimptcl'; LIBTCL_LIB="-ltcl -ltk $DL_LIBRARY", -# AC_MSG_WARN(*** gimptcl plug-in will not be built ***), -lm $DL_LIBRARY)) -# fi - dnl Test for libxdelta if test -z "$LIBXDELTA_LIB"; then AC_CHECK_LIB(xdelta, xd_checkin, @@ -256,8 +244,6 @@ AC_SUBST(PNG) AC_SUBST(LIBPNG_LIB) AC_SUBST(MPEG) AC_SUBST(LIBMPEG_LIB) -#AC_SUBST(GIMPTCL) -#AC_SUBST(LIBTCL_LIB) AC_SUBST(XD) AC_SUBST(LIBXDELTA_LIB) AC_SUBST(XPM)