diff options
| author | Tom Lane | 2013-06-15 18:11:43 +0000 |
|---|---|---|
| committer | Tom Lane | 2013-06-15 18:11:43 +0000 |
| commit | 5242fefb471d1fb2d0f35a33bde3570e19acd4b1 (patch) | |
| tree | 27b462506adef04718e3b6e51947d00c41cd557d /configure.in | |
| parent | b23160889c963dfe23d8cf1f9be64fb3c535a2d6 (diff) | |
Be consistent about #define'ing configure symbols as "1" not empty.
This is just neatnik-ism, since all the tests in the code are #ifdefs,
but we shouldn't specify symbols as "Define to 1 ..." and then not
actually define them that way.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 91c46eeb94..58ece5b391 100644 --- a/configure.in +++ b/configure.in @@ -1267,7 +1267,7 @@ PS_STRINGS->ps_argvstr = "foo";], [pgac_cv_var_PS_STRINGS=yes], [pgac_cv_var_PS_STRINGS=no])]) if test "$pgac_cv_var_PS_STRINGS" = yes ; then - AC_DEFINE([HAVE_PS_STRINGS], [], [Define to 1 if the PS_STRINGS thing exists.]) + AC_DEFINE([HAVE_PS_STRINGS], 1, [Define to 1 if the PS_STRINGS thing exists.]) fi |
