configure detects gtk 0.99.4 or higher

completed plugin split

-Yosh
This commit is contained in:
Manish Singh 1998-02-24 12:16:39 +00:00
parent e9638742b2
commit e88b34cc19
6 changed files with 9 additions and 20 deletions

View File

@ -1,3 +1,7 @@
Tue Feb 24 04:14:36 PST 1998 Manish Singh <yosh@gimp.org>
* configure.in: change to detect GTK 0.99.4 or higher
Sun Feb 22 02:43:12 PST 1998 Manish Singh <yosh@gimp.org> Sun Feb 22 02:43:12 PST 1998 Manish Singh <yosh@gimp.org>
* app/text_tool.c: use our own sort function to appease * app/text_tool.c: use our own sort function to appease

4
NOTES
View File

@ -1,9 +1,5 @@
Some notes on GIMP-0.99.18: 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 Please read the file TODO-DIST to find more information about things
that were not included or that are (possibly) broken in this distribution. that were not included or that are (possibly) broken in this distribution.

View File

@ -45,6 +45,7 @@ static char *scroll_text[] =
"Roberto Boyd", "Roberto Boyd",
"Seth Burgess", "Seth Burgess",
"Brent Burton", "Brent Burton",
"Francisco Bustamente",
"Ed Connel", "Ed Connel",
"Andreas Dilger", "Andreas Dilger",
"Larry Ewing", "Larry Ewing",

View File

@ -45,6 +45,7 @@ static char *scroll_text[] =
"Roberto Boyd", "Roberto Boyd",
"Seth Burgess", "Seth Burgess",
"Brent Burton", "Brent Burton",
"Francisco Bustamente",
"Ed Connel", "Ed Connel",
"Andreas Dilger", "Andreas Dilger",
"Larry Ewing", "Larry Ewing",

View File

@ -45,6 +45,7 @@ static char *scroll_text[] =
"Roberto Boyd", "Roberto Boyd",
"Seth Burgess", "Seth Burgess",
"Brent Burton", "Brent Burton",
"Francisco Bustamente",
"Ed Connel", "Ed Connel",
"Andreas Dilger", "Andreas Dilger",
"Larry Ewing", "Larry Ewing",

View File

@ -68,10 +68,10 @@ AC_DEFUN(AC_GIMP_CHECK,
LDFLAGS="$saved_ldflags $X_LDFLAGS $X_LIBS" LDFLAGS="$saved_ldflags $X_LDFLAGS $X_LIBS"
dnl Dont cache this as it depends on CFLAGS, LDFLAGS, etc 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( AC_TRY_COMPILE(
[#include <gtk/gtk.h>], [#include <gtk/gtk.h>],
[GtkArgSetFunc arg_set_func;], [GtkTooltipsClass tipclass;],
gtk_found=yes, gtk_found=yes,
gtk_found=no) gtk_found=no)
AC_MSG_RESULT($gtk_found) AC_MSG_RESULT($gtk_found)
@ -148,18 +148,6 @@ dnl Test for libmpeg
AC_MSG_WARN(*** MPEG plug-in will not be built ***)) AC_MSG_WARN(*** MPEG plug-in will not be built ***))
fi 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 dnl Test for libxdelta
if test -z "$LIBXDELTA_LIB"; then if test -z "$LIBXDELTA_LIB"; then
AC_CHECK_LIB(xdelta, xd_checkin, AC_CHECK_LIB(xdelta, xd_checkin,
@ -256,8 +244,6 @@ AC_SUBST(PNG)
AC_SUBST(LIBPNG_LIB) AC_SUBST(LIBPNG_LIB)
AC_SUBST(MPEG) AC_SUBST(MPEG)
AC_SUBST(LIBMPEG_LIB) AC_SUBST(LIBMPEG_LIB)
#AC_SUBST(GIMPTCL)
#AC_SUBST(LIBTCL_LIB)
AC_SUBST(XD) AC_SUBST(XD)
AC_SUBST(LIBXDELTA_LIB) AC_SUBST(LIBXDELTA_LIB)
AC_SUBST(XPM) AC_SUBST(XPM)