]> sourceware.org Git - systemtap.git/commitdiff
configury: regenerate after configure.ac changes
authorFrank Ch. Eigler <fche@redhat.com>
Thu, 5 Sep 2019 18:05:03 +0000 (14:05 -0400)
committerFrank Ch. Eigler <fche@redhat.com>
Thu, 5 Sep 2019 18:05:03 +0000 (14:05 -0400)
configure

index 68d5baccf2cc7e1c5b735d7587241755bd4d99c2..5cfeae6c6bcfe17337510d8b2373294c8f2c1cb5 100755 (executable)
--- a/configure
+++ b/configure
@@ -921,8 +921,10 @@ with_python3
 with_elfutils
 with_dyninst
 enable_virt
+enable_libvirt
 with_python2_probes
 with_python3_probes
+enable_monitor
 with_bpf
 with_selinux
 with_java
@@ -1621,6 +1623,8 @@ Optional Features:
                           etc. found).
   --enable-virt           enable building of stapvirt support (default on if
                           libvirt etc. found).
+  --disable-libvirt       Do not use libvirt even if present
+  --disable-monitor       Disable monitor
   --enable-http           Enable building http web compilation service, if
                           possible
 
@@ -8812,10 +8816,6 @@ $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h
 
 
 
-if test "x$GMSGFMT" = "x:"; then
-   as_fn_error $? "missing gnu /usr/bin/msgfmt" "$LINENO" 5
-fi
-
 # We want the 'PYTHON' varible to be python version 2. We also want
 # our custom 'PYTHON3' varible to be python version 3.
 #
@@ -11940,6 +11940,13 @@ else
 fi
 
 
+# Check whether --enable-libvirt was given.
+if test "${enable_libvirt+set}" = set; then :
+  enableval=$enable_libvirt;
+fi
+
+
+if test "$enable_libvirt" != no; then
 
 pkg_failed=no
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libvirt" >&5
@@ -12010,11 +12017,12 @@ else
         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
 
-   have_libvirt=yes
+     have_libvirt=yes
 
 $as_echo "#define HAVE_LIBVIRT 1" >>confdefs.h
 
 
+fi
 fi
  if test "${have_libvirt}" = "yes"; then
   HAVE_LIBVIRT_TRUE=
@@ -12324,6 +12332,12 @@ else
 fi
 
 
+# Check whether --enable-monitor was given.
+if test "${enable_monitor+set}" = set; then :
+  enableval=$enable_monitor;
+fi
+
+if test "$enable_monitor" != "no"; then
 
 pkg_failed=no
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jsonc" >&5
@@ -12466,7 +12480,13 @@ else
 $as_echo "yes" >&6; }
        have_ncurses=yes
 fi
- if test "${have_jsonc}" == "yes" -a "${have_ncurses}" == "yes"; then
+if test "${have_jsonc}" == "yes" -a "${have_ncurses}" == yes; then
+
+$as_echo "#define HAVE_MONITOR_LIBS 1" >>confdefs.h
+
+fi
+fi
+ if test "${have_jsonc}" == "yes" -a "${have_ncurses}" == "yes" -a "$enable_monitor" != "no"; then
   HAVE_MONITOR_LIBS_TRUE=
   HAVE_MONITOR_LIBS_FALSE='#'
 else
@@ -12474,11 +12494,6 @@ else
   HAVE_MONITOR_LIBS_FALSE=
 fi
 
-if test "${have_jsonc}" == "yes" -a "${have_ncurses}" == yes; then
-
-$as_echo "#define HAVE_MONITOR_LIBS 1" >>confdefs.h
-
-fi
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for assembler .section \"?\" flags support" >&5
 $as_echo_n "checking for assembler .section \"?\" flags support... " >&6; }
This page took 0.041967 seconds and 5 git commands to generate.