aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAge
* Add 'ppaml_tracer_init_from_env'Gravatar Benjamin Barenblat2014-01-27
| | | | | | | | | This new API function is similar to 'ppaml_tracer_init', but instead of accepting the report base name as an argument, it pulls it from the 'PPAMLTRACER_TRACE_BASE' environment variable. This is useful for users who want to be able to vary the locations of trace reports but do not want to build tracing into their configuration file / command-line argument parsers.
* Functional tests for C libraryGravatar Benjamin Barenblat2014-01-27
| | | | | | | | While gearing up to make an addition to the C library, I became concerned at the lack of test infrastructure for the project. The build system now integrates Check <http://check.sourceforge.net/>, a lightweight testing framework for C, and there are a few tests to ensure no serious regressions occur. You can run the tests with “make check”.
* autotools: Don’t build DLLs on Cygwin by defaultGravatar Benjamin Barenblat2014-01-17
| | | | | | | | | | By default, OTF does not build DLLs on Cygwin. Consequently, users who built OTF and ppamltracer using the default 'configure' flags received warnings about missing DLLs during ppamltracer’s link phase. This commit changes that behavior, causing the generated configure script to default to only building static libraries in Cygwin. Should users wish to build DLLs, they can still do so by passing “--enable-shared” to configure.
* Initial commitGravatar Benjamin Barenblat2014-01-13