You can subscribe to this list here.
| 2003 |
Jan
|
Feb
(13) |
Mar
(1) |
Apr
(17) |
May
(26) |
Jun
(35) |
Jul
(28) |
Aug
(17) |
Sep
(11) |
Oct
(42) |
Nov
(16) |
Dec
(7) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(11) |
Feb
(3) |
Mar
(4) |
Apr
(9) |
May
(4) |
Jun
(19) |
Jul
(12) |
Aug
(12) |
Sep
(33) |
Oct
(3) |
Nov
(16) |
Dec
(34) |
| 2005 |
Jan
(59) |
Feb
(25) |
Mar
(9) |
Apr
(11) |
May
(8) |
Jun
(30) |
Jul
(18) |
Aug
(8) |
Sep
(12) |
Oct
(13) |
Nov
(29) |
Dec
(14) |
| 2006 |
Jan
(11) |
Feb
(2) |
Mar
(15) |
Apr
(11) |
May
(23) |
Jun
(14) |
Jul
(4) |
Aug
(19) |
Sep
(3) |
Oct
(34) |
Nov
(7) |
Dec
(7) |
| 2007 |
Jan
(2) |
Feb
(11) |
Mar
(15) |
Apr
|
May
(21) |
Jun
(17) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2008 |
Jan
|
Feb
(9) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(6) |
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
(12) |
| 2010 |
Jan
|
Feb
(2) |
Mar
(3) |
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
1
|
2
(1) |
3
(1) |
4
|
5
(1) |
6
|
7
|
|
8
|
9
|
10
(3) |
11
(2) |
12
(1) |
13
(2) |
14
|
|
15
|
16
|
17
(1) |
18
(2) |
19
(4) |
20
(2) |
21
|
|
22
|
23
(2) |
24
|
25
(4) |
26
(2) |
27
(1) |
28
|
|
29
|
30
(1) |
31
(4) |
|
|
|
|
|
From: Koichi T. <sh...@e-...> - 2006-10-31 15:18:23
|
Noharasan, The fix looks obvious and plain. Please go ahead and commit. sha > Hi, > > SessiomMonitor have errors if it execute script(sample/Drosophila/sample_osogo_script.py), > because openConfigmDialog function was changed to ConfirmDialog. > With it, the argument of setXAxis in TracerWindow has changed. > SessionMonitor on Linux have the same erros. > > May I commit it because SessionMonitor can execute the script > when changing as follows ? > If you agree with this, I will similarly change Drosophila-cpp/run_osogo.py. > > > $ diff -w sample_osogo_script.py sample_osogo_script.py.org > 3d2 > < from ConfirmWindow import * > 5c4 > < ConfirmWindow( "Loading model, creating loggers", 'Test' ) > --- >> openConfirmWindow( "Loading model, creating loggers", 'Test' ) > 18c17 > < ConfirmWindow( "Logger for Variable P0 created", 'Test' ) > --- >> openConfirmWindow( "Logger for Variable P0 created", 'Test' ) > 22c21 > < ConfirmWindow( "Simulation run for 10 secs", "Test" ) > --- >> openConfirmWindow( "Simulation run for 10 secs", "Test" ) > 29c28 > < ConfirmWindow( "Model saved", 'Test' ) > --- >> openConfirmWindow( "Model saved", 'Test' ) > 36c35 > < ConfirmWindow( "EntityListWindow tested", 'Test' ) > --- >> openConfirmWindow( "EntityListWindow tested", 'Test' ) > 44c43 > < ConfirmWindow( "StepperWindow tested", 'Test' ) > --- >> openConfirmWindow( "StepperWindow tested", 'Test' ) > 48c47 > < ConfirmWindow( "Creating boardwindow", 'Test' ) > --- >> openConfirmWindow( "Creating boardwindow", 'Test' ) > 54c53 > < ConfirmWindow( "Creating pluginwindows on board", 'Test' ) > --- >> openConfirmWindow( "Creating pluginwindows on board", 'Test' ) > 61c60 > < ConfirmWindow( "Changing pack direction", 'Test' ) > --- >> openConfirmWindow( "Changing pack direction", 'Test' ) > 69c68 > < ConfirmWindow( "BoardWindow tested", 'Test' ) > --- >> openConfirmWindow( "BoardWindow tested", 'Test' ) > 73c72 > < ConfirmWindow( "BoardWindow closed", 'Test' ) > --- >> openConfirmWindow( "BoardWindow closed", 'Test' ) > 75c74 > < ConfirmWindow( "Creating standalone pluginwindows", 'Test' ) > --- >> openConfirmWindow( "Creating standalone pluginwindows", 'Test' ) > 86c85 > < ConfirmWindow( "Change tracerwindow to strip mode", 'Test' ) > --- >> openConfirmWindow( "Change tracerwindow to strip mode", 'Test' ) > 91c90 > < ConfirmWindow( "Hiding a trace", 'Test' ) > --- >> openConfirmWindow( "Hiding a trace", 'Test' ) > 95c94 > < ConfirmWindow( "Unhiding a trace", 'Test' ) > --- >> openConfirmWindow( "Unhiding a trace", 'Test' ) > 100c99 > < ConfirmWindow( "Change to history mode", 'Test' ) > --- >> openConfirmWindow( "Change to history mode", 'Test' ) > 103c102 > < ConfirmWindow( "Zooming In", 'Test' ) > --- >> openConfirmWindow( "Zooming In", 'Test' ) > 105c104 > < ConfirmWindow( "Zooming In again", 'Test' ) > --- >> openConfirmWindow( "Zooming In again", 'Test' ) > 108c107 > < ConfirmWindow( "Change scale of tracerwindow", 'Test' ) > --- >> openConfirmWindow( "Change scale of tracerwindow", 'Test' ) > 113c112 > < ConfirmWindow( "Zooming Out", 'Test' ) > --- >> openConfirmWindow( "Zooming Out", 'Test' ) > 117,118c116,117 > < ConfirmWindow( "Show phase plot", 'Test' ) > < tracer1.setXAxis( fpn_p0 ) > --- >> openConfirmWindow( "Show phase plot", 'Test' ) >> tracer1.setXAxis( createFullPNString( fpn_p0 ) ) > 120c119 > < ConfirmWindow( "Resize tracer", 'Test' ) > --- >> openConfirmWindow( "Resize tracer", 'Test' ) > 124c123 > < ConfirmWindow( "Show time plot again", "Test" ) > --- >> openConfirmWindow( "Show time plot again", "Test" ) > 127c126 > < ConfirmWindow( "TracerWindow tested", 'Test' ) > --- >> openConfirmWindow( "TracerWindow tested", 'Test' ) > 136c135 > < ConfirmWindow( "Logger data files saved", 'Test' ) > --- >> openConfirmWindow( "Logger data files saved", 'Test' ) > 140c139 > < if ConfirmWindow( "Quit application?", 'Test' ): > --- >> if openConfirmWindow( "Quit application?", 'Test' ): > > Best regards, > > Sachio Nohara. > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Ecell-devel mailing list > Ece...@li... > https://lists.sourceforge.net/lists/listinfo/ecell-devel |
|
From: <no...@cb...> - 2006-10-31 10:44:25
|
Hi, SessiomMonitor have errors if it execute script(sample/Drosophila/sample_osogo_script.py), because openConfigmDialog function was changed to ConfirmDialog. With it, the argument of setXAxis in TracerWindow has changed. SessionMonitor on Linux have the same erros. May I commit it because SessionMonitor can execute the script when changing as follows ? If you agree with this, I will similarly change Drosophila-cpp/run_osogo.py. $ diff -w sample_osogo_script.py sample_osogo_script.py.org 3d2 < from ConfirmWindow import * 5c4 < ConfirmWindow( "Loading model, creating loggers", 'Test' ) --- > openConfirmWindow( "Loading model, creating loggers", 'Test' ) 18c17 < ConfirmWindow( "Logger for Variable P0 created", 'Test' ) --- > openConfirmWindow( "Logger for Variable P0 created", 'Test' ) 22c21 < ConfirmWindow( "Simulation run for 10 secs", "Test" ) --- > openConfirmWindow( "Simulation run for 10 secs", "Test" ) 29c28 < ConfirmWindow( "Model saved", 'Test' ) --- > openConfirmWindow( "Model saved", 'Test' ) 36c35 < ConfirmWindow( "EntityListWindow tested", 'Test' ) --- > openConfirmWindow( "EntityListWindow tested", 'Test' ) 44c43 < ConfirmWindow( "StepperWindow tested", 'Test' ) --- > openConfirmWindow( "StepperWindow tested", 'Test' ) 48c47 < ConfirmWindow( "Creating boardwindow", 'Test' ) --- > openConfirmWindow( "Creating boardwindow", 'Test' ) 54c53 < ConfirmWindow( "Creating pluginwindows on board", 'Test' ) --- > openConfirmWindow( "Creating pluginwindows on board", 'Test' ) 61c60 < ConfirmWindow( "Changing pack direction", 'Test' ) --- > openConfirmWindow( "Changing pack direction", 'Test' ) 69c68 < ConfirmWindow( "BoardWindow tested", 'Test' ) --- > openConfirmWindow( "BoardWindow tested", 'Test' ) 73c72 < ConfirmWindow( "BoardWindow closed", 'Test' ) --- > openConfirmWindow( "BoardWindow closed", 'Test' ) 75c74 < ConfirmWindow( "Creating standalone pluginwindows", 'Test' ) --- > openConfirmWindow( "Creating standalone pluginwindows", 'Test' ) 86c85 < ConfirmWindow( "Change tracerwindow to strip mode", 'Test' ) --- > openConfirmWindow( "Change tracerwindow to strip mode", 'Test' ) 91c90 < ConfirmWindow( "Hiding a trace", 'Test' ) --- > openConfirmWindow( "Hiding a trace", 'Test' ) 95c94 < ConfirmWindow( "Unhiding a trace", 'Test' ) --- > openConfirmWindow( "Unhiding a trace", 'Test' ) 100c99 < ConfirmWindow( "Change to history mode", 'Test' ) --- > openConfirmWindow( "Change to history mode", 'Test' ) 103c102 < ConfirmWindow( "Zooming In", 'Test' ) --- > openConfirmWindow( "Zooming In", 'Test' ) 105c104 < ConfirmWindow( "Zooming In again", 'Test' ) --- > openConfirmWindow( "Zooming In again", 'Test' ) 108c107 < ConfirmWindow( "Change scale of tracerwindow", 'Test' ) --- > openConfirmWindow( "Change scale of tracerwindow", 'Test' ) 113c112 < ConfirmWindow( "Zooming Out", 'Test' ) --- > openConfirmWindow( "Zooming Out", 'Test' ) 117,118c116,117 < ConfirmWindow( "Show phase plot", 'Test' ) < tracer1.setXAxis( fpn_p0 ) --- > openConfirmWindow( "Show phase plot", 'Test' ) > tracer1.setXAxis( createFullPNString( fpn_p0 ) ) 120c119 < ConfirmWindow( "Resize tracer", 'Test' ) --- > openConfirmWindow( "Resize tracer", 'Test' ) 124c123 < ConfirmWindow( "Show time plot again", "Test" ) --- > openConfirmWindow( "Show time plot again", "Test" ) 127c126 < ConfirmWindow( "TracerWindow tested", 'Test' ) --- > openConfirmWindow( "TracerWindow tested", 'Test' ) 136c135 < ConfirmWindow( "Logger data files saved", 'Test' ) --- > openConfirmWindow( "Logger data files saved", 'Test' ) 140c139 < if ConfirmWindow( "Quit application?", 'Test' ): --- > if openConfirmWindow( "Quit application?", 'Test' ): Best regards, Sachio Nohara. |
|
From: Satya A. <sa...@sf...> - 2006-10-31 01:56:57
|
Hi Nohara-san, Please go ahead and commit the changes. They all seem fine. Thank you. satya > Hi, > > When I tried to create the installer on windows, > I changed the following items. > If you agree those, I will commit the following changes to SF. > > > (1). ecell/model-editor/Makefile.am > > This changes have no effect on Linux version, > because they is not used only on Windows. > > $ diff -w Makefile.am Makefile.am.org > 95c95 > < PY2EXE_SETUP = ../../ecell/pyecs/windows/py2exeSetup > --- > >> PY2EXE_SETUP = ../ecell/pyecs/windows/py2exeSetup >> > 97c97 > < PATH_VARIABLES = ../../ecell/pyecs/windows/pathVariables > --- > >> PATH_VARIABLES = ../ecell/pyecs/windows/pathVariables >> > > > (2). ecell/session-monitor/Makefile.am > > This changes have no effect on Linux version, > because they is not used only on Windows. > > $ diff -w Makefile.am Makefile.am.org > 74c74 > < PY2EXE_SETUP = ../../ecell/pyecs/windows/py2exeSetup > --- > >> PY2EXE_SETUP = ../ecell/pyecs/windows/py2exeSetup >> > 76c76 > < PATH_VARIABLES = ../../ecell/pyecs/windows/pathVariables > --- > >> PATH_VARIABLES = ../ecell/pyecs/windows/pathVariables >> > > > (3). ecell/toollauncher/Makefile.am > > This changes have no effect on Linux version, > because they is not used only on Windows. > > $ diff -w Makefile.am Makefile.am.org > 34c34 > < PY2EXE_SETUP = ../../ecell/pyecs/windows/py2exeSetup > --- > >> PY2EXE_SETUP = ../ecell/pyecs/windows/py2exeSetup >> > 36c36 > < PATH_VARIABLES = ../../ecell/pyecs/windows/pathVariables > --- > >> PATH_VARIABLES = ../ecell/pyecs/windows/pathVariables >> > > > (4). ecell/pyecs/windows/pathVariables.in > > Because the directory compsition had changed, > it changed as follows.I changed this with satya. > > $ diff -w pathVariables.in pathVariables.in.org > 30,34c30,31 > < os.environ['ECELL3_LIBDIR']=\ > < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME']) > < > < os.environ['SESSIONMONITORPATH']=\ > < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'session-monitor' ) > --- > >> os.environ['OSOGOPATH']=\ >> os.path.join( prefix, 'lib', 'osogo' ) >> > 37c34 > < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'modeleditor') > --- > >> os.path.join( prefix, 'lib', 'modeleditor' ) >> > 40c37 > < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'toollauncher' ) > --- > >> os.path.join( prefix, 'lib', 'toollauncher' ) >> > 43c40 > < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'dms' ) > --- > >> os.path.join( prefix, 'lib', 'ecell', os.environ['VERSION'] ) >> > 117c114 > < os.environ['SESSIONMONITORPATH'], > --- > >> os.environ['OSOGOPATH'], >> > > > (5). ecell/configure.in > > Because numpy is installed in Lib directory, > Lib directory was added to EXT_GUESS. > > $ diff -w configure.in configure.in.org > 213c213 > < EXT_GUESS="${py_prefix}/Lib/${numpy_include} ${py_prefix}/lib/${pydir}/${numpy_include} ${py_prefix}/lib64/${pydir}/${numpy_include} /usr/lib/${pydir}/${numpy_include} > /usr/lib64/${pydir}/${numpy_include} /usr/local/lib/${pydir}/${numpy_include} /usr/local/lib64/${pydir}/${numpy_include} ${prefix}/include /usr/include/${pydir} > /usr/local/include /opt/numpy/include" > --- > >> EXT_GUESS="${py_prefix}/lib/${pydir}/${numpy_include} ${py_prefix}/lib64/${pydir}/${numpy_include} /usr/lib/${pydir}/${numpy_include} /usr/lib64/${pydir}/ >> > ${numpy_include} /usr/local/lib/${pydir}/${numpy_include} /usr/local/lib64/${pydir}/${numpy_include} ${prefix}/include /usr/include/${pydir} /usr/local/include > /opt/numpy/include" > > > (6). ecell/pyecs/windows/ecell3-installer.iss.in > > $ diff -w ecell3-installer.iss.in ecell3-installer.iss.in.org > 108c108 > < Name: {group}\E-Cell Toollauncher; Filename: {app}\bin\ecell3-toollauncher.exe; WorkingDir: {app}\share > --- > >> Name: {group}\E-Cell Toollauncher; Filename: {app}\bin\toollauncher.exe; WorkingDir: {app}\share >> > 132c132 > < Name: {userdesktop}\E-Cell Toollauncher; Filename: {app}\bin\ecell3-toollauncher.exe; WorkingDir: {app}; Tasks: desktopicon > --- > >> Name: {userdesktop}\E-Cell Toollauncher; Filename: {app}\bin\toollauncher.exe; WorkingDir: {app}; Tasks: desktopicon >> > 138c138 > < Name: {userappdata}\Microsoft\Internet Explorer\Quick Launch\E-Cell Toollauncher; Filename: {app}\bin\ecell3-toollauncher.exe; WorkingDir: {app}; Tasks: > quicklaunchicon; MinVersion: 4,4 > --- > >> Name: {userappdata}\Microsoft\Internet Explorer\Quick Launch\E-Cell Toollauncher; Filename: {app}\bin\toollauncher.exe; WorkingDir: {app}; Tasks: quicklaunchicon; >> > MinVersion: 4,4 > > > (7). INSTALL.win32 > > We update the procedure to create the installer. > > > > best regards, > > Sachio Nohara > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Ecell-devel mailing list > Ece...@li... > https://lists.sourceforge.net/lists/listinfo/ecell-devel > > > |
|
From: <no...@cb...> - 2006-10-31 00:56:48
|
Hi, When I tried to create the installer on windows, I changed the following items. If you agree those, I will commit the following changes to SF. (1). ecell/model-editor/Makefile.am This changes have no effect on Linux version, because they is not used only on Windows. $ diff -w Makefile.am Makefile.am.org 95c95 < PY2EXE_SETUP = ../../ecell/pyecs/windows/py2exeSetup --- > PY2EXE_SETUP = ../ecell/pyecs/windows/py2exeSetup 97c97 < PATH_VARIABLES = ../../ecell/pyecs/windows/pathVariables --- > PATH_VARIABLES = ../ecell/pyecs/windows/pathVariables (2). ecell/session-monitor/Makefile.am This changes have no effect on Linux version, because they is not used only on Windows. $ diff -w Makefile.am Makefile.am.org 74c74 < PY2EXE_SETUP = ../../ecell/pyecs/windows/py2exeSetup --- > PY2EXE_SETUP = ../ecell/pyecs/windows/py2exeSetup 76c76 < PATH_VARIABLES = ../../ecell/pyecs/windows/pathVariables --- > PATH_VARIABLES = ../ecell/pyecs/windows/pathVariables (3). ecell/toollauncher/Makefile.am This changes have no effect on Linux version, because they is not used only on Windows. $ diff -w Makefile.am Makefile.am.org 34c34 < PY2EXE_SETUP = ../../ecell/pyecs/windows/py2exeSetup --- > PY2EXE_SETUP = ../ecell/pyecs/windows/py2exeSetup 36c36 < PATH_VARIABLES = ../../ecell/pyecs/windows/pathVariables --- > PATH_VARIABLES = ../ecell/pyecs/windows/pathVariables (4). ecell/pyecs/windows/pathVariables.in Because the directory compsition had changed, it changed as follows.I changed this with satya. $ diff -w pathVariables.in pathVariables.in.org 30,34c30,31 < os.environ['ECELL3_LIBDIR']=\ < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME']) < < os.environ['SESSIONMONITORPATH']=\ < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'session-monitor' ) --- > os.environ['OSOGOPATH']=\ > os.path.join( prefix, 'lib', 'osogo' ) 37c34 < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'modeleditor') --- > os.path.join( prefix, 'lib', 'modeleditor' ) 40c37 < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'toollauncher' ) --- > os.path.join( prefix, 'lib', 'toollauncher' ) 43c40 < os.path.join( prefix, 'lib', os.environ['ECELL_DIRNAME'], 'dms' ) --- > os.path.join( prefix, 'lib', 'ecell', os.environ['VERSION'] ) 117c114 < os.environ['SESSIONMONITORPATH'], --- > os.environ['OSOGOPATH'], (5). ecell/configure.in Because numpy is installed in Lib directory, Lib directory was added to EXT_GUESS. $ diff -w configure.in configure.in.org 213c213 < EXT_GUESS="${py_prefix}/Lib/${numpy_include} ${py_prefix}/lib/${pydir}/${numpy_include} ${py_prefix}/lib64/${pydir}/${numpy_include} /usr/lib/${pydir}/${numpy_include} /usr/lib64/${pydir}/${numpy_include} /usr/local/lib/${pydir}/${numpy_include} /usr/local/lib64/${pydir}/${numpy_include} ${prefix}/include /usr/include/${pydir} /usr/local/include /opt/numpy/include" --- > EXT_GUESS="${py_prefix}/lib/${pydir}/${numpy_include} ${py_prefix}/lib64/${pydir}/${numpy_include} /usr/lib/${pydir}/${numpy_include} /usr/lib64/${pydir}/ ${numpy_include} /usr/local/lib/${pydir}/${numpy_include} /usr/local/lib64/${pydir}/${numpy_include} ${prefix}/include /usr/include/${pydir} /usr/local/include /opt/numpy/include" (6). ecell/pyecs/windows/ecell3-installer.iss.in $ diff -w ecell3-installer.iss.in ecell3-installer.iss.in.org 108c108 < Name: {group}\E-Cell Toollauncher; Filename: {app}\bin\ecell3-toollauncher.exe; WorkingDir: {app}\share --- > Name: {group}\E-Cell Toollauncher; Filename: {app}\bin\toollauncher.exe; WorkingDir: {app}\share 132c132 < Name: {userdesktop}\E-Cell Toollauncher; Filename: {app}\bin\ecell3-toollauncher.exe; WorkingDir: {app}; Tasks: desktopicon --- > Name: {userdesktop}\E-Cell Toollauncher; Filename: {app}\bin\toollauncher.exe; WorkingDir: {app}; Tasks: desktopicon 138c138 < Name: {userappdata}\Microsoft\Internet Explorer\Quick Launch\E-Cell Toollauncher; Filename: {app}\bin\ecell3-toollauncher.exe; WorkingDir: {app}; Tasks: quicklaunchicon; MinVersion: 4,4 --- > Name: {userappdata}\Microsoft\Internet Explorer\Quick Launch\E-Cell Toollauncher; Filename: {app}\bin\toollauncher.exe; WorkingDir: {app}; Tasks: quicklaunchicon; MinVersion: 4,4 (7). INSTALL.win32 We update the procedure to create the installer. best regards, Sachio Nohara |
|
From: Petteri K. <pet...@us...> - 2006-10-30 11:47:55
|
Hei, On Oct 27, 2006, at 3:01 AM, Koichi Takahashi wrote: > > I'm not familiar with OSX environment. What's the nature of this > __APPLE__ preprocessor symbol? If this is an officially defined, > necessary and sufficient way to detect Mac OSX environment, > this patch seems acceptable as is. Macro __APPLE__ is hard coded to the compiler on Mac OS X/Darwin. > >> ./dmtool/configure.in >> >> - shrext_cmds need to be evaluated and then take the value. > > ok. Why is this working on linux without eval? > GNU/Linux: shrext_cmds=".so" Mac OS X/Darwin: shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' On Darwin you need to evaluate the commands. On GNU/Linux the `commands' are just a static string - no need to evaluate it. The correct way is to evaluate the commands - the variable can contain commands as its name suggests. >> dmtool/dmcompile.in >> >> - Autoconf compiler/linker flags must be used. Otherwise >> compiling/linking may fail if headers/libraries are not in their >> default >> places. >> - Added also Darwin specific compiler/linker flags. Please test >> these >> patch on GNU/Linux and > > Looks ok. May be made cleaner, but platform dependency is unavoidable > here. One question is about ' -dynamiclib -install_name', which > is different from standard gcc options. Isn't Xcode's compiler > gcc? > It is gcc, currently version 4.0.1, and comes with Apple/Darwin surprise ingredients. > > I understand what and why you did. But everything needs to be > there if we want to say we support OSX. Can you find atlas of blas > in fink? > It is in the unstable branch. However, the INSTALL file needs to be modified to mention this dependency and optimally autoconf needs to include a check for this. > >> - Also removed Python*Process.cpp because of unknown depency to >> functions listed below. >> >> _PyEval_EvalCode >> _PyFloat_FromDouble >> _PyFloat_Type >> _PyImport_AddModule >> _PyImport_GetModuleDict >> _PyModule_GetDict >> _PyString_FromStringAndSize >> _PyType_IsSubtype >> _Py_CompileString >> _Py_IsInitialized >> __Py_NoneStruct > > It has to be linked with libpython. I didn't explicitly instructed > the linker with the assumption that pyecs, which is dynamically linked > with libpython, is always loaded before PythonProcess. I admit this > is not the cleanest approach. dmcompile or ecell3-dmc could be > modified to be able to detect such dependencies as well as other > requirements from the source file. > For example, the first line of PythonProcess.cpp may be something > like this: > // -lpython > Ok. I shall take a look into this issue. |
|
From: Takeshi S. <sak...@sf...> - 2006-10-27 06:48:14
|
Yes. I do. Could you your unix name at sf.net? > Petteri -zak -----Original Message----- From: ece...@li... [mailto:ece...@li...] On Behalf Of Koichi Takahashi Sent: Friday, October 27, 2006 3:01 AM To: ece...@li... Subject: Re: [Ecell-devel] building ecell on Mac (Oops, sorry, I 'edit as new'-ed wrong message) Hi Petteri, I'm back in California. Here goes some quick comments about your patches. Zak, can you give Petteri a write access to the svn repo? > ecell/libecs/osif.cpp >=20 > - Include correct header file, wrapped with __APPLE__ - this is a must > patch. I'm not familiar with OSX environment. What's the nature of this __APPLE__ preprocessor symbol? If this is an officially defined, necessary and sufficient way to detect Mac OSX environment, this patch seems acceptable as is. Inclusion of sys/mount.h has been pointed out by most people who attempted to port to OSX, so this should be the right thing to do. vvector/osif is legacy, and will need to be replaced by a modern alternative, though. > ./dmtool/configure.in >=20 > - shrext_cmds need to be evaluated and then take the value. ok. Why is this working on linux without eval? > dmtool/dmcompile.in >=20 > - Autoconf compiler/linker flags must be used. Otherwise=20 > compiling/linking may fail if headers/libraries are not in their default=20 > places. > - Added also Darwin specific compiler/linker flags. Please test these > patch on GNU/Linux and Looks ok. May be made cleaner, but platform dependency is unavoidable here. One question is about ' -dynamiclib -install_name', which is different from standard gcc options. Isn't Xcode's compiler gcc? > ecell/configure.in >=20 > - The same fix for shrext_cmds as in dmtool/configure.in - mandatory. > - I also had to replace AM_CHECK_PYTHON_HEADERS with verbatim code to=20 > resolve python includes. The macro which was used created buggy=20 > configure script in my environment. You may skip this but I have to=20 > consider it in further Mac builds. Couldn't find the patch in email attachment. > ecell/dm/Makefile.am >=20 > - I flagged out sources which had dependency to atlas/blas library.=20 I understand what and why you did. But everything needs to be there if we want to say we support OSX. Can you find atlas of blas in fink? > Please mention those dependencies in INSTALL. >> Zak > - Also removed Python*Process.cpp because of unknown depency to=20 > functions listed below. >=20 > _PyEval_EvalCode > _PyFloat_FromDouble > _PyFloat_Type > _PyImport_AddModule > _PyImport_GetModuleDict > _PyModule_GetDict > _PyString_FromStringAndSize > _PyType_IsSubtype > _Py_CompileString > _Py_IsInitialized > __Py_NoneStruct It has to be linked with libpython. I didn't explicitly instructed the linker with the assumption that pyecs, which is dynamically linked with libpython, is always loaded before PythonProcess. I admit this is not the cleanest approach. dmcompile or ecell3-dmc could be modified to be able to detect such dependencies as well as other requirements from the source file. For example, the first line of PythonProcess.cpp may be something like this: // -lpython > Finally, I would appreciate if one of you experts would modify=20 > doc/sample/simple/README so that dummy user like myself could run a=20 > simple test. Even better if you could include 'test' rule or rules in=20 > Makefile. >> Zak or Nathan? > Naturally I am willing to test any changes you include in your version > control. After the mandatory changes are made, it will be rather=20 > straightforward to create a script which installs the whole thing in > go. >=20 > --=20 > Petteri >=20 >=20 >=20 >=20 > ------------------------------------------------------------------------ >=20 > ------------------------------------------------------------------------ - > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D= 121642 >=20 >=20 > ------------------------------------------------------------------------ >=20 > _______________________________________________ > Ecell-devel mailing list > Ece...@li... > https://lists.sourceforge.net/lists/listinfo/ecell-devel ------------------------------------------------------------------------ - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D= 121642 _______________________________________________ Ecell-devel mailing list Ece...@li... https://lists.sourceforge.net/lists/listinfo/ecell-devel |
|
From: Koichi T. <sh...@e-...> - 2006-10-26 18:01:47
|
(Oops, sorry, I 'edit as new'-ed wrong message) Hi Petteri, I'm back in California. Here goes some quick comments about your patches. Zak, can you give Petteri a write access to the svn repo? > ecell/libecs/osif.cpp > > - Include correct header file, wrapped with __APPLE__ - this is a must > patch. I'm not familiar with OSX environment. What's the nature of this __APPLE__ preprocessor symbol? If this is an officially defined, necessary and sufficient way to detect Mac OSX environment, this patch seems acceptable as is. Inclusion of sys/mount.h has been pointed out by most people who attempted to port to OSX, so this should be the right thing to do. vvector/osif is legacy, and will need to be replaced by a modern alternative, though. > ./dmtool/configure.in > > - shrext_cmds need to be evaluated and then take the value. ok. Why is this working on linux without eval? > dmtool/dmcompile.in > > - Autoconf compiler/linker flags must be used. Otherwise > compiling/linking may fail if headers/libraries are not in their default > places. > - Added also Darwin specific compiler/linker flags. Please test these > patch on GNU/Linux and Looks ok. May be made cleaner, but platform dependency is unavoidable here. One question is about ' -dynamiclib -install_name', which is different from standard gcc options. Isn't Xcode's compiler gcc? > ecell/configure.in > > - The same fix for shrext_cmds as in dmtool/configure.in - mandatory. > - I also had to replace AM_CHECK_PYTHON_HEADERS with verbatim code to > resolve python includes. The macro which was used created buggy > configure script in my environment. You may skip this but I have to > consider it in further Mac builds. Couldn't find the patch in email attachment. > ecell/dm/Makefile.am > > - I flagged out sources which had dependency to atlas/blas library. I understand what and why you did. But everything needs to be there if we want to say we support OSX. Can you find atlas of blas in fink? > Please mention those dependencies in INSTALL. >> Zak > - Also removed Python*Process.cpp because of unknown depency to > functions listed below. > > _PyEval_EvalCode > _PyFloat_FromDouble > _PyFloat_Type > _PyImport_AddModule > _PyImport_GetModuleDict > _PyModule_GetDict > _PyString_FromStringAndSize > _PyType_IsSubtype > _Py_CompileString > _Py_IsInitialized > __Py_NoneStruct It has to be linked with libpython. I didn't explicitly instructed the linker with the assumption that pyecs, which is dynamically linked with libpython, is always loaded before PythonProcess. I admit this is not the cleanest approach. dmcompile or ecell3-dmc could be modified to be able to detect such dependencies as well as other requirements from the source file. For example, the first line of PythonProcess.cpp may be something like this: // -lpython > Finally, I would appreciate if one of you experts would modify > doc/sample/simple/README so that dummy user like myself could run a > simple test. Even better if you could include 'test' rule or rules in > Makefile. >> Zak or Nathan? > Naturally I am willing to test any changes you include in your version > control. After the mandatory changes are made, it will be rather > straightforward to create a script which installs the whole thing in one > go. > > -- > Petteri > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > ------------------------------------------------------------------------ > > _______________________________________________ > Ecell-devel mailing list > Ece...@li... > https://lists.sourceforge.net/lists/listinfo/ecell-devel |
|
From: Koichi T. <sh...@e-...> - 2006-10-26 17:44:39
|
Hei, I don't know if there are boost binaries available for Mac OS X. I took the boost sources and they compiled but some linking failed. Then I noticed that boost is included in Fink platform (fink.sf.net) and didn't look any further. Ecell has so long and winding dependencies that I wouldn't like to solve those myself. Rather than making a Mac binary installer, the path of least resistance is to create a Fink, i.e. Debian source package of ecell. I didn't run anything yet. The README in the simplest sample was so confusing that I stopped trying. I can try again if somebody fixes the instructions. In addition, it would be very nice to have a proper test suite. -- Petteri On Oct 19, 2006, at 9:26 AM, Bin Hu wrote: > Hi, Petteri Kettunen, > > Thank you very much for sending us a summary of how to compile ecell3 > on PPC Mac. It is really a great news. I want to know how did you > install boost library on Mac. Is there any binary distribution > available for boost? And, did you test the ecell3-session interactive > mode in your Mac? > > Shafi and Zak, maybe we shall put a mac binary package on SF. > > > Regards, > Bin > > ---------------------------------------------------------------------- > --- > Using Tomcat but need to do more? Need to support web services, > security? > Get stuff done quickly with pre-integrated technology to make your > job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Ecell-devel mailing list > Ece...@li... > https://lists.sourceforge.net/lists/listinfo/ecell-devel > ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Ecell-devel mailing list Ece...@li... https://lists.sourceforge.net/lists/listinfo/ecell-devel |
|
From: Takeshi S. <sak...@sf...> - 2006-10-25 16:39:34
|
Hi members, Recently there are many SPAM mail posting our mailing list. Hence I would change a privacy policy of ecell-devel mailing list. From now on, this ML only accepts member's posting. All the messages should be put the sender address as same as member's subscription. I'm sorry the inconvenience. Please check your sender address when you're posting message. Thanks in advance. -zak -----Original Message----- From: ece...@li... [mailto:ece...@li...] On Behalf Of Takeshi Sakurada Sent: Thursday, October 26, 2006 1:31 AM To: ece...@li... Subject: [Ecell-devel] test mail. pls ignore This is test mail. Please ignore. -zak ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Ecell-devel mailing list Ece...@li... https://lists.sourceforge.net/lists/listinfo/ecell-devel |
|
From: Takeshi S. <sak...@sf...> - 2006-10-25 16:31:35
|
This is test mail. Please ignore. -zak |
|
From: Finance.com b. <cur...@rr...> - 2006-10-25 11:00:37
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.2900.2963" name=GENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <div align="left"> <p><font face=Arial = >decide if the Chelsea man should make way for Owen Hargreaves, who was an</font><BR><font face=Arial = >Verdict: With every moment captured on camera, there have been some unforgettable</font><BR><BR><IMG alt="" hspace=0 src="cid:2DNB0YNJRXA3M1ORRCS2" align=baseline border=0><BR><BR><font face=Arial = >clinical finish against Serbia & Montenegro after a mouth-watering team move of 24(England), Vava (Brazil), Pele (Brazil) and now Zinedine Zidane (France)</font><BR><BR><font face=Arial = >Hargreaves could be the man to finally release Gerrard from the shackles he is forcedshowing by some obliging apologists - but he does not start his new career covered in glory.</font><BR><font face=Arial = >players, but with 11 defenders there is not enough space."A deep Luis Figo free-kick was not dealt with by Gary Neville or Lampard and thereChelsea, almost single-handedly inspiring them to Champions League and FA Cup glory.</font><BR><BR><font face=Arial = >Lennon's introduction gave England brief hope as his pace took him past two players,the back for England in a tense first half.</font></p> </div> </BODY></HTML> |
|
From: Jill S. <Liq...@gm...> - 2006-10-25 00:40:09
|
matinal bellatrix Up On the News - nasdaq: GITH - Q4 Demand Predicted to Remain Strong for Platinum IT Consulting Target Niche thuban. Oracle, SQL Server and Sybase Can't All Be Wrong. Staffing companies are the #1 employer in the USA today, and IT staffing with GITH is leading the revolution. whomsoever. NEW YORK, NY (PRIMEZONE) -- GITH -- A recent report based on a survey of fourteen hundred Chief Information Officers predicts steady growth in Q4 for technology IT hiring. Thirty-four percent of CIOs surveyed plan to add IT staff and none anticipated cutbacks in personnel. beebread. GITH sources personnel for companies and offers custom software solutions related to Oracle, SQL Server and Sybase and software such as SAP, JD Edwards, and PeopleSoft. The report done on behalf of Robert Half Technology specifically mentions that 71% of CIOs anticipated needing personnel having skill sets related to Oracle, SQL Server, and DB2. cannabis. Read the entire news release bamboo. http://biz.yahoo.com/pz/061020/107201.html GITH has been releasing steady news worldwide, from Yahoo Finance & Bloomberg to MSN & CNN Money, even the NASDAQ. Exposure for GITH is expansive. The increased frequency of news leads us to believe that something big is coming for GITH. adsorption. Oct. 17, 2006 (PRIMEZONE) -- Executive Job Market Report Forecasting 'War For Talent' Bolsters Comments by GITH President peptide. http://news.moneycentral.msn.com/ticker/article.asp?Symbol=US:GITH&Feed=PZ&Date=20061017&ID=6111313 Oct. 14, 2006 (PRIMEZONE) -- GITH Foresees Growth in Fourth Quarter... posts increase in sales revenue... birdbath. http://www.bloomberg.com/apps/news?pid=conewsstory&refer=conews&tkr=GITH:US&sid=aMMgvBh5UWMA Sept. 25, 2006 (PRIMEZONE) -- Market forces combining over the next few years to drive up demand for a decreasing supply of specialized IT personnel. GITH is leading the 21st Century revolution... amity. http://bigcharts.marketwatch.com/news/articles.asp?guid={F1A16E67-50AD-4860-85E5-8FCC85B1B5B9}&newsid=882141976&symb=GITH&sid=2384270 tether variety kick |
|
From: Noelle <cou...@ro...> - 2006-10-23 20:03:11
|
Hello to you!
{SPUR_1}
{SPUR_3}
{SPUR_4}
Find what you need: {SPUR_DOMAIN}
We thank you for being our customer!
|
|
From: Jess <Jes...@rr...> - 2006-10-23 03:19:07
|
Dear user. You gape for shooting like you had seen in those films… But some of us think it’s impossible Worried it won't work? Come on in here: http://blasdutro/gal/gsm/ Just check yourself! |
|
From: Susie B. <rk...@ar...> - 2006-10-20 19:07:38
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="" src="cid:par...@ar..." height="346" width="715"><br> In the history of design, never once did a design firm single-handedly brand a company solely by the creation of a logo.<br> And actually read an article that stated it's arrival.<br> Two different addresses, and possibly different web sites.<br> The outfit is important when it comes to first impressions, but it cannot by itself define a person.<br> Right, let's make a custom brush out of 'em!<br> Coca-Cola is still a script font; it is updated periodically, but it doesn't change much. the future does look bright for RSS!<br> Truly, having a sizable mailing list would only mean good things for your online business.<br> It comes in handy during peak Internet usage times, when streaming files don't play well. The difference is in the state of mind of the person that will see your ad.<br> Open up your image in Photoshop.<br> you said this would be easy! It's no sin to use temporary letterhead, simple business cards and a basic website.<br> The word branding is as ubiquitous today as the word start-up was in the dot com era, but few companies truly understand the heart of branding. In fact, you need to take control of it, and review that control regularly to make sure you still have it. There is no danger of your message being filtered out as spam.<br> Truly, having a sizable mailing list would only mean good things for your online business. Actually, there was a time when it was even more simple, but from your point of view, somewhere there is a database that keeps track of you and me and everyone else. This DNS is the one that lets you get mail if you have a mail server and lets people get to your website. If you use your web hosting company's name servers for DNS, but the registrar has a different name server recorded for your domain, you could get a different answer than anyone not using that ISP.<br> In fact, you need to take control of it, and review that control regularly to make sure you still have it. I've made brushes out of fuzzy leopard slippers, bananas, old trash cans, fabric swatches, dirt . You may be able to fax a simple form that sets the domain registration information straight. Prospects can also use the forums as a gauge of product popularity and level of active support.<br> But the biggest news of all is that Google, the biggest search engine conglomerate of them all, is now beginning to incorporate RSS, as can be evidenced by new Google AdSense advertising methods. The registrar doesn't necessarily know or care where www.<br> In the same way you are being assessed as to your expert know-how, you can use the postings by your peers to identify those with whom it would make sense to explore setting up joint ventures.<br> <br> </body> </html> |
|
From: Elsa E. <vp...@ar...> - 2006-10-20 09:13:44
|
The great predictions are drawn up. The increase is up to 70% in the last three days. (MXXR) is the profitable deal and those who knows it is making money. The drilling achivements of this highly capable oil company exceeded all its expectations. One time this data hits the street there will be no stopping this one. these days it's around 0.025 but we are waiting it to triple. Once the announcement is made and the PR gets into full swing. Don't waste time and miss out. We counsel you to buy today. The key is getting in early and you have little time. They say that Monday is the day this one will blast off. Take your place before that happens. |
|
From: Petteri K. <pet...@us...> - 2006-10-19 22:31:03
|
Hei, I don't know if there are boost binaries available for Mac OS X. I took the boost sources and they compiled but some linking failed. Then I noticed that boost is included in Fink platform (fink.sf.net) and didn't look any further. Ecell has so long and winding dependencies that I wouldn't like to solve those myself. Rather than making a Mac binary installer, the path of least resistance is to create a Fink, i.e. Debian source package of ecell. I didn't run anything yet. The README in the simplest sample was so confusing that I stopped trying. I can try again if somebody fixes the instructions. In addition, it would be very nice to have a proper test suite. -- Petteri On Oct 19, 2006, at 9:26 AM, Bin Hu wrote: > Hi, Petteri Kettunen, > > Thank you very much for sending us a summary of how to compile ecell3 > on PPC Mac. It is really a great news. I want to know how did you > install boost library on Mac. Is there any binary distribution > available for boost? And, did you test the ecell3-session interactive > mode in your Mac? > > Shafi and Zak, maybe we shall put a mac binary package on SF. > > > Regards, > Bin > > ---------------------------------------------------------------------- > --- > Using Tomcat but need to do more? Need to support web services, > security? > Get stuff done quickly with pre-integrated technology to make your > job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Ecell-devel mailing list > Ece...@li... > https://lists.sourceforge.net/lists/listinfo/ecell-devel > |
|
From: Samuel <An...@ni...> - 2006-10-19 04:50:29
|
We are happy to present you our new project!Today our online auction bidding company Bidpay S.A. has finally begun successful cooperation with American financial oganizations.Our online auction bidding system is secured with many ameican major banks and this is why we, as the official affiliate of these banks, are ready to guarantee safety and security of every online auction opeation our company processes in the USA Available vacancies:Customer support manager: 8 hours per day. 2400$ per month.Requirements: car, PC, cell and home phones, internet access.Assist customers from your region with full time internet and personal support.Bidding manager: part-time 2-4 hours per day. From 4000$ per month + weekly bonuses for succesful completion of daily assigments with no delay.Requirements: internet access and be able to check your email several times a day, cell and home/work phones, personal/business checking bank account(s).Age limit: from 18 y.o.Be able to contact our managers and customers both with your cell phone and email. Assist customers from your region with funds processing from the initial bidder to the seller itself.Checking bank account is obligatory.Become the initial third party between the seller and the bidder from USA region.Transport manager: 6-10 hours per day. 2400$ per month.Requirements: car, PC, cell and home phones, internet access. Punctuality and responsibility.Benefits:1. Become our initial representative and a middleman between the seller and the buyer from your country.2. Gain authority with people from all parts of the world who really rely on your service.3. Possible career growth.4. Work effeciently with no holds and delays and get weekly bonuses besides monthly salary for outstanding performance.For immediate and confidential consideration, please [1]CLICK HERE to send us email with the following APPLICATION FORM.APPLICATION FORM:1. Your full name:2. Your country:3. Your full adress.4. Your mobile contact phone:5. Your fixed/home contact phone:6. Your work contact phone:7. Your contact email:8. Are you ready to start working with our company? (must be 'Yes/No')9. Are you ready to accept money transfers to your bank account (must be 'Yes/No')Sincerly Yours,George JungStaff manager References 1. mailto:bid...@ya... |
|
From: Bin Hu <hu...@ma...> - 2006-10-19 01:05:34
|
I just found that if I run a model in ecell3-session like:
loadModel('../foo.em')
.
.
.
save some files
All the files will be save to the parent directory instead of current
directory. Can anyone fix this?
Regards,
Bin
|
|
From: Bin Hu <hu...@ma...> - 2006-10-19 00:26:08
|
Hi, Petteri Kettunen, Thank you very much for sending us a summary of how to compile ecell3 on PPC Mac. It is really a great news. I want to know how did you install boost library on Mac. Is there any binary distribution available for boost? And, did you test the ecell3-session interactive mode in your Mac? Shafi and Zak, maybe we shall put a mac binary package on SF. Regards, Bin |
|
From: Ryan c. <cor...@rp...> - 2006-10-18 17:44:38
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.2900.2963" name=GENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <div align="left"> <p><font face=Arial = >Grid Protocol Architecture Research Group.</font><BR><BR><font face=Arial = >was huge relief for England to see Tiago slip with the goal at his mercy.</font><BR><IMG alt="" hspace=0 src="cid:9J6VY69VCSIT5LWV4A08" align=baseline border=0><BR><BR><font face=Arial = >England's best hope of a goal was a set-piece and Lampard fired in a free-kick thatKone and Argentina's Maxi Rodriguez - scorer of one of the most wonderful Worldthe ball square so the team did not concede possession.</font><BR><BR><font face=Arial = >Great players make great games - how will anyone ever forget the way Pele's Brazil</font><BR><BR><font face=Arial = >"here's what you could have won" moment when his limited Portugal side ousted England.surrounding his arrival means he will not be afforded the traditional honeymoon period.</font></p> </div> </BODY></HTML> |
|
From: Petteri K. <pet...@us...> - 2006-10-18 12:17:26
|
Hei, I have successfully compiled ecell3 on a PPC Mac. Here I want to summarise what changes you ought to consider. First, the tools I used were: - ecell3 sources from SF version control, snapshot on 9 October - gcc 4.0.1 (XCode) - GNU Make 3.80 (XCode) - numpy-1.0rc2 - autoconf 2.60-4 (fink 10.4 unstable) - libtool 1.5.22-1000 (fink 10.4 unstable) - python 2.3.5-1126 (fink 10.4 unstable) - other dependencies, such as gsl, from fink 10.4 unstable branch Patches are concatenated below. ecell/libecs/osif.cpp - Include correct header file, wrapped with __APPLE__ - this is a must patch. ./dmtool/configure.in - shrext_cmds need to be evaluated and then take the value. dmtool/dmcompile.in - Autoconf compiler/linker flags must be used. Otherwise compiling/ linking may fail if headers/libraries are not in their default places. - Added also Darwin specific compiler/linker flags. Please test these patch on GNU/Linux and ecell/configure.in - The same fix for shrext_cmds as in dmtool/configure.in - mandatory. - I also had to replace AM_CHECK_PYTHON_HEADERS with verbatim code to resolve python includes. The macro which was used created buggy configure script in my environment. You may skip this but I have to consider it in further Mac builds. ecell/dm/Makefile.am - I flagged out sources which had dependency to atlas/blas library. Please mention those dependencies in INSTALL. - Also removed Python*Process.cpp because of unknown depency to functions listed below. _PyEval_EvalCode _PyFloat_FromDouble _PyFloat_Type _PyImport_AddModule _PyImport_GetModuleDict _PyModule_GetDict _PyString_FromStringAndSize _PyType_IsSubtype _Py_CompileString _Py_IsInitialized __Py_NoneStruct Finally, I would appreciate if one of you experts would modify doc/ sample/simple/README so that dummy user like myself could run a simple test. Even better if you could include 'test' rule or rules in Makefile. Naturally I am willing to test any changes you include in your version control. After the mandatory changes are made, it will be rather straightforward to create a script which installs the whole thing in one go. -- Petteri |
|
From: Nellie M. <oc...@da...> - 2006-10-17 08:53:37
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="" src="cid:par...@da..." height="375" width="822"><br> When text is pasted from . Some of these are simple minor version upgrades that we are happy to add to your current iDesign system. All PFC Jay Griffin wanted to.<br> The Q works like magic. This driver features the same great technologies as the previous Synchron Revolver generating illegal power. Essentially, the student has to realize what. The moveable tungsten and aluminum weights create customizable launch angles and ball flight options.<br> html Just goes to show you how Republicans are genuine.<br> It produces a higher launch angle with lower backspin for more carry and increased roll, and delivers an increased MOI for less distance lost on off-center hits.<br> Sample Web Site DesignsBelow .<br> Six weight configurations give you total control of your game . The control is almost.<br> With our headquarters in Canada our clients may take advantage of the Canadian dollar exchange rate.<br> In fact, taking control of web content and application has become a business .<br> However, it can be done and it is done.<br> At home WebDBX is recognized as a leader in website .<br> The control is almost. html Just goes to show you how Republicans are genuine. Classroom management isn't just about some teachers having high powered behavior change strategies that just seem to work. The woods feature higher lofts and lower profile for higher launch angles. You are probably asking yourself why you would do this.<br> Leasing offers many advantages: low startup costs and fixed monthly fees are just some of the financial benefits that our Content Management Solution program offers.<br> This comprehensive, yet simple to use Content Management System plus graphics editor is .<br> The beta titanium is also lighter than stainless steel maximizing the perimeter weighting of the head and creating a deep undercut channel for extra forgiveness. Much easier to hit consistently than a traditional long iron, and also hits very well out of the rough. You are probably asking yourself why you would do this.<br> This aquisition promises to bring . If this does happen, an exceptionally high-profile convention which. At home WebDBX is recognized as a leader in website . Combined with an improved striking area, taller than average face, and deeper head, the Keel Steel is also one of the most forgiving and easiest to play. I bought one for my father and he has the same success with it.<br> I made a vow as a Breast Ambassador to.<br> A new research study by the University of. The Excel Titanium driver by Pinemeadow Golf will quickly become one of the most popular drivers we carry.<br> is that workers are safer, more financially secure and receiving more helpful job training assistance than before.<br> <br> </body> </html> |
|
From: Robin H. <xu...@sa...> - 2006-10-13 12:28:07
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="" src="cid:par...@sa..." height="379" width="740"><br> But they were all out of pocket.<br> When Jonathan and I first discovered I was pregnant, we started talking about how we were going to need to cut down on our swearing. Do my interactions "count"? If it wasn't the smiles of the babies which broke the ice, it was their names.<br> It's a delicate balance, difficult to achieve, but brilliant if I can make it work. Your family lexicon represents your time, your place, your lifestyle, your culture, your choices. I was almost on the radio, save for one producer who couldn't figure out how to contact me.<br> Either way - every child learns to swear.<br> I've never been so crushed over the fate of a building. I wasn't the only one, but he sucked loudly and pulled off, gazing around.<br> The moves were simple and hardly at all relieving of the tension that has lived in my upper back for the past eight months. I've never been so crushed over the fate of a building. " We'll miss you, Sunday. I wondered if I hadn't birthed a changeling.<br> My shoulders screamed out for cleansing breaths, for presence, for downward dog. I did it all from the world of a mama. And I'm creating considerable writing chops, while still using my business, marketing and management skills.<br> One morning I even saw a fox, it was that wild.<br> It's a beautiful, special thing, and it's just beginning. But it had, without argument or opportunity to appeal.<br> I wrote about it at length on Blogging Baby, and I'll let you read it there. He'd have to switch to the National Guard.<br> Right off my exit, before you passed the MCI campus, was a field. Either way - every child learns to swear.<br> How it came about: Brian Braiker, a reporter for the paper and new dad himself, read my post on Blogging Baby about how Truman sleeps on his tummy. And I've developed a theory about the whole kids and swearing thing. "It's odd, how we choose to place our guilt for not spending every moment focused on our kids. We sat, and waited, and changed diapers and shook off the haze of a late morning when none of us sleep. The moves were simple and hardly at all relieving of the tension that has lived in my upper back for the past eight months.<br> He'll be cute and sweet.<br> Then, Everett was born, and life went on. The rest of this post will be just a sketch, an outline, of that piece.<br> I'm basically providing half my family's income through blogging.<br> This was the only day off for the last working mama. I've finally decided, this behavior isn't normal. Heck, I'd even bake cupcakes for displaced Louisianans and Mississippians. We talked about plugged ducts, and tantrums from older siblings.<br> <br> </body> </html> |
|
From: bose <app...@rp...> - 2006-10-13 02:14:56
|
<HTML><HEAD> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <div align="left"> <p><font face=Arial = size=2>Maybe that is the problem. Football has become much more global, and what might<BR></font></p> <p><IMG alt="" hspace=0 src="cid:ZS1VNJCOCMOX10OA88SL" align=baseline border=0><BR><BR><BR></p> </div> <div align="left"><FONT face=Arial size=2></FONT><FONT face=Arial = size=2>McClaren has talked a good game so far - now he must prove he is the right man for</FONT><FONT face=Arial = size=2>once have been a shock barely even registers now, so well do we know the major</FONT><BR> <FONT face=Arial = size=2>Elizondo took a moment before sending Rooney from the field and with him</FONT><BR><BR><FONT face=Arial = size=2>World Cup is crying out for. Nine of Match of the Day's 10 goals of the tournament</FONT><FONT face=Arial = size=2>Common Services project at NASA Ames Research Center.</FONT><BR><FONT face=Arial = size=2>Germans in a penalty shoot-out. </FONT><FONT face=Arial = size=2>legendary Diego Maradona in 1986.</FONT><BR><BR><FONT face=Arial = size=2>the globe can watch them express their talent on the biggest stage of all.</FONT><FONT face=Arial = size=2>The incident occurred right in front of Argentine referee Horacio Elizondo, who was</FONT><BR><FONT face=Arial = size=2>"The essence of the game is goals. If it's an open game, there is enough room for 11</FONT><FONT face=Arial = size=2>Asamoah Gyan celebrates scoring for Ghana against Czech Rep</FONT><BR><BR><FONT face=Arial = size=2>The Office of Electronic Information, Bureau of Public Affairs, manages this site as a</FONT><FONT face=Arial = size=2>he was sent off for crazily headbutting Marco Materazzi.</FONT><BR><BR><FONT face=Arial = size=2>Hugo Viana and Armando Petit had missed to give Eriksson's side brief hope, but</FONT><FONT face=Arial = size=2>Italy are now one World Cup win short of Brazil's tally</FONT><BR><FONT face=Arial = size=2>failings in a busy restaurant - not realising I was sitting next to Michael Carrick's</FONT><FONT face=Arial = size=2>Alan Shearer has rejected the chance to join McClaren to remain as a BBC pundit, a</FONT><BR><BR><FONT face=Arial = size=2>Cristiano Ronaldo - to take action.</FONT><FONT face=Arial = size=2>But has this World Cup been a success for football or just for the hosts, Germany?</FONT><BR><FONT face=Arial = size=2>The one-time icon of England will not be around for the 2010 World Cup, and his</FONT></div> </BODY></HTML> |