~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Jim Winstead
  • Date: 2008-07-23 00:05:15 UTC
  • mto: (202.1.10 codestyle)
  • mto: This revision was merged to the branch mainline in revision 207.
  • Revision ID: jimw@mysql.com-20080723000515-a5ake8mhcsgo3weg
Detect and make the Mac OS X libedit readline interface look like the
most recent GNU readline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
329
329
fi
330
330
AC_CHECK_LIB(z, crc32, [], [AC_MSG_ERROR(could not find libz)])
331
331
 
 
332
#--------------------------------------------------------------------
 
333
# Check for libreadline or compatible (libedit on Mac OS X)
 
334
#--------------------------------------------------------------------
332
335
 
333
336
AC_CHECK_HEADERS([readline/readline.h])
334
337
if test "x$ac_cv_header_readline_readline_h" != "xyes"
336
339
  AC_MSG_ERROR([Couldn't find readline/readline.h. Try installing readline development packages.])
337
340
fi
338
341
 
 
342
MYSQL_CHECK_NEW_RL_INTERFACE
 
343
 
339
344
#--------------------------------------------------------------------
340
345
# Check for libpcre
341
346
#--------------------------------------------------------------------