> But this is not the autoconf-way of doing things.  The autoconf-way is
> to check for characteristics rather than system types.  So, you could

How about this:

dnl If we're on solaris, we need lots of extra flags
SAVELIBS=$LIBS
LIBS="-L/usr/ucblib -R/usr/ucblib $LIBS"
AC_CHECK_LIB(ucb, ucbsignal, LIBS="$LIBS -lucb -lnsl -lsocket",
LIBS=$SAVELIBS)


I guess my only other question is the -R stuff.  How do I properly determine
if I need to supply -R equivalents for all my -L directories?

Reply via email to