diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-12 22:38:24 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-12 22:38:24 +0000 |
commit | 146f05810ce14b3f121203a4cdd2530d4303a255 (patch) | |
tree | 773532fb7adbf81e8ddf6069e43db93c808d64c9 /TAO/tao | |
parent | 850c60285d809fc92c5c25009ae26ea65ee8212f (diff) | |
download | ATCD-146f05810ce14b3f121203a4cdd2530d4303a255.tar.gz |
ChangeLogTag: Tue Jun 12 17:31:57 2001 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/RTCORBA/TAO_RTCORBA.dsp | 8 | ||||
-rw-r--r-- | TAO/tao/TAO.dsp | 2 | ||||
-rw-r--r-- | TAO/tao/TAO_Internal.cpp | 9 |
3 files changed, 14 insertions, 5 deletions
diff --git a/TAO/tao/RTCORBA/TAO_RTCORBA.dsp b/TAO/tao/RTCORBA/TAO_RTCORBA.dsp index e7e2d88ced8..fc8b56a5a7a 100644 --- a/TAO/tao/RTCORBA/TAO_RTCORBA.dsp +++ b/TAO/tao/RTCORBA/TAO_RTCORBA.dsp @@ -232,6 +232,10 @@ SOURCE=.\RT_Stub_Factory.cpp # End Source File
# Begin Source File
+SOURCE=.\RTCORBA.cpp
+# End Source File
+# Begin Source File
+
SOURCE=.\RTCORBAC.cpp
# End Source File
# Begin Source File
@@ -320,6 +324,10 @@ SOURCE=.\RT_Stub_Factory.h # End Source File
# Begin Source File
+SOURCE=.\RTCORBA.h
+# End Source File
+# Begin Source File
+
SOURCE=.\rtcorba_export.h
# End Source File
# Begin Source File
diff --git a/TAO/tao/TAO.dsp b/TAO/tao/TAO.dsp index 44e28fb772a..15ae0b9c8d4 100644 --- a/TAO/tao/TAO.dsp +++ b/TAO/tao/TAO.dsp @@ -144,7 +144,7 @@ BSC32=bscmake.exe # ADD BSC32 /nologo
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
-# ADD LINK32 aced.lib TAO_RTCORBAd.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"..\..\bin\TAOd.dll" /libpath:"..\..\ace" /libpath:"RTCORBA"
+# ADD LINK32 aced.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"..\..\bin\TAOd.dll" /libpath:"..\..\ace" /libpath:"RTCORBA"
!ENDIF
diff --git a/TAO/tao/TAO_Internal.cpp b/TAO/tao/TAO_Internal.cpp index 2c0e1aa7df9..7bcb192c2a1 100644 --- a/TAO/tao/TAO_Internal.cpp +++ b/TAO/tao/TAO_Internal.cpp @@ -136,10 +136,11 @@ TAO_Internal::open_services (int &argc, char **argv) } else if ((current_arg = arg_shifter.get_the_parameter ("-ORBServiceConfigLoggerKey"))) { - svc_config_argv.add ("-k"); - - svc_config_argv.add (current_arg); - + svc_config_argv.length (len + 2); // 2 arguments to add + + svc_config_argv[len] = CORBA::string_dup ("-k"); + svc_config_argv[len + 1] = CORBA::string_dup (current_arg); + arg_shifter.consume_arg (); } // Can't interpret this argument. Move on to the next argument. |