Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: adjust osx build procedures

...

Code Block
langnone
$ cd traffic-trunk.svn  # enter the new checkout directory
$ autoreconf -f -i      # generate the configure script

Make yourself a build directory so you can do a VPATH build.

Code Block
langnone

$ mkdir release  # directory where build artifacts will reside

From the build From the checkout directory, run `configure` to generate the Makefile files. You may need to specify the base path where the development files (headers and libraries) for PCRE are installed, e.g. if you installed pcre with macports, you will need to specify the directory '/opt/local':

Code Block
langnone
$ cd release  # enter the directory where build artifacts will reside
$ ../configure --prefix=/opt/ats --with-pcre=/opt/local  # generate the Makefile files

Now you can make and install:

...