diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2010-05-27 17:23:55 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2010-05-27 17:23:55 +0000 |
commit | bd101e1e609afd8e3007423cfe00eb1f811e7980 (patch) | |
tree | c992dcba431e40d29f987d6fd5c31585a2c0090f /app-forensics/aide/files | |
parent | Version bump. (diff) | |
download | gentoo-2-bd101e1e609afd8e3007423cfe00eb1f811e7980.tar.gz gentoo-2-bd101e1e609afd8e3007423cfe00eb1f811e7980.tar.bz2 gentoo-2-bd101e1e609afd8e3007423cfe00eb1f811e7980.zip |
Version bumped, bug #319561.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics/aide/files')
-rw-r--r-- | app-forensics/aide/files/aide-0.14-as-needed.patch | 20 | ||||
-rw-r--r-- | app-forensics/aide/files/aide-0.14-gentoo.patch | 26 |
2 files changed, 46 insertions, 0 deletions
diff --git a/app-forensics/aide/files/aide-0.14-as-needed.patch b/app-forensics/aide/files/aide-0.14-as-needed.patch new file mode 100644 index 000000000000..7a90b4e25079 --- /dev/null +++ b/app-forensics/aide/files/aide-0.14-as-needed.patch @@ -0,0 +1,20 @@ +--- aide-0.14.orig/configure.in 2010-02-26 17:25:29.000000000 +0900 ++++ aide-0.14/configure.in 2010-05-27 00:11:34.000000000 +0900 +@@ -42,7 +42,7 @@ + AC_ARG_WITH(extra-libs, + AC_HELP_STRING([--with-extra-libs], + [Specify additional paths with -L to find libraries]), +- [LDFLAGS="$LDFLAGS $withval"] ++ [LIBS="$LIBS $withval"] + ) + AC_ARG_WITH(extra-link-libs, + AC_HELP_STRING([--with-extra-link-libs], +@@ -671,7 +671,7 @@ + AC_CHECK_HEADERS(curl/curl.h,, + [AC_MSG_ERROR([You don't have curl properly installed. Install it or try --without-curl.])]) + CFLAGS="$CFLAGS $CURL_CFLAGS" +- LDFLAGS="$LDFLAGS $CURL_LIBS" ++ LIBS="$LIBS $CURL_LIBS" + AC_CHECK_LIB(curl,curl_easy_init,havecurl=yes, + [AC_MSG_ERROR([You don't have curl properly installed. Install it or try --without-curl.])] + ) diff --git a/app-forensics/aide/files/aide-0.14-gentoo.patch b/app-forensics/aide/files/aide-0.14-gentoo.patch new file mode 100644 index 000000000000..f2c8156ed161 --- /dev/null +++ b/app-forensics/aide/files/aide-0.14-gentoo.patch @@ -0,0 +1,26 @@ +diff -Naur aide-0.14.orig//src/Makefile.am aide-0.14//src/Makefile.am +--- aide-0.14.orig//src/Makefile.am 2010-02-20 04:23:08.000000000 +0900 ++++ aide-0.14//src/Makefile.am 2010-05-26 23:56:47.000000000 +0900 +@@ -26,7 +26,7 @@ + LEX_OUTPUT_ROOT = lex.yy + + LDADD = -lm @CRYPTLIB@ @ACLLIB@ @SELINUXLIB@ @AUDITLIB@ @ATTRLIB@ @ELFLIB@ +-AM_CFLAGS = @AIDE_DEFS@ -W -Wall -g ++AM_CFLAGS = -DLOCALEDIR=\"$(localedir)\" @AIDE_DEFS@ -W -Wall -g + + CLEANFILES = conf_yacc.h conf_yacc.c conf_lex.c db_lex.c *~ + +diff -Naur aide-0.14.orig//src/db.c aide-0.14//src/db.c +--- aide-0.14.orig//src/db.c 2010-02-18 05:06:57.000000000 +0900 ++++ aide-0.14//src/db.c 2010-05-27 00:16:07.000000000 +0900 +@@ -26,6 +26,10 @@ + #include "db_file.h" + #include "db_disk.h" + ++#ifdef WITH_CURL ++#include "fopen.h" ++#endif ++ + #ifdef WITH_PSQL + #include "db_sql.h" + #endif |