mirror of https://github.com/GNOME/gimp.git
*** empty log message ***
This commit is contained in:
parent
12cd1a5c0e
commit
8c2bbadef9
|
@ -1,3 +1,8 @@
|
|||
Thu Mar 11 19:42:12 CET 1999 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* configure.in, config.h.in: added test for _exit (mirrors the
|
||||
change in plug-ins/perl/etc/configure.frag)
|
||||
|
||||
1999-03-10 Jay Cox <jaycox@earthlink.net>
|
||||
|
||||
* plug-ins/wind/wind.c, plug-ins/bumpmap/bumpmap.c: Set
|
||||
|
|
10
config.h.in
10
config.h.in
|
@ -75,12 +75,15 @@
|
|||
#undef HAVE_NDIR_H
|
||||
#undef HAVE_PROGRESSIVE_JPEG
|
||||
#undef HAVE_PUTENV
|
||||
#undef HAVE_RINT
|
||||
#undef HAVE_SHM_H
|
||||
#undef HAVE_STPCPY
|
||||
#undef HAVE_SYS_DIR_H
|
||||
#undef HAVE_SYS_NDIR_H
|
||||
#undef HAVE_SYS_PARAM_H
|
||||
#undef HAVE_SYS_SELECT_H
|
||||
#undef HAVE_SYS_TIME_H
|
||||
#undef HAVE_SYS_TIMES_H
|
||||
#undef HAVE_UNISTD_H
|
||||
#undef HAVE_VPRINTF
|
||||
#undef HAVE_VSNPRINTF
|
||||
|
@ -105,6 +108,9 @@
|
|||
/* Define if you have the __argz_stringify function. */
|
||||
#undef HAVE___ARGZ_STRINGIFY
|
||||
|
||||
/* Define if you have the _exit function. */
|
||||
#undef HAVE__EXIT
|
||||
|
||||
/* Define if you have the dcgettext function. */
|
||||
#undef HAVE_DCGETTEXT
|
||||
|
||||
|
@ -179,7 +185,3 @@
|
|||
|
||||
/* Define if you have the i library (-li). */
|
||||
#undef HAVE_LIBI
|
||||
|
||||
/* define if compiled symbols have a leading underscore */
|
||||
#undef WITH_SYMBOL_UNDERSCORE
|
||||
|
||||
|
|
|
@ -582,6 +582,7 @@ if eval "test x$enable_perl != xno"; then
|
|||
AC_SUBST(GIMPTOOL)
|
||||
AC_SUBST(GIMP_CFLAGS)
|
||||
AC_SUBST(GIMP_LIBS)
|
||||
AC_CHECK_FUNCS(_exit)
|
||||
|
||||
dnl we ignore prefix
|
||||
cat >plug-ins/perl/config.status <<EOF
|
||||
|
|
Loading…
Reference in New Issue