~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/readline.m4

  • Committer: Brian Aker
  • Date: 2008-11-29 20:14:39 UTC
  • mfrom: (629.2.8 devel)
  • Revision ID: brian@tangent.org-20081129201439-mi0x46vwo2kdd406
Merge of Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
])
20
20
 
21
21
AC_DEFUN([DRIZZLE_CHECK_NEW_RL_INTERFACE], [
 
22
    save_CFLAGS="${CFLAGS}"
 
23
    CFLAGS="${save_CFLAGS} ${READLINE_CFLAGS}"
22
24
    AC_CACHE_CHECK([defined rl_compentry_func_t and rl_completion_func_t], mysql_cv_new_rl_interface,
23
25
        AC_TRY_COMPILE(
24
26
            [
37
39
            [mysql_cv_new_rl_interface=no]
38
40
        )
39
41
    )
 
42
  CFLAGS="${save_CFLAGS}"
40
43
])
41
44