mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 17:30:22 -04:00
added missing -L switch when --with-kame specified
This commit is contained in:
parent
70680fa51b
commit
e32971f6c4
2 changed files with 3 additions and 3 deletions
2
configure
vendored
2
configure
vendored
|
|
@ -3153,7 +3153,7 @@ case "$use_kame" in
|
|||
*)
|
||||
if test -f $kame_path/lib/libinet6.a; then
|
||||
echo "$ac_t""$kame_path/lib/libinet6.a" 1>&6
|
||||
LIBS="$kame_path/lib -linet6 $LIBS"
|
||||
LIBS="-L$kame_path/lib -linet6 $LIBS"
|
||||
else
|
||||
{ echo "configure: error: $kame_path/lib/libinet6.a not found.
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ dnl PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|||
dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
||||
dnl SOFTWARE.
|
||||
|
||||
AC_REVISION($Revision: 1.90 $)
|
||||
AC_REVISION($Revision: 1.91 $)
|
||||
|
||||
AC_PREREQ(2.13)
|
||||
|
||||
|
|
@ -543,7 +543,7 @@ case "$use_kame" in
|
|||
*)
|
||||
if test -f $kame_path/lib/libinet6.a; then
|
||||
AC_MSG_RESULT($kame_path/lib/libinet6.a)
|
||||
LIBS="$kame_path/lib -linet6 $LIBS"
|
||||
LIBS="-L$kame_path/lib -linet6 $LIBS"
|
||||
else
|
||||
AC_MSG_ERROR([$kame_path/lib/libinet6.a not found.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue