View | Details | Raw Unified | Return to bug 1741
Collapse All | Expand All

(-)openssh-5.4p1/configure.ac (+18 lines)
Lines 488-493 Link Here
488
*-*-dragonfly*)
488
*-*-dragonfly*)
489
	SSHDLIBS="$SSHDLIBS -lcrypt"
489
	SSHDLIBS="$SSHDLIBS -lcrypt"
490
	;;
490
	;;
491
*-*-haiku*) 
492
    LIBS="$LIBS -lbsd "
493
    AC_CHECK_LIB(network, socket)
494
    MANTYPE=man 
495
    ;; 
491
*-*-hpux*)
496
*-*-hpux*)
492
	# first we define all of the options common to all HP-UX releases
497
	# first we define all of the options common to all HP-UX releases
493
	CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
498
	CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
Lines 2648-2653 Link Here
2648
	)
2653
	)
2649
fi
2654
fi
2650
2655
2656
if test -z "$have_u_int64_t" ; then
2657
    AC_MSG_CHECKING([for u_int64_t type in posix/stdint.h])
2658
	AC_TRY_COMPILE(
2659
		[ #include <posix/stdint.h> ],
2660
		[ u_int64_t a; a = 1],
2661
		[
2662
			AC_DEFINE(HAVE_U_INT64_T)
2663
			AC_MSG_RESULT(yes)
2664
		],
2665
		[ AC_MSG_RESULT(no) ]
2666
	)
2667
fi
2668
2651
if test -z "$have_u_intxx_t" ; then
2669
if test -z "$have_u_intxx_t" ; then
2652
	AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2670
	AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [
2653
		AC_TRY_COMPILE(
2671
		AC_TRY_COMPILE(

Return to bug 1741