ossp-pkg/xds/configure.in
dnl configure.in -- Process this file with autoconf to produce a configure script.
AC_INIT(libxds, [$Revision: 1.3 $])
dnl Get rid of the lousy -g and -O defaults in CFLAGS.
dnl
CFLAGS=${CFLAGS:-}
dnl Checks for paths and programs.
dnl
AC_PROG_CC
AC_PROG_RANLIB
dnl Set special flags for gcc.
dnl
if test "$GCC" = yes; then
CFLAGS="$CFLAGS -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wcast-align -Winline -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wno-long-long"
fi
dnl Write results.
dnl
AC_OUTPUT(Makefile regression-tests/Makefile)