OLD | NEW |
1 dnl Process this file with autoconf to produce a configure script. | 1 dnl Process this file with autoconf to produce a configure script. |
2 dnl | 2 dnl |
3 | 3 |
4 AC_PREREQ(2.59) | 4 AC_PREREQ(2.59) |
5 AC_INIT | 5 AC_INIT |
6 AC_CONFIG_SRCDIR([libbfd.c]) | 6 AC_CONFIG_SRCDIR([libbfd.c]) |
7 | 7 |
8 AC_CANONICAL_TARGET | 8 AC_CANONICAL_TARGET |
9 AC_ISC_POSIX | 9 AC_ISC_POSIX |
10 | 10 |
11 AM_INIT_AUTOMAKE(bfd, 2.20) | 11 AM_INIT_AUTOMAKE(bfd, 2.20.1) |
12 | 12 |
13 dnl These must be called before LT_INIT, because it may want | 13 dnl These must be called before LT_INIT, because it may want |
14 dnl to call AC_CHECK_PROG. | 14 dnl to call AC_CHECK_PROG. |
15 AC_CHECK_TOOL(AR, ar) | 15 AC_CHECK_TOOL(AR, ar) |
16 AC_CHECK_TOOL(RANLIB, ranlib, :) | 16 AC_CHECK_TOOL(RANLIB, ranlib, :) |
17 | 17 |
18 dnl Default to a non shared library. This may be overridden by the | 18 dnl Default to a non shared library. This may be overridden by the |
19 dnl configure option --enable-shared. | 19 dnl configure option --enable-shared. |
20 AC_DISABLE_SHARED | 20 AC_DISABLE_SHARED |
21 | 21 |
(...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1108 po/Makefile.in > po/Makefile]],[[]]) | 1108 po/Makefile.in > po/Makefile]],[[]]) |
1109 | 1109 |
1110 dnl Required by html, pdf, install-pdf and install-html | 1110 dnl Required by html, pdf, install-pdf and install-html |
1111 AC_SUBST(datarootdir) | 1111 AC_SUBST(datarootdir) |
1112 AC_SUBST(docdir) | 1112 AC_SUBST(docdir) |
1113 AC_SUBST(htmldir) | 1113 AC_SUBST(htmldir) |
1114 AC_SUBST(pdfdir) | 1114 AC_SUBST(pdfdir) |
1115 | 1115 |
1116 AC_OUTPUT | 1116 AC_OUTPUT |
1117 | 1117 |
OLD | NEW |