1999-01-19 Fernando Nasser <fnasser@totem.to.cygnus.com>
[deliverable/binutils-gdb.git] / gdb / configure.in
index 0ccc4bc802bf6ac06fd46bbac273dd8146581b60..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,13 +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_ISC_POSIX
+AM_PROG_CC_STDC
 
 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
 AC_CANONICAL_SYSTEM
@@ -113,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)
@@ -248,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
@@ -259,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 ;;
@@ -272,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
@@ -314,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 ;;
@@ -467,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"
@@ -479,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)
@@ -510,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*)
        ;;
@@ -519,12 +592,12 @@ 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=
@@ -536,9 +609,10 @@ 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
 
@@ -565,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
                ;;
           *)
@@ -613,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
@@ -637,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 ;;
@@ -651,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"
@@ -662,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)
@@ -825,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.
This page took 0.026429 seconds and 4 git commands to generate.