Commit b6eeb086 b6eeb0869003712df82f8df0e8256c77cb90eb27 by Sergey Poznyakoff

Documented --with-mysql and --with-postgres

1 parent 902ec392
Showing 1 changed file with 7 additions and 2 deletions
...@@ -54,14 +54,19 @@ specific configuration options: ...@@ -54,14 +54,19 @@ specific configuration options:
54 54
55 Do not build thread-safe libraries. 55 Do not build thread-safe libraries.
56 56
57 --enable-mysql 57 --with-mysql
58 58
59 Enable support for authentication via MySQL. Note that depending 59 Enable support for authentication via MySQL. Note that depending
60 on how your MySQL system is installed, this may require adding 60 on how your MySQL system is installed, this may require adding
61 appropriate directories to the library and include paths, e.g.: 61 appropriate directories to the library and include paths, e.g.:
62 62
63 ./configure LIBS='-L/usr/local/mysql/lib' \ 63 ./configure LIBS='-L/usr/local/mysql/lib' \
64 CPPLAGS='-I/usr/local/mysql/include' --enable-mysql 64 CPPLAGS='-I/usr/local/mysql/include' --with-mysql
65
66 --with-postgres
67
68 Enable support for authentication via PostgreSQL. You may
69 have to explicitly specify LIBS and CPPFLAGS (see above).
65 70
66 --enable-mh-utils 71 --enable-mh-utils
67 72
......