summaryrefslogtreecommitdiff
path: root/build/configure.ac.tools
diff options
context:
space:
mode:
Diffstat (limited to 'build/configure.ac.tools')
-rw-r--r--build/configure.ac.tools24
1 files changed, 0 insertions, 24 deletions
diff --git a/build/configure.ac.tools b/build/configure.ac.tools
deleted file mode 100644
index 7c11f0c9b..000000000
--- a/build/configure.ac.tools
+++ /dev/null
@@ -1,24 +0,0 @@
-
-AC_PATH_PROG(FIND, find)
-AC_PATH_PROG(XARGS, xargs)
-
-AC_PROG_CC
-AC_PROG_CPP
-AM_PROG_CC_C_O
-AC_C_INLINE
-
-dnl ===========================================================================
-
-PKG_PROG_PKG_CONFIG()
-if test "x$PKG_CONFIG" = x; then
- AC_MSG_ERROR([pkg-config >= $PKGCONFIG_REQUIRED required but not found (https://pkgconfig.freedesktop.org/)])
-fi
-
-dnl Check for recent pkg-config which supports Requires.private
-case `$PKG_CONFIG --version` in
-[0.?|0.?.?|0.1[0-7]|0.1[0-7].?]) PKGCONFIG_REQUIRES="Requires"; ;;
-*) PKGCONFIG_REQUIRES="Requires.private"; ;;
-esac
-
-AC_SUBST(PKGCONFIG_REQUIRES)
-