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
ISC Open Source Projects
dhcp
Commits
41612c46
Commit
41612c46
authored
Sep 22, 2016
by
Francis Dupont
Browse files
Added libbind checks
parent
53c7a535
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure
View file @
41612c46
...
...
@@ -6857,6 +6857,15 @@ no)
;;
*
)
if
test
!
-d
"
$use_libbind
"
;
then
as_fn_error
$?
"Cannot find bind directory at
$use_libbind
"
"
$LINENO
"
5
fi
if
test
!
-d
"
$use_libbind
/include"
;
then
as_fn_error
$?
"Cannot find bind includes at
$use_libbind
/include"
"
$LINENO
"
5
fi
if
test
!
-d
"
$use_libbind
/lib"
;
then
as_fn_error
$?
"Cannot find bind libraries at
$use_libbind
/lib"
"
$LINENO
"
5
fi
BINDDIR
=
"
$use_libbind
"
;;
esac
...
...
configure.ac
View file @
41612c46
...
...
@@ -707,6 +707,15 @@ no)
AC_CONFIG_FILES([$srcdir/bind/Makefile])
;;
*)
if test ! -d "$use_libbind"; then
AC_MSG_ERROR([Cannot find bind directory at $use_libbind])
fi
if test ! -d "$use_libbind/include"; then
AC_MSG_ERROR([Cannot find bind includes at $use_libbind/include])
fi
if test ! -d "$use_libbind/lib"; then
AC_MSG_ERROR([Cannot find bind libraries at $use_libbind/lib])
fi
BINDDIR="$use_libbind"
;;
esac
...
...
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