summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-08 01:04:52 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-08 01:04:52 +0000
commit7d771dfea264a57245043d16e019b9057e6e146e (patch)
tree49e77d08a472919dac8d745dc0fcd915d41ca77f
parentb53d0cc699cd03d0d8230b9ecb139f84ff81fee7 (diff)
downloadATCD-7d771dfea264a57245043d16e019b9057e6e146e.tar.gz
ChangeLogTag:Sun Jan 7 16:51:42 2001 Darrell Brunsch <brunsch@uci.edu>
-rw-r--r--ChangeLog12
-rw-r--r--ChangeLogs/ChangeLog-02a12
-rw-r--r--ChangeLogs/ChangeLog-03a12
-rw-r--r--ace/ace_dll.dsp4
-rw-r--r--docs/run_test.txt4
5 files changed, 40 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2a89bf38101..a3ae08a8254 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+Sun Jan 7 16:51:42 2001 Darrell Brunsch <brunsch@uci.edu>
+
+ * ace/ace_dll.dsp:
+
+ Removed the PACE libraries from linking. We are going to come
+ up with a different solution for pace.
+
+ * docs/run_test.txt:
+
+ Changed the instructions a little to use PerlACE::LocalFile
+ for the server's IOR file.
+
Sun Jan 7 08:59:09 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/DLL_Test.cpp: Added a message in a ACE_ERROR statement.
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 2a89bf38101..a3ae08a8254 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,15 @@
+Sun Jan 7 16:51:42 2001 Darrell Brunsch <brunsch@uci.edu>
+
+ * ace/ace_dll.dsp:
+
+ Removed the PACE libraries from linking. We are going to come
+ up with a different solution for pace.
+
+ * docs/run_test.txt:
+
+ Changed the instructions a little to use PerlACE::LocalFile
+ for the server's IOR file.
+
Sun Jan 7 08:59:09 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/DLL_Test.cpp: Added a message in a ACE_ERROR statement.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 2a89bf38101..a3ae08a8254 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,15 @@
+Sun Jan 7 16:51:42 2001 Darrell Brunsch <brunsch@uci.edu>
+
+ * ace/ace_dll.dsp:
+
+ Removed the PACE libraries from linking. We are going to come
+ up with a different solution for pace.
+
+ * docs/run_test.txt:
+
+ Changed the instructions a little to use PerlACE::LocalFile
+ for the server's IOR file.
+
Sun Jan 7 08:59:09 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/DLL_Test.cpp: Added a message in a ACE_ERROR statement.
diff --git a/ace/ace_dll.dsp b/ace/ace_dll.dsp
index 6b1a1c2218a..87ce82b484a 100644
--- a/ace/ace_dll.dsp
+++ b/ace/ace_dll.dsp
@@ -191,7 +191,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo /o".\ace.bsc"
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
-# ADD LINK32 advapi32.lib user32.lib paces.lib /nologo /subsystem:windows /dll /pdb:".\ace.pdb" /machine:I386 /out:"..\bin\ace.dll" /libpath:"..\PACE\pace\win32"
+# ADD LINK32 advapi32.lib user32.lib /nologo /subsystem:windows /dll /pdb:".\ace.pdb" /machine:I386 /out:"..\bin\ace.dll"
# SUBTRACT LINK32 /pdb:none
!ELSEIF "$(CFG)" == "ACE DLL - Win32 Debug"
@@ -222,7 +222,7 @@ BSC32=bscmake.exe
# ADD BSC32 /nologo /o".\ace.bsc"
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 advapi32.lib user32.lib pacesd.lib /nologo /version:4.4 /subsystem:windows /dll /pdb:".\aced.pdb" /debug /machine:I386 /out:"..\bin\aced.dll" /pdbtype:sept /libpath:"..\PACE\pace\win32" /VERBOSE:LIB
+# ADD LINK32 advapi32.lib user32.lib /nologo /version:4.4 /subsystem:windows /dll /pdb:".\aced.pdb" /debug /machine:I386 /out:"..\bin\aced.dll" /pdbtype:sept /VERBOSE:LIB
# SUBTRACT LINK32 /pdb:none
!ENDIF
diff --git a/docs/run_test.txt b/docs/run_test.txt
index f0f8a35238d..561657c7f94 100644
--- a/docs/run_test.txt
+++ b/docs/run_test.txt
@@ -26,7 +26,7 @@ use lib '../../../bin';
use PerlACE::Run_Test;
use Cwd;
-$server_ior = $getcwd . "/server.ior";
+$server_ior = PerlACE::LocalFile ("server.ior");
unlink $server_ior;
$SV = new PerlACE::Process ("server", "-o $server_ior");
@@ -85,7 +85,7 @@ the PerlACE::Process module.
@verbatim
use Cwd;
-$server_ior = $getcwd . "/server.ior";
+$server_ior = PerlACE::LocalFile ("server.ior");
unlink $server_ior;
@endverbatim