search for: compat_includ

Displaying 1 result from an estimated 1 matches for "compat_includ".

Did you mean: compat_includes
2008 Jan 08
2
have configure generate header dependencies automatically
.../openssh/configure.ac,v retrieving revision 1.389 diff -u -p -r1.389 configure.ac --- configure.ac 2 Jan 2008 07:08:45 -0000 1.389 +++ configure.ac 8 Jan 2008 05:41:21 -0000 @@ -88,6 +88,12 @@ AC_SUBST(LD) AC_C_INLINE +INCLUDES="`echo $srcdir/*.h`" +AC_SUBST(INCLUDES, [$INCLUDES]) + +COMPAT_INCLUDES="`cd openbsd-compat && echo $srcdir/../openbsd-compat/*.h`" +AC_SUBST(COMPAT_INCLUDES, [$COMPAT_INCLUDES]) + AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>]) if test "$GCC" = "yes" || test "$GCC" = "egcs"; then...