~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2008-11-12 17:42:40 UTC
  • mto: This revision was merged to the branch mainline in revision 584.
  • Revision ID: monty@inaugust.com-20081112174240-l2vg9lnzbmjc3uyk
More header cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dnl -*- ksh -*-
 
1
dnl -*- bash -*-
2
2
dnl Process this file with autoconf to produce a configure script.
3
3
 
4
4
AC_PREREQ(2.59)dnl              Minimum Autoconf version required.
555
555
# Check for libevent
556
556
#--------------------------------------------------------------------
557
557
 
558
 
AC_MSG_CHECKING(for libevent)
559
558
AC_ARG_WITH(libevent,
560
559
  [AS_HELP_STRING([--with-libevent@<:@=DIR@:>@],
561
560
       [Use libevent in DIR])],
576
575
    LIBS="${my_save_LIBS}"
577
576
    LIBEVENT_CPPFLAGS=""
578
577
else
579
 
    AC_MSG_RESULT($withval)
 
578
    AC_MSG_CHECKING(for libevent in $withval)
580
579
    if test -f $withval/event.h -a -f $withval/libevent.a; then
581
580
       owd=`pwd`
582
581
       if cd $withval; then withval=`pwd`; cd $owd; fi