HP-UX port

Hello

Sorry, if you already know about it but link from
www.w3.org/Amaya/User/Autoconf.html to errors archive is not valid,
so I can't check it.

During porting Amaya-1.3b to HP-UX 10.20 I had some problems with headers
syslog.h and strings.h.
In configure.in are tests for sys/syslog.h & syslog.h, but in distributed
config.h.in is only HAVE_SYSLOG_H definition. I'd sugest rebuilding
config.h.in with autoheader and making some changes to
thotlib/include/sysdep.h :

*** sysdep.h.orig	Tue Dec  1 13:51:16 1998
--- sysdep.h	Tue Dec  1 13:51:16 1998
***************
*** 804,816 ****
--- 804,822 ----
  #endif
  #ifdef HAVE_STRINGS_H
  #ifndef _AIX
+ #ifndef hpux
  #include <strings.h>
  #endif
  #endif
+ #endif
  
  /* syslog.h */
  #ifdef HAVE_SYSLOG_H
+ #include <syslog.h>
+ #else
+ #ifdef HAVE_SYS_SYSLOG_H
  #include <sys/syslog.h>
+ #endif
  #endif
  
After this compilation under HP-UX 10.20 with GNU tools is without problems.

-- 
Pawel Jewstafjew	lizerg@polsl.gliwice.pl
Silesian Technical University Computer Center

Received on Tuesday, 1 December 1998 09:27:37 UTC