⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aclocal.m4

📁 linux平台或者windwos平台通用xml 解析器
💻 M4
📖 第 1 页 / 共 5 页
字号:
# generated automatically by aclocal 1.9.6 -*- Autoconf -*-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,# 2005  Free Software Foundation, Inc.# This file is free software; the Free Software Foundation# gives unlimited permission to copy and/or distribute it,# with or without modifications, as long as this notice is preserved.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY, to the extent permitted by law; without# even the implied warranty of MERCHANTABILITY or FITNESS FOR A# PARTICULAR PURPOSE.dnl Autoconf macros for libgnutlsdnl $id$# Modified for LIBGNUTLS -- nmav# Configure paths for LIBGCRYPT# Shamelessly stolen from the one of XDELTA by Owen Taylor# Werner Koch   99-12-09dnl AM_PATH_LIBGNUTLS([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])dnl Test for libgnutls, and define LIBGNUTLS_CFLAGS and LIBGNUTLS_LIBSdnlAC_DEFUN([AM_PATH_LIBGNUTLS],[dnldnl Get the cflags and libraries from the libgnutls-config scriptdnlAC_ARG_WITH(libgnutls-prefix,          [  --with-libgnutls-prefix=PFX   Prefix where libgnutls is installed (optional)],          libgnutls_config_prefix="$withval", libgnutls_config_prefix="")  if test x$libgnutls_config_prefix != x ; then     if test x${LIBGNUTLS_CONFIG+set} != xset ; then        LIBGNUTLS_CONFIG=$libgnutls_config_prefix/bin/libgnutls-config     fi  fi  AC_PATH_PROG(LIBGNUTLS_CONFIG, libgnutls-config, no)  min_libgnutls_version=ifelse([$1], ,0.1.0,$1)  AC_MSG_CHECKING(for libgnutls - version >= $min_libgnutls_version)  no_libgnutls=""  if test "$LIBGNUTLS_CONFIG" = "no" ; then    no_libgnutls=yes  else    LIBGNUTLS_CFLAGS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --cflags`    LIBGNUTLS_LIBS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --libs`    libgnutls_config_version=`$LIBGNUTLS_CONFIG $libgnutls_config_args --version`      ac_save_CFLAGS="$CFLAGS"      ac_save_LIBS="$LIBS"      CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"      LIBS="$LIBS $LIBGNUTLS_LIBS"dnldnl Now check if the installed libgnutls is sufficiently new. Also sanitydnl checks the results of libgnutls-config to some extentdnl      rm -f conf.libgnutlstest      AC_TRY_RUN([#include <stdio.h>#include <stdlib.h>#include <string.h>#include <gnutls/gnutls.h>intmain (){    system ("touch conf.libgnutlstest");    if( strcmp( gnutls_check_version(NULL), "$libgnutls_config_version" ) )    {      printf("\n*** 'libgnutls-config --version' returned %s, but LIBGNUTLS (%s)\n",             "$libgnutls_config_version", gnutls_check_version(NULL) );      printf("*** was found! If libgnutls-config was correct, then it is best\n");      printf("*** to remove the old version of LIBGNUTLS. You may also be able to fix the error\n");      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");      printf("*** required on your system.\n");      printf("*** If libgnutls-config was wrong, set the environment variable LIBGNUTLS_CONFIG\n");      printf("*** to point to the correct copy of libgnutls-config, and remove the file config.cache\n");      printf("*** before re-running configure\n");    }    else if ( strcmp(gnutls_check_version(NULL), LIBGNUTLS_VERSION ) )    {      printf("\n*** LIBGNUTLS header file (version %s) does not match\n", LIBGNUTLS_VERSION);      printf("*** library (version %s)\n", gnutls_check_version(NULL) );    }    else    {      if ( gnutls_check_version( "$min_libgnutls_version" ) )      {        return 0;      }     else      {        printf("no\n*** An old version of LIBGNUTLS (%s) was found.\n",                gnutls_check_version(NULL) );        printf("*** You need a version of LIBGNUTLS newer than %s. The latest version of\n",               "$min_libgnutls_version" );        printf("*** LIBGNUTLS is always available from ftp://gnutls.hellug.gr/pub/gnutls.\n");        printf("*** \n");        printf("*** If you have already installed a sufficiently new version, this error\n");        printf("*** probably means that the wrong copy of the libgnutls-config shell script is\n");        printf("*** being found. The easiest way to fix this is to remove the old version\n");        printf("*** of LIBGNUTLS, but you can also set the LIBGNUTLS_CONFIG environment to point to the\n");        printf("*** correct copy of libgnutls-config. (In this case, you will have to\n");        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");        printf("*** so that the correct libraries are found at run-time))\n");      }    }  return 1;}],, no_libgnutls=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])       CFLAGS="$ac_save_CFLAGS"       LIBS="$ac_save_LIBS"  fi  if test "x$no_libgnutls" = x ; then     AC_MSG_RESULT(yes)     ifelse([$2], , :, [$2])  else     if test -f conf.libgnutlstest ; then        :     else        AC_MSG_RESULT(no)     fi     if test "$LIBGNUTLS_CONFIG" = "no" ; then       echo "*** The libgnutls-config script installed by LIBGNUTLS could not be found"       echo "*** If LIBGNUTLS was installed in PREFIX, make sure PREFIX/bin is in"       echo "*** your path, or set the LIBGNUTLS_CONFIG environment variable to the"       echo "*** full path to libgnutls-config."     else       if test -f conf.libgnutlstest ; then        :       else          echo "*** Could not run libgnutls test program, checking why..."          CFLAGS="$CFLAGS $LIBGNUTLS_CFLAGS"          LIBS="$LIBS $LIBGNUTLS_LIBS"          AC_TRY_LINK([#include <stdio.h>#include <stdlib.h>#include <string.h>#include <gnutls/gnutls.h>],      [ return !!gnutls_check_version(NULL); ],        [ echo "*** The test program compiled, but did not run. This usually means"          echo "*** that the run-time linker is not finding LIBGNUTLS or finding the wrong"          echo "*** version of LIBGNUTLS. If it is not finding LIBGNUTLS, you'll need to set your"          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"          echo "*** to the installed location  Also, make sure you have run ldconfig if that"          echo "*** is required on your system"          echo "***"          echo "*** If you have an old version installed, it is best to remove it, although"          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"          echo "***" ],        [ echo "*** The test program failed to compile or link. See the file config.log for the"          echo "*** exact error that occured. This usually means LIBGNUTLS was incorrectly installed"          echo "*** or that you have moved LIBGNUTLS since it was installed. In the latter case, you"          echo "*** may want to edit the libgnutls-config script: $LIBGNUTLS_CONFIG" ])          CFLAGS="$ac_save_CFLAGS"          LIBS="$ac_save_LIBS"       fi     fi     LIBGNUTLS_CFLAGS=""     LIBGNUTLS_LIBS=""     ifelse([$3], , :, [$3])  fi  rm -f conf.libgnutlstest  AC_SUBST(LIBGNUTLS_CFLAGS)  AC_SUBST(LIBGNUTLS_LIBS)])dnl *-*wedit:notab*-*  Please keep this as the last line.# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-# serial 48 AC_PROG_LIBTOOL# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)# -----------------------------------------------------------# If this macro is not defined by Autoconf, define it here.m4_ifdef([AC_PROVIDE_IFELSE],         [],         [m4_define([AC_PROVIDE_IFELSE],	         [m4_ifdef([AC_PROVIDE_$1],		           [$2], [$3])])])# AC_PROG_LIBTOOL# ---------------AC_DEFUN([AC_PROG_LIBTOOL],[AC_REQUIRE([_AC_PROG_LIBTOOL])dnldnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXXdnl immediately, otherwise, hook it in at the end of AC_PROG_CXX.  AC_PROVIDE_IFELSE([AC_PROG_CXX],    [AC_LIBTOOL_CXX],    [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX  ])])dnl And a similar setup for Fortran 77 support  AC_PROVIDE_IFELSE([AC_PROG_F77],    [AC_LIBTOOL_F77],    [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77])])dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly.dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, rundnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both.  AC_PROVIDE_IFELSE([AC_PROG_GCJ],    [AC_LIBTOOL_GCJ],    [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],      [AC_LIBTOOL_GCJ],      [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],	[AC_LIBTOOL_GCJ],      [ifdef([AC_PROG_GCJ],	     [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])       ifdef([A][M_PROG_GCJ],	     [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])])       ifdef([LT_AC_PROG_GCJ],	     [define([LT_AC_PROG_GCJ],		defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])])])])# AC_PROG_LIBTOOL# _AC_PROG_LIBTOOL# ----------------AC_DEFUN([_AC_PROG_LIBTOOL],[AC_REQUIRE([AC_LIBTOOL_SETUP])dnlAC_BEFORE([$0],[AC_LIBTOOL_CXX])dnlAC_BEFORE([$0],[AC_LIBTOOL_F77])dnlAC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl# This can be used to rebuild libtool when neededLIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"# Always use our own libtool.LIBTOOL='$(SHELL) $(top_builddir)/libtool'AC_SUBST(LIBTOOL)dnl# Prevent multiple expansiondefine([AC_PROG_LIBTOOL], [])])# _AC_PROG_LIBTOOL# AC_LIBTOOL_SETUP# ----------------AC_DEFUN([AC_LIBTOOL_SETUP],[AC_PREREQ(2.50)dnlAC_REQUIRE([AC_ENABLE_SHARED])dnlAC_REQUIRE([AC_ENABLE_STATIC])dnlAC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnlAC_REQUIRE([AC_CANONICAL_HOST])dnlAC_REQUIRE([AC_CANONICAL_BUILD])dnlAC_REQUIRE([AC_PROG_CC])dnlAC_REQUIRE([AC_PROG_LD])dnlAC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnlAC_REQUIRE([AC_PROG_NM])dnlAC_REQUIRE([AC_PROG_LN_S])dnlAC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!AC_REQUIRE([AC_OBJEXT])dnlAC_REQUIRE([AC_EXEEXT])dnldnlAC_LIBTOOL_SYS_MAX_CMD_LENAC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPEAC_LIBTOOL_OBJDIRAC_REQUIRE([_LT_AC_SYS_COMPILER])dnl_LT_AC_PROG_ECHO_BACKSLASHcase $host_os inaix3*)  # AIX sometimes has problems with the GCC collect2 program.  For some  # reason, if we set the COLLECT_NAMES environment variable, the problems  # vanish in a puff of smoke.  if test "X${COLLECT_NAMES+set}" != Xset; then    COLLECT_NAMES=    export COLLECT_NAMES  fi  ;;esac# Sed substitution that helps us do robust quoting.  It backslashifies# metacharacters that are still active within double-quoted strings.Xsed='sed -e 1s/^X//'[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g']# Same as above, but do not quote variable references.[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g']# Sed substitution to delay expansion of an escaped shell variable in a# double_quote_subst'ed string.delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'# Sed substitution to avoid accidental globbing in evaled expressionsno_glob_subst='s/\*/\\\*/g'# Constants:rm="rm -f"# Global variables:default_ofile=libtoolcan_build_shared=yes# All known linkers require a `.a' archive for static linking (except MSVC,# which needs '.lib').libext=altmain="$ac_aux_dir/ltmain.sh"ofile="$default_ofile"with_gnu_ld="$lt_cv_prog_gnu_ld"AC_CHECK_TOOL(AR, ar, false)AC_CHECK_TOOL(RANLIB, ranlib, :)AC_CHECK_TOOL(STRIP, strip, :)old_CC="$CC"old_CFLAGS="$CFLAGS"# Set sane defaults for various variablestest -z "$AR" && AR=artest -z "$AR_FLAGS" && AR_FLAGS=crutest -z "$AS" && AS=astest -z "$CC" && CC=cctest -z "$LTCC" && LTCC=$CCtest -z "$LTCFLAGS" && LTCFLAGS=$CFLAGStest -z "$DLLTOOL" && DLLTOOL=dlltooltest -z "$LD" && LD=ldtest -z "$LN_S" && LN_S="ln -s"test -z "$MAGIC_CMD" && MAGIC_CMD=filetest -z "$NM" && NM=nmtest -z "$SED" && SED=sedtest -z "$OBJDUMP" && OBJDUMP=objdumptest -z "$RANLIB" && RANLIB=:test -z "$STRIP" && STRIP=:test -z "$ac_objext" && ac_objext=o# Determine commands to create old-style static archives.old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'old_postinstall_cmds='chmod 644 $oldlib'old_postuninstall_cmds=if test -n "$RANLIB"; then  case $host_os in  openbsd*)    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"    ;;  *)    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"    ;;  esac  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"fi_LT_CC_BASENAME([$compiler])# Only perform the check for file, if the check method requires itcase $deplibs_check_method infile_magic*)  if test "$file_magic_cmd" = '$MAGIC_CMD'; then    AC_PATH_MAGIC  fi  ;;esacAC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],enable_win32_dll=yes, enable_win32_dll=no)AC_ARG_ENABLE([libtool-lock],    [AC_HELP_STRING([--disable-libtool-lock],	[avoid locking (might break parallel builds)])])test "x$enable_libtool_lock" != xno && enable_libtool_lock=yesAC_ARG_WITH([pic],    [AC_HELP_STRING([--with-pic],	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],    [pic_mode="$withval"],    [pic_mode=default])test -z "$pic_mode" && pic_mode=default# Check if we have a version mismatch between libtool.m4 and ltmain.sh.## Note:  This should be in AC_LIBTOOL_SETUP, _after_ $ltmain have been defined.#        We also should do it _before_ AC_LIBTOOL_LANG_C_CONFIG that actually#        calls AC_LIBTOOL_CONFIG and creates libtool.#_LT_VERSION_CHECK# Use C for the default configuration in the libtool scripttagname=AC_LIBTOOL_LANG_C_CONFIG_LT_AC_TAGCONFIG])# AC_LIBTOOL_SETUP

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -