SQLClient: documented better some configure options, then regenerated configure and config.h.in

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@26794 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2008-07-19 13:40:51 +00:00
parent 29c3fa5061
commit 9a126738ed
4 changed files with 3174 additions and 2759 deletions

View file

@ -1,3 +1,11 @@
2008-07-19 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: Documented the --with-additional-include=,
--with-additional-lib=, --with-postgres-dir= and
--with-jre-architecture= options.
* configure: Regenerated.
* config.h.in: Regenerated.
2008-03-03 Richard Frith-Macdonald <rfm@gnu.org>
* SQLClient.h:

View file

@ -12,6 +12,9 @@
/* Define to 1 if you have the `ecpg' library (-lecpg). */
#undef HAVE_LIBECPG
/* Define to 1 if you have the `jvm' library (-ljvm). */
#undef HAVE_LIBJVM
/* Define to 1 if you have the `mysqlclient' library (-lmysqlclient). */
#undef HAVE_LIBMYSQLCLIENT
@ -87,6 +90,14 @@
file. */
#undef HAVE__USR_LOCAL_INCLUDE_PGSQL_LIBPQ_FE_H
/* Define to 1 if you have the </usr/local/pgsql/include/ecpglib.h> header
file. */
#undef HAVE__USR_LOCAL_PGSQL_INCLUDE_ECPGLIB_H
/* Define to 1 if you have the </usr/local/pgsql/include/libpq-fe.h> header
file. */
#undef HAVE__USR_LOCAL_PGSQL_INCLUDE_LIBPQ_FE_H
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT

5872
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -10,8 +10,14 @@ else
fi
#--------------------------------------------------------------------
AC_ARG_WITH(additional-include,
[ --with-additional-include=flags specify additional include dirs to use],
AC_ARG_WITH(additional-include, [
--with-additional-include=flags
Specifies additional include compiler flags to use.
If configure can not find your database library headers,
you may want to use this flag to help it find them. For
example:
--with-additional-include=-I/usr/local/include
],
additional_include="$withval", additional_include="no")
if test "$additional_include" != "no"; then
@ -19,8 +25,14 @@ if test "$additional_include" != "no"; then
INCD="$INCD $additional_include"
fi
AC_ARG_WITH(additional-lib,
[ --with-additional-lib=flags specify additional lib dirs to use],
AC_ARG_WITH(additional-lib, [
--with-additional-lib=flags
Specifies additional library compiler flags to use.
If configure can not find your database libraries,
you may want to use this flag to help it find them. For
example:
--with-additional-lib=-L/usr/local/lib/mysql
],
additional_lib="$withval", additional_lib="no")
if test "$additional_lib" != "no"; then
@ -28,8 +40,18 @@ if test "$additional_lib" != "no"; then
LIBD="$LIBD $additional_lib"
fi
AC_ARG_WITH(postgres-dir,
[ --with-postgres-dir=PATH specify postgres installation dir],
AC_ARG_WITH(postgres-dir, [
--with-postgres-dir=PATH
Specifies the postgres installation dir; configure
will add the appropriate additional include and lib
flags. Useful when you installed postgres in some
unusual place and want to help configure find it. For
example:
--with-postgres-dir=/usr/local/pgsql
(which is equivalent to
--with-additional-include=-L/usr/local/pgsql/include
--with-additional-lib=-L/usr/local/pgsql/lib)
],
postgres_topdir="$withval", postgres_topdir="no")
if test "$postgres_topdir" != "no"; then
@ -66,8 +88,12 @@ case "$GNUSTEP_HOST_OS" in
*) _JNI_SUBDIR="genunix";;
esac
AC_ARG_WITH(jre-architecture,
[ --with-jre-architecture=value specify cpu architecture for jre],
AC_ARG_WITH(jre-architecture, [
--with-jre-architecture=value
Specifies the CPU architecture to use for the JRE
(only used when building the JDBC module). Example
values are i386, amd64 and sparc.
],
jre_architecture="$withval", jre_architecture="")
save_LIBS="$LIBS"