diff options
author | Ralph Seichter <github@seichter.de> | 2019-03-09 16:40:47 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2019-03-10 23:35:17 +0100 |
commit | 4eb0be7ea233b8638abacc43d868196396c32126 (patch) | |
tree | 1f03c40e281f2a0113a91750ae1f2ba722eab9f3 /net-analyzer/ossec-hids/files | |
parent | sys-apps/smc-sum: drop old version. (diff) | |
download | gentoo-4eb0be7ea233b8638abacc43d868196396c32126.tar.gz gentoo-4eb0be7ea233b8638abacc43d868196396c32126.tar.bz2 gentoo-4eb0be7ea233b8638abacc43d868196396c32126.zip |
net-analyzer/ossec-hids: upstream release 3.2.0.
Extended JSON output support and more, see
https://github.com/ossec/ossec-hids/releases/tag/3.2.0
for the official release notes.
Signed-off-by: Ralph Seichter <gentoo@seichter.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/11320
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'net-analyzer/ossec-hids/files')
-rw-r--r-- | net-analyzer/ossec-hids/files/makefile-3.2.0.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net-analyzer/ossec-hids/files/makefile-3.2.0.patch b/net-analyzer/ossec-hids/files/makefile-3.2.0.patch new file mode 100644 index 000000000000..810bc077d438 --- /dev/null +++ b/net-analyzer/ossec-hids/files/makefile-3.2.0.patch @@ -0,0 +1,28 @@ +--- a/Makefile 2019-03-09 16:33:13.465947636 +0100 ++++ b/Makefile 2019-03-09 16:32:57.105946856 +0100 +@@ -370,7 +370,6 @@ + install-server: install-server-generic + + install-common: build +- ./init/adduser.sh ${OSSEC_USER} ${OSSEC_USER_MAIL} ${OSSEC_USER_REM} ${OSSEC_GROUP} ${PREFIX} + $(call INSTALL_CMD,0550,root,${OSSEC_GROUP}) -d ${PREFIX}/ + $(call INSTALL_CMD,0750,${OSSEC_USER},${OSSEC_GROUP}) -d ${PREFIX}/logs + $(call INSTALL_CMD,0660,${OSSEC_USER},${OSSEC_GROUP}) /dev/null ${PREFIX}/logs/ossec.log +@@ -1160,7 +1159,7 @@ + #### test ########## + #################### + +-CFLAGS_TEST = -g -O0 --coverage ++CFLAGS_TEST = -g -O0 + + LDFLAGS_TEST = -lcheck -lm -pthread -lrt + +@@ -1171,7 +1170,7 @@ + + test_programs = test_os_zlib test_os_xml test_os_regex test_os_crypto test_shared + +-.PHONY: test run_tests build_tests test_valgrind test_coverage ++.PHONY: test run_tests build_tests test_valgrind + + test: build_tests + ${MAKE} run_tests |