Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
d598615c
Commit
d598615c
authored
Jul 10, 1998
by
Per Cederqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved checking for -lsocket and -lnsl. Force enable_isc_printf so
that libisc contains the proper things.
parent
f57ff3de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
4 deletions
+21
-4
configure.in
configure.in
+21
-4
No files found.
configure.in
View file @
d598615c
dnl $Id: configure.in,v 1.4
5
1998/07/
09 18:55:52
ceder Exp $
dnl $Id: configure.in,v 1.4
6
1998/07/
10 21:28:11
ceder Exp $
dnl Configuration for LysKOM
dnl Copyright (C) 1993, 1994, 1995, 1996 Lysator Academic Computer Association.
dnl
...
...
@@ -18,7 +18,7 @@ dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
dnl
dnl Please mail bug reports to bug-lyskom@lysator.liu.se.
dnl
AC_REVISION($Revision: 1.4
5
$)
AC_REVISION($Revision: 1.4
6
$)
AC_INIT(src/server/lyskomd.h)
AC_CONFIG_AUX_DIR(scripts)
AM_INIT_AUTOMAKE(lyskom-server, 2.0.0.pcl.2)
...
...
@@ -140,8 +140,18 @@ AC_HEADER_TIME
AC_FUNC_ALLOCA
AC_CHECK_LIB(resolv,main) dnl Host name lookup.
AC_CHECK_LIB(authuser,auth_tcpuser3) dnl User authentication according to RFC 931.
AC_CHECK_LIB(nsl,gethostbyname) dnl Low-level networking code on Solaris 2.
AC_CHECK_LIB(socket,socket) dnl socket() et c on Solaris 2.
dnl Low-level networking code on Solaris 2.
AC_CHECK_FUNC(gethostbyname)
[if test $ac_cv_func_gethostbyname = no
then]
AC_CHECK_LIB(nsl, gethostbyname)
[fi]
dnl socket() et c on Solaris 2.
AC_CHECK_FUNC(socket)
[if test $ac_cv_func_socket = no
then]
AC_CHECK_LIB(socket, socket)
[fi]
AC_CHECK_LIB(i,setlocale) dnl For setlocale() on Ultrix.
AC_CHECK_LIB(crypt,crypt) dnl For crypt() on Sparc NetBSD 1.1
AC_CHECK_FUNCS(difftime getdtablesize sysconf strchr getcwd vfprintf)
...
...
@@ -192,6 +202,13 @@ dnl
dnl Tests for GNU getopt (used in dbck)
AC_CHECK_HEADERS(alloca.h)
dnl
dnl
dnl Force the configure script in isc to behave as if the
dnl --enable-isc-printf switch was given to it.
dnl
[enable_isc_printf=yes
export enable_isc_printf]
dnl
AC_CONFIG_SUBDIRS(src/libraries/libisc-new)
AC_OUTPUT(Makefile
db-crypt/Makefile
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment