From owner-p4-projects@FreeBSD.ORG Mon Feb 27 23:11:09 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 3280C16A423; Mon, 27 Feb 2006 23:11:09 +0000 (GMT) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB3E516A422 for ; Mon, 27 Feb 2006 23:11:08 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BEDF43D48 for ; Mon, 27 Feb 2006 23:11:08 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k1RNB8qo059763 for ; Mon, 27 Feb 2006 23:11:08 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k1RNB8sk059760 for perforce@freebsd.org; Mon, 27 Feb 2006 23:11:08 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Mon, 27 Feb 2006 23:11:08 GMT Message-Id: <200602272311.k1RNB8sk059760@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Cc: Subject: PERFORCE change 92490 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2006 23:11:10 -0000 http://perforce.freebsd.org/chv.cgi?CH=92490 Change 92490 by rwatson@rwatson_peppercorn on 2006/02/27 23:10:19 Look for the include files we're interested in changing behavior based on, not the ones autoscan finds by default. Affected files ... .. //depot/projects/trustedbsd/openbsm/config/config.h.in#2 edit .. //depot/projects/trustedbsd/openbsm/configure.ac#6 edit Differences ... ==== //depot/projects/trustedbsd/openbsm/config/config.h.in#2 (text+ko) ==== @@ -3,9 +3,6 @@ /* Define to 1 if you have the `alarm' function. */ #undef HAVE_ALARM -/* Define to 1 if you have the header file. */ -#undef HAVE_ARPA_INET_H - /* Define to 1 if you have the `bzero' function. */ #undef HAVE_BZERO @@ -15,8 +12,8 @@ /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H -/* Define to 1 if you have the header file. */ -#undef HAVE_FCNTL_H +/* Define to 1 if you have the header file. */ +#undef HAVE_ENDIAN_H /* Define to 1 if you have the `fork' function. */ #undef HAVE_FORK @@ -36,9 +33,6 @@ /* Define to 1 if you have the `bsm' library (-lbsm). */ #undef HAVE_LIBBSM -/* Define to 1 if you have the header file. */ -#undef HAVE_LIMITS_H - /* Define to 1 if you have the header file. */ #undef HAVE_MACH_MACH_H @@ -52,9 +46,6 @@ /* Define to 1 if you have the `memset' function. */ #undef HAVE_MEMSET -/* Define to 1 if you have the header file. */ -#undef HAVE_NETINET_IN_H - /* Define to 1 if `stat' has the bug that it succeeds when given the zero-length file name argument. */ #undef HAVE_STAT_EMPTY_STRING_BUG @@ -95,18 +86,9 @@ /* Define to 1 if `st_rdev' is member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_RDEV -/* Define to 1 if you have the header file. */ -#undef HAVE_SYSLOG_H - /* Define to 1 if you have the header file. */ #undef HAVE_SYS_ENDIAN_H -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_PARAM_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_SOCKET_H - /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H ==== //depot/projects/trustedbsd/openbsm/configure.ac#6 (text+ko) ==== @@ -3,7 +3,7 @@ AC_PREREQ(2.59) AC_INIT([OpenBSM], [1.0a5], [trustedbsd-audit@TrustesdBSD.org],[openbsm]) -AC_REVISION([$P4: //depot/projects/trustedbsd/openbsm/configure.ac#5 $]) +AC_REVISION([$P4: //depot/projects/trustedbsd/openbsm/configure.ac#6 $]) AC_CONFIG_SRCDIR([bin/auditreduce/auditreduce.c]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_HEADER([config/config.h]) @@ -23,7 +23,7 @@ # Checks for header files. AC_HEADER_STDC AC_HEADER_SYS_WAIT -AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h mach/mach.h netinet/in.h stdint.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h sys/endian.h syslog.h unistd.h]) +AC_CHECK_HEADERS([endian.h mach/mach.h sys/endian.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST