Index: selinux-git/libsepol/configure.ac =================================================================== --- selinux-git.orig/libsepol/configure.ac 2008-10-03 16:38:06.000000000 -0400 +++ selinux-git/libsepol/configure.ac 2008-10-03 17:11:24.000000000 -0400 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([libsepol], 2.0.32, selinux@tycho.nsa.gov) +AC_INIT([libsepol], 2.0.33, selinux@tycho.nsa.gov) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([utils/chkcon.c]) AC_CONFIG_HEADER([config.h]) @@ -55,23 +55,26 @@ AC_CHECK_FUNCS([memset strcasecmp strchr strdup strerror strncasecmp strrchr]) AC_ARG_ENABLE([tests], - [AC_HELP_STRING([--enable-tests],[Enables building of tests])], + [AC_HELP_STRING([--disable-tests],[Disable building tests])], [enable_tests=$enableval], - [enable_tests=no] + [enable_tests=yes] ) -AM_CONDITIONAL([BUILD_tests],[test "$enable_tests]" = "yes"]) +AM_CONDITIONAL([BUILD_tests],[test "$enable_tests" = "yes"]) AC_CONFIG_FILES([Makefile include/Makefile man/Makefile src/Makefile - utils/Makefile]) + utils/Makefile + tests/Makefile]) + AC_OUTPUT PRINT='echo -n -e ' $PRINT "\n*** Libsepol Configuration Summary ***\n" $PRINT "\tBuilding static lib\t= $enable_static\n" $PRINT "\tBuilding shared object\t= $enable_shared\n" +$PRINT "\tBuilding tests\t\t= $enable_tests\n" $PRINT "------------------------------------------------------------\n" Index: selinux-git/libsepol/tests/Makefile.am =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ selinux-git/libsepol/tests/Makefile.am 2008-10-03 17:19:04.000000000 -0400 @@ -0,0 +1,5 @@ +noinst_PROGRAMS = $(c_extra) + +if BUILD_tests +c_extra = +endif Index: selinux-git/libsepol/VERSION =================================================================== --- selinux-git.orig/libsepol/VERSION 2008-09-30 10:18:55.000000000 -0400 +++ /dev/null 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -2.0.33 Index: selinux-git/libsepol/Makefile.am =================================================================== --- selinux-git.orig/libsepol/Makefile.am 2008-09-30 10:47:06.000000000 -0400 +++ selinux-git/libsepol/Makefile.am 2008-10-03 17:20:26.000000000 -0400 @@ -1 +1 @@ -SUBDIRS = include man src utils +SUBDIRS = include man src utils tests