Re: [Plib-users] Example config problem
Brought to you by:
sjbaker
From: Norman V. <nh...@ca...> - 2002-11-19 19:11:01
|
C. Hotchkiss writes: > > Norman Vine wrote: > > ... I downloaded the examples tarball and did a > > > > aclocal automake -a autoconf ./configure make > > > > and things compiled < except for a problem with multi-texture calls > > > > > I'm wondering if the problem is a cygwin setup or config issue. > > Not being too sure of what state my plib examples directory was in after > all the attempts to fix the problem I blew it away and did a clean > install of the examples tar ball. Then I followed your sequence. > > As before, the incantations supplied recreate the previously missing > files were generated (as expected), but again autoconf dies complaining > that autom4te.cfg or its directory is missing. Hmm... This sounds as if you are missing something required for the 'devel' version of autoconf or perhaps a 'perl' problem as a work around .. try adding the AC_PREREQ(2.13) line as below to your configure.in file and then rerun aclocal automake -a autoconf ./configure ==== cut ==== dnl Process this file with autoconf to produce a configure script. AC_INIT(src/js/js_demo.cxx) AM_INIT_AUTOMAKE(plib_examples, 1.6.1) AC_PREREQ(2.13) ....... |