Re: compiling...
Havoc Pennington <[email protected]>
| Newsgroups | gmane.comp.freedesktop.xserver |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 2003-11-26 at 16:39, Brian Paul wrote: > checking dynamic linker characteristics... GNU/Linux ld.so > checking whether make sets $(MAKE)... (cached) yes > ./configure: line 18606: syntax error near unexpected token `XDMCP,' > ./configure: line 18606: `PKG_CHECK_MODULES(XDMCP, xproto)' > > Line 18606 of configure doesn't have 'XDMCP' or anything like it. > This probably means that prefix/share/aclocal/pkg.m4 is not found by aclocal, typically because you put pkgconfig and autotools in different prefixes. If you have these in separate prefixes you need to run aclocal as "aclocal -I pkgconfigprefix/share/aclocal" Some autogen scripts support an ACLOCAL_FLAGS env variable which could contain the -I pkg.m4 contains the PKG_CHECK_MODULES macro which wasn't expanded in the above. Or it could be something else, but this is my guess. Havoc