1999-01-19 Fernando Nasser <fnasser@totem.to.cygnus.com>
[deliverable/binutils-gdb.git] / gdb / configure.in
index bf4bf20c26671a161a035a883c2c6526d67b335f..38363e0aeb07f9c013d9c52c24b13c7e386f204d 100644 (file)
@@ -1,5 +1,5 @@
 dnl Autoconf configure script for GDB, the GNU debugger.
-dnl Copyright 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+dnl Copyright 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
 dnl
 dnl This file is part of GDB.
 dnl 
@@ -19,17 +19,14 @@ dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 dnl Process this file with autoconf to produce a configure script.
 
-AC_PREREQ(2.5)dnl
+AC_PREREQ(2.12.1)dnl
 AC_INIT(main.c)
 AC_CONFIG_HEADER(config.h:config.in)
 
 AC_PROG_CC
 AC_AIX
-AC_MINIX
 AC_ISC_POSIX
-
-DLLTOOL=${DLLTOOL-dlltool}
-AC_SUBST(DLLTOOL)
+AM_PROG_CC_STDC
 
 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
 AC_CANONICAL_SYSTEM
@@ -61,25 +58,23 @@ AC_PROG_INSTALL
 AC_CHECK_TOOL(AR, ar)
 AC_CHECK_TOOL(RANLIB, ranlib, :)
 AC_PROG_YACC
-AC_PROG_AWK
 
 AC_ARG_PROGRAM
 
 AC_TYPE_SIGNAL
 
 AC_HEADER_STDC
-AC_CHECK_HEADERS(ctype.h curses.h endian.h libintl.h limits.h link.h \
+AC_CHECK_HEADERS(ctype.h curses.h endian.h libintl.h link.h \
                  memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \
-                 string.h strings.h sys/procfs.h sys/ptrace.h sys/reg.h \
+                 string.h sys/procfs.h sys/ptrace.h sys/reg.h \
                  term.h termio.h termios.h unistd.h wait.h sys/wait.h \
-                 wchar.h wctype.h)
+                 wchar.h wctype.h asm/debugreg.h)
 
 AC_HEADER_STAT
 
 AC_C_CONST
 
-AC_CHECK_FUNCS(setpgid sbrk select poll sigaction isascii bzero bcopy \
-               memcpy btowc)
+AC_CHECK_FUNCS(setpgid sbrk sigaction isascii bzero bcopy btowc)
 AC_FUNC_ALLOCA
 
 BFD_NEED_DECLARATION(malloc)
@@ -119,6 +114,28 @@ fi
 dnl See if host has libm.  This is usually needed by simulators.
 AC_CHECK_LIB(m, main)
 
+dnl Solaris puts wctype in /usr/lib/libw.a before Solaris 2.6.
+dnl
+dnl A bug in GNU ld 2.9.1 causes a problem if we link in -lw 
+dnl under Solaris 2.6 because it is some funky empty library.
+dnl So only link in libw if we have to.
+AC_CHECK_LIB(c, wctype,: ,AC_CHECK_LIB(w, wctype))
+
+dnl Figure out which term library to use.
+TERM_LIB=
+AC_CHECK_LIB(ncurses, tgetent, TERM_LIB=-lncurses,
+  AC_CHECK_LIB(termlib, tgetent, TERM_LIB=-ltermlib,
+    AC_CHECK_LIB(termcap, tgetent, TERM_LIB=-ltermcap,
+      AC_CHECK_LIB(curses, tgetent, TERM_LIB=-lcurses,
+        AC_CHECK_LIB(terminfo, tgetent, TERM_LIB=-lterminfo)))))
+
+if test "x$TERM_LIB" = x
+then
+  AC_MSG_ERROR(Could not find a term library, e.g. termcap or termlib!)
+fi
+
+AC_SUBST(TERM_LIB)
+
 dnl See if compiler supports "long long" type.
 
 AC_MSG_CHECKING(for long long support in compiler)
@@ -254,6 +271,21 @@ if test ${build} = ${host} -a ${host} = ${target} ; then
                CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
             fi
          fi
+        # Sun randomly tweaked the prototypes in <proc_service.h>
+        # at one point.
+        AC_MSG_CHECKING(if <proc_service.h> is old)
+        AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
+           AC_TRY_COMPILE([
+               #include <proc_service.h>
+               ps_err_e ps_pdwrite
+                   (struct ps_prochandle*, psaddr_t, const void*, size_t);
+           ],, gdb_cv_proc_service_is_old=no,
+               gdb_cv_proc_service_is_old=yes)
+        ])
+        AC_MSG_RESULT($gdb_cv_proc_service_is_old)
+        if test $gdb_cv_proc_service_is_old = yes; then
+           AC_DEFINE(PROC_SERVICE_IS_OLD)
+        fi
       else
          AC_MSG_RESULT(no)
       fi
@@ -265,8 +297,33 @@ fi
 dnl Handle optional features that can be enabled.
 ENABLE_CFLAGS=
 
+AC_ARG_ENABLE(tui,
+[  --enable-tui            Enable full-screen terminal user interface],
+[
+  case "${enable_tui}" in
+    yes | no) ;;
+    "")  enable_tui=yes ;;
+    *)
+      AC_MSG_ERROR(Bad value for --enable-tui: ${enableval})
+    ;;
+  esac
+])
+case ${enable_tui} in
+  "yes" )
+    AC_DEFINE(TUI)
+    BUILD_TUI=all-tui
+    TUI_LIBRARY=tui/libtui.a
+  ;;
+  * )
+    BUILD_TUI=
+    TUI_LIBRARY=
+  ;;
+esac
+AC_SUBST(BUILD_TUI)
+AC_SUBST(TUI_LIBRARY)
+
 AC_ARG_ENABLE(netrom,
-[  --enable-netrom ],
+[  --enable-netrom         Enable NetROM support],
 [case "${enableval}" in
 yes)   enable_netrom=yes ;;
 no)    enable_netrom=no ;;
@@ -278,17 +335,22 @@ if test "${enable_netrom}" = "yes"; then
         CONFIG_SRCS="${CONFIG_SRCS} remote-nrom.c"
 fi
 
-AC_ARG_ENABLE(warnings,
-[  --enable-build-warnings Enable compiler warnings if gcc is used],
-[case "${enableval}" in
-yes)   enable_build_warnings=yes ;;
-no)    enable_build_warnings=no ;;
-*)     AC_MSG_ERROR(bad value ${enableval} given for warnings options) ;;
-esac])
-
-if test "x$enable_build_warnings" = xyes -a "x$GCC" = xyes
+AC_ARG_ENABLE(build-warnings,
+[  --enable-build-warnings Enable build-time compiler warnings if gcc is used],
+[build_warnings="-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations"
+case "${enableval}" in
+  yes) ;;
+  no)  build_warnings="-w";;
+  ,*)   t=`echo "${enableval}" | sed -e "s/,/ /g"`
+        build_warnings="${build_warnings} ${t}";;
+  *,)   t=`echo "${enableval}" | sed -e "s/,/ /g"`
+        build_warnings="${t} ${build_warnings}";;
+  *)    build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
+esac],[build_warnings=""])dnl
+
+if test "x${build_warnings}" != x -a "x$GCC" = xyes
 then
-   WARN_CFLAGS="-Wall -Wstrict-prototypes -Wmissing-prototypes"
+   WARN_CFLAGS="${build_warnings}"
 else
    WARN_CFLAGS=""
 fi
@@ -320,7 +382,7 @@ fi
 # significant backward compatibility.
 
 AC_ARG_ENABLE(carp,
-[  --enable-carp        Configure alternative readaptive paradigm ],
+[  --enable-carp           Configure alternative readaptive paradigm ],
 [case "${enableval}" in
   yes) enable_carp=yes ;;
   no)  enable_carp=no ;;
@@ -360,9 +422,9 @@ do
     if test "x$targ" = "xall" ; then
         all_targets=true
     else
-       t_cpu=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+       t_cpu=`echo $targ    | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
        t_vendor=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
-       t_os=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+       t_os=`echo $targ     | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
        mt=`
 target=$targ
 target_cpu=$t_cpu
@@ -394,7 +456,7 @@ if test x${all_targets} = xfalse ; then
        ta="$ta ${arch}-tdep.o"
        # Special cases
        case "$arch" in
-       dvp)            ta="$ta mips-tdep.o dvp-tdep.o" ;;
+           dvp)  ta="$ta mips-tdep.o dvp-tdep.o" ;;
        esac
     done
 
@@ -402,8 +464,8 @@ if test x${all_targets} = xfalse ; then
     f=""
     for i in $ta ; do
        case " $f " in
-       *" $i "*) ;;
-       *) f="$f $i" ;;
+           *" $i "*) ;;
+           *) f="$f $i" ;;
        esac
     done
     ta="$f"
@@ -412,8 +474,8 @@ if test x${all_targets} = xfalse ; then
     f=""
     for i in $archdefs ; do
        case " $f " in
-       *" $i "*) ;;
-       *) f="$f $i" ;;
+           *" $i "*) ;;
+           *) f="$f $i" ;;
        esac
     done
     archdefs="$f"
@@ -473,8 +535,10 @@ if test "$FOUNDRY_LIB_BASE" != ""; then
     LIBIDE="${FOUNDRY_LIB_BASE}/lib/libide.a"
     IDE_DEPS="${FOUNDRY_LIB_BASE}/lib/libilu-Tk.a ${FOUNDRY_LIB_BASE}/lib/libilu-c.a ${FOUNDRY_LIB_BASE}/lib/libilu.a"
 else
+# end-sanitize-ide
     LIBGUI="../libgui/src/libgui.a"
     GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
+# start-sanitize-ide
     if test x$enable_ide = xyes; then
         IDE_CFLAGS_X="-I${srcdir}/../libidetcl/src -I${srcdir}/../libide/src -DIDE -I${srcdir}/../ilu/runtime/mainloop"
        IDE_X="-L../ilu/runtime/mainloop -lilu-Tk -L../ilu/runtime/c -lilu-c -L../ilu/runtime/kernel -lilu"
@@ -485,8 +549,11 @@ else
     LIBIDE="../libide/src/libide.a"
     IDE_DEPS="../ilu/runtime/mainloop/libilu-Tk.a ../ilu/runtime/c/libilu-c.a ../ilu/runtime/kernel/libilu.a"
 fi
+
+# end-sanitize-ide
 AC_SUBST(LIBGUI)
 AC_SUBST(GUI_CFLAGS_X)
+# start-sanitize-ide
 AC_SUBST(IDE_CFLAGS_X)
 AC_SUBST(IDE_X)
 AC_SUBST(LIBIDETCL)
@@ -516,7 +583,7 @@ AC_ARG_ENABLE(gdbtk,
        AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
 esac],
 [
-# Default is on for everything but go32 and cygwin32
+# Default is on for everything but go32 and Cygwin
 case "$host" in
     *go32* | *windows*)
        ;;
@@ -525,24 +592,27 @@ case "$host" in
     esac
 ])
 
-# In the cygwin32 environment, we need some additional flags.
-AC_CACHE_CHECK([for cygwin32], gdb_cv_os_cygwin32,
+# In the Cygwin environment, we need some additional flags.
+AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
 [AC_EGREP_CPP(lose, [
 #ifdef __CYGWIN32__
 lose
-#endif],[gdb_cv_os_cygwin32=yes],[gdb_cv_os_cygwin32=no])])
+#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
 
 WIN32LIBS=
 WIN32LDAPP=
 AC_SUBST(WIN32LIBS)
 AC_SUBST(WIN32LDAPP)
 
+DLLTOOL=${DLLTOOL-dlltool}
 WINDRES=${WINDRES-windres}
+AC_SUBST(DLLTOOL)
 AC_SUBST(WINDRES)
 
-if test x$gdb_cv_os_cygwin32 = xyes; then
+if test x$gdb_cv_os_cygwin = xyes; then
+    WIN32LIBS="-luser32"
     if test x$enable_ide = xyes; then
-       WIN32LIBS="-ladvapi32"
+       WIN32LIBS="$WIN32LIBS -ladvapi32"
     fi
 fi
 
@@ -569,7 +639,7 @@ if test "${enable_gdbtk}" = "yes"; then
           TIXVERSION=4.1.8.0
           . ${ac_cv_c_tclconfig}/tclConfig.sh
           case "${host}" in
-          *-*-cygwin32*)
+          *-*-cygwin*)
                tixdir=../tix/win/tcl8.0
                ;;
           *)
@@ -617,8 +687,8 @@ if test "${enable_gdbtk}" = "yes"; then
           GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
           CONFIG_OBS="${CONFIG_OBS} gdbtk.o gdbtk-cmds.o gdbtk-hooks.o"
 
-          if test x$gdb_cv_os_cygwin32 = xyes; then
-             WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32 -luser32"
+          if test x$gdb_cv_os_cygwin = xyes; then
+             WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
              WIN32LDAPP="-Wl,--subsystem,console"
              CONFIG_OBS="${CONFIG_OBS} gdbres.o"
           fi
@@ -641,10 +711,15 @@ AC_PATH_X
 AC_ARG_WITH(sim-gpu2,
 [  --with-sim-gpu2=DIR     Use GPU2 library under given DIR],
 [case "${target}" in
-  mips*-sky-*)
+  mips*-sky*-*)
     if test -d "${withval}"
     then
-      LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11 -lXext"
+      if test x${x_libraries} != x
+      then
+       LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11 -lXext -lm"
+      else
+       LIBS="${LIBS} -L${withval}/lib -lgpu2 -lX11 -lXext -lm"
+      fi
     else
       AC_MSG_WARN([Directory ${withval} does not exist.])
     fi ;;
@@ -655,7 +730,7 @@ esac])dnl
 AC_ARG_WITH(sim-funit,
 [  --with-sim-funit=DIR    Use target FP lib under given DIR],
 [case "${target}" in
-  mips*-sky-*)
+  mips*-sky*-*)
     if test -d "${withval}"
     then
       LIBS="${LIBS} -L${withval}/lib -lfunit"
@@ -666,9 +741,6 @@ AC_ARG_WITH(sim-funit,
 esac])dnl
 # end-sanitize-sky
 
-dnl Solaris puts wctype in /usr/lib/libw.a
-AC_CHECK_LIB(w, wctype, [LIBS="$LIBS -lw"])
-
 AC_SUBST(ENABLE_CFLAGS)
 
 AC_SUBST(CONFIG_OBS)
@@ -829,7 +901,7 @@ dnl Check for exe extension set on certain hosts (e.g. Win32)
 AM_EXEEXT
 
 AC_CONFIG_SUBDIRS($configdirs)
-AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
+AC_OUTPUT(Makefile tui/Makefile .gdbinit:gdbinit.in,
 [
 dnl Autoconf doesn't provide a mechanism for modifying definitions 
 dnl provided by makefile fragments.
@@ -859,4 +931,3 @@ nativefile=$nativefile
 ])
 
 exit 0
-
This page took 0.027523 seconds and 4 git commands to generate.