From: Ivo Timmermans Date: Sun, 10 Sep 2000 15:16:07 +0000 (+0000) Subject: Support for -lsocket and -lnsl on SunOS X-Git-Tag: release-1.0pre3~125 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=7884d3ecaf78006b3f288d99f10ef541fc97087e Support for -lsocket and -lnsl on SunOS --- diff --git a/configure.in b/configure.in index 79899d70..a23f1a0e 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.4 2000/09/10 15:16:07 zarq Exp $ AC_INIT(src/tincd.c) AM_INIT_AUTOMAKE(tinc, 1.0pre3) @@ -94,6 +94,11 @@ else fi +dnl Support for SunOS + +AC_CHECK_LIB(socket, connect) +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])