📄 configure.in
字号:
dnl configuration script for expatdnl Process this file with autoconf to produce a configure script.dnldnl Copyright 2000 Clark Cooperdnldnl This file is part of EXPAT.dnldnl EXPAT is free software; you can redistribute it and/or modify itdnl under the terms of the License (based on the MIT/X license) containeddnl in the file COPYING that comes with this distribution.dnlAC_INIT(Makefile.in)AC_CONFIG_AUX_DIR(conftools)dnldnl Follow the GNU/Linux convention of odd number minor version fordnl beta/development releases and even number minor version for stablednl releases. Edit is bumped with each release and set to 0 withdnl change to major or minor version.dnlEXPAT_MAJOR_VERSION=1EXPAT_MINOR_VERSION=95EXPAT_EDIT=2EXPAT_VERSION=$EXPAT_MAJOR_VERSION.$EXPAT_MINOR_VERSION.$EXPAT_EDITVERSION=$EXPAT_VERSIONPACKAGE=expatdnldnl Increment LIBREVISION if source code has changed at alldnldnl If the API has changed, increment LIBCURRENT and set LIBREVISION to 0dnldnl If the API changes compatibly (i.e. simply adding a new functiondnl without changing or removing earlier interfaces), then increment LIBAGE.dnl dnl If the API changes incompatibly set LIBAGE back to 0dnlLIBCURRENT=1LIBREVISION=0LIBAGE=1AC_CONFIG_HEADER(config.h)AC_CANONICAL_SYSTEMcase "$host_alias" in*os2*) # Use a custom made libtool replacement echo Using aplibtool LIBTOOL="$srcdir/../../../apr/build/aplibtool" ;;*) AC_LIBTOOL_WIN32_DLLAC_PROG_LIBTOOL ;;esacblddir=`pwd`AC_SUBST(blddir)AC_SUBST(PACKAGE)AC_SUBST(VERSION)AC_SUBST(EXPAT_MAJOR_VERSION)AC_SUBST(EXPAT_MINOR_VERSION)AC_SUBST(EXPAT_EDIT)AC_SUBST(LIBCURRENT)AC_SUBST(LIBREVISION)AC_SUBST(LIBAGE)dnl Checks for programs.AC_PROG_CCAC_PROG_INSTALLdnl Checks for libraries.dnl Checks for header files.AC_HEADER_STDCAC_CHECK_HEADERS(fcntl.h unistd.h string.h)dnl Checks for typedefs, structures, and compiler characteristics.dnl check for endiannessif test "$cross_compiling" = "no"; then AC_C_BIGENDIANelse AC_DEFINE(AP_UNKNOWN_BYTE_ORDER,1, [byte order is unknown due to cross-compilation])fiAC_C_CONSTAC_TYPE_OFF_TAC_TYPE_SIZE_Tdnl Checks for library functions.AC_FUNC_MEMCMPAC_FUNC_MMAPAC_SUBST(FILEMAP_OBJ)if test -z "$HAVE_MMAP"; thenFILEMAP_OBJ=unixfilemap.oelseFILEMAP_OBJ=readfilemap.ofiAC_CHECK_FUNCS(memmove bcopy)AC_OUTPUT(Makefile lib/Makefile lib/expat.h)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -