From: <den...@us...> - 2010-02-07 02:34:59
|
Revision: 118 http://stdair.svn.sourceforge.net/stdair/?rev=118&view=rev Author: denis_arnaud Date: 2010-02-07 02:34:52 +0000 (Sun, 07 Feb 2010) Log Message: ----------- [DB] Added support for database administration, as well as a sample table (for airline description). Modified Paths: -------------- trunk/stdair/configure.ac trunk/stdair/stdair/Makefile.am trunk/stdair/stdair/core/Makefile.am Modified: trunk/stdair/configure.ac =================================================================== --- trunk/stdair/configure.ac 2010-02-07 02:14:43 UTC (rev 117) +++ trunk/stdair/configure.ac 2010-02-07 02:34:52 UTC (rev 118) @@ -1,8 +1,8 @@ # Process this file with autoconf to produce a configure script #------------------------------------------------------------------- AC_PREREQ(2.59) -AC_COPYRIGHT([Copyright (C) 2007-2009 Denis Arnaud <den...@us...>]) -AC_INIT([STDAIR],[0.1.0],[den...@us...],[stdair]) +AC_COPYRIGHT([Copyright (C) 2007-2010 Denis Arnaud <den...@us...>]) +AC_INIT([STDAIR],[99.99.99],[den...@us...],[stdair]) AC_CONFIG_HEADER([stdair/config.h]) AC_CONFIG_SRCDIR([stdair/bom/BomKey.hpp]) AC_CONFIG_AUX_DIR([config]) @@ -15,7 +15,7 @@ AC_SUBST(RPM_RELEASE) # Shared library versioning -GENERIC_LIBRARY_VERSION="0:1:0" +GENERIC_LIBRARY_VERSION="99:99:99" # | | | # +------+ | +---+ # | | | @@ -117,7 +117,22 @@ AC_SUBST(BOOST_PROGRAM_OPTIONS_LIB) AC_SUBST(BOOST_FILESYSTEM_LIB) +# -------------------------------------------------------------------- +# Support for MySQL (C client API): http://www.mysql.org +# -------------------------------------------------------------------- +AX_MYSQL +AC_SUBST(MYSQL_VERSION) +AC_SUBST(MYSQL_CFLAGS) +AC_SUBST(MYSQL_LIBS) +# -------------------------------------------------------------------- +# Support for SOCI http://soci.sourceforge.net +# -------------------------------------------------------------------- +AX_SOCI +AC_SUBST(SOCI_VERSION) +AC_SUBST(SOCI_CFLAGS) +AC_SUBST(SOCI_LIBS) + # ------------------------------------------------------------------- # Support for documentation # ------------------------------------------------------------------- @@ -189,6 +204,7 @@ stdair/Makefile stdair/basic/Makefile stdair/bom/Makefile + stdair/dbadaptor/Makefile stdair/factory/Makefile stdair/service/Makefile stdair/core/Makefile Modified: trunk/stdair/stdair/Makefile.am =================================================================== --- trunk/stdair/stdair/Makefile.am 2010-02-07 02:14:43 UTC (rev 117) +++ trunk/stdair/stdair/Makefile.am 2010-02-07 02:34:52 UTC (rev 118) @@ -6,7 +6,7 @@ MAINTAINERCLEANFILES = Makefile.in -SUBDIRS = basic bom factory config service core +SUBDIRS = basic bom dbadaptor factory config service core #EXTRA_DIST = config_msvc.h EXTRA_DIST = Modified: trunk/stdair/stdair/core/Makefile.am =================================================================== --- trunk/stdair/stdair/core/Makefile.am 2010-02-07 02:14:43 UTC (rev 117) +++ trunk/stdair/stdair/core/Makefile.am 2010-02-07 02:34:52 UTC (rev 118) @@ -21,7 +21,7 @@ $(top_builddir)/stdair/service/libsvc.la libstdair_la_LDFLAGS = \ $(BOOST_DATE_TIME_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) \ - $(BOOST_FILESYSTEM_LIB) \ + $(BOOST_FILESYSTEM_LIB) $(SOCI_LIBS) \ -version-info $(GENERIC_LIBRARY_VERSION) # This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |