Commit 0fe5522f by Richard Henderson Committed by Richard Henderson

acinclude.m4 (LIBAT_TEST_ATOMIC_BUILTIN): Handle compilation failure in gcc_no_link path.

        * acinclude.m4 (LIBAT_TEST_ATOMIC_BUILTIN): Handle compilation
        failure in gcc_no_link path.
        * configure: Rebuild.

From-SVN: r187102
parent 644ffefd
2012-05-03 Richard Henderson <rth@redhat.com>
* acinclude.m4 (LIBAT_TEST_ATOMIC_BUILTIN): Handle compilation
failure in gcc_no_link path.
* configure: Rebuild.
2012-05-01 Richard Henderson <rth@redhat.com> 2012-05-01 Richard Henderson <rth@redhat.com>
* Initial commit. * Initial commit.
# Makefile.in generated by automake 1.11.1 from Makefile.am. # Makefile.in generated by automake 1.11.3 from Makefile.am.
# @configure_input@ # @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Inc. # Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation # This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
...@@ -48,7 +48,7 @@ DIST_COMMON = $(am__configure_deps) $(srcdir)/../config.guess \ ...@@ -48,7 +48,7 @@ DIST_COMMON = $(am__configure_deps) $(srcdir)/../config.guess \
$(srcdir)/../install-sh $(srcdir)/../ltmain.sh \ $(srcdir)/../install-sh $(srcdir)/../ltmain.sh \
$(srcdir)/../missing $(srcdir)/../mkinstalldirs \ $(srcdir)/../missing $(srcdir)/../mkinstalldirs \
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(srcdir)/auto-config.h.in $(top_srcdir)/configure $(srcdir)/auto-config.h.in $(top_srcdir)/configure ChangeLog
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
$(top_srcdir)/../config/depstand.m4 \ $(top_srcdir)/../config/depstand.m4 \
...@@ -89,6 +89,12 @@ am__nobase_list = $(am__nobase_strip_setup); \ ...@@ -89,6 +89,12 @@ am__nobase_list = $(am__nobase_strip_setup); \
am__base_list = \ am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
am__installdirs = "$(DESTDIR)$(toolexeclibdir)" am__installdirs = "$(DESTDIR)$(toolexeclibdir)"
LTLIBRARIES = $(toolexeclib_LTLIBRARIES) LTLIBRARIES = $(toolexeclib_LTLIBRARIES)
am_libatomic_la_OBJECTS = gload.lo gstore.lo gcas.lo gexch.lo \ am_libatomic_la_OBJECTS = gload.lo gstore.lo gcas.lo gexch.lo \
...@@ -136,9 +142,11 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ...@@ -136,9 +142,11 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION) distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir) top_distdir = $(distdir)
am__remove_distdir = \ am__remove_distdir = \
{ test ! -d "$(distdir)" \ if test -d "$(distdir)"; then \
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -fr "$(distdir)"; }; } && rm -rf "$(distdir)" \
|| { sleep 5 && rm -rf "$(distdir)"; }; \
else :; fi
am__relativize = \ am__relativize = \
dir0=`pwd`; \ dir0=`pwd`; \
sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
...@@ -167,6 +175,8 @@ am__relativize = \ ...@@ -167,6 +175,8 @@ am__relativize = \
DIST_ARCHIVES = $(distdir).tar.gz DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@ ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@ AMTAR = @AMTAR@
...@@ -352,7 +362,7 @@ all: auto-config.h ...@@ -352,7 +362,7 @@ all: auto-config.h
.SUFFIXES: .SUFFIXES:
.SUFFIXES: .c .lo .o .obj .SUFFIXES: .c .lo .o .obj
am--refresh: am--refresh: Makefile
@: @:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \ @for dep in $?; do \
...@@ -388,10 +398,8 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps) ...@@ -388,10 +398,8 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
$(am__aclocal_m4_deps): $(am__aclocal_m4_deps):
auto-config.h: stamp-h1 auto-config.h: stamp-h1
@if test ! -f $@; then \ @if test ! -f $@; then rm -f stamp-h1; else :; fi
rm -f stamp-h1; \ @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
else :; fi
stamp-h1: $(srcdir)/auto-config.h.in $(top_builddir)/config.status stamp-h1: $(srcdir)/auto-config.h.in $(top_builddir)/config.status
@rm -f stamp-h1 @rm -f stamp-h1
...@@ -434,7 +442,7 @@ clean-toolexeclibLTLIBRARIES: ...@@ -434,7 +442,7 @@ clean-toolexeclibLTLIBRARIES:
echo "rm -f \"$${dir}/so_locations\""; \ echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \ rm -f "$${dir}/so_locations"; \
done done
libatomic.la: $(libatomic_la_OBJECTS) $(libatomic_la_DEPENDENCIES) libatomic.la: $(libatomic_la_OBJECTS) $(libatomic_la_DEPENDENCIES) $(EXTRA_libatomic_la_DEPENDENCIES)
$(libatomic_la_LINK) -rpath $(toolexeclibdir) $(libatomic_la_OBJECTS) $(libatomic_la_LIBADD) $(LIBS) $(libatomic_la_LINK) -rpath $(toolexeclibdir) $(libatomic_la_OBJECTS) $(libatomic_la_LIBADD) $(LIBS)
mostlyclean-compile: mostlyclean-compile:
...@@ -705,7 +713,11 @@ dist-gzip: distdir ...@@ -705,7 +713,11 @@ dist-gzip: distdir
$(am__remove_distdir) $(am__remove_distdir)
dist-bzip2: distdir dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
$(am__remove_distdir)
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
$(am__remove_distdir) $(am__remove_distdir)
dist-lzma: distdir dist-lzma: distdir
...@@ -713,7 +725,7 @@ dist-lzma: distdir ...@@ -713,7 +725,7 @@ dist-lzma: distdir
$(am__remove_distdir) $(am__remove_distdir)
dist-xz: distdir dist-xz: distdir
tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
$(am__remove_distdir) $(am__remove_distdir)
dist-tarZ: distdir dist-tarZ: distdir
...@@ -744,6 +756,8 @@ distcheck: dist ...@@ -744,6 +756,8 @@ distcheck: dist
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lzma*) \ *.tar.lzma*) \
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
*.tar.lz*) \
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
*.tar.xz*) \ *.tar.xz*) \
xz -dc $(distdir).tar.xz | $(am__untar) ;;\ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
*.tar.Z*) \ *.tar.Z*) \
...@@ -763,6 +777,7 @@ distcheck: dist ...@@ -763,6 +777,7 @@ distcheck: dist
&& am__cwd=`pwd` \ && am__cwd=`pwd` \
&& $(am__cd) $(distdir)/_build \ && $(am__cd) $(distdir)/_build \
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
$(DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) dvi \
...@@ -791,8 +806,16 @@ distcheck: dist ...@@ -791,8 +806,16 @@ distcheck: dist
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck: distuninstallcheck:
@$(am__cd) '$(distuninstallcheck_dir)' \ @test -n '$(distuninstallcheck_dir)' || { \
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ echo 'ERROR: trying to run $@ with an empty' \
'$$(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
$(am__cd) '$(distuninstallcheck_dir)' || { \
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left after uninstall:" ; \ || { echo "ERROR: files left after uninstall:" ; \
if test -n "$(DESTDIR)"; then \ if test -n "$(DESTDIR)"; then \
echo " (check DESTDIR support)"; \ echo " (check DESTDIR support)"; \
...@@ -826,10 +849,15 @@ install-am: all-am ...@@ -826,10 +849,15 @@ install-am: all-am
installcheck: installcheck-recursive installcheck: installcheck-recursive
install-strip: install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \ install; \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic: mostlyclean-generic:
clean-generic: clean-generic:
...@@ -924,22 +952,22 @@ uninstall-am: uninstall-toolexeclibLTLIBRARIES ...@@ -924,22 +952,22 @@ uninstall-am: uninstall-toolexeclibLTLIBRARIES
all all-am all-multi am--refresh check check-am clean \ all all-am all-multi am--refresh check check-am clean \
clean-generic clean-libtool clean-multi \ clean-generic clean-libtool clean-multi \
clean-toolexeclibLTLIBRARIES ctags ctags-recursive dist \ clean-toolexeclibLTLIBRARIES ctags ctags-recursive dist \
dist-all dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ \ dist-all dist-bzip2 dist-gzip dist-lzip dist-lzma dist-shar \
dist-xz dist-zip distcheck distclean distclean-compile \ dist-tarZ dist-xz dist-zip distcheck distclean \
distclean-generic distclean-hdr distclean-libtool \ distclean-compile distclean-generic distclean-hdr \
distclean-multi distclean-tags distcleancheck distdir \ distclean-libtool distclean-multi distclean-tags \
distuninstallcheck dvi dvi-am html html-am info info-am \ distcleancheck distdir distuninstallcheck dvi dvi-am html \
install install-am install-data install-data-am install-dvi \ html-am info info-am install install-am install-data \
install-dvi-am install-exec install-exec-am install-html \ install-data-am install-dvi install-dvi-am install-exec \
install-html-am install-info install-info-am install-man \ install-exec-am install-html install-html-am install-info \
install-multi install-pdf install-pdf-am install-ps \ install-info-am install-man install-multi install-pdf \
install-ps-am install-strip install-toolexeclibLTLIBRARIES \ install-pdf-am install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs installdirs-am \ install-toolexeclibLTLIBRARIES installcheck installcheck-am \
maintainer-clean maintainer-clean-generic \ installdirs installdirs-am maintainer-clean \
maintainer-clean-multi mostlyclean mostlyclean-compile \ maintainer-clean-generic maintainer-clean-multi mostlyclean \
mostlyclean-generic mostlyclean-libtool mostlyclean-multi pdf \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ mostlyclean-multi pdf pdf-am ps ps-am tags tags-recursive \
uninstall-toolexeclibLTLIBRARIES uninstall uninstall-am uninstall-toolexeclibLTLIBRARIES
vpath % $(strip $(search_path)) vpath % $(strip $(search_path))
......
...@@ -74,6 +74,8 @@ AC_DEFUN([LIBAT_TEST_ATOMIC_BUILTIN],[ ...@@ -74,6 +74,8 @@ AC_DEFUN([LIBAT_TEST_ATOMIC_BUILTIN],[
else else
eval $2=yes eval $2=yes
fi fi
else
eval $2=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
......
# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # generated automatically by aclocal 1.11.3 -*- Autoconf -*-
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
# Inc.
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
...@@ -19,12 +20,15 @@ You have another version of autoconf. It may work, but is not guaranteed to. ...@@ -19,12 +20,15 @@ You have another version of autoconf. It may work, but is not guaranteed to.
If you have problems, you may need to regenerate the build system entirely. If you have problems, you may need to regenerate the build system entirely.
To do so, use the procedure documented by the package, typically `autoreconf'.])]) To do so, use the procedure documented by the package, typically `autoreconf'.])])
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
# Foundation, Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 1
# AM_AUTOMAKE_VERSION(VERSION) # AM_AUTOMAKE_VERSION(VERSION)
# ---------------------------- # ----------------------------
# Automake X.Y traces this macro to ensure aclocal.m4 has been # Automake X.Y traces this macro to ensure aclocal.m4 has been
...@@ -34,7 +38,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION], ...@@ -34,7 +38,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
[am__api_version='1.11' [am__api_version='1.11'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro. dnl require some minimum version. Point them to the right macro.
m4_if([$1], [1.11.1], [], m4_if([$1], [1.11.3], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
]) ])
...@@ -50,7 +54,7 @@ m4_define([_AM_AUTOCONF_VERSION], []) ...@@ -50,7 +54,7 @@ m4_define([_AM_AUTOCONF_VERSION], [])
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
[AM_AUTOMAKE_VERSION([1.11.1])dnl [AM_AUTOMAKE_VERSION([1.11.3])dnl
m4_ifndef([AC_AUTOCONF_VERSION], m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
...@@ -79,12 +83,14 @@ _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl ...@@ -79,12 +83,14 @@ _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
# AM_AUX_DIR_EXPAND -*- Autoconf -*- # AM_AUX_DIR_EXPAND -*- Autoconf -*-
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 1
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
# `$srcdir', `$srcdir/..', or `$srcdir/../..'. # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
...@@ -166,14 +172,14 @@ AC_CONFIG_COMMANDS_PRE( ...@@ -166,14 +172,14 @@ AC_CONFIG_COMMANDS_PRE(
Usually this means the macro was only invoked conditionally.]]) Usually this means the macro was only invoked conditionally.]])
fi])]) fi])])
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
# Free Software Foundation, Inc. # 2010, 2011 Free Software Foundation, Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 10 # serial 12
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # 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, # written in clear, in which case automake, when reading aclocal.m4,
...@@ -213,6 +219,7 @@ AC_CACHE_CHECK([dependency style of $depcc], ...@@ -213,6 +219,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
# instance it was reported that on HP-UX the gcc test will end up # instance it was reported that on HP-UX the gcc test will end up
# making a dummy file named `D' -- because `-MD' means `put the output # making a dummy file named `D' -- because `-MD' means `put the output
# in D'. # in D'.
rm -rf conftest.dir
mkdir conftest.dir mkdir conftest.dir
# Copy depcomp to subdir because otherwise we won't find it if we're # Copy depcomp to subdir because otherwise we won't find it if we're
# using a relative directory. # using a relative directory.
...@@ -277,7 +284,7 @@ AC_CACHE_CHECK([dependency style of $depcc], ...@@ -277,7 +284,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
break break
fi fi
;; ;;
msvisualcpp | msvcmsys) msvc7 | msvc7msys | msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has # This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and # not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted. # so weak that their functioning should not be impacted.
...@@ -342,10 +349,13 @@ AC_DEFUN([AM_DEP_TRACK], ...@@ -342,10 +349,13 @@ AC_DEFUN([AM_DEP_TRACK],
if test "x$enable_dependency_tracking" != xno; then if test "x$enable_dependency_tracking" != xno; then
am_depcomp="$ac_aux_dir/depcomp" am_depcomp="$ac_aux_dir/depcomp"
AMDEPBACKSLASH='\' AMDEPBACKSLASH='\'
am__nodep='_no'
fi fi
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
AC_SUBST([AMDEPBACKSLASH])dnl AC_SUBST([AMDEPBACKSLASH])dnl
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
AC_SUBST([am__nodep])dnl
_AM_SUBST_NOTMAKE([am__nodep])dnl
]) ])
# Generate code to set up dependency tracking. -*- Autoconf -*- # Generate code to set up dependency tracking. -*- Autoconf -*-
...@@ -567,12 +577,15 @@ for _am_header in $config_headers :; do ...@@ -567,12 +577,15 @@ for _am_header in $config_headers :; do
done done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
# Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 1
# AM_PROG_INSTALL_SH # AM_PROG_INSTALL_SH
# ------------------ # ------------------
# Define $install_sh. # Define $install_sh.
...@@ -683,12 +696,15 @@ else ...@@ -683,12 +696,15 @@ else
fi fi
]) ])
# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
# Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 1
# AM_PROG_MKDIR_P # AM_PROG_MKDIR_P
# --------------- # ---------------
# Check for `mkdir -p'. # Check for `mkdir -p'.
...@@ -711,13 +727,14 @@ esac ...@@ -711,13 +727,14 @@ esac
# Helper functions for option handling. -*- Autoconf -*- # Helper functions for option handling. -*- Autoconf -*-
# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. # Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
# Foundation, Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 4 # serial 5
# _AM_MANGLE_OPTION(NAME) # _AM_MANGLE_OPTION(NAME)
# ----------------------- # -----------------------
...@@ -725,13 +742,13 @@ AC_DEFUN([_AM_MANGLE_OPTION], ...@@ -725,13 +742,13 @@ AC_DEFUN([_AM_MANGLE_OPTION],
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
# _AM_SET_OPTION(NAME) # _AM_SET_OPTION(NAME)
# ------------------------------ # --------------------
# Set option NAME. Presently that only means defining a flag for this option. # Set option NAME. Presently that only means defining a flag for this option.
AC_DEFUN([_AM_SET_OPTION], AC_DEFUN([_AM_SET_OPTION],
[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
# _AM_SET_OPTIONS(OPTIONS) # _AM_SET_OPTIONS(OPTIONS)
# ---------------------------------- # ------------------------
# OPTIONS is a space-separated list of Automake options. # OPTIONS is a space-separated list of Automake options.
AC_DEFUN([_AM_SET_OPTIONS], AC_DEFUN([_AM_SET_OPTIONS],
[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
...@@ -807,12 +824,14 @@ Check your system clock]) ...@@ -807,12 +824,14 @@ Check your system clock])
fi fi
AC_MSG_RESULT(yes)]) AC_MSG_RESULT(yes)])
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 1
# AM_PROG_INSTALL_STRIP # AM_PROG_INSTALL_STRIP
# --------------------- # ---------------------
# One issue with vendor `install' (even GNU) is that you can't # One issue with vendor `install' (even GNU) is that you can't
...@@ -835,13 +854,13 @@ fi ...@@ -835,13 +854,13 @@ fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])]) AC_SUBST([INSTALL_STRIP_PROGRAM])])
# Copyright (C) 2006, 2008 Free Software Foundation, Inc. # Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
# serial 2 # serial 3
# _AM_SUBST_NOTMAKE(VARIABLE) # _AM_SUBST_NOTMAKE(VARIABLE)
# --------------------------- # ---------------------------
...@@ -850,13 +869,13 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])]) ...@@ -850,13 +869,13 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])])
AC_DEFUN([_AM_SUBST_NOTMAKE]) AC_DEFUN([_AM_SUBST_NOTMAKE])
# AM_SUBST_NOTMAKE(VARIABLE) # AM_SUBST_NOTMAKE(VARIABLE)
# --------------------------- # --------------------------
# Public sister of _AM_SUBST_NOTMAKE. # Public sister of _AM_SUBST_NOTMAKE.
AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
# Check how to create a tarball. -*- Autoconf -*- # Check how to create a tarball. -*- Autoconf -*-
# Copyright (C) 2004, 2005 Free Software Foundation, Inc. # Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
# #
# This file is free software; the Free Software Foundation # This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
...@@ -878,10 +897,11 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) ...@@ -878,10 +897,11 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
# a tarball read from stdin. # a tarball read from stdin.
# $(am__untar) < result.tar # $(am__untar) < result.tar
AC_DEFUN([_AM_PROG_TAR], AC_DEFUN([_AM_PROG_TAR],
[# Always define AMTAR for backward compatibility. [# Always define AMTAR for backward compatibility. Yes, it's still used
AM_MISSING_PROG([AMTAR], [tar]) # in the wild :-( We should find a proper way to deprecate it ...
AC_SUBST([AMTAR], ['$${TAR-tar}'])
m4_if([$1], [v7], m4_if([$1], [v7],
[am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
[m4_case([$1], [ustar],, [pax],, [m4_case([$1], [ustar],, [pax],,
[m4_fatal([Unknown tar format])]) [m4_fatal([Unknown tar format])])
AC_MSG_CHECKING([how to create a $1 tar archive]) AC_MSG_CHECKING([how to create a $1 tar archive])
......
...@@ -652,6 +652,7 @@ CCAS ...@@ -652,6 +652,7 @@ CCAS
am__fastdepCC_FALSE am__fastdepCC_FALSE
am__fastdepCC_TRUE am__fastdepCC_TRUE
CCDEPMODE CCDEPMODE
am__nodep
AMDEPBACKSLASH AMDEPBACKSLASH
AMDEP_FALSE AMDEP_FALSE
AMDEP_TRUE AMDEP_TRUE
...@@ -3037,11 +3038,11 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} ...@@ -3037,11 +3038,11 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# We need awk for the "check" target. The system "awk" is bad on # We need awk for the "check" target. The system "awk" is bad on
# some platforms. # some platforms.
# Always define AMTAR for backward compatibility. # Always define AMTAR for backward compatibility. Yes, it's still used
# in the wild :-( We should find a proper way to deprecate it ...
AMTAR='$${TAR-tar}'
AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
...@@ -3939,6 +3940,7 @@ fi ...@@ -3939,6 +3940,7 @@ fi
if test "x$enable_dependency_tracking" != xno; then if test "x$enable_dependency_tracking" != xno; then
am_depcomp="$ac_aux_dir/depcomp" am_depcomp="$ac_aux_dir/depcomp"
AMDEPBACKSLASH='\' AMDEPBACKSLASH='\'
am__nodep='_no'
fi fi
if test "x$enable_dependency_tracking" != xno; then if test "x$enable_dependency_tracking" != xno; then
AMDEP_TRUE= AMDEP_TRUE=
...@@ -3963,6 +3965,7 @@ else ...@@ -3963,6 +3965,7 @@ else
# instance it was reported that on HP-UX the gcc test will end up # instance it was reported that on HP-UX the gcc test will end up
# making a dummy file named `D' -- because `-MD' means `put the output # making a dummy file named `D' -- because `-MD' means `put the output
# in D'. # in D'.
rm -rf conftest.dir
mkdir conftest.dir mkdir conftest.dir
# Copy depcomp to subdir because otherwise we won't find it if we're # Copy depcomp to subdir because otherwise we won't find it if we're
# using a relative directory. # using a relative directory.
...@@ -4022,7 +4025,7 @@ else ...@@ -4022,7 +4025,7 @@ else
break break
fi fi
;; ;;
msvisualcpp | msvcmsys) msvc7 | msvc7msys | msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has # This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and # not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted. # so weak that their functioning should not be impacted.
...@@ -4097,6 +4100,7 @@ else ...@@ -4097,6 +4100,7 @@ else
# instance it was reported that on HP-UX the gcc test will end up # instance it was reported that on HP-UX the gcc test will end up
# making a dummy file named `D' -- because `-MD' means `put the output # making a dummy file named `D' -- because `-MD' means `put the output
# in D'. # in D'.
rm -rf conftest.dir
mkdir conftest.dir mkdir conftest.dir
# Copy depcomp to subdir because otherwise we won't find it if we're # Copy depcomp to subdir because otherwise we won't find it if we're
# using a relative directory. # using a relative directory.
...@@ -4154,7 +4158,7 @@ else ...@@ -4154,7 +4158,7 @@ else
break break
fi fi
;; ;;
msvisualcpp | msvcmsys) msvc7 | msvc7msys | msvisualcpp | msvcmsys)
# This compiler won't grok `-c -o', but also, the minuso test has # This compiler won't grok `-c -o', but also, the minuso test has
# not run yet. These depmodes are late enough in the game, and # not run yet. These depmodes are late enough in the game, and
# so weak that their functioning should not be impacted. # so weak that their functioning should not be impacted.
...@@ -10998,7 +11002,7 @@ else ...@@ -10998,7 +11002,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF cat > conftest.$ac_ext <<_LT_EOF
#line 11001 "configure" #line 11005 "configure"
#include "confdefs.h" #include "confdefs.h"
#if HAVE_DLFCN_H #if HAVE_DLFCN_H
...@@ -11104,7 +11108,7 @@ else ...@@ -11104,7 +11108,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF cat > conftest.$ac_ext <<_LT_EOF
#line 11107 "configure" #line 11111 "configure"
#include "confdefs.h" #include "confdefs.h"
#if HAVE_DLFCN_H #if HAVE_DLFCN_H
...@@ -12129,6 +12133,8 @@ _ACEOF ...@@ -12129,6 +12133,8 @@ _ACEOF
else else
eval libat_cv_have_at_ldst_1=yes eval libat_cv_have_at_ldst_1=yes
fi fi
else
eval libat_cv_have_at_ldst_1=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12194,6 +12200,8 @@ _ACEOF ...@@ -12194,6 +12200,8 @@ _ACEOF
else else
eval libat_cv_have_at_ldst_2=yes eval libat_cv_have_at_ldst_2=yes
fi fi
else
eval libat_cv_have_at_ldst_2=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12259,6 +12267,8 @@ _ACEOF ...@@ -12259,6 +12267,8 @@ _ACEOF
else else
eval libat_cv_have_at_ldst_4=yes eval libat_cv_have_at_ldst_4=yes
fi fi
else
eval libat_cv_have_at_ldst_4=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12324,6 +12334,8 @@ _ACEOF ...@@ -12324,6 +12334,8 @@ _ACEOF
else else
eval libat_cv_have_at_ldst_8=yes eval libat_cv_have_at_ldst_8=yes
fi fi
else
eval libat_cv_have_at_ldst_8=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12389,6 +12401,8 @@ _ACEOF ...@@ -12389,6 +12401,8 @@ _ACEOF
else else
eval libat_cv_have_at_ldst_16=yes eval libat_cv_have_at_ldst_16=yes
fi fi
else
eval libat_cv_have_at_ldst_16=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12453,6 +12467,8 @@ _ACEOF ...@@ -12453,6 +12467,8 @@ _ACEOF
else else
eval libat_cv_have_at_tas_1=yes eval libat_cv_have_at_tas_1=yes
fi fi
else
eval libat_cv_have_at_tas_1=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12516,6 +12532,8 @@ _ACEOF ...@@ -12516,6 +12532,8 @@ _ACEOF
else else
eval libat_cv_have_at_tas_2=yes eval libat_cv_have_at_tas_2=yes
fi fi
else
eval libat_cv_have_at_tas_2=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12579,6 +12597,8 @@ _ACEOF ...@@ -12579,6 +12597,8 @@ _ACEOF
else else
eval libat_cv_have_at_tas_4=yes eval libat_cv_have_at_tas_4=yes
fi fi
else
eval libat_cv_have_at_tas_4=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12642,6 +12662,8 @@ _ACEOF ...@@ -12642,6 +12662,8 @@ _ACEOF
else else
eval libat_cv_have_at_tas_8=yes eval libat_cv_have_at_tas_8=yes
fi fi
else
eval libat_cv_have_at_tas_8=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12705,6 +12727,8 @@ _ACEOF ...@@ -12705,6 +12727,8 @@ _ACEOF
else else
eval libat_cv_have_at_tas_16=yes eval libat_cv_have_at_tas_16=yes
fi fi
else
eval libat_cv_have_at_tas_16=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12769,6 +12793,8 @@ _ACEOF ...@@ -12769,6 +12793,8 @@ _ACEOF
else else
eval libat_cv_have_at_exch_1=yes eval libat_cv_have_at_exch_1=yes
fi fi
else
eval libat_cv_have_at_exch_1=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12832,6 +12858,8 @@ _ACEOF ...@@ -12832,6 +12858,8 @@ _ACEOF
else else
eval libat_cv_have_at_exch_2=yes eval libat_cv_have_at_exch_2=yes
fi fi
else
eval libat_cv_have_at_exch_2=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12895,6 +12923,8 @@ _ACEOF ...@@ -12895,6 +12923,8 @@ _ACEOF
else else
eval libat_cv_have_at_exch_4=yes eval libat_cv_have_at_exch_4=yes
fi fi
else
eval libat_cv_have_at_exch_4=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -12958,6 +12988,8 @@ _ACEOF ...@@ -12958,6 +12988,8 @@ _ACEOF
else else
eval libat_cv_have_at_exch_8=yes eval libat_cv_have_at_exch_8=yes
fi fi
else
eval libat_cv_have_at_exch_8=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13021,6 +13053,8 @@ _ACEOF ...@@ -13021,6 +13053,8 @@ _ACEOF
else else
eval libat_cv_have_at_exch_16=yes eval libat_cv_have_at_exch_16=yes
fi fi
else
eval libat_cv_have_at_exch_16=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13086,6 +13120,8 @@ _ACEOF ...@@ -13086,6 +13120,8 @@ _ACEOF
else else
eval libat_cv_have_at_cas_1=yes eval libat_cv_have_at_cas_1=yes
fi fi
else
eval libat_cv_have_at_cas_1=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13150,6 +13186,8 @@ _ACEOF ...@@ -13150,6 +13186,8 @@ _ACEOF
else else
eval libat_cv_have_at_cas_2=yes eval libat_cv_have_at_cas_2=yes
fi fi
else
eval libat_cv_have_at_cas_2=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13214,6 +13252,8 @@ _ACEOF ...@@ -13214,6 +13252,8 @@ _ACEOF
else else
eval libat_cv_have_at_cas_4=yes eval libat_cv_have_at_cas_4=yes
fi fi
else
eval libat_cv_have_at_cas_4=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13278,6 +13318,8 @@ _ACEOF ...@@ -13278,6 +13318,8 @@ _ACEOF
else else
eval libat_cv_have_at_cas_8=yes eval libat_cv_have_at_cas_8=yes
fi fi
else
eval libat_cv_have_at_cas_8=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13342,6 +13384,8 @@ _ACEOF ...@@ -13342,6 +13384,8 @@ _ACEOF
else else
eval libat_cv_have_at_cas_16=yes eval libat_cv_have_at_cas_16=yes
fi fi
else
eval libat_cv_have_at_cas_16=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13408,6 +13452,8 @@ _ACEOF ...@@ -13408,6 +13452,8 @@ _ACEOF
else else
eval libat_cv_have_at_fadd_1=yes eval libat_cv_have_at_fadd_1=yes
fi fi
else
eval libat_cv_have_at_fadd_1=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13473,6 +13519,8 @@ _ACEOF ...@@ -13473,6 +13519,8 @@ _ACEOF
else else
eval libat_cv_have_at_fadd_2=yes eval libat_cv_have_at_fadd_2=yes
fi fi
else
eval libat_cv_have_at_fadd_2=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13538,6 +13586,8 @@ _ACEOF ...@@ -13538,6 +13586,8 @@ _ACEOF
else else
eval libat_cv_have_at_fadd_4=yes eval libat_cv_have_at_fadd_4=yes
fi fi
else
eval libat_cv_have_at_fadd_4=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13603,6 +13653,8 @@ _ACEOF ...@@ -13603,6 +13653,8 @@ _ACEOF
else else
eval libat_cv_have_at_fadd_8=yes eval libat_cv_have_at_fadd_8=yes
fi fi
else
eval libat_cv_have_at_fadd_8=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13668,6 +13720,8 @@ _ACEOF ...@@ -13668,6 +13720,8 @@ _ACEOF
else else
eval libat_cv_have_at_fadd_16=yes eval libat_cv_have_at_fadd_16=yes
fi fi
else
eval libat_cv_have_at_fadd_16=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13738,6 +13792,8 @@ _ACEOF ...@@ -13738,6 +13792,8 @@ _ACEOF
else else
eval libat_cv_have_at_fop_1=yes eval libat_cv_have_at_fop_1=yes
fi fi
else
eval libat_cv_have_at_fop_1=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13807,6 +13863,8 @@ _ACEOF ...@@ -13807,6 +13863,8 @@ _ACEOF
else else
eval libat_cv_have_at_fop_2=yes eval libat_cv_have_at_fop_2=yes
fi fi
else
eval libat_cv_have_at_fop_2=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13876,6 +13934,8 @@ _ACEOF ...@@ -13876,6 +13934,8 @@ _ACEOF
else else
eval libat_cv_have_at_fop_4=yes eval libat_cv_have_at_fop_4=yes
fi fi
else
eval libat_cv_have_at_fop_4=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -13945,6 +14005,8 @@ _ACEOF ...@@ -13945,6 +14005,8 @@ _ACEOF
else else
eval libat_cv_have_at_fop_8=yes eval libat_cv_have_at_fop_8=yes
fi fi
else
eval libat_cv_have_at_fop_8=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
...@@ -14014,6 +14076,8 @@ _ACEOF ...@@ -14014,6 +14076,8 @@ _ACEOF
else else
eval libat_cv_have_at_fop_16=yes eval libat_cv_have_at_fop_16=yes
fi fi
else
eval libat_cv_have_at_fop_16=no
fi fi
CFLAGS="$old_CFLAGS" CFLAGS="$old_CFLAGS"
fi fi
......
# Makefile.in generated by automake 1.11.1 from Makefile.am. # Makefile.in generated by automake 1.11.3 from Makefile.am.
# @configure_input@ # @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
# Inc. # Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation # This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it, # gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved. # with or without modifications, as long as this notice is preserved.
...@@ -246,7 +246,7 @@ CTAGS: ...@@ -246,7 +246,7 @@ CTAGS:
check-DEJAGNU: site.exp check-DEJAGNU: site.exp
srcdir=`$(am__cd) $(srcdir) && pwd`; export srcdir; \ srcdir='$(srcdir)'; export srcdir; \
EXPECT=$(EXPECT); export EXPECT; \ EXPECT=$(EXPECT); export EXPECT; \
runtest=$(RUNTEST); \ runtest=$(RUNTEST); \
if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \ if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
...@@ -257,12 +257,12 @@ check-DEJAGNU: site.exp ...@@ -257,12 +257,12 @@ check-DEJAGNU: site.exp
else echo "WARNING: could not find \`runtest'" 1>&2; :;\ else echo "WARNING: could not find \`runtest'" 1>&2; :;\
fi; \ fi; \
exit $$exit_status exit $$exit_status
site.exp: Makefile site.exp: Makefile $(EXTRA_DEJAGNU_SITE_CONFIG)
@echo 'Making a new site.exp file...' @echo 'Making a new site.exp file...'
@echo '## these variables are automatically generated by make ##' >site.tmp @echo '## these variables are automatically generated by make ##' >site.tmp
@echo '# Do not edit here. If you wish to override these values' >>site.tmp @echo '# Do not edit here. If you wish to override these values' >>site.tmp
@echo '# edit the last section' >>site.tmp @echo '# edit the last section' >>site.tmp
@echo 'set srcdir $(srcdir)' >>site.tmp @echo 'set srcdir "$(srcdir)"' >>site.tmp
@echo "set objdir `pwd`" >>site.tmp @echo "set objdir `pwd`" >>site.tmp
@echo 'set build_alias "$(build_alias)"' >>site.tmp @echo 'set build_alias "$(build_alias)"' >>site.tmp
@echo 'set build_triplet $(build_triplet)' >>site.tmp @echo 'set build_triplet $(build_triplet)' >>site.tmp
...@@ -270,9 +270,16 @@ site.exp: Makefile ...@@ -270,9 +270,16 @@ site.exp: Makefile
@echo 'set host_triplet $(host_triplet)' >>site.tmp @echo 'set host_triplet $(host_triplet)' >>site.tmp
@echo 'set target_alias "$(target_alias)"' >>site.tmp @echo 'set target_alias "$(target_alias)"' >>site.tmp
@echo 'set target_triplet $(target_triplet)' >>site.tmp @echo 'set target_triplet $(target_triplet)' >>site.tmp
@echo '## All variables above are generated by configure. Do Not Edit ##' >>site.tmp @list='$(EXTRA_DEJAGNU_SITE_CONFIG)'; for f in $$list; do \
@test ! -f site.exp || \ echo "## Begin content included from file $$f. Do not modify. ##" \
sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp && cat `test -f "$$f" || echo '$(srcdir)/'`$$f \
&& echo "## End content included from file $$f. ##" \
|| exit 1; \
done >> site.tmp
@echo "## End of auto-generated content; you can edit from here. ##" >> site.tmp
@if test -f site.exp; then \
sed -e '1,/^## End of auto-generated content.*##/d' site.exp >> site.tmp; \
fi
@-rm -f site.bak @-rm -f site.bak
@test ! -f site.exp || mv site.exp site.bak @test ! -f site.exp || mv site.exp site.bak
@mv site.tmp site.exp @mv site.tmp site.exp
...@@ -328,10 +335,15 @@ install-am: all-am ...@@ -328,10 +335,15 @@ install-am: all-am
installcheck: installcheck-am installcheck: installcheck-am
install-strip: install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install fi
mostlyclean-generic: mostlyclean-generic:
clean-generic: clean-generic:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment