2 # Process this file with autoconf to produce a configure script.
4 # Copyright 2002, 2003, 2004, 2005
5 # Free Software Foundation, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
29 # Add HP-specific tests when appropriate.
32 AC_CONFIG_SUBDIRS(gdb.hp) ;;
37 [ --with-stabs arrange to use stabs instead of host debug format],,
38 [# We enable stabs tests by default on selected targets.
55 # Add stabs tests when appropriate.
56 if test $with_stabs = yes; then
57 AC_CONFIG_SUBDIRS(gdb.stabs)
62 [ --enable-gtk enable gdbtk graphical user interface (GUI)],,
63 [if test -d $srcdir/gdb.gdbtk; then
68 # We unconditionally disable gdbtk tests on selected platforms.
74 # Add gdbtk tests when appropriate.
75 if test $enable_gdbtk = yes; then
76 AC_CONFIG_SUBDIRS(gdb.gdbtk)
79 # Enable shared libraries.
81 [ --enable-shared build shared libraries [deault=yes]],,
84 # If we have shared libraries, try to set RPATH_ENVVAR reasonably,
85 # such that we can find the shared libraries in the build tree.
86 if test $enable_shared = no; then
87 # The variable `RPATH_ENVVAR' itself is not likely to be used on any
89 RPATH_ENVVAR=RPATH_ENVVAR
91 # The variable `LD_LIBRARY_PATH' is used on most platforms.
92 RPATH_ENVVAR=LD_LIBRARY_PATH
93 # The following exceptions are taken from Libtool 1.4.3.
96 if test $host_cpu != ia64; then
100 RPATH_ENVVAR=DYLD_LIBRARY_PATH ;;
102 RPATH_ENVVAR=SHLIB_PATH ;;
105 AC_SUBST(RPATH_ENVVAR)
107 AC_CHECK_HEADERS(pthread.h)
111 AC_OUTPUT([Makefile \
113 gdb.arch/Makefile gdb.asm/Makefile gdb.base/Makefile \
114 gdb.cp/Makefile gdb.disasm/Makefile gdb.dwarf2/Makefile \
115 gdb.fortran/Makefile gdb.server/Makefile \
116 gdb.java/Makefile gdb.mi/Makefile \
117 gdb.objc/Makefile gdb.threads/Makefile gdb.trace/Makefile])