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

📄 fribidi.patch

📁 uclinux 下的vlc播放器源代码
💻 PATCH
📖 第 1 页 / 共 5 页
字号:
++# 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.  # libtool.m4 - Configure libtool for the host system. -*-Shell-script-*- @@ -1469,7 +1470,7 @@     ;;    darwin* | rhapsody*)-    allow_undefined_flag='-undefined suppress'+    allow_undefined_flag='-undefined error'     # FIXME: Relying on posixy $() will cause problems for     #        cross-compilation, but unfortunately the echo tests do not     #        yet detect zsh echo's removal of \ escapes.@@ -3334,84 +3335,301 @@ # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) -# Like AC_CONFIG_HEADER, but automatically create stamp file.+# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*- -AC_DEFUN(AM_CONFIG_HEADER,-[AC_PREREQ([2.12])-AC_CONFIG_HEADER([$1])-dnl When config.status generates a header, we must update the stamp-h file.-dnl This file resides in the same directory as the config header-dnl that is generated.  We must strip everything past the first ":",-dnl and everything past the last "/".-AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl-ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,-<<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,-<<am_indx=1-for am_file in <<$1>>; do-  case " <<$>>CONFIG_HEADERS " in-  *" <<$>>am_file "*<<)>>-    echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx-    ;;-  esac-  am_indx=`expr "<<$>>am_indx" + 1`-done<<>>dnl>>)-changequote([,]))])--# Do all the work for Automake.  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.--# serial 1--dnl Usage:-dnl AM_INIT_AUTOMAKE(package,version, [no-define])--AC_DEFUN(AM_INIT_AUTOMAKE,-[AC_REQUIRE([AC_PROG_INSTALL])-PACKAGE=[$1]-AC_SUBST(PACKAGE)-VERSION=[$2]-AC_SUBST(VERSION)-dnl test to see if srcdir already configured-if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then+# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.++# This program is free software; you can redistribute it and/or modify+# it under the terms of the GNU General Public License as published by+# the Free Software Foundation; either version 2, or (at your option)+# any later version.++# This program is distributed in the hope that it will be useful,+# but WITHOUT ANY WARRANTY; without even the implied warranty of+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+# GNU General Public License for more details.++# You should have received a copy of the GNU General Public License+# along with this program; if not, write to the Free Software+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA+# 02111-1307, USA.++AC_PREREQ([2.52])++# serial 6++# 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.  We must strip everything past the first ":",+# and everything past the last "/".++# _AM_DIRNAME(PATH)+# -----------------+# Like AS_DIRNAME, only do it during macro expansion+AC_DEFUN([_AM_DIRNAME],+       [m4_if(regexp([$1], [^.*[^/]//*[^/][^/]*/*$]), -1,+	      m4_if(regexp([$1], [^//\([^/]\|$\)]), -1,+		    m4_if(regexp([$1], [^/.*]), -1,+			  [.],+			  patsubst([$1], [^\(/\).*], [\1])),+		    patsubst([$1], [^\(//\)\([^/].*\|$\)], [\1])),+	      patsubst([$1], [^\(.*[^/]\)//*[^/][^/]*/*$], [\1]))[]dnl+])# _AM_DIRNAME+++# The stamp files are numbered to have different names.+# We could number them on a directory basis, but that's additional+# complications, let's have a unique counter.+m4_define([_AM_STAMP_Count], [0])+++# _AM_STAMP(HEADER)+# -----------------+# The name of the stamp file for HEADER.+AC_DEFUN([_AM_STAMP],+[m4_define([_AM_STAMP_Count], m4_incr(_AM_STAMP_Count))dnl+AS_ESCAPE(_AM_DIRNAME(patsubst([$1],+                               [:.*])))/stamp-h[]_AM_STAMP_Count])+++# _AM_CONFIG_HEADER(HEADER[:SOURCES], COMMANDS, INIT-COMMANDS)+# ------------------------------------------------------------+# We used to try to get a real timestamp in stamp-h.  But the fear is that+# that will cause unnecessary cvs conflicts.+AC_DEFUN([_AM_CONFIG_HEADER],+[# Add the stamp file to the list of files AC keeps track of,+# along with our hook.+AC_CONFIG_HEADERS([$1],+                  [# update the timestamp+echo 'timestamp for $1' >"_AM_STAMP([$1])"+$2],+                  [$3])+])# _AM_CONFIG_HEADER+++# AM_CONFIG_HEADER(HEADER[:SOURCES]..., COMMANDS, INIT-COMMANDS)+# --------------------------------------------------------------+AC_DEFUN([AM_CONFIG_HEADER],+[AC_FOREACH([_AM_File], [$1], [_AM_CONFIG_HEADER(_AM_File, [$2], [$3])])+])# AM_CONFIG_HEADER++# Do all the work for Automake.                            -*- Autoconf -*-++# 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.++# Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002+# Free Software Foundation, Inc.++# This program is free software; you can redistribute it and/or modify+# it under the terms of the GNU General Public License as published by+# the Free Software Foundation; either version 2, or (at your option)+# any later version.++# This program is distributed in the hope that it will be useful,+# but WITHOUT ANY WARRANTY; without even the implied warranty of+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+# GNU General Public License for more details.++# You should have received a copy of the GNU General Public License+# along with this program; if not, write to the Free Software+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA+# 02111-1307, USA.++# serial 8++# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be+# written in clear, in which case automake, when reading aclocal.m4,+# will think it sees a *use*, and therefore will trigger all it's+# C support machinery.  Also note that it means that autoscan, seeing+# CC etc. in the Makefile, will ask for an AC_PROG_CC use...+++AC_PREREQ([2.52])++# Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow+# the ones we care about.+m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl++# 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_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-ifelse([$3],,-AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])-AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))-AC_REQUIRE([AM_SANITY_CHECK])-AC_REQUIRE([AC_ARG_PROGRAM])-dnl FIXME This is truly gross.-missing_dir=`cd $ac_aux_dir && pwd`-AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)-AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)-AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)-AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)-AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)-AC_REQUIRE([AC_PROG_MAKE_SET])])++# 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_MISSING_PROG(AMTAR, tar)+AM_PROG_INSTALL_SH+AM_PROG_INSTALL_STRIP+# 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++_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+])+])++# Copyright 2002  Free Software Foundation, Inc.++# This program is free software; you can redistribute it and/or modify+# it under the terms of the GNU General Public License as published by+# the Free Software Foundation; either version 2, or (at your option)+# any later version.++# This program is distributed in the hope that it will be useful,+# but WITHOUT ANY WARRANTY; without even the implied warranty of+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+# GNU General Public License for more details.++# You should have received a copy of the GNU General Public License+# along with this program; if not, write to the Free Software+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA++# AM_AUTOMAKE_VERSION(VERSION)+# ----------------------------+# Automake X.Y traces this macro to ensure aclocal.m4 has been+# generated from the m4 files accompanying Automake X.Y.+AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.6"])++# AM_SET_CURRENT_AUTOMAKE_VERSION+# -------------------------------+# Call AM_AUTOMAKE_VERSION so it can be traced.+# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.+AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],+	 [AM_AUTOMAKE_VERSION([1.6.1])])++# Helper functions for option handling.                    -*- Autoconf -*-++# Copyright 2001, 2002  Free Software Foundation, Inc.++# This program is free software; you can redistribute it and/or modify+# it under the terms of the GNU General Public License as published by+# the Free Software Foundation; either version 2, or (at your option)+# any later version.++# This program is distributed in the hope that it will be useful,+# but WITHOUT ANY WARRANTY; without even the implied warranty of+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+# GNU General Public License for more details.++# You should have received a copy of the GNU General Public License+# along with this program; if not, write to the Free Software+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA+# 02111-1307, USA.++# serial 2++# _AM_MANGLE_OPTION(NAME)+# -----------------------+AC_DEFUN([_AM_MANGLE_OPTION],+[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])++# _AM_SET_OPTION(NAME)+# ------------------------------+# Set option NAME.  Presently that only means defining a flag for this option.+AC_DEFUN([_AM_SET_OPTION],+[m4_define(_AM_MANGLE_OPTION([$1]), 1)])++# _AM_SET_OPTIONS(OPTIONS)+# ----------------------------------+# OPTIONS is a space-separated list of Automake options.+AC_DEFUN([_AM_SET_OPTIONS],+[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])++# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])+# -------------------------------------------+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.+AC_DEFUN([_AM_IF_OPTION],+[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])  # # Check to make sure that the build environment is sane. # -AC_DEFUN(AM_SANITY_CHECK,+# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.++# This program is free software; you can redistribute it and/or modify+# it under the terms of the GNU General Public License as published by+# the Free Software Foundation; either version 2, or (at your option)+# any later version.++# This program is distributed in the hope that it will be useful,+# but WITHOUT ANY WARRANTY; without even the implied warranty of+# MERCHANTABILITY or FITNESS FOR A PARTICULAR P

⌨️ 快捷键说明

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