From: Dave Hart Date: Wed, 24 Nov 2010 00:36:54 +0000 (+0000) Subject: cleanup AC_LANG_PROGRAM quoting to silence autoreconf X-Git-Tag: NTP_4_2_7P85~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d6ff83dd613552897a2ee7359f388935594f123;p=thirdparty%2Fntp.git cleanup AC_LANG_PROGRAM quoting to silence autoreconf bk: 4cec5e26NX-oc1bkDlGH_PDmrU94YQ --- diff --git a/configure.ac b/configure.ac index fd746d959..dcea32a0f 100644 --- a/configure.ac +++ b/configure.ac @@ -786,7 +786,7 @@ case "$ac_cv_type_int32::$ac_cv_header_resolv_h" in [for int32 with DNS headers included], [ntp_cv_type_int32_with_dns], AC_COMPILE_IFELSE( - AC_LANG_PROGRAM( + [AC_LANG_PROGRAM( [[ #ifdef HAVE_ARPA_NAMESER_H # include @@ -796,7 +796,7 @@ case "$ac_cv_type_int32::$ac_cv_header_resolv_h" in [[ size_t cb = sizeof(int32); ]] - ), + )], [ntp_cv_type_int32_with_dns=yes], [ntp_cv_type_int32_with_dns=no] ) @@ -815,7 +815,7 @@ case "$ac_cv_type_u_int32::$ac_cv_header_resolv_h" in [for u_int32 with DNS headers included], [ntp_cv_type_u_int32_with_dns], AC_COMPILE_IFELSE( - AC_LANG_PROGRAM( + [AC_LANG_PROGRAM( [[ #ifdef HAVE_ARPA_NAMESER_H # include @@ -825,7 +825,7 @@ case "$ac_cv_type_u_int32::$ac_cv_header_resolv_h" in [[ size_t cb = sizeof(u_int32); ]] - ), + )], [ntp_cv_type_u_int32_with_dns=yes], [ntp_cv_type_u_int32_with_dns=no] )