From: Harlan Stenn Date: Fri, 7 Jul 2006 19:20:47 +0000 (-0400) Subject: Add the -H stuff for cc under HP-UX to sntp's configure.ac X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ef7c1e5d4037d28d1d29f2c75fec6e3113aeca9;p=thirdparty%2Fntp.git Add the -H stuff for cc under HP-UX to sntp's configure.ac bk: 44aeb40fdPu_UKelYw2FD3wsjo0GOA --- diff --git a/sntp/configure.ac b/sntp/configure.ac index 8ed04bff24..1f3e507555 100644 --- a/sntp/configure.ac +++ b/sntp/configure.ac @@ -78,6 +78,13 @@ AC_CHECK_FUNCS(sqrt, , AC_CHECK_LIB(m, sqrt)) AC_CHECK_FUNCS([strrchr]) case "$host" in + *-*-hpux10.) # at least for hppa2.0-hp-hpux10.20 + case "$GCC" in + no) + CFLAGS="$CFLAGS -Wp,-H18816" + ;; + esac + ;; *-*-linux*) CFLAGS="$CFLAGS -DADJTIME_MISSING" ;;