Just a general heads up. automake 1.12 removes support for AM_C_PROTOTYPES. We will need to grep the GIT tree to see if this impacts TDE. If the code still relies on AM_C_PROTOTYPES, then any automake build will fail with:
configure.in:22: error: automatic de-ANSI-fication support has been removed /usr/share/aclocal-1.12/protos.m4:12: AM_C_PROTOTYPES is expanded from... configure.in:22: the top level autom4te: /usr/bin/m4 failed with exit status: 1
The solution is simple, just delete the AM_C_PROTOTYPES reference. I haven't had time to check yet, but I thought I would pass it along.
Looks like we would have to fix three spots in qt3 (that are replicated in tqt3):
grep -rn AM_C_PROTOTYPES .
./dependencies/tqt3/src/3rdparty/libmng/makefiles/configure.in:16:AM_C_PROTOTYPES ./dependencies/tqt3/src/3rdparty/libmng/configure.in:16:AM_C_PROTOTYPES ./dependencies/tqt3/src/3rdparty/libmng/aclocal.m4:208:AC_DEFUN([AM_C_PROTOTYPES],
./dependencies/qt3/src/3rdparty/libmng/makefiles/configure.in:16:AM_C_PROTOTYPES ./dependencies/qt3/src/3rdparty/libmng/configure.in:16:AM_C_PROTOTYPES ./dependencies/qt3/src/3rdparty/libmng/aclocal.m4:208:AC_DEFUN([AM_C_PROTOTYPES],
Darrell