Skip to content

Commit 136a025

Browse files
committed
commit file
1 parent 9044dd3 commit 136a025

File tree

164 files changed

+164153
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+164153
-0
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+

COPYING

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2005, Google Inc.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are
6+
met:
7+
8+
* Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
* Redistributions in binary form must reproduce the above
11+
copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the
13+
distribution.
14+
* Neither the name of Google Inc. nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
The ChangeLog is auto-generated when releasing.
2+
If you are seeing this, use 'git log' for a detailed list of changes.

ChangeLog.old

Lines changed: 646 additions & 0 deletions
Large diffs are not rendered by default.

INSTALL

Lines changed: 563 additions & 0 deletions
Large diffs are not rendered by default.

Makefile.am

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
ACLOCAL_AMFLAGS = -I m4
2+
AUTOMAKE_OPTIONS = subdir-objects
3+
AM_CPPFLAGS = -I$(top_srcdir)/src
4+
5+
AM_CXXFLAGS =
6+
7+
8+
lib_LTLIBRARIES =
9+
10+
bin_PROGRAMS =
11+
12+
13+
if HAVE_INTEL_SOFT_CPM
14+
INTEL_SOFT_CPM_SOURCES = src/sfutil/intel-soft-cpm.c src/sfutil/intel-soft-cpm.h
15+
endif
16+
17+
libmpse_la_CXXFLAGS =
18+
MPSE_INCLUDES = src/mpse/str_search.h \
19+
src/mpse/boyer_moore.h \
20+
src/mpse/mpse.h \
21+
src/mpse/sf_types.h \
22+
src/mpse/snort.h \
23+
src/mpse/snort_debug.h \
24+
src/mpse/snort_bounds.h \
25+
src/mpse/sflsq.h \
26+
src/mpse/sfksearch.h \
27+
src/mpse/sfrt_trie.h \
28+
src/mpse/bnfa_search.h \
29+
src/mpse/acsmx.h
30+
31+
libmpse_la_CXXFLAGS =
32+
33+
lib_LTLIBRARIES += libmpse.la
34+
libmpse_la_SOURCES = src/mpse/acsmx2.c \
35+
src/mpse/acsmx2.h \
36+
src/mpse/acsmx.c \
37+
src/mpse/acsmx.h \
38+
src/mpse/bnfa_search.c \
39+
src/mpse/bnfa_search.h \
40+
src/mpse/boyer_moore.c \
41+
src/mpse/boyer_moore.h \
42+
src/mpse/mpse.c \
43+
src/mpse/mpse.h \
44+
src/mpse/sfksearch.c \
45+
src/mpse/sfksearch.h \
46+
src/mpse/sfrt_trie.h \
47+
src/mpse/sflsq.c \
48+
src/mpse/sflsq.h \
49+
src/mpse/bitop.h \
50+
src/mpse/profiler.c \
51+
src/mpse/profiler.h \
52+
src/mpse/str_search.c \
53+
src/mpse/str_search.h \
54+
src/mpse/sf_types.h \
55+
src/mpse/snort.h \
56+
src/mpse/snort_debug.h \
57+
src/mpse/snort_bounds.h \
58+
src/mpse/util.c \
59+
src/mpse/util.h \
60+
src/mpse/snort.c \
61+
src/mpse/snort.h \
62+
$(INTEL_SOFT_CPM_SOURCES)
63+
64+
libtmpse_la_LIBADD = libmpse.la
65+
libmpse_la_LDFLAGS = -version-info @MPSE_SO_VERSION@ $(AM_LDFLAGS)
66+
67+
bin_PROGRAMS += bm_test
68+
bm_test_SOURCES = src/test/bm_test.c $(MPSE_INCLUDES)
69+
bm_test_LDADD = libmpse.la
70+
71+
bin_PROGRAMS += mpse_test
72+
mpse_test_SOURCES = src/test/mpse_test.c $(MPSE_INCLUDES)
73+
mpse_test_LDADD = libmpse.la
74+
75+
76+
mpseincludedir = $(includedir)/mpse
77+
mpseinclude_HEADERS = src/mpse/str_search.h \
78+
src/mpse/boyer_moore.h \
79+
src/mpse/mpse.h \
80+
src/mpse/snort.h \
81+
src/mpse/sf_types.h \
82+
src/mpse/snort_debug.h \
83+
src/mpse/snort_bounds.h \
84+
src/mpse/sflsq.h \
85+
src/mpse/sfksearch.h \
86+
src/mpse/sfrt_trie.h \
87+
src/mpse/bnfa_search.h \
88+
src/mpse/acsmx.h \
89+
src/mpse/bitop.h

0 commit comments

Comments
 (0)