Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Vladishev <alexei.vladishev@zabbix.com>2012-02-02 02:05:24 +0400
committerAlexei Vladishev <alexei.vladishev@zabbix.com>2012-02-02 02:05:24 +0400
commitbb948c8c70f61c664f204b7fc44c12c086bc84ba (patch)
tree7979a789f20762b58b0d8e32c8b411afaa6c084f /m4/libunixodbc.m4
parent4556eaa3eb6983a6701678bee3d6f7a42c4a41a4 (diff)
....I..... [ZBX-3262] fixed warning "no AC_LANG_SOURCE call detected in body" raised during compilation
Diffstat (limited to 'm4/libunixodbc.m4')
-rw-r--r--m4/libunixodbc.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/libunixodbc.m4 b/m4/libunixodbc.m4
index 6340d2622d0..b8c2a0538de 100644
--- a/m4/libunixodbc.m4
+++ b/m4/libunixodbc.m4
@@ -58,7 +58,7 @@ AC_DEFUN([LIBUNIXODBC_CHECK_CONFIG],
AC_CACHE_CHECK([whether unixodbc is usable],
[libunixodbc_cv_usable],
- [AC_LINK_IFELSE(AC_LANG_PROGRAM([
+ [AC_LINK_IFELSE([AC_LANG_PROGRAM([
#include <sql.h>
#include <sqlext.h>
#include <sqltypes.h>
@@ -67,7 +67,7 @@ AC_DEFUN([LIBUNIXODBC_CHECK_CONFIG],
missing symbols or can't link. */
SQLRETURN retcode;
retcode = SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, (SQLHENV*)0);
- ]),libunixodbc_cv_usable=yes,libunixodbc_cv_usable=no)
+ ])],libunixodbc_cv_usable=yes,libunixodbc_cv_usable=no)
])
CFLAGS="${_save_unixodbc_cflags}"