newlib-1.15.0.patch.svn-base
来自「PSP开发环境(Linux) 包含PSPLINK 请自行选择需要安装的库及源」· SVN-BASE 代码 · 共 1,836 行 · 第 1/5 页
SVN-BASE
1,836 行
+ --enable-dependency-tracking do not reject slow dependency extractors])+if test "x$enable_dependency_tracking" != xno; then+ am_depcomp="$ac_aux_dir/depcomp"+ AMDEPBACKSLASH='\'+fi+AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])+AC_SUBST([AMDEPBACKSLASH])+])++# Generate code to set up dependency tracking. -*- Autoconf -*-++# Copyright (C) 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.++#serial 3++# _AM_OUTPUT_DEPENDENCY_COMMANDS+# ------------------------------+AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],+[for mf in $CONFIG_FILES; do+ # Strip MF so we end up with the name of the file.+ mf=`echo "$mf" | sed -e 's/:.*$//'`+ # Check whether this is an Automake generated Makefile or not.+ # We used to match only the files named `Makefile.in', but+ # some people rename them; so instead we look at the file content.+ # Grep'ing the first line is not enough: some people post-process+ # each Makefile.in and add a new line on top of each file to say so.+ # So let's grep whole file.+ if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then+ dirpart=`AS_DIRNAME("$mf")`+ else+ continue+ fi+ # Extract the definition of DEPDIR, am__include, and am__quote+ # from the Makefile without running `make'.+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`+ test -z "$DEPDIR" && continue+ am__include=`sed -n 's/^am__include = //p' < "$mf"`+ test -z "am__include" && continue+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`+ # When using ansi2knr, U may be empty or an underscore; expand it+ U=`sed -n 's/^U = //p' < "$mf"`+ # Find all dependency output files, they are included files with+ # $(DEPDIR) in their names. We invoke sed twice because it is the+ # simplest approach to changing $(DEPDIR) to its actual value in the+ # expansion.+ for file in `sed -n "+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do+ # Make sure the directory exists.+ test -f "$dirpart/$file" && continue+ fdir=`AS_DIRNAME(["$file"])`+ AS_MKDIR_P([$dirpart/$fdir])+ # echo "creating $dirpart/$file"+ echo '# dummy' > "$dirpart/$file"+ done+done+])# _AM_OUTPUT_DEPENDENCY_COMMANDS+++# AM_OUTPUT_DEPENDENCY_COMMANDS+# -----------------------------+# This macro should only be invoked once -- use via AC_REQUIRE.+#+# This code is only required when automatic dependency tracking+# is enabled. FIXME. This creates each `.P' file that we will+# need in order to bootstrap the dependency handling code.+AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],+[AC_CONFIG_COMMANDS([depfiles],+ [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],+ [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])+])++# Do all the work for Automake. -*- 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.++# serial 12++# This macro actually does too much. Some checks are only needed if+# your package does certain things. But this isn't really a big deal.++# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])+# AM_INIT_AUTOMAKE([OPTIONS])+# -----------------------------------------------+# The call with PACKAGE and VERSION arguments is the old style+# call (pre autoconf-2.50), which is being phased out. PACKAGE+# and VERSION should now be passed to AC_INIT and removed from+# the call to AM_INIT_AUTOMAKE.+# We support both call styles for the transition. After+# the next Automake release, Autoconf can make the AC_INIT+# arguments mandatory, and then we can depend on a new Autoconf+# release and drop the old call support.+AC_DEFUN([AM_INIT_AUTOMAKE],+[AC_PREREQ([2.58])dnl+dnl Autoconf wants to disallow AM_ names. We explicitly allow+dnl the ones we care about.+m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl+AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl+AC_REQUIRE([AC_PROG_INSTALL])dnl+# test to see if srcdir already configured+if test "`cd $srcdir && pwd`" != "`pwd`" &&+ test -f $srcdir/config.status; then+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first])+fi++# test whether we have cygpath+if test -z "$CYGPATH_W"; then+ if (cygpath --version) >/dev/null 2>/dev/null; then+ CYGPATH_W='cygpath -w'+ else+ CYGPATH_W=echo+ fi+fi+AC_SUBST([CYGPATH_W])++# Define the identity of the package.+dnl Distinguish between old-style and new-style calls.+m4_ifval([$2],+[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl+ AC_SUBST([PACKAGE], [$1])dnl+ AC_SUBST([VERSION], [$2])],+[_AM_SET_OPTIONS([$1])dnl+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl++_AM_IF_OPTION([no-define],,+[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])+ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl++# Some tools Automake needs.+AC_REQUIRE([AM_SANITY_CHECK])dnl+AC_REQUIRE([AC_ARG_PROGRAM])dnl+AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})+AM_MISSING_PROG(AUTOCONF, autoconf)+AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})+AM_MISSING_PROG(AUTOHEADER, autoheader)+AM_MISSING_PROG(MAKEINFO, makeinfo)+AM_PROG_INSTALL_SH+AM_PROG_INSTALL_STRIP+AC_REQUIRE([AM_PROG_MKDIR_P])dnl+# We need awk for the "check" target. The system "awk" is bad on+# some platforms.+AC_REQUIRE([AC_PROG_AWK])dnl+AC_REQUIRE([AC_PROG_MAKE_SET])dnl+AC_REQUIRE([AM_SET_LEADING_DOT])dnl+_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],+ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],+ [_AM_PROG_TAR([v7])])])+_AM_IF_OPTION([no-dependencies],,+[AC_PROVIDE_IFELSE([AC_PROG_CC],+ [_AM_DEPENDENCIES(CC)],+ [define([AC_PROG_CC],+ defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl+AC_PROVIDE_IFELSE([AC_PROG_CXX],+ [_AM_DEPENDENCIES(CXX)],+ [define([AC_PROG_CXX],+ defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl+])+])+++# When config.status generates a header, we must update the stamp-h file.+# This file resides in the same directory as the config header+# that is generated. The stamp files are numbered to have different names.++# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the+# loop where config.status creates the headers, so we can generate+# our stamp files there.+AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],+[# Compute $1's index in $config_headers.+_am_stamp_count=1+for _am_header in $config_headers :; do+ case $_am_header in+ $1 | $1:* )+ break ;;+ * )+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;+ esac+done+echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])++# Copyright (C) 2001, 2003, 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.++# AM_PROG_INSTALL_SH+# ------------------+# Define $install_sh.+AC_DEFUN([AM_PROG_INSTALL_SH],+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl+install_sh=${install_sh-"$am_aux_dir/install-sh"}+AC_SUBST(install_sh)])++# Copyright (C) 2003, 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.++# serial 2++# Check whether the underlying file-system supports filenames+# with a leading dot. For instance MS-DOS doesn't.+AC_DEFUN([AM_SET_LEADING_DOT],+[rm -rf .tst 2>/dev/null+mkdir .tst 2>/dev/null+if test -d .tst; then+ am__leading_dot=.+else+ am__leading_dot=_+fi+rmdir .tst 2>/dev/null+AC_SUBST([am__leading_dot])])++# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-+# From Jim Meyering++# Copyright (C) 1996, 1998, 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.++# serial 4++AC_DEFUN([AM_MAINTAINER_MODE],+[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])+ dnl maintainer-mode is disabled by default+ AC_ARG_ENABLE(maintainer-mode,+[ --enable-maintainer-mode enable make rules and dependencies not useful+ (and sometimes confusing) to the casual installer],+ USE_MAINTAINER_MODE=$enableval,+ USE_MAINTAINER_MODE=no)+ AC_MSG_RESULT([$USE_MAINTAINER_MODE])+ AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])+ MAINT=$MAINTAINER_MODE_TRUE+ AC_SUBST(MAINT)dnl+]+)++AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])++# Check to see how 'make' treats includes. -*- Autoconf -*-++# Copyright (C) 2001, 2002, 2003, 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.++# serial 3++# AM_MAKE_INCLUDE()+# -----------------+# Check to see how make treats includes.+AC_DEFUN([AM_MAKE_INCLUDE],+[am_make=${MAKE-make}+cat > confinc << 'END'+am__doit:+ @echo done+.PHONY: am__doit+END+# If we don't find an include directive, just comment out the code.+AC_MSG_CHECKING([for style of include used by $am_make])+am__include="#"+am__quote=+_am_result=none+# First try GNU make style include.+echo "include confinc" > confmf+# We grep out `Entering directory' and `Leaving directory'+# messages which can occur if `w' ends up in MAKEFLAGS.+# In particular we don't look at `^make:' because GNU make might+# be invoked under some other name (usually "gmake"), in which+# case it prints its new name instead of `make'.+if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then+ am__include=include+ am__quote=+ _am_result=GNU+fi+# Now try BSD make style include.+if test "$am__include" = "#"; then+ echo '.include "confinc"' > confmf+ if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then+ am__include=.include+ am__quote="\""+ _am_result=BSD+ fi+fi+AC_SUBST([am__include])+AC_SUBST([am__quote])+AC_MSG_RESULT([$_am_result])+rm -f confinc confmf+])++# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-++# Copyright (C) 1997, 1999, 2000, 2001, 2003, 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.++# serial 4++# AM_MISSING_PROG(NAME, PROGRAM)+# ------------------------------+AC_DEFUN([AM_MISSING_PROG],+[AC_REQUIRE([AM_MISSING_HAS_RUN])+$1=${$1-"${am_missing_run}$2"}+AC_SUBST($1)])+++# AM_MISSING_HAS_RUN+# ------------------+# Define MISSING if not defined so far and test if it supports --run.+# If it does, set am_missing_run to use it, otherwise, to nothing.+AC_DEFUN([AM_MISSING_HAS_RUN],+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl+test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"+# Use eval to expand $SHELL+if eval "$MISSING --run true"; then+ am_missing_run="$MISSING --run "+else+ am_missing_run=+ AC_MSG_WARN([`missing' script is too old or missing])+fi+])++# Copyright (C) 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.++# AM_PROG_MKDIR_P+# ---------------+# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.+#+# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories+# created by `make install' are always world readable, even if the+# installer happens to have an overly restrictive umask (e.g. 077).+# This was a mistake. There are at least two reasons why we must not+# use `-m 0755':+# - it causes special bits like SGID to be ignored,+# - it may be too restrictive (some setups expect 775 directories).+#+# Do not use -m 0755 and let people choose whatever they expect by+# setting umask.+#+# We cannot accept any implementation of `mkdir' that recognizes `-p'.+# Some implementations (such as Solaris 8's) are not thread-safe: if a+# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'+# concurrently, both version can detect that a/ is missing, but only+# one can create it and the other will error out. Consequently we
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?