]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
tweaked build doc foo
authorrcombs <rcombs@sq18.sfeng.sourcefire.com>
Wed, 19 Nov 2014 17:57:06 +0000 (12:57 -0500)
committerrcombs <rcombs@sq18.sfeng.sourcefire.com>
Wed, 19 Nov 2014 17:57:06 +0000 (12:57 -0500)
ChangeLog
doc/start.txt

index a7175afc97fbef98b67b1077b86b1da4339c9bd0..fe1213b03331b66483f791b7b5b592b36a6c494a 100644 (file)
--- 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
index a1ca1d5d1335ae68aaaf6b1d9a2b14ce2992c259..99a8df1563d4ccf86201c563c23e32cbcf768e3d 100644 (file)
@@ -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