]> andersk Git - openssh.git/commitdiff
- (dtucker) [configure.ac] Bug #748: Always define BROKEN_GETADDRINFO
authordtucker <dtucker>
Fri, 6 Feb 2004 04:59:06 +0000 (04:59 +0000)
committerdtucker <dtucker>
Fri, 6 Feb 2004 04:59:06 +0000 (04:59 +0000)
   for HP-UX 11.11.  If there are known-good configs where this is not
   required, please report them.  ok djm@

ChangeLog
configure.ac

index d0f3d041abca66ebbbefdfad72edaecc00007e24..d6b7eba2a316a3537d6aab3964da1869be5e26c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
    OpenSSL >= 0.9.7.  ok djm@
  - (dtucker) [session.c] Bug #789: Do not call do_pam_setcred as a non-root
    user, since some modules might fail due to lack of privilege.  ok djm@
+ - (dtucker) [configure.ac] Bug #748: Always define BROKEN_GETADDRINFO
+   for HP-UX 11.11.  If there are known-good configs where this is not
+   required, please report them.  ok djm@
 
 20040129
  - (dtucker) OpenBSD CVS Sync regress/
index 7c487c5547873835bca50d3517b078eecad2481f..3ff673409defe6997317eaef73f80e22007992d2 100644 (file)
@@ -192,6 +192,10 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
        AC_DEFINE(DISABLE_UTMP)
        AC_DEFINE(LOCKED_PASSWD_STRING, "*")
        AC_DEFINE(SPT_TYPE,SPT_PSTAT)
+       case "$host" in
+       *-*-hpux11.11*)
+               AC_DEFINE(BROKEN_GETADDRINFO);;
+       esac
        LIBS="$LIBS -lsec"
        AC_CHECK_LIB(xnet, t_error, ,AC_MSG_ERROR([*** -lxnet needed on HP-UX - check config.log ***]))
        ;;
This page took 0.062694 seconds and 5 git commands to generate.