1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
.TH odbc_config 1 "Thu 07 Jan 2021" "version 2.3.12" "unixODBC manual pages"
.SH NAME
odbc_config - Generates compiler information intended for use when developing a unixODBC client
.SH SYNOPSIS
.SY odbc_config
.OP \-\-prefix
.OP \-\-exec-prefix
.OP \-\-include-prefix
.OP \-\-lib-prefix
.OP \-\-bin-prefix
.OP \-\-version
.OP \-\-libs
.OP \-\-static-libs
.OP \-\-libtool-libs
.OP \-\-cflags
.OP \-\-odbcversion
.OP \-\-odbcini
.OP \-\-odbcinstini
.OP \-\-header
.OP \-\-ulen
.YS
.SH DESCRIPTION
\fBodbc_config\fR provides information about how unixODBC was compiled for your
system and architecture. The information generated is useful for building unixODBC
clients and similar programs.
.SH OPTIONS
.B
.IP \-\-prefix
Prefix for architecture-independent files.
.B
.IP \-\-exec-prefix
Prefix for architecture-dependent files.
.B
.IP \-\-include-prefix
Directory containing C header files for unixODBC.
.B
.IP \-\-lib-prefix
Directory containing unixODBC shared libraries.
.B
.IP \-\-bin-prefix
Directory containing unixODBC utilities.
.B
.IP \-\-version
Current version of unixODBC.
.B
.IP \-\-libs
Compiler flags for linking dynamic libraries.
.B
.IP \-\-static-libs
Absolute file name of the unixODBC static library (libodbc.a).
.B
.IP \-\-libtool-libs
Absolute file name of the unixODBC libtool library (libodbc.la).
.B
.IP \-\-cflags
Outputs compiler flags to find header files, as well as critical compiler
flags and defines used when compiling the libodbc library.
.B
.IP \-\-odbcversion
Version of the ODBC specification used by unixODBC.
.B
.IP \-\-odbcini
Absolute file name of the system-wide DSN configuration file \fIodbc.ini\fR.
.B
.IP \-\-odbcinstini
Absolute file name of the unixODBC driver configuration file \fIodbcinst.ini\fR.
.B
.IP \-\-header
Definitions of C preprocessor constants used by unixODBC. Generated output can
be piped into a C header file.
.B
.IP \-\-ulen
Compiler flag that defines \fISIZEOF_SQLULEN\fR.
.SH SEE ALSO
.BR unixODBC (7),
.BR odbcinst.ini (5),
.BR odbc.ini (5)
"The \fIunixODBC\fB Administrator Manual (HTML)\fR"
.SH AUTHORS
The authors of unixODBC are Peter Harvey <\fIpharvey@codebydesign.com\fR> and
Nick Gorham <\fInick@lurcher.org\fR>.
For a full list of contributors, refer to the \fIAUTHORS\fR file.
.SH COPYRIGHT
unixODBC is licensed under the GNU Lesser General Public License. For details
about the license, see the \fICOPYING\fR file.
|