Skip to content

Commit 9c3efa3

Browse files
committed
release version 17.00.0009
1 parent 611cd97 commit 9c3efa3

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

configure.ac

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Process this file with autoconf to produce a configure script.
2-
AC_INIT(psqlodbc, 17.00.0000, [pgsql-odbc@postgresql.org])
2+
AC_INIT(psqlodbc, 17.00.0009, [pgsql-odbc@postgresql.org])
33
AC_PREREQ(2.57)
44
AC_CONFIG_AUX_DIR(config)
55
AM_INIT_AUTOMAKE
@@ -28,11 +28,9 @@ AC_CHECK_SIZEOF([bool], [],
2828
#include <stdbool.h>
2929
#endif])
3030

31-
AC_CHECK_HEADER_STDBOOL()
32-
3331
dnl We use <stdbool.h> if we have it and it declares type bool as having
3432
dnl size 1. Otherwise, c.h will fall back to declaring bool as unsigned char.
35-
if test "$ac_cv_header_stdbool_h" = yes && test "$ac_cv_sizeof_bool" = 1; then
33+
if test "$ac_cv_header_stdbool_h" = yes -a "$ac_cv_sizeof_bool" = 1; then
3634
AC_DEFINE([PG_USE_STDBOOL], 1,
3735
[Define to 1 to use <stdbool.h> to define type bool.])
3836
fi

0 commit comments

Comments
 (0)