bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

building make 3.81 on HP-UX with bundled compiler small problem


From: Jay
Subject: building make 3.81 on HP-UX with bundled compiler small problem
Date: Sun, 22 Feb 2009 03:15:50 +0000

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]