| OLD | NEW |
| 1 dnl written by Rob Savoye <rob@cygnus.com> for Cygnus Support | 1 dnl written by Rob Savoye <rob@cygnus.com> for Cygnus Support |
| 2 dnl major rewriting for Tcl 7.5 by Don Libes <libes@nist.gov> | 2 dnl major rewriting for Tcl 7.5 by Don Libes <libes@nist.gov> |
| 3 | 3 |
| 4 sinclude(acx_configure_dir.m4) |
| 5 |
| 4 dnl gdb/configure.in uses BFD_NEED_DECLARATION, so get its definition. | 6 dnl gdb/configure.in uses BFD_NEED_DECLARATION, so get its definition. |
| 5 sinclude(../bfd/bfd.m4) | 7 sinclude(../bfd/bfd.m4) |
| 6 | 8 |
| 7 dnl This gets the standard macros | 9 dnl This gets the standard macros |
| 8 sinclude(../config/acinclude.m4) | 10 sinclude(../config/acinclude.m4) |
| 9 | 11 |
| 10 dnl This gets autoconf bugfixes | 12 dnl This gets autoconf bugfixes |
| 11 sinclude(../config/override.m4) | 13 sinclude(../config/override.m4) |
| 12 | 14 |
| 13 sinclude(../config/gettext-sister.m4) | 15 sinclude(../config/gettext-sister.m4) |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 dnl VARIABLE_RELOCATABLE to 1; otherwise it is defined as 0. | 441 dnl VARIABLE_RELOCATABLE to 1; otherwise it is defined as 0. |
| 440 dnl DEFAULT is the default value, which is used if the user | 442 dnl DEFAULT is the default value, which is used if the user |
| 441 dnl does not specify the argument. | 443 dnl does not specify the argument. |
| 442 AC_DEFUN([GDB_AC_WITH_DIR], [ | 444 AC_DEFUN([GDB_AC_WITH_DIR], [ |
| 443 AC_ARG_WITH([$2], AS_HELP_STRING([--with-][$2][=PATH], [$3]), [ | 445 AC_ARG_WITH([$2], AS_HELP_STRING([--with-][$2][=PATH], [$3]), [ |
| 444 [$1]=$withval], [[$1]=[$4]]) | 446 [$1]=$withval], [[$1]=[$4]]) |
| 445 AC_DEFINE_DIR([$1], [$1], [$3]) | 447 AC_DEFINE_DIR([$1], [$1], [$3]) |
| 446 AC_SUBST([$1]) | 448 AC_SUBST([$1]) |
| 447 GDB_AC_DEFINE_RELOCATABLE([$1], [$2], ${ac_define_dir}) | 449 GDB_AC_DEFINE_RELOCATABLE([$1], [$2], ${ac_define_dir}) |
| 448 ]) | 450 ]) |
| OLD | NEW |