mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-24 11:20:10 +01:00
Run the command below suggested by geirha in ##sed@irc.freenode.net. git grep -l 'http://.*freedesktop.org' | xargs sed -i 's|http\(://\([[:alnum:].-]*\.\)\{0,1\}freedesktop\.org\)|https\1|g' Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
25 lines
675 B
Text
25 lines
675 B
Text
|
|
AC_PATH_PROG(FIND, find)
|
|
AC_PATH_PROG(XARGS, xargs)
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CPP
|
|
AC_PROG_CXX dnl required for BeOS (and cannot be a conditional dependency)
|
|
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)
|
|
|