diff options
author | Jim Blandy <jimb@codesourcery.com> | 2005-01-19 22:04:37 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2005-01-19 22:04:37 +0000 |
commit | 065a1afc0492b6d06eb1e890c8c27d04dfc42639 (patch) | |
tree | d678b97d8f9be954ee1024bef88ce7e2850f729c /gdb/configure.ac | |
parent | 1c44323fc0bf1f27b4754ef8e7eba700d0ab89eb (diff) | |
download | gdb-065a1afc0492b6d06eb1e890c8c27d04dfc42639.zip gdb-065a1afc0492b6d06eb1e890c8c27d04dfc42639.tar.gz gdb-065a1afc0492b6d06eb1e890c8c27d04dfc42639.tar.bz2 |
* configure.tgt: Set build_rdi_share to "yes" on those targets
that use that debugging protocol.
Set build_nlm to yes to build NLM stub for Netware targets.
* configure.ac: If build_rdi_share is "yes", then configure the
rdi-share subdirectory.
If build_nlm is "yes", the configure the "nlm" subdirectory.
* configure: Regenerated.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index 7794d3b..c3e16cc 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1508,6 +1508,17 @@ if test "x$target" = "x$host"; then fi fi +# We build rdi-share on ARM-based targets, as instructed by configure.tgt. +if test "x$build_rdi_share" = xyes; then + AC_CONFIG_SUBDIRS(rdi-share) +fi + +# We configure the nlm subdirectory on netware targets, as instructed +# by configure.tgt. +if test "x$build_nlm" = xyes; then + AC_CONFIG_SUBDIRS(nlm) +fi + # If hostfile (XM_FILE) and/or targetfile (DEPRECATED_TM_FILE) and/or # nativefile (NAT_FILE) is not set in config/*/*.m[ht] files, we link # to an empty version. |