Maurice Lombardi wrote:
GPC_MSG_CHECKING has been changed betwen 0905 and 0910 in p/rts/configure.in by the following
# The second parameter is used by make-acconfig-h.m4 -AC_DEFUN(GPC_MSG_CHECKING,[AC_MSG_CHECKING([$1])])
+ifdef([GPC_MSG_CHECKING],,[AC_DEFUN([[GPC_MSG_CHECKING]],[AC_MSG_CHECKING([$1])])])
It seems that you want to define it only if it is not already defined. I am lost with all those [] quoting. I have tried to simple quote by applying the following diff on the 20020910 sources (where the previous one has already been applied):
-ifdef([GPC_MSG_CHECKING],,[AC_DEFUN([[GPC_MSG_CHECKING]],[AC_MSG_CHECKING([$1])])]) +ifdef([GPC_MSG_CHECKING],,[AC_DEFUN([GPC_MSG_CHECKING],[AC_MSG_CHECKING([$1])])])
Then everything works OK. Is this just an error while uploading or some subtle difference between autoconf 2.13 you use and autoconf 2.50 I use ?
Neither. I was a simple mistake by me. ;-) Will be fixed in the next version. Thanks.
Frank