1998-08-18 Jason Molenda (jsm@bugshack.cygnus.com)
[deliverable/binutils-gdb.git] / gdb / configure.in
index 16cda8677cf935368b6b57055cad43892b6b424e..db975545d0f5c6ac31a60b05f23a00028e560d73 100644 (file)
@@ -34,6 +34,11 @@ AC_SUBST(DLLTOOL)
 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
 AC_CANONICAL_SYSTEM
 
+dnl gdb doesn't use gettext, but bfd does.  We call this to ensure we
+dnl link with the correct libraries.
+ALL_LINGUAS=
+CY_GNU_GETTEXT
+
 dnl List of object files added by configure.
 
 CONFIG_OBS=
@@ -63,12 +68,18 @@ AC_ARG_PROGRAM
 AC_TYPE_SIGNAL
 
 AC_HEADER_STDC
-AC_CHECK_HEADERS(limits.h memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h stdlib.h sys/procfs.h link.h endian.h objlist.h)
+AC_CHECK_HEADERS(ctype.h curses.h endian.h libintl.h limits.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 \
+                 term.h termio.h termios.h unistd.h wait.h sys/wait.h \
+                 wchar.h wctype.h)
+
 AC_HEADER_STAT
 
 AC_C_CONST
 
-AC_CHECK_FUNCS(setpgid sbrk select poll sigaction)
+AC_CHECK_FUNCS(setpgid sbrk select poll sigaction isascii bzero bcopy memcpy btowc)
+AC_FUNC_ALLOCA
 
 # If we are configured native on GNU/Linux, work around problems with sys/procfs.h
 if test "${target}" = "${host}"; then
@@ -195,6 +206,8 @@ BFD_NEED_DECLARATION(malloc)
 BFD_NEED_DECLARATION(realloc)
 BFD_NEED_DECLARATION(free)
 
+BFD_NEED_DECLARATION(strerror)
+
 dnl See if thread_db library is around for Solaris thread debugging.  Note that
 dnl we must explicitly test for version 1 of the library because version 0
 dnl (present on Solaris 2.4 or earlier) doesn't have the same API.
@@ -295,6 +308,50 @@ else
 fi
 AC_SUBST(ENABLE_IDE)
 
+AC_ARG_WITH(foundry-libs,
+[  --with-foundry-libs=directory       use the Foundry SDK in directory],
+[FOUNDRY_LIB_BASE=${withval}])
+AC_SUBST(FOUNDRY_LIB_BASE)
+
+#
+# This is the Foundry SDK
+#
+# These variables are used to determine where the Foundry libs and
+# header files are located.
+#
+if test "$FOUNDRY_LIB_BASE" != ""; then
+    LIBGUI="${FOUNDRY_LIB_BASE}/lib/libgui.a"
+    GUI_CFLAGS_X="-I${FOUNDRY_LIB_BASE}/include"
+    if test x$enable_ide = xyes; then
+        IDE_CFLAGS_X="-I${FOUNDRY_LIB_BASE}/include -DIDE"
+       IDE_X="-L${FOUNDRY_LIB_BASE}/lib -lilu-Tk -lilu-c -lilu"
+    else
+        IDE_CFLAGS_X="-I${FOUNDRY_LIB_BASE}/include"
+    fi
+    LIBIDETCL="${FOUNDRY_LIB_BASE}/lib/libidetcl.a"
+    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
+    LIBGUI="../libgui/src/libgui.a"
+    GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
+    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"
+    else
+        IDE_CFLAGS_X="-I${srcdir}/../libidetcl/src -I${srcdir}/../libide/src"
+    fi
+    LIBIDETCL="../libidetcl/src/libidetcl.a"
+    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
+AC_SUBST(LIBGUI)
+AC_SUBST(GUI_CFLAGS_X)
+AC_SUBST(IDE_CFLAGS_X)
+AC_SUBST(IDE_X)
+AC_SUBST(LIBIDETCL)
+AC_SUBST(LIBIDE)
+AC_SUBST(IDE_DEPS)
+
 ENABLE_GDBTK=
 
 AC_ARG_ENABLE(gdbtk,
@@ -349,6 +406,7 @@ fi
 
 configdir="unix"
 
+GDBTKLIBS=
 if test "${enable_gdbtk}" = "yes"; then
 
     CY_AC_PATH_TCLCONFIG
@@ -399,6 +457,7 @@ if test "${enable_gdbtk}" = "yes"; then
           fi
 
           ENABLE_GDBTK=1
+           ENABLE_CFLAGS="${ENABLE_CFLAGS} -DGDBTK"
 
           # Include some libraries that Tcl and Tk want.
           if test "${enable_ide}" = "yes"; then        
@@ -410,13 +469,15 @@ if test "${enable_gdbtk}" = "yes"; then
           fi
           # Yes, the ordering seems wrong here.  But it isn't.
           # TK_LIBS is the list of libraries that need to be linked
-          # after Tcl/Tk.
-          LIBS="${LIBS} ${TCL_LIBS} ${TK_LIBS}"
-          CONFIG_OBS="${CONFIG_OBS} gdbtk.o"
+          # after Tcl/Tk.  Note that this isn't put into LIBS.  If it
+          # were in LIBS then any link tests after this point would
+          # try to include things like `$(LIBGUI)', which wouldn't work.
+          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"
-             WIN32LDAPP="-Wl,--subsystem,windows"
+             WIN32LDAPP="-Wl,--subsystem,console"
              CONFIG_OBS="${CONFIG_OBS} gdbres.o"
           fi
        fi
@@ -429,6 +490,7 @@ AC_SUBST(X_LDFLAGS)
 AC_SUBST(X_LIBS)
 AC_SUBST(TIXLIB)
 AC_SUBST(TIX_DEPS)
+AC_SUBST(GDBTKLIBS)
 # end-sanitize-gdbtk
 
 AC_PATH_X
@@ -440,7 +502,7 @@ AC_ARG_WITH(sim-gpu2,
   mips*-sky-*)
     if test -d "${withval}"
     then
-      LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11"
+      LIBS="${LIBS} -L${withval}/lib -lgpu2 -L${x_libraries} -lX11 -lXext"
     else
       AC_MSG_WARN([Directory ${withval} does not exist.])
     fi ;;
@@ -462,6 +524,9 @@ 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)
This page took 0.03156 seconds and 4 git commands to generate.