From: Bruno Haible Date: Tue, 11 Jan 2005 12:57:33 +0000 (+0000) Subject: Sed script for post-processing the trace output of subordinate configures. X-Git-Tag: v0.14.2~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a081ab585ab934c50fba2bbe7039f27ea1c84810;p=thirdparty%2Fgettext.git Sed script for post-processing the trace output of subordinate configures. --- diff --git a/config/ac-help.sed b/config/ac-help.sed new file mode 100644 index 000000000..e6a526824 --- /dev/null +++ b/config/ac-help.sed @@ -0,0 +1,26 @@ +# Sed script for post-processing the trace output of subordinate configures. +# Copyright (C) 2003, 2005 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. + +# Replace invocations of some libtool macros. +s|.AC_ENABLE_SHARED_DEFAULT.|yes|g +s|.AC_ENABLE_STATIC_DEFAULT.|yes|g +s|.AC_ENABLE_FAST_INSTALL_DEFAULT.|yes|g +# Avoid loss of brackets, such as --with-tags[=TAGS] => --with-tags=TAGS +s|\[=TAGS\]|@<:@=TAGS@:>@|g +s|\[=PKGS\]|@<:@=PKGS@:>@|g +# Avoid unwanted comma, such as [default=use both] => [default=use], [both] +s|\[default=use both\]|@<:@default=use both@:>@|g