[gtk/wip/chergert/fix-autotools-enable-profiler] build: fix --enable-profiler=no



commit e0d511b33fe20573dd8b3b496e82bd580460ffa7
Author: Christian Hergert <chergert redhat com>
Date:   Mon Jun 24 16:16:25 2019 -0700

    build: fix --enable-profiler=no
    
    This fixes the --enable-profiler=no or --disable-profiler option.
    
    Fixes #1965

 configure.ac | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index eebc6e6f4d..fac7bd2f63 100644
--- a/configure.ac
+++ b/configure.ac
@@ -357,7 +357,8 @@ AC_ARG_ENABLE(cloudproviders,
 AC_ARG_ENABLE(profiler,
               [AS_HELP_STRING([--enable-profiler],
                               [enable profiler integration])],
-                              [profiler_set=yes])
+              [enable_profiler=$enableval],
+              [enable_profiler=no])
 
 if test -z "$backend_set"; then
   if test "$platform_win32" = yes; then
@@ -1343,7 +1344,7 @@ fi
 # Check for profiler support
 
 PROFILER_PACKAGES=""
-if test "x$profiler_set" = "xyes"; then
+if test "x$enable_profiler" = "xyes"; then
   PROFILER_PACKAGES="sysprof-capture-3 >= sysprof_required_version"
   if $PKG_CONFIG --exists $PROFILER_PACKAGES; then
     AC_DEFINE(HAVE_SYSPROF_CAPTURE, [1],


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]