Browse Source

[master] Corrected unit test build failure under Solaris 11

Reverted change to configure.ac that broke the test for sys/filio.h.
This include is needed for unit tests in dhcp_ddns.
Thomas Markwalder 11 years ago
parent
commit
1b72b3e36e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -913,7 +913,7 @@ if test "$MYSQL_CONFIG" != "" ; then
 fi
 fi
 
 
 # Solaris puts FIONREAD in filio.h
 # Solaris puts FIONREAD in filio.h
-AC_CHECK_HEADER(sys/filio.h)
+AC_CHECK_HEADERS(sys/filio.h,,,)
 
 
 # ... and at the shell level, so Makefile.am can take action depending on this.
 # ... and at the shell level, so Makefile.am can take action depending on this.
 AM_CONDITIONAL(HAVE_MYSQL, test "$MYSQL_CONFIG" != "")
 AM_CONDITIONAL(HAVE_MYSQL, test "$MYSQL_CONFIG" != "")