diff options
author | Michael Boman <mboman@gentoo.org> | 2004-01-08 12:47:13 +0000 |
---|---|---|
committer | Michael Boman <mboman@gentoo.org> | 2004-01-08 12:47:13 +0000 |
commit | 4b265700c09ffa7ad5fa57458cb1a7a9ebdd6f77 (patch) | |
tree | 2349ead5a738e140e5232769505808e62738658f /net-analyzer/snort/files | |
parent | Made use of 'doc' USE flag to install signature documentation. Patched config... (diff) | |
download | historical-4b265700c09ffa7ad5fa57458cb1a7a9ebdd6f77.tar.gz historical-4b265700c09ffa7ad5fa57458cb1a7a9ebdd6f77.tar.bz2 historical-4b265700c09ffa7ad5fa57458cb1a7a9ebdd6f77.zip |
Made use of 'doc' USE flag to install signature documentation. Patched configure.in to solve bug #37436.
Diffstat (limited to 'net-analyzer/snort/files')
-rw-r--r-- | net-analyzer/snort/files/digest-snort-2.1.0-r1 | 1 | ||||
-rw-r--r-- | net-analyzer/snort/files/snort-2.1.0-pgsql.patch | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/net-analyzer/snort/files/digest-snort-2.1.0-r1 b/net-analyzer/snort/files/digest-snort-2.1.0-r1 new file mode 100644 index 000000000000..fd009597ec05 --- /dev/null +++ b/net-analyzer/snort/files/digest-snort-2.1.0-r1 @@ -0,0 +1 @@ +MD5 1da6d683d18b39a72a3c277e8deffc69 snort-2.1.0.tar.gz 2244701 diff --git a/net-analyzer/snort/files/snort-2.1.0-pgsql.patch b/net-analyzer/snort/files/snort-2.1.0-pgsql.patch new file mode 100644 index 000000000000..46d62711ea12 --- /dev/null +++ b/net-analyzer/snort/files/snort-2.1.0-pgsql.patch @@ -0,0 +1,17 @@ +Index: configure.in +=================================================================== +RCS file: /cvsroot/snort/snort/configure.in,v +retrieving revision 1.129 +diff -u -b -B -w -p -r1.129 configure.in +--- configure.in 17 Dec 2003 21:25:13 -0000 1.129 ++++ configure.in 8 Jan 2004 11:50:34 -0000 +@@ -511,6 +511,9 @@ if test "$with_postgresql" != "no"; then + elif test -r $i/include/postgresql/libpq-fe.h; then + POSTGRESQL_DIR=$i + POSTGRESQL_INC_DIR=$i/include/postgresql ++ elif test -r $i/include/postgresql/pgsql/libpq-fe.h; then ++ POSTGRESQL_DIR=$i ++ POSTGRESQL_INC_DIR=$i/include/postgresql/pgsql + fi + done + |