diff options
-rw-r--r-- | TAO/ChangeLog | 7 | ||||
-rw-r--r-- | TAO/examples/Simple/time-date/svc.conf | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index f16accabeb9..50ebd9f93c0 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,10 @@ +Thu Dec 16 09:41:35 2004 Chad Elliott <elliott_c@ociweb.com> + + * examples/Simple/time-date/svc.conf: + + Removed the ./ from the Time_Date library. This caused problems + on Windows and with the run_test.pl it is not necessary. + Wed Dec 15 14:14:22 2004 Chad Elliott <elliott_c@ociweb.com> * orbsvcs/IFR_Service/ifr_adding_visitor_structure.cpp: diff --git a/TAO/examples/Simple/time-date/svc.conf b/TAO/examples/Simple/time-date/svc.conf index 5910a17107d..feed2720801 100644 --- a/TAO/examples/Simple/time-date/svc.conf +++ b/TAO/examples/Simple/time-date/svc.conf @@ -1,11 +1,11 @@ # $Id$ # Define a special Reactor for single-threaded configurations. Refer # to README for details. -dynamic Resource_Factory Service_Object * ./Time_Date:_make_My_Resource_Factory() +dynamic Resource_Factory Service_Object * Time_Date:_make_My_Resource_Factory() # Dynamically configure the ORB into the application process. -dynamic ORB Service_Object * ./Time_Date:_make_DLL_ORB() "dummy" +dynamic ORB Service_Object * Time_Date:_make_DLL_ORB() "dummy" # Once the ORB is configured, dynamically configure the Time_Date service. -dynamic Time_Date_Servant Service_Object * ./Time_Date:_make_Time_Date_Servant() "dummy -n ORB -o ior" +dynamic Time_Date_Servant Service_Object * Time_Date:_make_Time_Date_Servant() "dummy -n ORB -o ior" |