| OLD | NEW |
| 1 # generated automatically by aclocal 1.15 -*- Autoconf -*- | 1 # generated automatically by aclocal 1.14.1 -*- Autoconf -*- |
| 2 | 2 |
| 3 # Copyright (C) 1996-2014 Free Software Foundation, Inc. | 3 # Copyright (C) 1996-2013 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 # This file is free software; the Free Software Foundation | 5 # This file is free software; the Free Software Foundation |
| 6 # gives unlimited permission to copy and/or distribute it, | 6 # gives unlimited permission to copy and/or distribute it, |
| 7 # with or without modifications, as long as this notice is preserved. | 7 # with or without modifications, as long as this notice is preserved. |
| 8 | 8 |
| 9 # This program is distributed in the hope that it will be useful, | 9 # This program is distributed in the hope that it will be useful, |
| 10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without | 10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without |
| 11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A | 11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 12 # PARTICULAR PURPOSE. | 12 # PARTICULAR PURPOSE. |
| 13 | 13 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl | 173 To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl |
| 174 ]) | 174 ]) |
| 175 else | 175 else |
| 176 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS | 176 $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS |
| 177 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS | 177 $1[]_LIBS=$pkg_cv_[]$1[]_LIBS |
| 178 AC_MSG_RESULT([yes]) | 178 AC_MSG_RESULT([yes]) |
| 179 $3 | 179 $3 |
| 180 fi[]dnl | 180 fi[]dnl |
| 181 ])# PKG_CHECK_MODULES | 181 ])# PKG_CHECK_MODULES |
| 182 | 182 |
| 183 | 183 # Copyright (C) 2002-2013 Free Software Foundation, Inc. |
| 184 # PKG_INSTALLDIR(DIRECTORY) | |
| 185 # ------------------------- | |
| 186 # Substitutes the variable pkgconfigdir as the location where a module | |
| 187 # should install pkg-config .pc files. By default the directory is | |
| 188 # $libdir/pkgconfig, but the default can be changed by passing | |
| 189 # DIRECTORY. The user can override through the --with-pkgconfigdir | |
| 190 # parameter. | |
| 191 AC_DEFUN([PKG_INSTALLDIR], | |
| 192 [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) | |
| 193 m4_pushdef([pkg_description], | |
| 194 [pkg-config installation directory @<:@]pkg_default[@:>@]) | |
| 195 AC_ARG_WITH([pkgconfigdir], | |
| 196 [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, | |
| 197 [with_pkgconfigdir=]pkg_default) | |
| 198 AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) | |
| 199 m4_popdef([pkg_default]) | |
| 200 m4_popdef([pkg_description]) | |
| 201 ]) dnl PKG_INSTALLDIR | |
| 202 | |
| 203 | |
| 204 # PKG_NOARCH_INSTALLDIR(DIRECTORY) | |
| 205 # ------------------------- | |
| 206 # Substitutes the variable noarch_pkgconfigdir as the location where a | |
| 207 # module should install arch-independent pkg-config .pc files. By | |
| 208 # default the directory is $datadir/pkgconfig, but the default can be | |
| 209 # changed by passing DIRECTORY. The user can override through the | |
| 210 # --with-noarch-pkgconfigdir parameter. | |
| 211 AC_DEFUN([PKG_NOARCH_INSTALLDIR], | |
| 212 [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) | |
| 213 m4_pushdef([pkg_description], | |
| 214 [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) | |
| 215 AC_ARG_WITH([noarch-pkgconfigdir], | |
| 216 [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, | |
| 217 [with_noarch_pkgconfigdir=]pkg_default) | |
| 218 AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) | |
| 219 m4_popdef([pkg_default]) | |
| 220 m4_popdef([pkg_description]) | |
| 221 ]) dnl PKG_NOARCH_INSTALLDIR | |
| 222 | |
| 223 | |
| 224 # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, | |
| 225 # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) | |
| 226 # ------------------------------------------- | |
| 227 # Retrieves the value of the pkg-config variable for the given module. | |
| 228 AC_DEFUN([PKG_CHECK_VAR], | |
| 229 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl | |
| 230 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl | |
| 231 | |
| 232 _PKG_CONFIG([$1], [variable="][$3]["], [$2]) | |
| 233 AS_VAR_COPY([$1], [pkg_cv_][$1]) | |
| 234 | |
| 235 AS_VAR_IF([$1], [""], [$5], [$4])dnl | |
| 236 ])# PKG_CHECK_VAR | |
| 237 | |
| 238 # Copyright (C) 2002-2014 Free Software Foundation, Inc. | |
| 239 # | 184 # |
| 240 # This file is free software; the Free Software Foundation | 185 # This file is free software; the Free Software Foundation |
| 241 # gives unlimited permission to copy and/or distribute it, | 186 # gives unlimited permission to copy and/or distribute it, |
| 242 # with or without modifications, as long as this notice is preserved. | 187 # with or without modifications, as long as this notice is preserved. |
| 243 | 188 |
| 244 # AM_AUTOMAKE_VERSION(VERSION) | 189 # AM_AUTOMAKE_VERSION(VERSION) |
| 245 # ---------------------------- | 190 # ---------------------------- |
| 246 # Automake X.Y traces this macro to ensure aclocal.m4 has been | 191 # Automake X.Y traces this macro to ensure aclocal.m4 has been |
| 247 # generated from the m4 files accompanying Automake X.Y. | 192 # generated from the m4 files accompanying Automake X.Y. |
| 248 # (This private macro should not be called outside this file.) | 193 # (This private macro should not be called outside this file.) |
| 249 AC_DEFUN([AM_AUTOMAKE_VERSION], | 194 AC_DEFUN([AM_AUTOMAKE_VERSION], |
| 250 [am__api_version='1.15' | 195 [am__api_version='1.14' |
| 251 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to | 196 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to |
| 252 dnl require some minimum version. Point them to the right macro. | 197 dnl require some minimum version. Point them to the right macro. |
| 253 m4_if([$1], [1.15], [], | 198 m4_if([$1], [1.14.1], [], |
| 254 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl | 199 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl |
| 255 ]) | 200 ]) |
| 256 | 201 |
| 257 # _AM_AUTOCONF_VERSION(VERSION) | 202 # _AM_AUTOCONF_VERSION(VERSION) |
| 258 # ----------------------------- | 203 # ----------------------------- |
| 259 # aclocal traces this macro to find the Autoconf version. | 204 # aclocal traces this macro to find the Autoconf version. |
| 260 # This is a private macro too. Using m4_define simplifies | 205 # This is a private macro too. Using m4_define simplifies |
| 261 # the logic in aclocal, which can simply ignore this definition. | 206 # the logic in aclocal, which can simply ignore this definition. |
| 262 m4_define([_AM_AUTOCONF_VERSION], []) | 207 m4_define([_AM_AUTOCONF_VERSION], []) |
| 263 | 208 |
| 264 # AM_SET_CURRENT_AUTOMAKE_VERSION | 209 # AM_SET_CURRENT_AUTOMAKE_VERSION |
| 265 # ------------------------------- | 210 # ------------------------------- |
| 266 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. | 211 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. |
| 267 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. | 212 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. |
| 268 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], | 213 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], |
| 269 [AM_AUTOMAKE_VERSION([1.15])dnl | 214 [AM_AUTOMAKE_VERSION([1.14.1])dnl |
| 270 m4_ifndef([AC_AUTOCONF_VERSION], | 215 m4_ifndef([AC_AUTOCONF_VERSION], |
| 271 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl | 216 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl |
| 272 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) | 217 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) |
| 273 | 218 |
| 274 # AM_AUX_DIR_EXPAND -*- Autoconf -*- | 219 # AM_AUX_DIR_EXPAND -*- Autoconf -*- |
| 275 | 220 |
| 276 # Copyright (C) 2001-2014 Free Software Foundation, Inc. | 221 # Copyright (C) 2001-2013 Free Software Foundation, Inc. |
| 277 # | 222 # |
| 278 # This file is free software; the Free Software Foundation | 223 # This file is free software; the Free Software Foundation |
| 279 # gives unlimited permission to copy and/or distribute it, | 224 # gives unlimited permission to copy and/or distribute it, |
| 280 # with or without modifications, as long as this notice is preserved. | 225 # with or without modifications, as long as this notice is preserved. |
| 281 | 226 |
| 282 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets | 227 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets |
| 283 # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to | 228 # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to |
| 284 # '$srcdir', '$srcdir/..', or '$srcdir/../..'. | 229 # '$srcdir', '$srcdir/..', or '$srcdir/../..'. |
| 285 # | 230 # |
| 286 # Of course, Automake must honor this variable whenever it calls a | 231 # Of course, Automake must honor this variable whenever it calls a |
| (...skipping 24 matching lines...) Expand all Loading... |
| 311 # This will work as long as MISSING is not called from configure, because | 256 # This will work as long as MISSING is not called from configure, because |
| 312 # unfortunately $(top_srcdir) has no meaning in configure. | 257 # unfortunately $(top_srcdir) has no meaning in configure. |
| 313 # However there are other variables, like CC, which are often used in | 258 # However there are other variables, like CC, which are often used in |
| 314 # configure, and could therefore not use this "fixed" $ac_aux_dir. | 259 # configure, and could therefore not use this "fixed" $ac_aux_dir. |
| 315 # | 260 # |
| 316 # Another solution, used here, is to always expand $ac_aux_dir to an | 261 # Another solution, used here, is to always expand $ac_aux_dir to an |
| 317 # absolute PATH. The drawback is that using absolute paths prevent a | 262 # absolute PATH. The drawback is that using absolute paths prevent a |
| 318 # configured tree to be moved without reconfiguration. | 263 # configured tree to be moved without reconfiguration. |
| 319 | 264 |
| 320 AC_DEFUN([AM_AUX_DIR_EXPAND], | 265 AC_DEFUN([AM_AUX_DIR_EXPAND], |
| 321 [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl | 266 [dnl Rely on autoconf to set up CDPATH properly. |
| 322 # Expand $ac_aux_dir to an absolute path. | 267 AC_PREREQ([2.50])dnl |
| 323 am_aux_dir=`cd "$ac_aux_dir" && pwd` | 268 # expand $ac_aux_dir to an absolute path |
| 269 am_aux_dir=`cd $ac_aux_dir && pwd` |
| 324 ]) | 270 ]) |
| 325 | 271 |
| 326 # AM_CONDITIONAL -*- Autoconf -*- | 272 # AM_CONDITIONAL -*- Autoconf -*- |
| 327 | 273 |
| 328 # Copyright (C) 1997-2014 Free Software Foundation, Inc. | 274 # Copyright (C) 1997-2013 Free Software Foundation, Inc. |
| 329 # | 275 # |
| 330 # This file is free software; the Free Software Foundation | 276 # This file is free software; the Free Software Foundation |
| 331 # gives unlimited permission to copy and/or distribute it, | 277 # gives unlimited permission to copy and/or distribute it, |
| 332 # with or without modifications, as long as this notice is preserved. | 278 # with or without modifications, as long as this notice is preserved. |
| 333 | 279 |
| 334 # AM_CONDITIONAL(NAME, SHELL-CONDITION) | 280 # AM_CONDITIONAL(NAME, SHELL-CONDITION) |
| 335 # ------------------------------------- | 281 # ------------------------------------- |
| 336 # Define a conditional. | 282 # Define a conditional. |
| 337 AC_DEFUN([AM_CONDITIONAL], | 283 AC_DEFUN([AM_CONDITIONAL], |
| 338 [AC_PREREQ([2.52])dnl | 284 [AC_PREREQ([2.52])dnl |
| (...skipping 10 matching lines...) Expand all Loading... |
| 349 else | 295 else |
| 350 $1_TRUE='#' | 296 $1_TRUE='#' |
| 351 $1_FALSE= | 297 $1_FALSE= |
| 352 fi | 298 fi |
| 353 AC_CONFIG_COMMANDS_PRE( | 299 AC_CONFIG_COMMANDS_PRE( |
| 354 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then | 300 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then |
| 355 AC_MSG_ERROR([[conditional "$1" was never defined. | 301 AC_MSG_ERROR([[conditional "$1" was never defined. |
| 356 Usually this means the macro was only invoked conditionally.]]) | 302 Usually this means the macro was only invoked conditionally.]]) |
| 357 fi])]) | 303 fi])]) |
| 358 | 304 |
| 359 # Copyright (C) 1999-2014 Free Software Foundation, Inc. | 305 # Copyright (C) 1999-2013 Free Software Foundation, Inc. |
| 360 # | 306 # |
| 361 # This file is free software; the Free Software Foundation | 307 # This file is free software; the Free Software Foundation |
| 362 # gives unlimited permission to copy and/or distribute it, | 308 # gives unlimited permission to copy and/or distribute it, |
| 363 # with or without modifications, as long as this notice is preserved. | 309 # with or without modifications, as long as this notice is preserved. |
| 364 | 310 |
| 365 | 311 |
| 366 # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be | 312 # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be |
| 367 # written in clear, in which case automake, when reading aclocal.m4, | 313 # written in clear, in which case automake, when reading aclocal.m4, |
| 368 # will think it sees a *use*, and therefore will trigger all it's | 314 # will think it sees a *use*, and therefore will trigger all it's |
| 369 # C support machinery. Also note that it means that autoscan, seeing | 315 # C support machinery. Also note that it means that autoscan, seeing |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 fi | 486 fi |
| 541 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) | 487 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) |
| 542 AC_SUBST([AMDEPBACKSLASH])dnl | 488 AC_SUBST([AMDEPBACKSLASH])dnl |
| 543 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl | 489 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl |
| 544 AC_SUBST([am__nodep])dnl | 490 AC_SUBST([am__nodep])dnl |
| 545 _AM_SUBST_NOTMAKE([am__nodep])dnl | 491 _AM_SUBST_NOTMAKE([am__nodep])dnl |
| 546 ]) | 492 ]) |
| 547 | 493 |
| 548 # Generate code to set up dependency tracking. -*- Autoconf -*- | 494 # Generate code to set up dependency tracking. -*- Autoconf -*- |
| 549 | 495 |
| 550 # Copyright (C) 1999-2014 Free Software Foundation, Inc. | 496 # Copyright (C) 1999-2013 Free Software Foundation, Inc. |
| 551 # | 497 # |
| 552 # This file is free software; the Free Software Foundation | 498 # This file is free software; the Free Software Foundation |
| 553 # gives unlimited permission to copy and/or distribute it, | 499 # gives unlimited permission to copy and/or distribute it, |
| 554 # with or without modifications, as long as this notice is preserved. | 500 # with or without modifications, as long as this notice is preserved. |
| 555 | 501 |
| 556 | 502 |
| 557 # _AM_OUTPUT_DEPENDENCY_COMMANDS | 503 # _AM_OUTPUT_DEPENDENCY_COMMANDS |
| 558 # ------------------------------ | 504 # ------------------------------ |
| 559 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], | 505 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], |
| 560 [{ | 506 [{ |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 # is enabled. FIXME. This creates each '.P' file that we will | 562 # is enabled. FIXME. This creates each '.P' file that we will |
| 617 # need in order to bootstrap the dependency handling code. | 563 # need in order to bootstrap the dependency handling code. |
| 618 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], | 564 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], |
| 619 [AC_CONFIG_COMMANDS([depfiles], | 565 [AC_CONFIG_COMMANDS([depfiles], |
| 620 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], | 566 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], |
| 621 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) | 567 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) |
| 622 ]) | 568 ]) |
| 623 | 569 |
| 624 # Do all the work for Automake. -*- Autoconf -*- | 570 # Do all the work for Automake. -*- Autoconf -*- |
| 625 | 571 |
| 626 # Copyright (C) 1996-2014 Free Software Foundation, Inc. | 572 # Copyright (C) 1996-2013 Free Software Foundation, Inc. |
| 627 # | 573 # |
| 628 # This file is free software; the Free Software Foundation | 574 # This file is free software; the Free Software Foundation |
| 629 # gives unlimited permission to copy and/or distribute it, | 575 # gives unlimited permission to copy and/or distribute it, |
| 630 # with or without modifications, as long as this notice is preserved. | 576 # with or without modifications, as long as this notice is preserved. |
| 631 | 577 |
| 632 # This macro actually does too much. Some checks are only needed if | 578 # This macro actually does too much. Some checks are only needed if |
| 633 # your package does certain things. But this isn't really a big deal. | 579 # your package does certain things. But this isn't really a big deal. |
| 634 | 580 |
| 635 dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. | 581 dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. |
| 636 m4_define([AC_PROG_CC], | 582 m4_define([AC_PROG_CC], |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 AM_MISSING_PROG([AUTOHEADER], [autoheader]) | 652 AM_MISSING_PROG([AUTOHEADER], [autoheader]) |
| 707 AM_MISSING_PROG([MAKEINFO], [makeinfo]) | 653 AM_MISSING_PROG([MAKEINFO], [makeinfo]) |
| 708 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | 654 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl |
| 709 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl | 655 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl |
| 710 AC_REQUIRE([AC_PROG_MKDIR_P])dnl | 656 AC_REQUIRE([AC_PROG_MKDIR_P])dnl |
| 711 # For better backward compatibility. To be removed once Automake 1.9.x | 657 # For better backward compatibility. To be removed once Automake 1.9.x |
| 712 # dies out for good. For more background, see: | 658 # dies out for good. For more background, see: |
| 713 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> | 659 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html> |
| 714 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> | 660 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html> |
| 715 AC_SUBST([mkdir_p], ['$(MKDIR_P)']) | 661 AC_SUBST([mkdir_p], ['$(MKDIR_P)']) |
| 716 # We need awk for the "check" target (and possibly the TAP driver). The | 662 # We need awk for the "check" target. The system "awk" is bad on |
| 717 # system "awk" is bad on some platforms. | 663 # some platforms. |
| 718 AC_REQUIRE([AC_PROG_AWK])dnl | 664 AC_REQUIRE([AC_PROG_AWK])dnl |
| 719 AC_REQUIRE([AC_PROG_MAKE_SET])dnl | 665 AC_REQUIRE([AC_PROG_MAKE_SET])dnl |
| 720 AC_REQUIRE([AM_SET_LEADING_DOT])dnl | 666 AC_REQUIRE([AM_SET_LEADING_DOT])dnl |
| 721 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], | 667 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], |
| 722 [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], | 668 [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], |
| 723 [_AM_PROG_TAR([v7])])]) | 669 [_AM_PROG_TAR([v7])])]) |
| 724 _AM_IF_OPTION([no-dependencies],, | 670 _AM_IF_OPTION([no-dependencies],, |
| 725 [AC_PROVIDE_IFELSE([AC_PROG_CC], | 671 [AC_PROVIDE_IFELSE([AC_PROG_CC], |
| 726 [_AM_DEPENDENCIES([CC])], | 672 [_AM_DEPENDENCIES([CC])], |
| 727 [m4_define([AC_PROG_CC], | 673 [m4_define([AC_PROG_CC], |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 You can download and install GNU coreutils to get an 'rm' implementation | 726 You can download and install GNU coreutils to get an 'rm' implementation |
| 781 that behaves properly: <http://www.gnu.org/software/coreutils/>. | 727 that behaves properly: <http://www.gnu.org/software/coreutils/>. |
| 782 | 728 |
| 783 If you want to complete the configuration process using your problematic | 729 If you want to complete the configuration process using your problematic |
| 784 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM | 730 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM |
| 785 to "yes", and re-run configure. | 731 to "yes", and re-run configure. |
| 786 | 732 |
| 787 END | 733 END |
| 788 AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) | 734 AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) |
| 789 fi | 735 fi |
| 790 fi | 736 fi]) |
| 791 dnl The trailing newline in this macro's definition is deliberate, for | |
| 792 dnl backward compatibility and to allow trailing 'dnl'-style comments | |
| 793 dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. | |
| 794 ]) | |
| 795 | 737 |
| 796 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not | 738 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not |
| 797 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further | 739 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further |
| 798 dnl mangled by Autoconf and run in a shell conditional statement. | 740 dnl mangled by Autoconf and run in a shell conditional statement. |
| 799 m4_define([_AC_COMPILER_EXEEXT], | 741 m4_define([_AC_COMPILER_EXEEXT], |
| 800 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) | 742 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) |
| 801 | 743 |
| 802 # When config.status generates a header, we must update the stamp-h file. | 744 # When config.status generates a header, we must update the stamp-h file. |
| 803 # This file resides in the same directory as the config header | 745 # This file resides in the same directory as the config header |
| 804 # that is generated. The stamp files are numbered to have different names. | 746 # that is generated. The stamp files are numbered to have different names. |
| 805 | 747 |
| 806 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the | 748 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the |
| 807 # loop where config.status creates the headers, so we can generate | 749 # loop where config.status creates the headers, so we can generate |
| 808 # our stamp files there. | 750 # our stamp files there. |
| 809 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], | 751 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], |
| 810 [# Compute $1's index in $config_headers. | 752 [# Compute $1's index in $config_headers. |
| 811 _am_arg=$1 | 753 _am_arg=$1 |
| 812 _am_stamp_count=1 | 754 _am_stamp_count=1 |
| 813 for _am_header in $config_headers :; do | 755 for _am_header in $config_headers :; do |
| 814 case $_am_header in | 756 case $_am_header in |
| 815 $_am_arg | $_am_arg:* ) | 757 $_am_arg | $_am_arg:* ) |
| 816 break ;; | 758 break ;; |
| 817 * ) | 759 * ) |
| 818 _am_stamp_count=`expr $_am_stamp_count + 1` ;; | 760 _am_stamp_count=`expr $_am_stamp_count + 1` ;; |
| 819 esac | 761 esac |
| 820 done | 762 done |
| 821 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_co
unt]) | 763 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_co
unt]) |
| 822 | 764 |
| 823 # Copyright (C) 2001-2014 Free Software Foundation, Inc. | 765 # Copyright (C) 2001-2013 Free Software Foundation, Inc. |
| 824 # | 766 # |
| 825 # This file is free software; the Free Software Foundation | 767 # This file is free software; the Free Software Foundation |
| 826 # gives unlimited permission to copy and/or distribute it, | 768 # gives unlimited permission to copy and/or distribute it, |
| 827 # with or without modifications, as long as this notice is preserved. | 769 # with or without modifications, as long as this notice is preserved. |
| 828 | 770 |
| 829 # AM_PROG_INSTALL_SH | 771 # AM_PROG_INSTALL_SH |
| 830 # ------------------ | 772 # ------------------ |
| 831 # Define $install_sh. | 773 # Define $install_sh. |
| 832 AC_DEFUN([AM_PROG_INSTALL_SH], | 774 AC_DEFUN([AM_PROG_INSTALL_SH], |
| 833 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl | 775 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl |
| 834 if test x"${install_sh+set}" != xset; then | 776 if test x"${install_sh}" != xset; then |
| 835 case $am_aux_dir in | 777 case $am_aux_dir in |
| 836 *\ * | *\ *) | 778 *\ * | *\ *) |
| 837 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; | 779 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; |
| 838 *) | 780 *) |
| 839 install_sh="\${SHELL} $am_aux_dir/install-sh" | 781 install_sh="\${SHELL} $am_aux_dir/install-sh" |
| 840 esac | 782 esac |
| 841 fi | 783 fi |
| 842 AC_SUBST([install_sh])]) | 784 AC_SUBST([install_sh])]) |
| 843 | 785 |
| 844 # Copyright (C) 2003-2014 Free Software Foundation, Inc. | 786 # Copyright (C) 2003-2013 Free Software Foundation, Inc. |
| 845 # | 787 # |
| 846 # This file is free software; the Free Software Foundation | 788 # This file is free software; the Free Software Foundation |
| 847 # gives unlimited permission to copy and/or distribute it, | 789 # gives unlimited permission to copy and/or distribute it, |
| 848 # with or without modifications, as long as this notice is preserved. | 790 # with or without modifications, as long as this notice is preserved. |
| 849 | 791 |
| 850 # Check whether the underlying file-system supports filenames | 792 # Check whether the underlying file-system supports filenames |
| 851 # with a leading dot. For instance MS-DOS doesn't. | 793 # with a leading dot. For instance MS-DOS doesn't. |
| 852 AC_DEFUN([AM_SET_LEADING_DOT], | 794 AC_DEFUN([AM_SET_LEADING_DOT], |
| 853 [rm -rf .tst 2>/dev/null | 795 [rm -rf .tst 2>/dev/null |
| 854 mkdir .tst 2>/dev/null | 796 mkdir .tst 2>/dev/null |
| 855 if test -d .tst; then | 797 if test -d .tst; then |
| 856 am__leading_dot=. | 798 am__leading_dot=. |
| 857 else | 799 else |
| 858 am__leading_dot=_ | 800 am__leading_dot=_ |
| 859 fi | 801 fi |
| 860 rmdir .tst 2>/dev/null | 802 rmdir .tst 2>/dev/null |
| 861 AC_SUBST([am__leading_dot])]) | 803 AC_SUBST([am__leading_dot])]) |
| 862 | 804 |
| 863 # Check to see how 'make' treats includes.» -*- Autoconf -*- | 805 # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- |
| 806 # From Jim Meyering |
| 864 | 807 |
| 865 # Copyright (C) 2001-2014 Free Software Foundation, Inc. | 808 # Copyright (C) 1996-2013 Free Software Foundation, Inc. |
| 866 # | 809 # |
| 867 # This file is free software; the Free Software Foundation | 810 # This file is free software; the Free Software Foundation |
| 868 # gives unlimited permission to copy and/or distribute it, | 811 # gives unlimited permission to copy and/or distribute it, |
| 812 # with or without modifications, as long as this notice is preserved. |
| 813 |
| 814 # AM_MAINTAINER_MODE([DEFAULT-MODE]) |
| 815 # ---------------------------------- |
| 816 # Control maintainer-specific portions of Makefiles. |
| 817 # Default is to disable them, unless 'enable' is passed literally. |
| 818 # For symmetry, 'disable' may be passed as well. Anyway, the user |
| 819 # can override the default with the --enable/--disable switch. |
| 820 AC_DEFUN([AM_MAINTAINER_MODE], |
| 821 [m4_case(m4_default([$1], [disable]), |
| 822 [enable], [m4_define([am_maintainer_other], [disable])], |
| 823 [disable], [m4_define([am_maintainer_other], [enable])], |
| 824 [m4_define([am_maintainer_other], [enable]) |
| 825 m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) |
| 826 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) |
| 827 dnl maintainer-mode's default is 'disable' unless 'enable' is passed |
| 828 AC_ARG_ENABLE([maintainer-mode], |
| 829 [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], |
| 830 am_maintainer_other[ make rules and dependencies not useful |
| 831 (and sometimes confusing) to the casual installer])], |
| 832 [USE_MAINTAINER_MODE=$enableval], |
| 833 [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) |
| 834 AC_MSG_RESULT([$USE_MAINTAINER_MODE]) |
| 835 AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) |
| 836 MAINT=$MAINTAINER_MODE_TRUE |
| 837 AC_SUBST([MAINT])dnl |
| 838 ] |
| 839 ) |
| 840 |
| 841 # Check to see how 'make' treats includes. -*- Autoconf -*- |
| 842 |
| 843 # Copyright (C) 2001-2013 Free Software Foundation, Inc. |
| 844 # |
| 845 # This file is free software; the Free Software Foundation |
| 846 # gives unlimited permission to copy and/or distribute it, |
| 869 # with or without modifications, as long as this notice is preserved. | 847 # with or without modifications, as long as this notice is preserved. |
| 870 | 848 |
| 871 # AM_MAKE_INCLUDE() | 849 # AM_MAKE_INCLUDE() |
| 872 # ----------------- | 850 # ----------------- |
| 873 # Check to see how make treats includes. | 851 # Check to see how make treats includes. |
| 874 AC_DEFUN([AM_MAKE_INCLUDE], | 852 AC_DEFUN([AM_MAKE_INCLUDE], |
| 875 [am_make=${MAKE-make} | 853 [am_make=${MAKE-make} |
| 876 cat > confinc << 'END' | 854 cat > confinc << 'END' |
| 877 am__doit: | 855 am__doit: |
| 878 @echo this is the am__doit target | 856 @echo this is the am__doit target |
| (...skipping 26 matching lines...) Expand all Loading... |
| 905 esac | 883 esac |
| 906 fi | 884 fi |
| 907 AC_SUBST([am__include]) | 885 AC_SUBST([am__include]) |
| 908 AC_SUBST([am__quote]) | 886 AC_SUBST([am__quote]) |
| 909 AC_MSG_RESULT([$_am_result]) | 887 AC_MSG_RESULT([$_am_result]) |
| 910 rm -f confinc confmf | 888 rm -f confinc confmf |
| 911 ]) | 889 ]) |
| 912 | 890 |
| 913 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- | 891 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- |
| 914 | 892 |
| 915 # Copyright (C) 1997-2014 Free Software Foundation, Inc. | 893 # Copyright (C) 1997-2013 Free Software Foundation, Inc. |
| 916 # | 894 # |
| 917 # This file is free software; the Free Software Foundation | 895 # This file is free software; the Free Software Foundation |
| 918 # gives unlimited permission to copy and/or distribute it, | 896 # gives unlimited permission to copy and/or distribute it, |
| 919 # with or without modifications, as long as this notice is preserved. | 897 # with or without modifications, as long as this notice is preserved. |
| 920 | 898 |
| 921 # AM_MISSING_PROG(NAME, PROGRAM) | 899 # AM_MISSING_PROG(NAME, PROGRAM) |
| 922 # ------------------------------ | 900 # ------------------------------ |
| 923 AC_DEFUN([AM_MISSING_PROG], | 901 AC_DEFUN([AM_MISSING_PROG], |
| 924 [AC_REQUIRE([AM_MISSING_HAS_RUN]) | 902 [AC_REQUIRE([AM_MISSING_HAS_RUN]) |
| 925 $1=${$1-"${am_missing_run}$2"} | 903 $1=${$1-"${am_missing_run}$2"} |
| (...skipping 18 matching lines...) Expand all Loading... |
| 944 if eval "$MISSING --is-lightweight"; then | 922 if eval "$MISSING --is-lightweight"; then |
| 945 am_missing_run="$MISSING " | 923 am_missing_run="$MISSING " |
| 946 else | 924 else |
| 947 am_missing_run= | 925 am_missing_run= |
| 948 AC_MSG_WARN(['missing' script is too old or missing]) | 926 AC_MSG_WARN(['missing' script is too old or missing]) |
| 949 fi | 927 fi |
| 950 ]) | 928 ]) |
| 951 | 929 |
| 952 # Helper functions for option handling. -*- Autoconf -*- | 930 # Helper functions for option handling. -*- Autoconf -*- |
| 953 | 931 |
| 954 # Copyright (C) 2001-2014 Free Software Foundation, Inc. | 932 # Copyright (C) 2001-2013 Free Software Foundation, Inc. |
| 955 # | 933 # |
| 956 # This file is free software; the Free Software Foundation | 934 # This file is free software; the Free Software Foundation |
| 957 # gives unlimited permission to copy and/or distribute it, | 935 # gives unlimited permission to copy and/or distribute it, |
| 958 # with or without modifications, as long as this notice is preserved. | 936 # with or without modifications, as long as this notice is preserved. |
| 959 | 937 |
| 960 # _AM_MANGLE_OPTION(NAME) | 938 # _AM_MANGLE_OPTION(NAME) |
| 961 # ----------------------- | 939 # ----------------------- |
| 962 AC_DEFUN([_AM_MANGLE_OPTION], | 940 AC_DEFUN([_AM_MANGLE_OPTION], |
| 963 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) | 941 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) |
| 964 | 942 |
| 965 # _AM_SET_OPTION(NAME) | 943 # _AM_SET_OPTION(NAME) |
| 966 # -------------------- | 944 # -------------------- |
| 967 # Set option NAME. Presently that only means defining a flag for this option. | 945 # Set option NAME. Presently that only means defining a flag for this option. |
| 968 AC_DEFUN([_AM_SET_OPTION], | 946 AC_DEFUN([_AM_SET_OPTION], |
| 969 [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) | 947 [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) |
| 970 | 948 |
| 971 # _AM_SET_OPTIONS(OPTIONS) | 949 # _AM_SET_OPTIONS(OPTIONS) |
| 972 # ------------------------ | 950 # ------------------------ |
| 973 # OPTIONS is a space-separated list of Automake options. | 951 # OPTIONS is a space-separated list of Automake options. |
| 974 AC_DEFUN([_AM_SET_OPTIONS], | 952 AC_DEFUN([_AM_SET_OPTIONS], |
| 975 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) | 953 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) |
| 976 | 954 |
| 977 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) | 955 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) |
| 978 # ------------------------------------------- | 956 # ------------------------------------------- |
| 979 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. | 957 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. |
| 980 AC_DEFUN([_AM_IF_OPTION], | 958 AC_DEFUN([_AM_IF_OPTION], |
| 981 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) | 959 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) |
| 982 | 960 |
| 983 # Copyright (C) 1999-2014 Free Software Foundation, Inc. | 961 # Copyright (C) 1999-2013 Free Software Foundation, Inc. |
| 984 # | 962 # |
| 985 # This file is free software; the Free Software Foundation | 963 # This file is free software; the Free Software Foundation |
| 986 # gives unlimited permission to copy and/or distribute it, | 964 # gives unlimited permission to copy and/or distribute it, |
| 987 # with or without modifications, as long as this notice is preserved. | 965 # with or without modifications, as long as this notice is preserved. |
| 988 | 966 |
| 989 # _AM_PROG_CC_C_O | 967 # _AM_PROG_CC_C_O |
| 990 # --------------- | 968 # --------------- |
| 991 # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC | 969 # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC |
| 992 # to automatically call this. | 970 # to automatically call this. |
| 993 AC_DEFUN([_AM_PROG_CC_C_O], | 971 AC_DEFUN([_AM_PROG_CC_C_O], |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1020 # But if we don't then we get into trouble of one sort or another. | 998 # But if we don't then we get into trouble of one sort or another. |
| 1021 # A longer-term fix would be to have automake use am__CC in this case, | 999 # A longer-term fix would be to have automake use am__CC in this case, |
| 1022 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" | 1000 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" |
| 1023 CC="$am_aux_dir/compile $CC" | 1001 CC="$am_aux_dir/compile $CC" |
| 1024 fi | 1002 fi |
| 1025 AC_LANG_POP([C])]) | 1003 AC_LANG_POP([C])]) |
| 1026 | 1004 |
| 1027 # For backward compatibility. | 1005 # For backward compatibility. |
| 1028 AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) | 1006 AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) |
| 1029 | 1007 |
| 1030 # Copyright (C) 2001-2014 Free Software Foundation, Inc. | 1008 # Copyright (C) 2001-2013 Free Software Foundation, Inc. |
| 1031 # | 1009 # |
| 1032 # This file is free software; the Free Software Foundation | 1010 # This file is free software; the Free Software Foundation |
| 1033 # gives unlimited permission to copy and/or distribute it, | 1011 # gives unlimited permission to copy and/or distribute it, |
| 1034 # with or without modifications, as long as this notice is preserved. | 1012 # with or without modifications, as long as this notice is preserved. |
| 1035 | 1013 |
| 1036 # AM_RUN_LOG(COMMAND) | 1014 # AM_RUN_LOG(COMMAND) |
| 1037 # ------------------- | 1015 # ------------------- |
| 1038 # Run COMMAND, save the exit status in ac_status, and log it. | 1016 # Run COMMAND, save the exit status in ac_status, and log it. |
| 1039 # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) | 1017 # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) |
| 1040 AC_DEFUN([AM_RUN_LOG], | 1018 AC_DEFUN([AM_RUN_LOG], |
| 1041 [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD | 1019 [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD |
| 1042 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD | 1020 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD |
| 1043 ac_status=$? | 1021 ac_status=$? |
| 1044 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD | 1022 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD |
| 1045 (exit $ac_status); }]) | 1023 (exit $ac_status); }]) |
| 1046 | 1024 |
| 1047 # Check to make sure that the build environment is sane. -*- Autoconf -*- | 1025 # Check to make sure that the build environment is sane. -*- Autoconf -*- |
| 1048 | 1026 |
| 1049 # Copyright (C) 1996-2014 Free Software Foundation, Inc. | 1027 # Copyright (C) 1996-2013 Free Software Foundation, Inc. |
| 1050 # | 1028 # |
| 1051 # This file is free software; the Free Software Foundation | 1029 # This file is free software; the Free Software Foundation |
| 1052 # gives unlimited permission to copy and/or distribute it, | 1030 # gives unlimited permission to copy and/or distribute it, |
| 1053 # with or without modifications, as long as this notice is preserved. | 1031 # with or without modifications, as long as this notice is preserved. |
| 1054 | 1032 |
| 1055 # AM_SANITY_CHECK | 1033 # AM_SANITY_CHECK |
| 1056 # --------------- | 1034 # --------------- |
| 1057 AC_DEFUN([AM_SANITY_CHECK], | 1035 AC_DEFUN([AM_SANITY_CHECK], |
| 1058 [AC_MSG_CHECKING([whether build environment is sane]) | 1036 [AC_MSG_CHECKING([whether build environment is sane]) |
| 1059 # Reject unsafe characters in $srcdir or the absolute working directory | 1037 # Reject unsafe characters in $srcdir or the absolute working directory |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1120 AC_CONFIG_COMMANDS_PRE( | 1098 AC_CONFIG_COMMANDS_PRE( |
| 1121 [AC_MSG_CHECKING([that generated files are newer than configure]) | 1099 [AC_MSG_CHECKING([that generated files are newer than configure]) |
| 1122 if test -n "$am_sleep_pid"; then | 1100 if test -n "$am_sleep_pid"; then |
| 1123 # Hide warnings about reused PIDs. | 1101 # Hide warnings about reused PIDs. |
| 1124 wait $am_sleep_pid 2>/dev/null | 1102 wait $am_sleep_pid 2>/dev/null |
| 1125 fi | 1103 fi |
| 1126 AC_MSG_RESULT([done])]) | 1104 AC_MSG_RESULT([done])]) |
| 1127 rm -f conftest.file | 1105 rm -f conftest.file |
| 1128 ]) | 1106 ]) |
| 1129 | 1107 |
| 1130 # Copyright (C) 2009-2014 Free Software Foundation, Inc. | 1108 # Copyright (C) 2009-2013 Free Software Foundation, Inc. |
| 1131 # | 1109 # |
| 1132 # This file is free software; the Free Software Foundation | 1110 # This file is free software; the Free Software Foundation |
| 1133 # gives unlimited permission to copy and/or distribute it, | 1111 # gives unlimited permission to copy and/or distribute it, |
| 1134 # with or without modifications, as long as this notice is preserved. | 1112 # with or without modifications, as long as this notice is preserved. |
| 1135 | 1113 |
| 1136 # AM_SILENT_RULES([DEFAULT]) | 1114 # AM_SILENT_RULES([DEFAULT]) |
| 1137 # -------------------------- | 1115 # -------------------------- |
| 1138 # Enable less verbose build rules; with the default set to DEFAULT | 1116 # Enable less verbose build rules; with the default set to DEFAULT |
| 1139 # ("yes" being less verbose, "no" or empty being verbose). | 1117 # ("yes" being less verbose, "no" or empty being verbose). |
| 1140 AC_DEFUN([AM_SILENT_RULES], | 1118 AC_DEFUN([AM_SILENT_RULES], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1180 AC_SUBST([AM_V])dnl | 1158 AC_SUBST([AM_V])dnl |
| 1181 AM_SUBST_NOTMAKE([AM_V])dnl | 1159 AM_SUBST_NOTMAKE([AM_V])dnl |
| 1182 AC_SUBST([AM_DEFAULT_V])dnl | 1160 AC_SUBST([AM_DEFAULT_V])dnl |
| 1183 AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl | 1161 AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl |
| 1184 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl | 1162 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl |
| 1185 AM_BACKSLASH='\' | 1163 AM_BACKSLASH='\' |
| 1186 AC_SUBST([AM_BACKSLASH])dnl | 1164 AC_SUBST([AM_BACKSLASH])dnl |
| 1187 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl | 1165 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl |
| 1188 ]) | 1166 ]) |
| 1189 | 1167 |
| 1190 # Copyright (C) 2001-2014 Free Software Foundation, Inc. | 1168 # Copyright (C) 2001-2013 Free Software Foundation, Inc. |
| 1191 # | 1169 # |
| 1192 # This file is free software; the Free Software Foundation | 1170 # This file is free software; the Free Software Foundation |
| 1193 # gives unlimited permission to copy and/or distribute it, | 1171 # gives unlimited permission to copy and/or distribute it, |
| 1194 # with or without modifications, as long as this notice is preserved. | 1172 # with or without modifications, as long as this notice is preserved. |
| 1195 | 1173 |
| 1196 # AM_PROG_INSTALL_STRIP | 1174 # AM_PROG_INSTALL_STRIP |
| 1197 # --------------------- | 1175 # --------------------- |
| 1198 # One issue with vendor 'install' (even GNU) is that you can't | 1176 # One issue with vendor 'install' (even GNU) is that you can't |
| 1199 # specify the program used to strip binaries. This is especially | 1177 # specify the program used to strip binaries. This is especially |
| 1200 # annoying in cross-compiling environments, where the build's strip | 1178 # annoying in cross-compiling environments, where the build's strip |
| 1201 # is unlikely to handle the host's binaries. | 1179 # is unlikely to handle the host's binaries. |
| 1202 # Fortunately install-sh will honor a STRIPPROG variable, so we | 1180 # Fortunately install-sh will honor a STRIPPROG variable, so we |
| 1203 # always use install-sh in "make install-strip", and initialize | 1181 # always use install-sh in "make install-strip", and initialize |
| 1204 # STRIPPROG with the value of the STRIP variable (set by the user). | 1182 # STRIPPROG with the value of the STRIP variable (set by the user). |
| 1205 AC_DEFUN([AM_PROG_INSTALL_STRIP], | 1183 AC_DEFUN([AM_PROG_INSTALL_STRIP], |
| 1206 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl | 1184 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl |
| 1207 # Installed binaries are usually stripped using 'strip' when the user | 1185 # Installed binaries are usually stripped using 'strip' when the user |
| 1208 # run "make install-strip". However 'strip' might not be the right | 1186 # run "make install-strip". However 'strip' might not be the right |
| 1209 # tool to use in cross-compilation environments, therefore Automake | 1187 # tool to use in cross-compilation environments, therefore Automake |
| 1210 # will honor the 'STRIP' environment variable to overrule this program. | 1188 # will honor the 'STRIP' environment variable to overrule this program. |
| 1211 dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. | 1189 dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. |
| 1212 if test "$cross_compiling" != no; then | 1190 if test "$cross_compiling" != no; then |
| 1213 AC_CHECK_TOOL([STRIP], [strip], :) | 1191 AC_CHECK_TOOL([STRIP], [strip], :) |
| 1214 fi | 1192 fi |
| 1215 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" | 1193 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" |
| 1216 AC_SUBST([INSTALL_STRIP_PROGRAM])]) | 1194 AC_SUBST([INSTALL_STRIP_PROGRAM])]) |
| 1217 | 1195 |
| 1218 # Copyright (C) 2006-2014 Free Software Foundation, Inc. | 1196 # Copyright (C) 2006-2013 Free Software Foundation, Inc. |
| 1219 # | 1197 # |
| 1220 # This file is free software; the Free Software Foundation | 1198 # This file is free software; the Free Software Foundation |
| 1221 # gives unlimited permission to copy and/or distribute it, | 1199 # gives unlimited permission to copy and/or distribute it, |
| 1222 # with or without modifications, as long as this notice is preserved. | 1200 # with or without modifications, as long as this notice is preserved. |
| 1223 | 1201 |
| 1224 # _AM_SUBST_NOTMAKE(VARIABLE) | 1202 # _AM_SUBST_NOTMAKE(VARIABLE) |
| 1225 # --------------------------- | 1203 # --------------------------- |
| 1226 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. | 1204 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. |
| 1227 # This macro is traced by Automake. | 1205 # This macro is traced by Automake. |
| 1228 AC_DEFUN([_AM_SUBST_NOTMAKE]) | 1206 AC_DEFUN([_AM_SUBST_NOTMAKE]) |
| 1229 | 1207 |
| 1230 # AM_SUBST_NOTMAKE(VARIABLE) | 1208 # AM_SUBST_NOTMAKE(VARIABLE) |
| 1231 # -------------------------- | 1209 # -------------------------- |
| 1232 # Public sister of _AM_SUBST_NOTMAKE. | 1210 # Public sister of _AM_SUBST_NOTMAKE. |
| 1233 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) | 1211 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) |
| 1234 | 1212 |
| 1235 # Check how to create a tarball. -*- Autoconf -*- | 1213 # Check how to create a tarball. -*- Autoconf -*- |
| 1236 | 1214 |
| 1237 # Copyright (C) 2004-2014 Free Software Foundation, Inc. | 1215 # Copyright (C) 2004-2013 Free Software Foundation, Inc. |
| 1238 # | 1216 # |
| 1239 # This file is free software; the Free Software Foundation | 1217 # This file is free software; the Free Software Foundation |
| 1240 # gives unlimited permission to copy and/or distribute it, | 1218 # gives unlimited permission to copy and/or distribute it, |
| 1241 # with or without modifications, as long as this notice is preserved. | 1219 # with or without modifications, as long as this notice is preserved. |
| 1242 | 1220 |
| 1243 # _AM_PROG_TAR(FORMAT) | 1221 # _AM_PROG_TAR(FORMAT) |
| 1244 # -------------------- | 1222 # -------------------- |
| 1245 # Check how to create a tarball in format FORMAT. | 1223 # Check how to create a tarball in format FORMAT. |
| 1246 # FORMAT should be one of 'v7', 'ustar', or 'pax'. | 1224 # FORMAT should be one of 'v7', 'ustar', or 'pax'. |
| 1247 # | 1225 # |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1364 AC_SUBST([am__tar]) | 1342 AC_SUBST([am__tar]) |
| 1365 AC_SUBST([am__untar]) | 1343 AC_SUBST([am__untar]) |
| 1366 ]) # _AM_PROG_TAR | 1344 ]) # _AM_PROG_TAR |
| 1367 | 1345 |
| 1368 m4_include([m4/libtool.m4]) | 1346 m4_include([m4/libtool.m4]) |
| 1369 m4_include([m4/ltoptions.m4]) | 1347 m4_include([m4/ltoptions.m4]) |
| 1370 m4_include([m4/ltsugar.m4]) | 1348 m4_include([m4/ltsugar.m4]) |
| 1371 m4_include([m4/ltversion.m4]) | 1349 m4_include([m4/ltversion.m4]) |
| 1372 m4_include([m4/lt~obsolete.m4]) | 1350 m4_include([m4/lt~obsolete.m4]) |
| 1373 m4_include([acinclude.m4]) | 1351 m4_include([acinclude.m4]) |
| OLD | NEW |