[Commit] nickle README.solaris,NONE,1.1 configure.in,1.22,1.23

Bart Massey commit@keithp.com
Tue, 13 May 2003 13:17:28 -0700


Committed by: bart

Update of /local/src/CVS/nickle
In directory home.keithp.com:/tmp/cvs-serv26864

Modified Files:
	configure.in 
Added Files:
	README.solaris 
Log Message:
Fixed up the Solaris build a bit.



--- NEW FILE: README.solaris ---
To build and install on Solaris requires a few minor tricks.

0) As with all Nickle installations, make sure you start by
   building the autoconf stuff.
     sh autoconfigure.sh

1) You'll want to have GNU make installed somewhere:
   automake-generated Makefiles seem to require it.
     MAKE=gmake; export MAKE

2) You'll want to have GNU readline installed somewhere,
   and point the configuration at it
     ./configure --with-readline=/pkgs/gnu

3) GCC 2.95 seems to whine about ignoreSignal and
   releaseSignal in main.c: it seems to be patently broken,
   so ignore it.

This should get it for you.

Note that the Solaris build is tested only infrequently.
Let us know if you have problems with it.

Index: configure.in
===================================================================
RCS file: /local/src/CVS/nickle/configure.in,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- configure.in	8 Nov 2002 09:14:20 -0000	1.22
+++ configure.in	13 May 2003 20:17:26 -0000	1.23
@@ -27,6 +27,7 @@
 AC_CHECK_LIB(m, log)
 AC_CHECK_LIB(nsl, gethostbyname)
 AC_CHECK_LIB(socket, socket)
+AC_CHECK_LIB(resolv, hstrerror)		     
 
 dnl Checks for header files.
 AC_HEADER_STDC