Code Search for Developers
 
 
  

configure.in from Gdb at Krugle


Show configure.in syntax highlighted

dnl Process this file with autoconf to produce a configure script.
AC_INIT(server.h)
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(rda,0.1)
AM_CONFIG_HEADER(config.h:config.in)

dnl automake support
AM_MAINTAINER_MODE
AM_PROG_LIBTOOL
AC_EXEEXT
AC_LANG_CPLUSPLUS
AC_PROG_CXX

dnl headers
AC_CHECK_HEADERS(errno.h string.h strings.h windows.h sys/cygwin.h sys/wait.h )

AC_FUNC_ALLOCA

case "$target" in
  *cygwin*) TARGET_MODULES="win32-target.o win32-strace.o child_process.o" ;;
esac
AC_SUBST(TARGET_MODULES)

case "$target" in
  *cygwin*)
    dnl FIXME: differentiate between flavors of Solaris!
    AC_DEFINE(WIN32_TARGET)
    ;;
esac

dnl Outputs
AC_OUTPUT(Makefile)






See more files for this project here

Gdb

GDB, the GNU Project debugger, allows you to see what is going on `inside' another program while it executes -- or what another program was doing at the moment it crashed.

Project homepage: http://sources.redhat.com/gdb/
Programming language(s): Assembly,C,C++,Expect
License: other

  ChangeLog
  Makefile.am
  Makefile.in
  aclocal.m4
  child_process.cc
  config.in
  configure
  configure.in
  server.cc
  server.h
  stamp-h.in
  win32-strace.cc
  win32-target.cc