X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=configure.in;h=c553e7856ae074b030cc6cae24875281daff3e01;hp=a23f1a0efc4ba32bc1b72afb66e826ba7cbd3b36;hb=950fb8e916b0e248dcaa72c96859acd6046683aa;hpb=7884d3ecaf78006b3f288d99f10ef541fc97087e diff --git a/configure.in b/configure.in index a23f1a0e..c553e785 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Id: configure.in,v 1.13.2.4 2000/09/10 15:16:07 zarq Exp $ +dnl $Id: configure.in,v 1.13.2.6 2000/10/11 10:35:15 guus Exp $ AC_INIT(src/tincd.c) AM_INIT_AUTOMAKE(tinc, 1.0pre3) @@ -96,9 +96,13 @@ fi dnl Support for SunOS -AC_CHECK_LIB(socket, connect) -AC_CHECK_LIB(nsl, gethostbyname) +AC_CHECK_FUNC(socket, [], [ + AC_CHECK_LIB(socket, connect) +]) +AC_CHECK_FUNC(gethostbyname, [], [ + AC_CHECK_LIB(nsl, gethostbyname) +]) -AC_OUTPUT([Makefile src/Makefile cipher/Makefile +AC_OUTPUT([Makefile src/Makefile doc/Makefile intl/Makefile lib/Makefile m4/Makefile po/Makefile.in redhat/Makefile debian/Makefile])