|
From: <den...@us...> - 2009-12-29 09:58:02
|
Revision: 27
http://dsim.svn.sourceforge.net/dsim/?rev=27&view=rev
Author: denis_arnaud
Date: 2009-12-29 09:57:50 +0000 (Tue, 29 Dec 2009)
Log Message:
-----------
[Conf] Added the configuration for MySQL.
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2009-12-28 18:24:08 UTC (rev 26)
+++ trunk/dsim/configure.ac 2009-12-29 09:57:50 UTC (rev 27)
@@ -203,6 +203,14 @@
AC_SUBST(BOOST_MPI_PYTHON_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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <den...@us...> - 2010-01-07 19:49:26
|
Revision: 46
http://dsim.svn.sourceforge.net/dsim/?rev=46&view=rev
Author: denis_arnaud
Date: 2010-01-07 19:49:16 +0000 (Thu, 07 Jan 2010)
Log Message:
-----------
[Conf] Updated the version.
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2010-01-04 10:53:16 UTC (rev 45)
+++ trunk/dsim/configure.ac 2010-01-07 19:49:16 UTC (rev 46)
@@ -1,8 +1,8 @@
# Process this file with autoconf to produce a configure script
#-------------------------------------------------------------------
AC_PREREQ(2.59)
-AC_COPYRIGHT([Copyright (C) 2007-2010 Amadeus DEV-ORI <da...@am...>])
-AC_INIT([DSIM],[0.1.0],[da...@am...],[dsim])
+AC_COPYRIGHT([Copyright (C) 2007-2010 Denis Arnaud <den...@us...>])
+AC_INIT([DSIM],[99.99.99],[den...@us...],[dsim])
AC_CONFIG_HEADER([stdair/config.h])
AC_CONFIG_SRCDIR([stdair/basic/BasConst.cpp])
AC_CONFIG_AUX_DIR([config])
@@ -16,7 +16,7 @@
AC_SUBST(RPM_RELEASE)
# Shared library versioning for the main library
-GENERIC_LIBRARY_VERSION="2:1:0"
+GENERIC_LIBRARY_VERSION="99:99:99"
# | | |
# +------+ | +---+
# | | |
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <den...@us...> - 2010-01-16 22:48:37
|
Revision: 47
http://dsim.svn.sourceforge.net/dsim/?rev=47&view=rev
Author: denis_arnaud
Date: 2010-01-16 22:48:31 +0000 (Sat, 16 Jan 2010)
Log Message:
-----------
[Conf] Improved the M4 macro files for MySQL, SOCI, Boost, MPICH2 and OpenMPI.
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2010-01-07 19:49:16 UTC (rev 46)
+++ trunk/dsim/configure.ac 2010-01-16 22:48:31 UTC (rev 47)
@@ -169,21 +169,22 @@
AC_SUBST(PYTHON_ADD_LIBS)
# -----------------------------------------------------------
-# MPICH2: http://www.mcs.anl.gov/research/projects/mpich2
-# Note: Boost.MPI depends on MPICH2, rather than on OpenMPI
+# OpenMPI: http://www.open-mpi.org
# -----------------------------------------------------------
-AX_MPICH2
-AC_SUBST(MPICH2_VERSION)
-AC_SUBST(MPICH2_CFLAGS)
-AC_SUBST(MPICH2_LIBS)
+#AX_OPENMPI
+#AC_SUBST(MPIGEN_VERSION)
+#AC_SUBST(MPIGEN_CFLAGS)
+#AC_SUBST(MPIGEN_LIBS)
# -----------------------------------------------------------
-# OpenMPI: http://www.open-mpi.org
+# MPICH2: http://www.mcs.anl.gov/research/projects/mpich2
+# Note: Boost.MPI depends on MPICH2 by default, rather than
+# on OpenMPI
# -----------------------------------------------------------
-#AX_OPENMPI
-AC_SUBST(OPENMPI_VERSION)
-AC_SUBST(OPENMPI_CFLAGS)
-AC_SUBST(OPENMPI_LIBS)
+AX_MPICH2
+AC_SUBST(MPIGEN_VERSION)
+AC_SUBST(MPIGEN_CFLAGS)
+AC_SUBST(MPIGEN_LIBS)
# ---------------------------------------------------------------
# Support for Boost (Extension of the STL): http://www.boost.org
@@ -518,6 +519,26 @@
)
AC_OUTPUT
+# OpenMPI
+if test "x$HAVE_OPENMPI" = "x1"; then
+ OPENMPI_OUTPUT=" - OPENMPI ........... :
+ o OPENMPI_VERSION . : ${MPIGEN_VERSION}
+ o OPENMPI_CFLAGS .. : ${MPIGEN_CFLAGS}
+ o OPENMPI_LIBS .... : ${MPIGEN_LIBS}"
+else
+ OPENMPI_OUTPUT=" - OPENMPI ........... : No"
+fi
+
+# MPICH2
+if test "x$HAVE_MPICH2" = "x1"; then
+ MPICH2_OUTPUT=" - MPICH2 ............ :
+ o MPICH2_VERSION .. : ${MPIGEN_VERSION}
+ o MPICH2_CFLAGS ... : ${MPIGEN_CFLAGS}
+ o MPICH2_LIBS ..... : ${MPIGEN_LIBS}"
+else
+ MPICH2_OUTPUT=" - MPICH2 ............ : No"
+fi
+
echo "
------------------------------------------------------------------------------
$PACKAGE-$VERSION library configuration:
@@ -565,21 +586,15 @@
o GSL_CFLAGS ...... : ${GSL_CFLAGS}
o GSL_LIBS ........ : ${GSL_LIBS}
- - OPENMPI ........... :
- o OPENMPI_VERSION . : ${OPENMPI_VERSION}
- o OPENMPI_CFLAGS .. : ${OPENMPI_CFLAGS}
- o OPENMPI_LIBS .... : ${OPENMPI_LIBS}
+${OPENMPI_OUTPUT}
- - MPICH2 ............ :
- o MPICH2_VERSION .. : ${MPICH2_VERSION}
- o MPICH2_CFLAGS ... : ${MPICH2_CFLAGS}
- o MPICH2_LIBS ..... : ${MPICH2_LIBS}
+${MPICH2_OUTPUT}
- - Python ........... :
- o PYTHON_VERSION . : ${PYTHON_VERSION}
- o PYTHON_CFLAGS .. : ${PYTHON_CFLAGS}
- o PYTHON_LIBS .... : ${PYTHON_LIBS}
- o PYTHON_ADD_LIBS : ${PYTHON_ADD_LIBS}
+ - Python ............ :
+ o PYTHON_VERSION .. : ${PYTHON_VERSION}
+ o PYTHON_CFLAGS ... : ${PYTHON_CFLAGS}
+ o PYTHON_LIBS ..... : ${PYTHON_LIBS}
+ o PYTHON_ADD_LIBS . : ${PYTHON_ADD_LIBS}
- Boost ............. :
o BOOST_VERSION ... : ${BOOST_VERSION}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <qua...@us...> - 2010-04-06 12:50:52
|
Revision: 73
http://dsim.svn.sourceforge.net/dsim/?rev=73&view=rev
Author: quannaus
Date: 2010-04-06 12:50:46 +0000 (Tue, 06 Apr 2010)
Log Message:
-----------
[dev] change in configure.
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2010-03-15 10:27:55 UTC (rev 72)
+++ trunk/dsim/configure.ac 2010-04-06 12:50:46 UTC (rev 73)
@@ -411,6 +411,7 @@
stdair/config/Makefile
stdair/service/Makefile
stdair/core/Makefile
+ stdair/batches/Makefile
trademgen/Makefile
trademgen/basic/Makefile
trademgen/bom/Makefile
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <den...@us...> - 2010-04-25 17:24:12
|
Revision: 78
http://dsim.svn.sourceforge.net/dsim/?rev=78&view=rev
Author: denis_arnaud
Date: 2010-04-25 17:24:06 +0000 (Sun, 25 Apr 2010)
Log Message:
-----------
[Conf] Added the server layer in the AirInv library.
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2010-04-23 16:20:50 UTC (rev 77)
+++ trunk/dsim/configure.ac 2010-04-25 17:24:06 UTC (rev 78)
@@ -432,15 +432,15 @@
airsched/config/Makefile
airsched/core/Makefile
airsched/batches/Makefile
- airrac/Makefile
- airrac/basic/Makefile
- airrac/bom/Makefile
- airrac/factory/Makefile
- airrac/command/Makefile
- airrac/service/Makefile
- airrac/config/Makefile
- airrac/core/Makefile
- airrac/batches/Makefile
+ airrac/Makefile
+ airrac/basic/Makefile
+ airrac/bom/Makefile
+ airrac/factory/Makefile
+ airrac/command/Makefile
+ airrac/service/Makefile
+ airrac/config/Makefile
+ airrac/core/Makefile
+ airrac/batches/Makefile
rmol/Makefile
rmol/basic/Makefile
rmol/field/Makefile
@@ -460,6 +460,7 @@
airinv/config/Makefile
airinv/core/Makefile
airinv/batches/Makefile
+ airinv/server/Makefile
avlcal/Makefile
avlcal/basic/Makefile
avlcal/bom/Makefile
@@ -525,7 +526,7 @@
test/stdair/Makefile
test/trademgen/Makefile
test/airsched/Makefile
- test/airrac/Makefile
+ test/airrac/Makefile
test/rmol/Makefile
test/airinv/Makefile
test/avlcal/Makefile
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <sng...@us...> - 2010-07-16 12:46:02
|
Revision: 98
http://dsim.svn.sourceforge.net/dsim/?rev=98&view=rev
Author: snguyenkim
Date: 2010-07-16 12:45:55 +0000 (Fri, 16 Jul 2010)
Log Message:
-----------
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2010-07-16 12:44:59 UTC (rev 97)
+++ trunk/dsim/configure.ac 2010-07-16 12:45:55 UTC (rev 98)
@@ -515,10 +515,14 @@
test/boost/asio/Makefile
test/boost/asio/httpd/Makefile
test/boost/asio/logd/Makefile
+ test/boost/asio/log_server/Makefile
test/boost/asio/logger/Makefile
+ test/boost/asio/chat/Makefile
test/boost/filesystem/Makefile
test/boost/iostreams/Makefile
test/boost/mpi/Makefile
+ test/boost/mpi/master_slave/Makefile
+ test/boost/mpi/log_server/Makefile
test/boost/mpl/Makefile
test/boost/spirit/Makefile
test/boost/serialization/Makefile
@@ -535,6 +539,7 @@
test/simcrs/Makefile
test/travelccm/Makefile
test/dsim/Makefile
+ test/master_slave/Makefile
)
AC_OUTPUT
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <den...@us...> - 2010-09-27 11:38:31
|
Revision: 136
http://dsim.svn.sourceforge.net/dsim/?rev=136&view=rev
Author: denis_arnaud
Date: 2010-09-27 11:38:22 +0000 (Mon, 27 Sep 2010)
Log Message:
-----------
[Dev] Replaced calls to the GSL (GNU Scientific Library) by Boost.Math.
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2010-09-26 13:18:08 UTC (rev 135)
+++ trunk/dsim/configure.ac 2010-09-27 11:38:22 UTC (rev 136)
@@ -124,15 +124,6 @@
AC_SUBST(EXTRACC_CFLAGS)
AC_SUBST(EXTRACC_LIBS)
-# -----------------------------------------------------------------------------
-# Support for the GSL (GNU Scientific Library): http://www.gnu.org/software/gsl
-# -----------------------------------------------------------------------------
-# Provide --with-gsl
-AM_PATH_GSL([1.8])
-AC_SUBST(GSL_VERSION)
-AC_SUBST(GSL_CFLAGS)
-AC_SUBST(GSL_LIBS)
-
# -----------------------------------------------------------
# Python: http://www.python.org
# -----------------------------------------------------------
@@ -502,6 +493,7 @@
test/boost/mpi/master_slave/Makefile
test/boost/mpi/log_server/Makefile
test/boost/mpl/Makefile
+ test/boost/random/Makefile
test/boost/spirit/Makefile
test/boost/serialization/Makefile
test/boost/signals/Makefile
@@ -582,11 +574,6 @@
- LIBS .............. : ${LIBS}
External libraries:
- - GSL ............... :
- o GSL_VERSION ..... : ${GSL_VERSION}
- o GSL_CFLAGS ...... : ${GSL_CFLAGS}
- o GSL_LIBS ........ : ${GSL_LIBS}
-
${OPENMPI_OUTPUT}
${MPICH2_OUTPUT}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gsa...@us...> - 2010-11-10 17:25:20
|
Revision: 150
http://dsim.svn.sourceforge.net/dsim/?rev=150&view=rev
Author: gsabatier
Date: 2010-11-10 17:25:14 +0000 (Wed, 10 Nov 2010)
Log Message:
-----------
[dev] Added boost/spiritQi makefile.
Modified Paths:
--------------
trunk/dsim/configure.ac
Modified: trunk/dsim/configure.ac
===================================================================
--- trunk/dsim/configure.ac 2010-11-10 17:20:23 UTC (rev 149)
+++ trunk/dsim/configure.ac 2010-11-10 17:25:14 UTC (rev 150)
@@ -495,6 +495,7 @@
test/boost/mpl/Makefile
test/boost/random/Makefile
test/boost/spirit/Makefile
+ test/boost/spiritQi/Makefile
test/boost/serialization/Makefile
test/boost/signals/Makefile
test/boost/smart_pointers/Makefile
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|