Fix more instances of #include directives where the '#' was not in

column 1.  From Daniel Richard G. (bug #622)
This commit is contained in:
Todd C. Miller
2013-11-15 15:16:47 -07:00
parent 6d8b078e2b
commit e684f6a096
2 changed files with 63 additions and 64 deletions

View File

@@ -3108,8 +3108,7 @@ if test "${with_skey-'no'}" = "yes"; then
O_CPPFLAGS="$CPPFLAGS"
for dir in "" "/usr/local" "/usr/contrib"; do
test -n "$dir" && CPPFLAGS="$O_CPPFLAGS -I${dir}/include"
AC_CHECK_HEADER([skey.h], [found=yes; break], [],
[#include <stdio.h>])
AC_CHECK_HEADER([skey.h], [found=yes; break], [], [#include <stdio.h>])
done
if test "$found" = "no" -o -z "$dir"; then
CPPFLAGS="$O_CPPFLAGS"