__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
dnl -*- mode: autoconf -*-
dnl Copyright 2009 Johan Dahlin
dnl
dnl This file is free software; the author(s) gives unlimited
dnl permission to copy and/or distribute it, with or without
dnl modifications, as long as this notice is preserved.
dnl
# serial 1
dnl This is a copy of AS_AC_EXPAND
dnl
dnl (C) 2003, 2004, 2005 Thomas Vander Stichele <thomas at apestaart dot org>
dnl Copying and distribution of this file, with or without modification,
dnl are permitted in any medium without royalty provided the copyright
dnl notice and this notice are preserved.
m4_define([_GOBJECT_INTROSPECTION_AS_AC_EXPAND],
[
EXP_VAR=[$1]
FROM_VAR=[$2]
dnl first expand prefix and exec_prefix if necessary
prefix_save=$prefix
exec_prefix_save=$exec_prefix
dnl if no prefix given, then use /usr/local, the default prefix
if test "x$prefix" = "xNONE"; then
prefix="$ac_default_prefix"
fi
dnl if no exec_prefix given, then use prefix
if test "x$exec_prefix" = "xNONE"; then
exec_prefix=$prefix
fi
full_var="$FROM_VAR"
dnl loop until it doesn't change anymore
while true; do
new_full_var="`eval echo $full_var`"
if test "x$new_full_var" = "x$full_var"; then break; fi
full_var=$new_full_var
done
dnl clean up
full_var=$new_full_var
AC_SUBST([$1], "$full_var")
dnl restore prefix and exec_prefix
prefix=$prefix_save
exec_prefix=$exec_prefix_save
])
m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL],
[
AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
AC_BEFORE([LT_INIT],[$0])dnl setup libtool first
dnl enable/disable introspection
m4_if([$2], [require],
[dnl
enable_introspection=yes
],[dnl
AC_ARG_ENABLE(introspection,
AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]],
[Enable introspection for this build]),,
[enable_introspection=auto])
])dnl
AC_MSG_CHECKING([for gobject-introspection])
dnl presence/version checking
AS_CASE([$enable_introspection],
[no], [dnl
found_introspection="no (disabled, use --enable-introspection to enable)"
],dnl
[yes],[dnl
PKG_CHECK_EXISTS([gobject-introspection-1.0],,
AC_MSG_ERROR([gobject-introspection-1.0 is not installed]))
PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1],
found_introspection=yes,
AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME]))
],dnl
[auto],[dnl
PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no)
dnl Canonicalize enable_introspection
enable_introspection=$found_introspection
],dnl
[dnl
AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@])
])dnl
AC_MSG_RESULT([$found_introspection])
dnl expand datadir/libdir so we can pass them to pkg-config
dnl and get paths relative to our target directories
_GOBJECT_INTROSPECTION_AS_AC_EXPAND(_GI_EXP_DATADIR, "$datadir")
_GOBJECT_INTROSPECTION_AS_AC_EXPAND(_GI_EXP_LIBDIR, "$libdir")
INTROSPECTION_SCANNER=
INTROSPECTION_COMPILER=
INTROSPECTION_GENERATE=
INTROSPECTION_GIRDIR=
INTROSPECTION_TYPELIBDIR=
if test "x$found_introspection" = "xyes"; then
INTROSPECTION_SCANNER=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
INTROSPECTION_COMPILER=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
INTROSPECTION_GENERATE=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
INTROSPECTION_GIRDIR=`$PKG_CONFIG --define-variable=datadir="${_GI_EXP_DATADIR}" --variable=girdir gobject-introspection-1.0`
INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --define-variable=libdir="${_GI_EXP_LIBDIR}" --variable=typelibdir gobject-introspection-1.0)"
INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
INTROSPECTION_MAKEFILE=$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
fi
AC_SUBST(INTROSPECTION_SCANNER)
AC_SUBST(INTROSPECTION_COMPILER)
AC_SUBST(INTROSPECTION_GENERATE)
AC_SUBST(INTROSPECTION_GIRDIR)
AC_SUBST(INTROSPECTION_TYPELIBDIR)
AC_SUBST(INTROSPECTION_CFLAGS)
AC_SUBST(INTROSPECTION_LIBS)
AC_SUBST(INTROSPECTION_MAKEFILE)
AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes")
])
dnl Usage:
dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version])
AC_DEFUN([GOBJECT_INTROSPECTION_CHECK],
[
_GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1])
])
dnl Usage:
dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version])
AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE],
[
_GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require])
])
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| appdata-xml.m4 | File | 3.11 KB | 0644 |
|
| appstream-xml.m4 | File | 2.94 KB | 0644 |
|
| expat.m4 | File | 1.41 KB | 0644 |
|
| gettext.m4 | File | 14.15 KB | 0644 |
|
| glib-2.0.m4 | File | 8.17 KB | 0644 |
|
| glib-gettext.m4 | File | 15.38 KB | 0644 |
|
| gpg-error.m4 | File | 7.98 KB | 0644 |
|
| gpgrt.m4 | File | 3.99 KB | 0644 |
|
| gsettings.m4 | File | 3.5 KB | 0644 |
|
| gtk-3.0.m4 | File | 8.03 KB | 0644 |
|
| host-cpu-c-abi.m4 | File | 21.91 KB | 0644 |
|
| iconv.m4 | File | 9.5 KB | 0644 |
|
| intlmacosx.m4 | File | 3.15 KB | 0644 |
|
| introspection.m4 | File | 5.01 KB | 0644 |
|
| lib-ld.m4 | File | 5.24 KB | 0644 |
|
| lib-link.m4 | File | 33.99 KB | 0644 |
|
| lib-prefix.m4 | File | 11.66 KB | 0644 |
|
| libcurl.m4 | File | 10.91 KB | 0644 |
|
| libgcrypt.m4 | File | 6.1 KB | 0644 |
|
| libtool.m4 | File | 299.49 KB | 0644 |
|
| libxml2.m4 | File | 7.72 KB | 0644 |
|
| ltargz.m4 | File | 2.51 KB | 0644 |
|
| ltdl.m4 | File | 29.34 KB | 0644 |
|
| ltoptions.m4 | File | 14.17 KB | 0644 |
|
| ltsugar.m4 | File | 4.28 KB | 0644 |
|
| ltversion.m4 | File | 699 B | 0644 |
|
| lt~obsolete.m4 | File | 6 KB | 0644 |
|
| mm-ax_cxx_compile_stdcxx.m4 | File | 19.1 KB | 0644 |
|
| mm-ax_cxx_compile_stdcxx_11.m4 | File | 5.66 KB | 0644 |
|
| mm-common.m4 | File | 1.64 KB | 0644 |
|
| mm-dietlib.m4 | File | 4.57 KB | 0644 |
|
| mm-doc.m4 | File | 10.27 KB | 0644 |
|
| mm-module.m4 | File | 3.25 KB | 0644 |
|
| mm-pkg.m4 | File | 3.87 KB | 0644 |
|
| mm-warnings.m4 | File | 4.56 KB | 0644 |
|
| nls.m4 | File | 1.21 KB | 0644 |
|
| nspr.m4 | File | 2.76 KB | 0644 |
|
| pkg.m4 | File | 10.01 KB | 0644 |
|
| po.m4 | File | 18.39 KB | 0644 |
|
| progtest.m4 | File | 3.02 KB | 0644 |
|
| vala.m4 | File | 4.46 KB | 0644 |
|
| vapigen.m4 | File | 3.4 KB | 0644 |
|
| wayland-scanner.m4 | File | 428 B | 0644 |
|
| xtrans.m4 | File | 6.38 KB | 0644 |
|