GNU make 3.81 fails to compile on HP-UX 11iv1 (11.11) with the bundled K&R C 
compiler.
The error is like va_dcl unknown identifier in misc.c.
 
 
I'm using this hack to workaround:
  echo '#include '>> config.h  
 
 
 or more completely: 
  cd ${SOURCE}  
  rm -rf make-3.81  
  gzcat make-3.81.tar.gz | tar xf -  
  cd make-3.81  
  CC=cc ./configure -prefix=${PREFIX} -disable-nls -verbose -program-prefix=g  
  make config.h  
  echo '#include '>> config.h  
  make
  make install
  cd ..
  rm -rf make-3.81 || true
 

(and then I use gmake thereafter)


  - Jay

_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to