diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 3692a521..f53414b3 100644 --- a/configure.ac +++ b/configure.ac @@ -40,6 +40,14 @@ AC_ARG_ENABLE( ) AM_CONDITIONAL(IS_COVERAGE, test "x$found_coverage" = xyes) +# Is this --enable-profile? +AC_ARG_ENABLE( + profile, + AC_HELP_STRING(--enable-profile, enable profile build flags), + found_profile=$enable_profile +) +AM_CONDITIONAL(IS_PROFILE, test "x$found_profile" = xyes) + # Is this a static build? AC_ARG_ENABLE( static, |