+++ /dev/null
-there's no real need to run AC_CHECK_FILE to see if a file exists. if the
-static link fails later on, then the static lib didn't exist. this also
-breaks cross-compiling.
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -448,8 +448,6 @@
- sepol_srcdir="")
- if test "x${sepol_srcdir}" = "x"; then
- sepol_srcdir=${sepol_devel_libdir}
-- AC_CHECK_FILE([${sepol_srcdir}/libsepol.a],,
-- AC_MSG_ERROR([make sure libsepol-static is installed]))
- else
- AC_MSG_CHECKING([for compatible sepol source tree])
- sepol_version=${sepol_srcdir}/VERSION
+++ /dev/null
-trying to run compiled code fails when cross-compiling.
-probe the value using the preprocessor instead.
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -621,21 +621,8 @@
- sepol_new_errcodes="yes",
- sepol_new_errcodes="no")
-
--AC_RUN_IFELSE(
-- [AC_LANG_SOURCE([
--#include <sepol/policydb/policydb.h>
--#include <stdio.h>
--#include <stdlib.h>
--int main(void) {
-- FILE *f = fopen("conftest.data", "w");
-- if (f != NULL && fprintf(f, "%d", POLICYDB_VERSION_MAX) > 0) {
-- fclose(f);
-- exit(EXIT_SUCCESS);
-- }
-- exit(EXIT_FAILURE);
--}])],
-- sepol_policy_version_max=`cat conftest.data`,
-- AC_MSG_FAILURE([could not determine maximum libsepol policy version]))
-+printf "#include <sepol/policydb/policydb.h>\nPOLICYDB_VERSION_MAX\n" > conftest.c
-+sepol_policy_version_max=`${CPP} -E -P ${CPPFLAGS} conftest.c | tail -1`
- AC_DEFINE_UNQUOTED(SEPOL_POLICY_VERSION_MAX, ${sepol_policy_version_max}, [maximum policy version supported by libsepol])
- CFLAGS="${sepol_save_CFLAGS}"
- CPPFLAGS="${sepol_save_CPPFLAGS}"
+++ /dev/null
---- setools-4.0.1/setup.py.orig 2016-05-22 19:50:02.586000000 +0200
-+++ setools-4.0.1/setup.py 2016-05-22 19:50:56.107000000 +0200
-@@ -163,11 +163,10 @@
- 'build_lex': LexCommand,
- 'build_ext': BuildExtCommand,
- 'build_qhc': QtHelpCommand},
-- packages=['setools', 'setools.diff', 'setools.policyrep', 'setoolsgui', 'setoolsgui.apol'],
-- scripts=['apol', 'sediff', 'seinfo', 'seinfoflow', 'sesearch', 'sedta'],
-+ packages=['setools', 'setools.diff', 'setools.policyrep'],
-+ scripts=['sediff', 'seinfo', 'seinfoflow', 'sesearch', 'sedta'],
- data_files=[(join(sys.prefix, 'share/man/man1'), glob.glob("man/*.1") ),
-- (join(sys.prefix, 'share/setools'), glob.glob("data/*.ui") +
-- ["data/perm_map", "qhc/apol.qhc"] )],
-+ (join(sys.prefix, 'share/setools'), ["data/perm_map"] ),],
- ext_modules=ext_py_mods,
- test_suite='tests',
- license='GPLv2+, LGPLv2.1+',