Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

From the build directory, run configure to generate the Makefile files. You will likely need to override the C and C++ compiler to use since they may be a non-standard filename. Plus, you may need to specify the base path where the development files (headers and libraries) for sqlite3 and 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
$ ../configure --prefix=/opt/ats \
               --with-sqlite3=/path/to/sqlite3/base/dir/of/sqlite-devel \
               --with-pcre=/path/to/base/dir/of/pcre-devel \
               CC=/usr/bin/gcc-4.2 \
               CXX=/usr/bin/g++-4.2

...