From: Harlan Stenn Date: Tue, 20 Jun 2006 07:15:38 +0000 (-0400) Subject: Fix the configure.ac check for rt_msghdr X-Git-Tag: NTP_4_2_3P6~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c426b50b1da5c413ffe13f461e28957780600bc;p=thirdparty%2Fntp.git Fix the configure.ac check for rt_msghdr bk: 4497a09aXtVoeBG_694jPMRNzfbC-w --- diff --git a/configure.ac b/configure.ac index 66946d2c6..cd8aa7e8e 100644 --- a/configure.ac +++ b/configure.ac @@ -671,9 +671,8 @@ AC_CACHE_CHECK(for struct rt_msghdr, ac_cv_struct_rt_msghdr, #include #include #include -#include ],[ -extern struct rt_msghdr *p; -return p;], +#include ], +[struct rt_msghdr p;], ac_cv_struct_rt_msghdr=yes, ac_cv_struct_rt_msghdr=no) ])