Add --enable-sql argument to configure/autogen.sh.

Just using the argument isn't enough -- see src/engine/sql/README.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3573 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-02-02 07:04:15 +00:00
parent adb36f6a43
commit 31d3748c3c
2 changed files with 10 additions and 1 deletions

View File

@ -129,6 +129,15 @@ AC_ARG_ENABLE( profile,
LDFLAGS="${LDFLAGS} -pg") LDFLAGS="${LDFLAGS} -pg")
### --------------------------------------------------------------------------
### SQL
AC_ARG_ENABLE( sql,
[ --enable-sql compile with sql support],
SQL_DIR=sql)
AC_SUBST(SQL_DIR)
### -------------------------------------------------------------------------- ### --------------------------------------------------------------------------
### i18n ### i18n
AC_ARG_WITH( locale-dir, AC_ARG_WITH( locale-dir,

View File

@ -1,7 +1,7 @@
# Engine Makefile.am file. # Engine Makefile.am file.
# don't build sql subdir by default, unless you want hurt # don't build sql subdir by default, unless you want hurt
# SUBDIRS = sql SUBDIRS = ${SQL_DIR}
# Build a libtool library, libhello.la for installation in libdir. # Build a libtool library, libhello.la for installation in libdir.
lib_LTLIBRARIES = libgncengine.la lib_LTLIBRARIES = libgncengine.la