mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-05-19 04:58:13 +02:00
If dtrace or systemtap is installed glib will enable tracing automatically. Remove the check to always disable tracing. Freedesktop #53493
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
diff --git a/glib/configure.ac b/glib/configure.ac
|
|
index 27a4a23..160f57d 100644
|
|
--- a/glib/configure.ac
|
|
+++ b/glib/configure.ac
|
|
@@ -2427,30 +2427,6 @@ int error = EILSEQ;
|
|
], have_eilseq=yes, have_eilseq=no);
|
|
AC_MSG_RESULT($have_eilseq)
|
|
|
|
-dnl ******************************************************************
|
|
-dnl *** If we are cross-compiling, look for glib-genmarshal and ***
|
|
-dnl *** glib-compile-schemas in PATH ***
|
|
-dnl ******************************************************************
|
|
-
|
|
-AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
|
|
-
|
|
-if test $cross_compiling = yes; then
|
|
- AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal, no)
|
|
- if test x$GLIB_GENMARSHAL = xno; then
|
|
- AC_MSG_ERROR(Could not find a glib-genmarshal in your PATH)
|
|
- fi
|
|
-
|
|
- AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas, no)
|
|
- if test x$GLIB_COMPILE_SCHEMAS = xno; then
|
|
- AC_MSG_ERROR(Could not find a glib-compile-schemas in your PATH)
|
|
- fi
|
|
-
|
|
- AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources, no)
|
|
- if test x$GLIB_COMPILE_RESOURCES = xno; then
|
|
- AC_MSG_ERROR(Could not find a glib-compile-resources in your PATH)
|
|
- fi
|
|
-fi
|
|
-
|
|
dnl ************************************
|
|
dnl *** Enable lcov coverage reports ***
|
|
dnl ************************************
|