~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/readline.m4

  • Committer: Elan Ruusamäe
  • Date: 2008-12-01 23:16:54 UTC
  • mto: (632.1.13 devel) (641.3.10 devel)
  • mto: This revision was merged to the branch mainline in revision 637.
  • Revision ID: glen@haarber.alkohol.ee-20081201231654-enertrk0bm7ax6bo
- do not let ac_cache hide definition of USE_NEW_READLINE_INTERFACE

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
            ],
34
34
            [
35
35
                mysql_cv_new_rl_interface=yes
36
 
                AC_DEFINE_UNQUOTED([USE_NEW_READLINE_INTERFACE], [1],
37
 
                                   [used new readline interface (are rl_completion_func_t and rl_compentry_func_t defined)])
38
36
            ],
39
37
            [mysql_cv_new_rl_interface=no]
40
38
        )
41
39
    )
 
40
    if test "$mysql_cv_new_rl_interface" = "yes"; then
 
41
                AC_DEFINE_UNQUOTED([USE_NEW_READLINE_INTERFACE], [1],
 
42
                [used new readline interface (are rl_completion_func_t and rl_compentry_func_t defined)])
 
43
    fi
42
44
  CFLAGS="${save_CFLAGS}"
43
45
])
44
46