* Makefile.tpl (build_alias, host_alias, target_alias): Use
noncanonical equivalents. * configure.in: Rename to... * configure.ac: ...this. Update AC_PREREQ. Prevent error for AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and target_noncanonical. Use them. Rewrite removal of configure arguments for autoconf 2.59. Discard variable settings. Force program_transform_name for native tools. * Makefile.in: Regenerated. * configure: Regenerated with autoconf 2.59. * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac. * acx.m4 (ACX_CHECK_INSTALLED_TARGET_TOOL): Avoid AC_PATH_PROG with an empty path.
This commit is contained in:
parent
09928447ed
commit
b58b6ee18f
16
ChangeLog
16
ChangeLog
@ -1,3 +1,19 @@
|
|||||||
|
2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
|
* Makefile.tpl (build_alias, host_alias, target_alias): Use
|
||||||
|
noncanonical equivalents.
|
||||||
|
* configure.in: Rename to...
|
||||||
|
* configure.ac: ...this. Update AC_PREREQ. Prevent error for
|
||||||
|
AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
|
||||||
|
target_noncanonical. Use them. Rewrite removal of configure
|
||||||
|
arguments for autoconf 2.59. Discard variable settings. Force
|
||||||
|
program_transform_name for native tools.
|
||||||
|
|
||||||
|
* Makefile.in: Regenerated.
|
||||||
|
* configure: Regenerated with autoconf 2.59.
|
||||||
|
|
||||||
|
* src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
|
||||||
|
|
||||||
2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
|
2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* COPYING.LIBGLOSS: Reformat default Red Hat
|
* COPYING.LIBGLOSS: Reformat default Red Hat
|
||||||
|
@ -25,15 +25,15 @@
|
|||||||
# -------------------------------
|
# -------------------------------
|
||||||
VPATH=@srcdir@
|
VPATH=@srcdir@
|
||||||
|
|
||||||
build_alias=@build_alias@
|
build_alias=@build_noncanonical@
|
||||||
build_vendor=@build_vendor@
|
build_vendor=@build_vendor@
|
||||||
build_os=@build_os@
|
build_os=@build_os@
|
||||||
build=@build@
|
build=@build@
|
||||||
host_alias=@host_alias@
|
host_alias=@host_noncanonical@
|
||||||
host_vendor=@host_vendor@
|
host_vendor=@host_vendor@
|
||||||
host_os=@host_os@
|
host_os=@host_os@
|
||||||
host=@host@
|
host=@host@
|
||||||
target_alias=@target_alias@
|
target_alias=@target_noncanonical@
|
||||||
target_vendor=@target_vendor@
|
target_vendor=@target_vendor@
|
||||||
target_os=@target_os@
|
target_os=@target_os@
|
||||||
target=@target@
|
target=@target@
|
||||||
|
@ -28,15 +28,15 @@ in
|
|||||||
# -------------------------------
|
# -------------------------------
|
||||||
VPATH=@srcdir@
|
VPATH=@srcdir@
|
||||||
|
|
||||||
build_alias=@build_alias@
|
build_alias=@build_noncanonical@
|
||||||
build_vendor=@build_vendor@
|
build_vendor=@build_vendor@
|
||||||
build_os=@build_os@
|
build_os=@build_os@
|
||||||
build=@build@
|
build=@build@
|
||||||
host_alias=@host_alias@
|
host_alias=@host_noncanonical@
|
||||||
host_vendor=@host_vendor@
|
host_vendor=@host_vendor@
|
||||||
host_os=@host_os@
|
host_os=@host_os@
|
||||||
host=@host@
|
host=@host@
|
||||||
target_alias=@target_alias@
|
target_alias=@target_noncanonical@
|
||||||
target_vendor=@target_vendor@
|
target_vendor=@target_vendor@
|
||||||
target_os=@target_os@
|
target_os=@target_os@
|
||||||
target=@target@
|
target=@target@
|
||||||
@ -1585,7 +1585,7 @@ config.status: configure
|
|||||||
|
|
||||||
# Rebuilding configure.
|
# Rebuilding configure.
|
||||||
AUTOCONF = autoconf
|
AUTOCONF = autoconf
|
||||||
$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/config/acx.m4
|
$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/config/acx.m4
|
||||||
cd $(srcdir) && $(AUTOCONF)
|
cd $(srcdir) && $(AUTOCONF)
|
||||||
|
|
||||||
# ------------------------------
|
# ------------------------------
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
|
* acx.m4 (ACX_CHECK_INSTALLED_TARGET_TOOL): Avoid AC_PATH_PROG
|
||||||
|
with an empty path.
|
||||||
|
|
||||||
2007-02-05 Dave Brolley <brolley@redhat.com>
|
2007-02-05 Dave Brolley <brolley@redhat.com>
|
||||||
|
|
||||||
* mt-mep: New.
|
* mt-mep: New.
|
||||||
|
@ -300,7 +300,7 @@ if test -z "$ac_cv_path_$1" ; then
|
|||||||
ac_cv_path_$1=[$]$1
|
ac_cv_path_$1=[$]$1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test -z "$ac_cv_path_$1" ; then
|
if test -z "$ac_cv_path_$1" && test -n "$gcc_cv_tool_dirs"; then
|
||||||
AC_PATH_PROG([$1], [$2], [], [$gcc_cv_tool_dirs])
|
AC_PATH_PROG([$1], [$2], [], [$gcc_cv_tool_dirs])
|
||||||
fi
|
fi
|
||||||
if test -z "$ac_cv_path_$1" ; then
|
if test -z "$ac_cv_path_$1" ; then
|
||||||
|
@ -21,10 +21,27 @@
|
|||||||
sinclude(config/acx.m4)
|
sinclude(config/acx.m4)
|
||||||
|
|
||||||
AC_INIT(move-if-change)
|
AC_INIT(move-if-change)
|
||||||
AC_PREREQ(2.13)
|
AC_PREREQ(2.59)
|
||||||
|
|
||||||
|
# Find the build, host, and target systems.
|
||||||
|
ACX_NONCANONICAL_BUILD
|
||||||
|
ACX_NONCANONICAL_HOST
|
||||||
|
ACX_NONCANONICAL_TARGET
|
||||||
|
|
||||||
|
dnl Autoconf 2.5x and later will set a default program prefix if
|
||||||
|
dnl --target was used, even if it was the same as --host. Disable
|
||||||
|
dnl that behavior. This must be done before AC_CANONICAL_SYSTEM
|
||||||
|
dnl to take effect.
|
||||||
|
test "$host_noncanonical" = "$target_noncanonical" &&
|
||||||
|
test "$program_prefix$program_suffix$program_transform_name" = \
|
||||||
|
NONENONEs,x,x, &&
|
||||||
|
program_transform_name=s,y,y,
|
||||||
|
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
AC_ARG_PROGRAM
|
AC_ARG_PROGRAM
|
||||||
|
|
||||||
|
m4_pattern_allow([^AS_FOR_TARGET$])dnl
|
||||||
|
|
||||||
# Get 'install' or 'install-sh' and its variants.
|
# Get 'install' or 'install-sh' and its variants.
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
ACX_PROG_LN
|
ACX_PROG_LN
|
||||||
@ -1016,9 +1033,9 @@ if test "${build}" != "${host}" ; then
|
|||||||
# If we are doing a Canadian Cross, in which the host and build systems
|
# If we are doing a Canadian Cross, in which the host and build systems
|
||||||
# are not the same, we set reasonable default values for the tools.
|
# are not the same, we set reasonable default values for the tools.
|
||||||
|
|
||||||
CC=${CC-${host_alias}-gcc}
|
CC=${CC-${host_noncanonical}-gcc}
|
||||||
CFLAGS=${CFLAGS-"-g -O2"}
|
CFLAGS=${CFLAGS-"-g -O2"}
|
||||||
CXX=${CXX-${host_alias}-c++}
|
CXX=${CXX-${host_noncanonical}-c++}
|
||||||
CXXFLAGS=${CXXFLAGS-"-g -O2"}
|
CXXFLAGS=${CXXFLAGS-"-g -O2"}
|
||||||
CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
|
CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
|
||||||
|
|
||||||
@ -1584,7 +1601,7 @@ if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
|
|||||||
"") x=${prefix} ;;
|
"") x=${prefix} ;;
|
||||||
*) x=${exec_prefix} ;;
|
*) x=${exec_prefix} ;;
|
||||||
esac
|
esac
|
||||||
copy_dirs="${copy_dirs} ${with_headers} $x/${target_alias}/sys-include"
|
copy_dirs="${copy_dirs} ${with_headers} $x/${target_noncanonical}/sys-include"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -1604,7 +1621,7 @@ if test x"${with_libs}" != x && test x"${with_libs}" != xno ; then
|
|||||||
*) x=${exec_prefix} ;;
|
*) x=${exec_prefix} ;;
|
||||||
esac
|
esac
|
||||||
for l in ${with_libs}; do
|
for l in ${with_libs}; do
|
||||||
copy_dirs="$l $x/${target_alias}/lib ${copy_dirs}"
|
copy_dirs="$l $x/${target_noncanonical}/lib ${copy_dirs}"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -1807,7 +1824,7 @@ esac
|
|||||||
|
|
||||||
# Some systems (e.g., one of the i386-aix systems the gas testers are
|
# Some systems (e.g., one of the i386-aix systems the gas testers are
|
||||||
# using) don't handle "\$" correctly, so don't use it here.
|
# using) don't handle "\$" correctly, so don't use it here.
|
||||||
tooldir='${exec_prefix}'/${target_alias}
|
tooldir='${exec_prefix}'/${target_noncanonical}
|
||||||
build_tooldir=${tooldir}
|
build_tooldir=${tooldir}
|
||||||
|
|
||||||
# Create a .gdbinit file which runs the one in srcdir
|
# Create a .gdbinit file which runs the one in srcdir
|
||||||
@ -2071,40 +2088,86 @@ serialization_dependencies=serdep.tmp
|
|||||||
AC_SUBST_FILE(serialization_dependencies)
|
AC_SUBST_FILE(serialization_dependencies)
|
||||||
|
|
||||||
# Base args. Strip norecursion, cache-file, srcdir, host, build,
|
# Base args. Strip norecursion, cache-file, srcdir, host, build,
|
||||||
# target and nonopt. These are the ones we might not want to pass
|
# target, nonopt, and variable assignments. These are the ones we
|
||||||
# down to subconfigures. Also strip program-prefix, program-suffix,
|
# might not want to pass down to subconfigures. Also strip
|
||||||
# and program-transform-name, so that we can pass down a consistent
|
# program-prefix, program-suffix, and program-transform-name, so that
|
||||||
# program-transform-name. If autoconf has put single quotes around
|
# we can pass down a consistent program-transform-name.
|
||||||
# any of these arguments (because they contain shell metacharacters)
|
baseargs=
|
||||||
# then this will fail; in practice this only happens for
|
keep_next=no
|
||||||
# --program-transform-name, so be sure to override --program-transform-name
|
skip_next=no
|
||||||
# at the end of the argument list.
|
eval "set -- $ac_configure_args"
|
||||||
# These will be expanded by make, so quote '$'.
|
for ac_arg; do
|
||||||
cat <<\EOF_SED > conftestsed
|
if test X"$skip_next" = X"yes"; then
|
||||||
s/ --no[[^ ]]*/ /g
|
skip_next=no
|
||||||
s/ --c[[a-z-]]*[[= ]][[^ ]]*//g
|
continue
|
||||||
s/ --sr[[a-z-]]*[[= ]][[^ ]]*//g
|
fi
|
||||||
s/ --ho[[a-z-]]*[[= ]][[^ ]]*//g
|
if test X"$keep_next" = X"yes"; then
|
||||||
s/ --bu[[a-z-]]*[[= ]][[^ ]]*//g
|
case $ac_arg in
|
||||||
s/ --t[[a-z-]]*[[= ]][[^ ]]*//g
|
*\'*)
|
||||||
s/ --program-[[pst]][[a-z-]]*[[= ]][[^ ]]*//g
|
ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
||||||
s/ -cache-file[[= ]][[^ ]]*//g
|
esac
|
||||||
s/ -srcdir[[= ]][[^ ]]*//g
|
baseargs="$baseargs '$ac_arg'"
|
||||||
s/ -host[[= ]][[^ ]]*//g
|
keep_next=no
|
||||||
s/ -build[[= ]][[^ ]]*//g
|
continue
|
||||||
s/ -target[[= ]][[^ ]]*//g
|
fi
|
||||||
s/ -program-prefix[[= ]][[^ ]]*//g
|
|
||||||
s/ -program-suffix[[= ]][[^ ]]*//g
|
# Handle separated arguments. Based on the logic generated by
|
||||||
s/ -program-transform-name[[= ]][[^ ]]*//g
|
# autoconf 2.59.
|
||||||
s/ [[^' -][^ ]*] / /
|
case $ac_arg in
|
||||||
s/^ *//;s/ *$//
|
*=* | --config-cache | -C | -disable-* | --disable-* \
|
||||||
s,\$,$$,g
|
| -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
|
||||||
EOF_SED
|
| -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
|
||||||
sed -f conftestsed <<EOF_SED > conftestsed.out
|
| -with-* | --with-* | -without-* | --without-* | --x)
|
||||||
${ac_configure_args}
|
separate_arg=no
|
||||||
EOF_SED
|
;;
|
||||||
baseargs=`cat conftestsed.out`
|
-*)
|
||||||
rm -f conftestsed conftestsed.out
|
separate_arg=yes
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
separate_arg=no
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case "$ac_arg" in
|
||||||
|
--no*)
|
||||||
|
continue
|
||||||
|
;;
|
||||||
|
--c* | \
|
||||||
|
--sr* | \
|
||||||
|
--ho* | \
|
||||||
|
--bu* | \
|
||||||
|
--t* | \
|
||||||
|
--program-* | \
|
||||||
|
-cache_file* | \
|
||||||
|
-srcdir* | \
|
||||||
|
-host* | \
|
||||||
|
-build* | \
|
||||||
|
-target* | \
|
||||||
|
-program-prefix* | \
|
||||||
|
-program-suffix* | \
|
||||||
|
-program-transform-name* )
|
||||||
|
skip_next=$separate_arg
|
||||||
|
continue
|
||||||
|
;;
|
||||||
|
-*)
|
||||||
|
# An option. Add it.
|
||||||
|
case $ac_arg in
|
||||||
|
*\'*)
|
||||||
|
ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
||||||
|
esac
|
||||||
|
baseargs="$baseargs '$ac_arg'"
|
||||||
|
keep_next=$separate_arg
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# Either a variable assignment, or a nonopt (triplet). Don't
|
||||||
|
# pass it down; let the Makefile handle this.
|
||||||
|
continue
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
# Remove the initial space we just introduced and, as these will be
|
||||||
|
# expanded by make, quote '$'.
|
||||||
|
baseargs=`echo "x$baseargs" | sed -e 's/^x *//' -e 's,\\$,$$,g'`
|
||||||
|
|
||||||
# Add in --program-transform-name, after --program-prefix and
|
# Add in --program-transform-name, after --program-prefix and
|
||||||
# --program-suffix have been applied to it. Autoconf has already
|
# --program-suffix have been applied to it. Autoconf has already
|
||||||
@ -2147,7 +2210,7 @@ target_configargs=${baseargs}
|
|||||||
# sorts of decisions they want to make on this basis. Please consider
|
# sorts of decisions they want to make on this basis. Please consider
|
||||||
# this option to be deprecated. FIXME.
|
# this option to be deprecated. FIXME.
|
||||||
if test x${is_cross_compiler} = xyes ; then
|
if test x${is_cross_compiler} = xyes ; then
|
||||||
target_configargs="--with-cross-host=${host_alias} ${target_configargs}"
|
target_configargs="--with-cross-host=${host_noncanonical} ${target_configargs}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Default to --enable-multilib.
|
# Default to --enable-multilib.
|
@ -46,7 +46,7 @@ PWD = $${PWDCMD-pwd}
|
|||||||
# Files in devo used in any net release.
|
# Files in devo used in any net release.
|
||||||
# ChangeLog omitted because it may refer to files which are not in this
|
# ChangeLog omitted because it may refer to files which are not in this
|
||||||
# distribution (perhaps it would be better to include it anyway).
|
# distribution (perhaps it would be better to include it anyway).
|
||||||
DEVO_SUPPORT= README Makefile.in configure configure.in \
|
DEVO_SUPPORT= README Makefile.in configure configure.ac \
|
||||||
config.guess config.sub config move-if-change \
|
config.guess config.sub config move-if-change \
|
||||||
COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
|
COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
|
||||||
mkinstalldirs ltconfig ltmain.sh missing ylwrap \
|
mkinstalldirs ltconfig ltmain.sh missing ylwrap \
|
||||||
@ -184,9 +184,9 @@ do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
|
|||||||
done)
|
done)
|
||||||
#
|
#
|
||||||
# Take out texinfo from configurable dirs
|
# Take out texinfo from configurable dirs
|
||||||
rm proto-toplev/configure.in
|
rm proto-toplev/configure.ac
|
||||||
sed -e '/^host_tools=/s/texinfo //' \
|
sed -e '/^host_tools=/s/texinfo //' \
|
||||||
<configure.in >proto-toplev/configure.in
|
<configure.ac >proto-toplev/configure.ac
|
||||||
#
|
#
|
||||||
mkdir proto-toplev/texinfo
|
mkdir proto-toplev/texinfo
|
||||||
ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
|
ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user