summaryrefslogtreecommitdiff
path: root/ext/pdo_odbc
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-05-20 15:41:24 +0200
committerGeorge Peter Banyard <girgias@php.net>2020-05-20 16:29:53 +0200
commit50af36a8aae73d313e3fc72d76e8640296a7e04e (patch)
tree644802e80961385fa361ec069544c587443476e1 /ext/pdo_odbc
parenta43f100fdaa47bd158360e46cfa61189e636137e (diff)
downloadphp-git-50af36a8aae73d313e3fc72d76e8640296a7e04e.tar.gz
Fix [-Wundef] warning in PDO ODBC extension
Diffstat (limited to 'ext/pdo_odbc')
-rw-r--r--ext/pdo_odbc/php_pdo_odbc_int.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/ext/pdo_odbc/php_pdo_odbc_int.h b/ext/pdo_odbc/php_pdo_odbc_int.h
index db033b25b3..e5777943db 100644
--- a/ext/pdo_odbc/php_pdo_odbc_int.h
+++ b/ext/pdo_odbc/php_pdo_odbc_int.h
@@ -24,74 +24,74 @@
#endif
/* {{{ Roll a dice, pick a header at random... */
-#if HAVE_SQLCLI1_H
+#ifdef HAVE_SQLCLI1_H
# include <sqlcli1.h>
# if defined(DB268K) && HAVE_LIBRARYMANAGER_H
# include <LibraryManager.h>
# endif
#endif
-#if HAVE_ODBC_H
+#ifdef HAVE_ODBC_H
# include <odbc.h>
#endif
-#if HAVE_IODBC_H
+#ifdef HAVE_IODBC_H
# include <iodbc.h>
#endif
-#if HAVE_SQLUNIX_H && !defined(PHP_WIN32)
+#if defined(HAVE_SQLUNIX_H) && !defined(PHP_WIN32)
# include <sqlunix.h>
#endif
-#if HAVE_SQLTYPES_H
+#ifdef HAVE_SQLTYPES_H
# include <sqltypes.h>
#endif
-#if HAVE_SQLUCODE_H
+#ifdef HAVE_SQLUCODE_H
# include <sqlucode.h>
#endif
-#if HAVE_SQL_H
+#ifdef HAVE_SQL_H
# include <sql.h>
#endif
-#if HAVE_ISQL_H
+#ifdef HAVE_ISQL_H
# include <isql.h>
#endif
-#if HAVE_SQLEXT_H
+#ifdef HAVE_SQLEXT_H
# include <sqlext.h>
#endif
-#if HAVE_ISQLEXT_H
+#ifdef HAVE_ISQLEXT_H
# include <isqlext.h>
#endif
-#if HAVE_UDBCEXT_H
+#ifdef HAVE_UDBCEXT_H
# include <udbcext.h>
#endif
-#if HAVE_CLI0CORE_H
+#ifdef HAVE_CLI0CORE_H
# include <cli0core.h>
#endif
-#if HAVE_CLI0EXT1_H
+#ifdef HAVE_CLI0EXT1_H
# include <cli0ext.h>
#endif
-#if HAVE_CLI0CLI_H
+#ifdef HAVE_CLI0CLI_H
# include <cli0cli.h>
#endif
-#if HAVE_CLI0DEFS_H
+#ifdef HAVE_CLI0DEFS_H
# include <cli0defs.h>
#endif
-#if HAVE_CLI0ENV_H
+#ifdef HAVE_CLI0ENV_H
# include <cli0env.h>
#endif
-#if HAVE_ODBCSDK_H
+#ifdef HAVE_ODBCSDK_H
# include <odbcsdk.h>
#endif