2007-07-27 01:18:47 +02:00
|
|
|
From: Tony Jones <tonyj@suse.de>
|
|
|
|
Subject: Disable automatic building of python code
|
|
|
|
Upsteam: never
|
|
|
|
|
|
|
|
Python code is disabled for audit.spec. Built manually by audit-libs-python.spec.
|
|
|
|
This is apparantly necessary due to the SuSE build system. Bit of a PITA but
|
|
|
|
there you have it.
|
|
|
|
|
2010-10-08 01:12:17 +02:00
|
|
|
---
|
|
|
|
Makefile.am | 4 ++--
|
|
|
|
auparse/Makefile.am | 1 -
|
|
|
|
configure.ac | 4 ++--
|
|
|
|
3 files changed, 4 insertions(+), 5 deletions(-)
|
|
|
|
|
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
|
|
|
@@ -40,7 +40,6 @@ AC_CANONICAL_TARGET
|
2007-01-15 23:51:54 +01:00
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
AC_SUBST(LIBTOOL_DEPS)
|
2007-05-06 17:10:42 +02:00
|
|
|
-AM_PATH_PYTHON
|
2008-09-29 17:28:30 +02:00
|
|
|
OLDLIBS="$LIBS"
|
|
|
|
m4_include([src/libev/libev.m4])
|
|
|
|
libev_LIBS="$LIBS"
|
2010-10-08 01:12:17 +02:00
|
|
|
@@ -231,7 +230,8 @@ AC_SUBST(libev_LIBS)
|
2009-06-05 22:36:33 +02:00
|
|
|
AC_SUBST(LIBPRELUDE_CFLAGS)
|
|
|
|
AC_SUBST(LIBPRELUDE_LDFLAGS)
|
2007-01-15 23:51:54 +01:00
|
|
|
|
2009-06-05 22:36:33 +02:00
|
|
|
-AC_OUTPUT(Makefile lib/Makefile lib/test/Makefile auparse/Makefile auparse/test/Makefile src/Makefile src/mt/Makefile src/libev/Makefile src/test/Makefile swig/Makefile docs/Makefile init.d/Makefile audisp/Makefile audisp/plugins/Makefile audisp/plugins/builtins/Makefile audisp/plugins/prelude/Makefile audisp/plugins/remote/Makefile audisp/plugins/zos-remote/Makefile bindings/Makefile bindings/python/Makefile tools/Makefile tools/aulast/Makefile tools/aulastlog/Makefile tools/ausyscall/Makefile)
|
2008-03-28 15:45:19 +01:00
|
|
|
+# SuSE: remove swig/Makefile + bindings/Makefile + bindings/python/Makefile
|
2009-06-05 22:36:33 +02:00
|
|
|
+AC_OUTPUT(Makefile lib/Makefile lib/test/Makefile auparse/Makefile auparse/test/Makefile src/Makefile src/mt/Makefile src/libev/Makefile src/test/Makefile docs/Makefile init.d/Makefile audisp/Makefile audisp/plugins/Makefile audisp/plugins/builtins/Makefile audisp/plugins/prelude/Makefile audisp/plugins/remote/Makefile audisp/plugins/zos-remote/Makefile tools/Makefile tools/aulast/Makefile tools/aulastlog/Makefile tools/ausyscall/Makefile)
|
2007-01-15 23:51:54 +01:00
|
|
|
|
|
|
|
echo .
|
|
|
|
echo "
|
2010-10-08 01:12:17 +02:00
|
|
|
--- a/Makefile.am
|
|
|
|
+++ b/Makefile.am
|
2008-09-29 17:28:30 +02:00
|
|
|
@@ -21,8 +21,8 @@
|
2007-05-06 17:10:42 +02:00
|
|
|
# Rickard E. (Rik) Faith <faith@redhat.com>
|
2007-01-15 23:51:54 +01:00
|
|
|
#
|
|
|
|
|
2008-09-29 17:28:30 +02:00
|
|
|
-SUBDIRS = lib auparse src/mt src/libev src audisp tools swig bindings init.d \
|
|
|
|
- docs
|
2008-03-28 15:45:19 +01:00
|
|
|
+# SuSE: remove swig + bindings
|
2008-09-29 17:28:30 +02:00
|
|
|
+SUBDIRS = lib auparse src/mt src/libev src audisp tools init.d docs
|
|
|
|
EXTRA_DIST = ChangeLog AUTHORS NEWS README INSTALL audit.spec \
|
2008-03-28 15:45:19 +01:00
|
|
|
contrib/capp.rules contrib/nispom.rules contrib/lspp.rules \
|
2008-09-29 17:28:30 +02:00
|
|
|
contrib/stig.rules contrib/skeleton.c contrib/avc_snap \
|
2010-10-08 01:12:17 +02:00
|
|
|
--- a/auparse/Makefile.am
|
|
|
|
+++ b/auparse/Makefile.am
|
2008-09-29 17:28:30 +02:00
|
|
|
@@ -20,7 +20,6 @@
|
|
|
|
# Steve Grubb <sgrubb@redhat.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
-SUBDIRS = test
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
2009-11-16 09:56:53 +01:00
|
|
|
CONFIG_CLEAN_FILES = *.loT *.rej *.orig
|
|
|
|
AM_CFLAGS = -fPIC -DPIC -D_GNU_SOURCE -g ${DEBUG}
|