Source
14
14
#
15
15
# This macro is distributed in the hope that it will be useful,
16
16
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
18
19
19
AC_DEFUN([LIBUNIXODBC_CHECK_CONFIG],
20
20
[
21
21
AC_ARG_WITH(unixodbc,
22
22
[
23
23
If you want to use unixODBC library:
24
-
AC_HELP_STRING([--with-unixodbc@<:@=ARG@:>@],
24
+
AS_HELP_STRING([--with-unixodbc@<:@=ARG@:>@],
25
25
[use ODBC driver against unixODBC package @<:@default=no@:>@, optionally specify full path to odbc_config binary.])
26
26
],[ if test "x$withval" = "xno"; then
27
27
want_unixodbc="no"
28
28
elif test "x$withval" = "xyes"; then
29
29
want_unixodbc="yes"
30
30
else
31
31
want_unixodbc="yes"
32
32
specified_unixodbc="yes"
33
33
ODBC_CONFIG=$withval
34
34
fi