I did an autoscan on the GTK2 directory, and came up with this:
configure.in: warning: missing AC_CHECK_TYPES([ptrdiff_t]) wanted by: pgtk.h:80 configure.in: warning: missing AC_C_CONST wanted by: pgtk.h:107 configure.in: warning: missing AC_PREREQ wanted by: autoscan configure.in: warning: missing AC_PROG_LN_S wanted by: Makefile.in:50
It created a configure.scan, which had the following options added:
AC_PREREQ(2.59)
AC_PROG_CC AC_PROG_LN_S
AC_C_CONST AC_C_INLINE AC_CHECK_TYPES([ptrdiff_t])
Are any of these necessary, or should we put some of them in the configure.in and modify pgtk.h and Makefile.in accordingly?
We certainly don't want AC_PREREQ(2.59).
AC_PROG_CC should not be added, because AC_MODULE_INIT will run MY_AC_PROG_CC, which replaces it.
The others should be ok, I think. Except possibly AC_PROG_LN_S which I think is not available under that name in older autoconfs.
pike-devel@lists.lysator.liu.se