~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2008-07-10 15:16:23 UTC
  • mto: (77.6.1 glibclient-merge)
  • mto: This revision was merged to the branch mainline in revision 128.
  • Revision ID: monty@inaugust.com-20080710151623-p9kzpqvgkmkuaips
Shift language to c++ before PCRE test.
Removed --gnu log format option from bzr, turns out I had a special plugin installed...

Show diffs side-by-side

added added

removed removed

Lines of Context:
582
582
# Check for libpcre
583
583
#--------------------------------------------------------------------
584
584
 
 
585
AC_LANG_PUSH([C++])
585
586
AC_PATH_PROG(PKG_CONFIG, pkg-config, AC_MSG_ERROR([pkg-config wasn't found.]))
586
587
PKG_CHECK_MODULES(PCRE, [libpcrecpp >= 3], [found_pcre="yes"],[
587
588
  AC_CHECK_LIB(pcrecpp, [DoMatch], [found_pcre="no"])
595
596
then
596
597
    AC_MSG_ERROR([Couldn't find pcrecpp.h. Try installing the development package associated with libpcre on your system.])
597
598
fi
 
599
AC_LANG_POP([])
598
600
AC_SUBST(PCRE_LIBS)
599
601
AC_SUBST(PCRE_CFLAGS)
600
602