Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
updated: ensure makefiles bundle all new files and prepare for beta tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
firnsy committed Jul 7, 2011
1 parent 104e231 commit 411db8a
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 31 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ AUTOMAKE_OPTIONS = foreign no-dependencies


ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I m4


SUBDIRS = src etc doc rpm schemas m4 SUBDIRS = src etc doc rpm schemas m4


INCLUDES = @INCLUDES@ INCLUDES = @INCLUDES@


EXTRA_DIST = COPYING LICENSE README RELEASE.NOTES ltmain.sh EXTRA_DIST = COPYING LICENSE README RELEASE.NOTES ltmain.sh autogen.sh
2 changes: 1 addition & 1 deletion configure.in
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_INIT(src/barnyard2.c) AC_INIT(src/barnyard2.c)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(barnyard2,1.9) AM_INIT_AUTOMAKE(barnyard2,1.10-beta1)
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])


LT_INIT LT_INIT
Expand Down
50 changes: 24 additions & 26 deletions doc/INSTALL
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ The quick install notes for getting people up and running in with minimal fuss
are below. Detailed instructions will follow later. are below. Detailed instructions will follow later.


1. *** Make sure you have libpcap HEADERS installed!!! *** 1. *** Make sure you have libpcap HEADERS installed!!! ***
2. autoreconf -fvi -I ./m4 2. ./autogen.sh
3. ./configure 3. ./configure
4. make 4. make
5. make install 5. make install
6. Create a sample rules file (eg. look at etc/barnyard2.conf) 6. Create a sample rules file (eg. look at etc/barnyard2.conf)
7. barnyard2 -? 7. barnyard2 -?
8. If you've used barnyard before, there may be a little variance in the 8. HAVE FUN!
commandline parameters.
9. Have fun!




------------------------------------------------------------------------------- -------------------------------------------------------------------------------
Expand All @@ -27,36 +25,36 @@ are below. Detailed instructions will follow later.


`--enable-debug' `--enable-debug'
Enable debugging options (bugreports and developers only). Enable debugging options (bugreports and developers only).

`--with-tcl=DIR' `--with-tcl=DIR'
Support for Tcl, turn this on if you want to use the Sguil plugin. An Support for Tcl, turn this on if you want to use the Sguil plugin. An
alternative location can be supplied for non-standard Tcl installs. alternative location can be supplied for non-standard Tcl installs.


`--with-libpcap-includes=DIR' `--with-libpcap-includes=DIR'
Specify location for pcap header files. Specify location for pcap header files.

`--with-mysql=DIR' `--with-mysql=DIR'
Support for mysql, turn this on if you want to use ACID/BASE with MySQL. Support for mysql, turn this on if you want to use ACID/BASE with MySQL.
NOTE: Specifying a directory will be deprecated in the future. NOTE: Specifying a directory will be deprecated in the future.

`--with-mysql-libraries=DIR' `--with-mysql-libraries=DIR'
Specify location for mysql client library. Specify location for mysql client library.

`--with-mysql-includes=DIR' `--with-mysql-includes=DIR'
Specify location for mysql header files. Specify location for mysql header files.

`--with-odbc=DIR' `--with-odbc=DIR'
Support for ODBC databases, turn this on if you want to use ACID/BASE with Support for ODBC databases, turn this on if you want to use ACID/BASE with
a non-listed DB. a non-listed DB.

`--with-postgresql=DIR' `--with-postgresql=DIR'
Support for Postgresql databases, turn this on if you want to use ACID/BASE Support for Postgresql databases, turn this on if you want to use ACID/BASE
with PostgreSQL. with PostgreSQL.

`--with-oracle=DIR' `--with-oracle=DIR'
Support for Oracle databases, turn this on if you want to use ACID/BASE Support for Oracle databases, turn this on if you want to use ACID/BASE
with Oracle. with Oracle.



------------------------------------------------------------------------------- -------------------------------------------------------------------------------
2. BASIC INSTALLATION 2. BASIC INSTALLATION
Expand Down Expand Up @@ -87,12 +85,12 @@ The simplest way to compile this package is:


1. `cd' to the directory containing the package's source code and type 1. `cd' to the directory containing the package's source code and type
`./configure' to configure the package for your system. If you're using `./configure' to configure the package for your system. If you're using
`csh' on an old version of System V, you might need to type `csh' on an old version of System V, you might need to type
`sh ./configure' instead to prevent `csh' from trying to execute `sh ./configure' instead to prevent `csh' from trying to execute
`configure' itself. `configure' itself.


Running `configure' takes awhile. While running, it prints some messages Running `configure' takes awhile. While running, it prints some messages
telling which features it is checking for. telling which features it is checking for.


2. Type `make' to compile the package. 2. Type `make' to compile the package.


Expand All @@ -104,9 +102,9 @@ The simplest way to compile this package is:


5. You can remove the program binaries and object files from the source code 5. You can remove the program binaries and object files from the source code
directory by typing `make clean'. To also remove the files that directory by typing `make clean'. To also remove the files that
`configure' created (so you can compile the package for a different kind `configure' created (so you can compile the package for a different kind
of computer), type `make distclean'. There is also a of computer), type `make distclean'. There is also a
`make maintainer-clean' target, but that is intended mainly for the `make maintainer-clean' target, but that is intended mainly for the
package's developers. If you use it, you may have to get all sorts of package's developers. If you use it, you may have to get all sorts of
other programs in order to regenerate files that came with the other programs in order to regenerate files that came with the
distribution. distribution.
2 changes: 1 addition & 1 deletion doc/Makefile.am
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
## $Id$ ## $Id$
AUTOMAKE_OPTIONS=foreign no-dependencies AUTOMAKE_OPTIONS=foreign no-dependencies


EXTRA_DIST = INSTALL README.aruba README.database README.sguil EXTRA_DIST = INSTALL README.aruba README.database README.sguil README.snortsam
2 changes: 1 addition & 1 deletion src/barnyard2.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
#define PROGRAM_NAME "Barnyard" #define PROGRAM_NAME "Barnyard"
#define VER_MAJOR "2" #define VER_MAJOR "2"
#define VER_MINOR "1" #define VER_MINOR "1"
#define VER_REVISION "10" #define VER_REVISION "10-beta1"
#define VER_BUILD "266" #define VER_BUILD "266"


#define STD_BUF 1024 #define STD_BUF 1024
Expand Down

0 comments on commit 411db8a

Please sign in to comment.