Skip to content
GitLab
Menu
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
fcdc805d
Commit
fcdc805d
authored
Dec 30, 1998
by
Niels Möller
Browse files
Better checks for gmp.h, gmp2.h, libgmp and libgmp2. Fail if gmp isn't
found. Rev: src/configure.in:1.17
parent
946ee1d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/configure.in
View file @
fcdc805d
...
...
@@ -80,8 +80,10 @@ AC_CHECK_LIB(socket, setsockopt)
dnl Checks for header files.
AC_HEADER_STDC
dnl Some debian systems have both gmp1 and gmp2.
AC_CHECK_HEADERS(gmp2.h gmp.h, [break],
dnl Some debian systems have both gmp and gmp2.
dnl This will probably not not work right if both gmp.h and gmp2.h exists,
dnl and gmp.h is too old (i.e GMP-1.x).
AC_CHECK_HEADERS(gmp.h gmp2.h, [break],
[AC_ERROR([Neither gmp.h nor gmp2.h found])])
AC_CHECK_HEADERS(fcntl.h strings.h sys/time.h unistd.h)
...
...
Write
Preview
Supports
Markdown
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