1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00

Fix [-Wundef] warning in ODBC extension

This commit is contained in:
George Peter Banyard
2020-05-20 13:59:50 +02:00
parent 24de4274f3
commit 85104fae37
3 changed files with 3 additions and 3 deletions

View File

@@ -34,7 +34,7 @@
#include "php_globals.h"
#include "odbc_arginfo.h"
#if HAVE_UODBC
#ifdef HAVE_UODBC
#include <fcntl.h>
#include "ext/standard/head.h"

View File

@@ -19,7 +19,7 @@
#ifndef PHP_ODBC_H
#define PHP_ODBC_H
#if HAVE_UODBC
#ifdef HAVE_UODBC
#ifdef ZTS
#include "TSRM.h"

View File

@@ -19,7 +19,7 @@
#ifndef PHP_ODBC_INCLUDES_H
#define PHP_ODBC_INCLUDES_H
#if HAVE_UODBC
#ifdef HAVE_UODBC
/* checking in the same order as in configure.ac */