From: rcombs Date: Wed, 19 Nov 2014 17:57:06 +0000 (-0500) Subject: tweaked build doc foo X-Git-Tag: 3.0.0-233~1189^2~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d25d746c81d8055ffff52019cb232bf264199423;p=thirdparty%2Fsnort3.git tweaked build doc foo --- diff --git a/ChangeLog b/ChangeLog index a7175afc9..fe1213b03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -43,6 +43,7 @@ -- fixed norm module handling of tcp opts -- fixed ecn normalization -- fixed pm backtracking +-- tweaked build doc foo 127 -- REG_TEST out logging tcp options for rebuilt packets to match snort bug diff --git a/doc/start.txt b/doc/start.txt index a1ca1d5d1..99a8df156 100644 --- a/doc/start.txt +++ b/doc/start.txt @@ -4,7 +4,7 @@ The following pointers will help you get started: Required: -* autotools or Cmake to build from source. +* autotools or cmake to build from source. * daq from http://www.snort.org for packet IO. @@ -40,25 +40,27 @@ Optional: the top level directory will suffice. If you don't have ./configure, then autoreconf -isvf must be done first. -* To build with Cmake and make, first create a separate directory for the +* To build with cmake and make, first create a separate directory for the build and cd into that directory. Then: mkdir -p /path/to/my_build cd /path/to/my_build - Cmake /path/to/Snort++ + cmake /path/to/Snort++ + make; make install -* An alternate method for building with Cmake and make is to run the +* An alternate method for building with cmake and make is to run the configure_cmake.sh script. It will automatically create and populate a new subdirectory named 'build'. cd /path/to/Snort++ ./configure_cmake.sh --prefix=/home/rcombs/install + make; make install * Build with Xcode like this: mkdir -p /path/to/my_build cd /path/to/my_build - Cmake /path/to/Snort++ -G Xcode + cmake /path/to/Snort++ -G Xcode * An alternate method for building with Xcode is to run the configure_cmake.sh script. It will automatically create and populate