Subject: Re: I can't install MesaLib from pkgsrc
To: Lasse =?iso-8859-1?Q?Hiller=F8e?= Petersen <lhp@toft-hp.dk>
From: Patrick Welche <prlw1@newn.cam.ac.uk>
List: netbsd-help
Date: 12/15/2003 19:47:26
On Mon, Dec 15, 2003 at 12:08:56AM +0100, Lasse Hillerĝe Petersen wrote:

> acinclude.m4:31: warning: underquoted definition of MESA_SYS_AS_FEATURE

These are just harmless warnings. In the future aclocal may process .m4 macro
files repeatedly. This means that if you have
  AC_DEFUN(MESA_SYS_AS_FEATURE,[some definition])
the second time the file is processed, MESA_SYS_AS_FEATURE will get expanded.
All that needs to happen is for the macro name to be quoted, i.e.,
  AC_DEFUN([MESA_SYS_AS_FEATURE],[some definition])

> configure.in:589: required file `src-glut/Makefile.in' not found
> configure.in:615: required file `book/Makefile.in' not found
> configure.in:615: required file `demos/Makefile.in' not found
> configure.in:615: required file `samples/Makefile.in' not found
> configure.in:615: required file `xdemos/Makefile.in' not found
> configure.in:615: required file `ggi/ggiglut/Makefile.in' not found
> configure.in:615: required file `ggi/demos/Makefile.in' not found

That sounds more serious. How would downgrading automake fix this?

Cheers,

Patrick