Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
5c66ab26
Commit
5c66ab26
authored
Feb 18, 2003
by
Niels Möller
Browse files
Added check for inet_ntop in -lnsl.
Rev: ChangeLog:1.623 Rev: configure.ac:1.29
parent
f9c9eb80
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
5c66ab26
2003-02-18 Niels Mller <niels@s3.kth.se>
* configure.ac: Added check for inet_ntop in -lnsl.
2003-02-17 Niels Mller <nisse@cuckoo.hack.org>
* misc/xenofarm.sh: Fixed make --version test.
...
...
configure.ac
View file @
5c66ab26
...
...
@@ -356,6 +356,8 @@ fi
AC_TYPE_SOCKLEN_T
# Checks for libraries
AC_CHECK_LIB(gmp, __gmpz_getlimbn,,
[AC_MSG_ERROR(
[GNU MP not found, or not 3.1 or up, see http://www.swox.com/gmp.])])
...
...
@@ -433,6 +435,9 @@ else
AC_DEFINE_UNQUOTED(XAUTH_PROGRAM, "$XAUTH_PROGRAM", Program used by lshd to handle .Xauthority-files)
fi
# Move these checks for system libraries earlier, before checks for
# gmp, liboop etc
AC_CHECK_LIB(crypt, crypt)
AC_CHECK_LIB(xnet, inet_addr)
AC_CHECK_LIB(socket, setsockopt)
...
...
@@ -442,6 +447,7 @@ AC_CHECK_LIB(util, openpty)
# glibc has a nis-library "libnsl", which we don't need. So use
# AC_SEARCH_LIBS rather than AC_CHECK_LIB.
AC_SEARCH_LIBS(gethostbyname, nsl)
AC_SEARCH_LIBS(inet_ntop, nsl)
# This macro is new in autoconf-2.13
AC_SEARCH_LIBS(syslog, bsd socket inet, [AC_DEFINE(HAVE_SYSLOG)])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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