summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/configure.in2
-rw-r--r--src/util/support/fnmatch.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in
index 6c3eebcc44..1926865c67 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -797,7 +797,7 @@ rpcent_define='#define STRUCT_RPCENT_IN_RPC_NETDB_H'],
rpcent_define='#define STRUCT_RPCENT_IN_RPC_NETDB_H'])
AC_SUBST(rpcent_define)
-AC_CHECK_HEADERS(sys/select.h sys/time.h unistd.h)
+AC_CHECK_HEADERS(sys/select.h sys/time.h unistd.h sys/cdefs.h)
if test $ac_cv_header_sys_select_h = yes; then
GSSRPC__SYS_SELECT_H='#include <sys/select.h>'
else
diff --git a/src/util/support/fnmatch.c b/src/util/support/fnmatch.c
index 02091e8a58..d4d03420ba 100644
--- a/src/util/support/fnmatch.c
+++ b/src/util/support/fnmatch.c
@@ -31,8 +31,9 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-
+#ifdef HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
+#endif
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94";