X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=configure.in;h=cd7172f7d92d79df779cba7e55ef9d0ce58d45eb;hp=79899d70a45f3f86be7bf69c73e74f43ee6e06c5;hb=d335c6d0d7328fd86154dc60b22deb7953ab0228;hpb=ae17572e6b94c6e7a2123ddeb45bf66d389ac7a0 diff --git a/configure.in b/configure.in index 79899d70..cd7172f7 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.3 2000/09/10 15:05:44 zarq Exp $ +dnl $Id: configure.in,v 1.13.2.5 2000/09/11 11:40:46 zarq Exp $ AC_INIT(src/tincd.c) AM_INIT_AUTOMAKE(tinc, 1.0pre3) @@ -94,6 +94,15 @@ else fi +dnl Support for SunOS + +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 doc/Makefile intl/Makefile lib/Makefile m4/Makefile po/Makefile.in redhat/Makefile debian/Makefile])