From: Bernd E. <eid...@we...> - 2007-09-10 10:37:57
|
Hi, on a SuSE Linux 10 Enterprise Server i ran into this when trying to compile from HEAD: ./autogen.sh --with-tcl=/usr/local/ns/lib --prefix=/usr/local/ns Running aclocal -I m4 -I /opt/gnome/share/aclocal Running autoheader Running autoconf configure.in:172: error: possibly undefined macro: AC_TYPE_INT8_T If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.in:173: error: possibly undefined macro: AC_TYPE_INT16_T configure.in:174: error: possibly undefined macro: AC_TYPE_INT32_T configure.in:175: error: possibly undefined macro: AC_TYPE_INT64_T configure.in:177: error: possibly undefined macro: AC_TYPE_UINT8_T configure.in:178: error: possibly undefined macro: AC_TYPE_UINT16_T configure.in:179: error: possibly undefined macro: AC_TYPE_UINT32_T configure.in:180: error: possibly undefined macro: AC_TYPE_UINT64_T configure.in:182: error: possibly undefined macro: AC_TYPE_INTMAX_T configure.in:183: error: possibly undefined macro: AC_TYPE_UINTMAX_T configure.in:185: error: possibly undefined macro: AC_TYPE_INTPTR_T configure.in:186: error: possibly undefined macro: AC_TYPE_UINTPTR_T Do you know what to do? Bernd. |
From: Stephen D. <sd...@gm...> - 2007-09-10 10:55:51
|
On 9/10/07, Bernd Eidenschink <eid...@we...> wrote: > > Hi, > > on a SuSE Linux 10 Enterprise Server i ran into this when trying to compile > from HEAD: > > ./autogen.sh --with-tcl=/usr/local/ns/lib --prefix=/usr/local/ns > > Running aclocal -I m4 -I /opt/gnome/share/aclocal > Running autoheader > Running autoconf > configure.in:172: error: possibly undefined macro: AC_TYPE_INT8_T > If this token and others are legitimate, please use m4_pattern_allow. > See the Autoconf documentation. > configure.in:173: error: possibly undefined macro: AC_TYPE_INT16_T > configure.in:174: error: possibly undefined macro: AC_TYPE_INT32_T > configure.in:175: error: possibly undefined macro: AC_TYPE_INT64_T > configure.in:177: error: possibly undefined macro: AC_TYPE_UINT8_T > configure.in:178: error: possibly undefined macro: AC_TYPE_UINT16_T > configure.in:179: error: possibly undefined macro: AC_TYPE_UINT32_T > configure.in:180: error: possibly undefined macro: AC_TYPE_UINT64_T > configure.in:182: error: possibly undefined macro: AC_TYPE_INTMAX_T > configure.in:183: error: possibly undefined macro: AC_TYPE_UINTMAX_T > configure.in:185: error: possibly undefined macro: AC_TYPE_INTPTR_T > configure.in:186: error: possibly undefined macro: AC_TYPE_UINTPTR_T > > Do you know what to do? Install autoconf >= 2.59c Suse 10.2 ships with autoconf-2.60 Hmm, maybe we just need to copy those macros into ./m4 for now. I think Zoran had this problem as well... |
From: Gustaf N. <ne...@wu...> - 2007-09-11 09:32:01
|
Stephen Deasey schrieb: > Install autoconf >= 2.59c > > Suse 10.2 ships with autoconf-2.60 > > > Hmm, maybe we just need to copy those macros into ./m4 for now. I > think Zoran had this problem as well... > For the record: the same problem exists on Mac OS X 10.4.10. autoconf --version autoconf (GNU Autoconf) 2.59 -gustaf |
From: Bernd E. <eid...@we...> - 2007-09-10 11:08:02
|
> Install autoconf >= 2.59c > > Suse 10.2 ships with autoconf-2.60 This is a SuSE 10 Enterprise Server numbered 'autoconf-2.59-92.2'. It will not be that easy to update, but i'll try. > Hmm, maybe we just need to copy those macros into ./m4 for now. I > think Zoran had this problem as well... Ok, seems the easier way :-) Is it just copying the defs into a file within ./m4? Guess not... Bernd. |
From: Stephen D. <sd...@gm...> - 2007-09-10 11:24:40
|
On 9/10/07, Bernd Eidenschink <eid...@we...> wrote: > > > Install autoconf >= 2.59c > > > > Suse 10.2 ships with autoconf-2.60 > > This is a SuSE 10 Enterprise Server numbered 'autoconf-2.59-92.2'. > It will not be that easy to update, but i'll try. > > > Hmm, maybe we just need to copy those macros into ./m4 for now. I > > think Zoran had this problem as well... > > Ok, seems the easier way :-) > Is it just copying the defs into a file within ./m4? Guess not... Yep, that's all it should take. Here's where they live within the autoconf distribution: http://cvs.savannah.gnu.org/viewvc/autoconf/lib/autoconf/types.m4?root=autoconf&view=markup |
From: Bernd E. <eid...@we...> - 2007-09-10 12:27:11
|
> On 9/10/07, Bernd Eidenschink <eid...@we...> wrote: > > > Install autoconf >= 2.59c > > > > > > Suse 10.2 ships with autoconf-2.60 > > > > This is a SuSE 10 Enterprise Server numbered 'autoconf-2.59-92.2'. > > It will not be that easy to update, but i'll try. Ok, it was easy - downloading the packages from an opensuse 10.2 mirror and doing: rpm -e autoconf rpm -Uhv m4-1.4.6-19.i586.rpm rpm -Uhv autoconf-2.60-21.i586.rpm rpm -Uhv autogen-5.8.7-13.i586.rpm That did it! Thanks, Bernd. |