summaryrefslogtreecommitdiff
path: root/netsvcs
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-14 02:13:52 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-14 02:13:52 +0000
commit0c85fe8da5255d272a92b654334c56e65e289d6f (patch)
treef59081734df7e40a5573b65366ef49a804f45aaa /netsvcs
parentee6a2dcd90f37bd3e54168a96720f2cc6e24e999 (diff)
downloadATCD-0c85fe8da5255d272a92b654334c56e65e289d6f.tar.gz
Removed paths information from DLL's. ACE should figure them out automatically.
Diffstat (limited to 'netsvcs')
-rw-r--r--netsvcs/clients/Naming/Client/svc.conf4
-rw-r--r--netsvcs/clients/Naming/Client/svc2.conf10
-rw-r--r--netsvcs/servers/svc.conf28
3 files changed, 21 insertions, 21 deletions
diff --git a/netsvcs/clients/Naming/Client/svc.conf b/netsvcs/clients/Naming/Client/svc.conf
index c32cc776de6..12a12ccc390 100644
--- a/netsvcs/clients/Naming/Client/svc.conf
+++ b/netsvcs/clients/Naming/Client/svc.conf
@@ -1,7 +1,7 @@
# Note that $DB and $PORT are environment variables that are
# automatically interpreted and substituted by ACE!
# static ACE_Naming_Context "main -p $PORT -h tango"
-dynamic ACE_Naming_Context Service_Object * libACE.so:_make_ACE_Naming_Context () "main -p $PORT -h tango"
-dynamic Name_Server_test Service_Object * ./Client_Test:_make_Client_Test ()
+dynamic ACE_Naming_Context Service_Object * ACE:_make_ACE_Naming_Context () "main -p $PORT -h tango"
+dynamic Name_Server_test Service_Object * Client_Test:_make_Client_Test ()
# Note: Client_Test must come after ACE_Naming_Context since it relies
# on the ACE_Naming_Context having been linked...
diff --git a/netsvcs/clients/Naming/Client/svc2.conf b/netsvcs/clients/Naming/Client/svc2.conf
index 41075e1bf29..44a276a4a44 100644
--- a/netsvcs/clients/Naming/Client/svc2.conf
+++ b/netsvcs/clients/Naming/Client/svc2.conf
@@ -1,9 +1,9 @@
-# Note that $DB and $PORT are environment variables that are
-# automatically interpreted and substituted by ACE! In addition, note
+# Note that $DB and $PORT are environment variables that are
+# automatically interpreted and substituted by ACE! In addition, note
# how you can give a relative name for the libACE_svcs.so and ACE will
# locate this for you automatically by reading your LD search path!
-dynamic ACE_Naming_Context Service_Object * libACE.so:_make_ACE_Naming_Context () "main -s $DB"
-dynamic ACE_Naming_Context2 Service_Object * libACE.so:_make_ACE_Naming_Context () "main -s $DB"
-dynamic Name_Server_test Service_Object * .shobj/Client_Test.so:_make_Client_Test ()
+dynamic ACE_Naming_Context Service_Object * ACE:_make_ACE_Naming_Context () "main -s $DB"
+dynamic ACE_Naming_Context2 Service_Object * ACE:_make_ACE_Naming_Context () "main -s $DB"
+dynamic Name_Server_test Service_Object * Client_Test:_make_Client_Test ()
# Note: Client_Test must come after ACE_Naming_Context since it relies
# on the ACE_Naming_Context having been dynamically linked.
diff --git a/netsvcs/servers/svc.conf b/netsvcs/servers/svc.conf
index 78b59eab3a9..66dafa4e0e3 100644
--- a/netsvcs/servers/svc.conf
+++ b/netsvcs/servers/svc.conf
@@ -1,17 +1,17 @@
# These are the services that can be linked into ACE.
-# Note that you can replace the hardcoded "../lib/netsvcs" with
-# a relative path if you set your LD search path correctly -- ACE will
-# locate this for you automatically by reading your LD search path.
-# Moreover, ACE will automatically insert the correct suffix (e.g.,
-# ".dll", ".so", etc.). In addition, you can replace the hardcoded
-# "-p 20xxx" with "-p $PORTxxx" if you set your environment variables
-# correctly.
+# Note that you can append the "netsvcs" with
+# a relative path if you idn't set your LD search path correctly --
-dynamic Logger Service_Object * ../lib/netsvcs:_make_ACE_Logging_Strategy() "-s foobar -f STDERR|OSTREAM"
-dynamic Time_Service Service_Object * ../lib/netsvcs:_make_ACE_TS_Server_Acceptor() "-p 20222"
-dynamic Name_Server Service_Object * ../lib/netsvcs:_make_ACE_Name_Acceptor() "-p 20012"
-dynamic Token_Service Service_Object * ../lib/netsvcs:_make_ACE_Token_Acceptor() "-p 20202"
-dynamic Server_Logging_Service Service_Object * ../lib/netsvcs:_make_ACE_Server_Logging_Acceptor() active "-p 20009"
-dynamic Thr_Server_Logging_Service Service_Object * ../lib/netsvcs:_make_ACE_Thr_Server_Logging_Acceptor() active "-p 20020"
-dynamic Client_Logging_Service Service_Object * ../lib/netsvcs:_make_ACE_Client_Logging_Acceptor() active "-p 20009"
+# ACE will locate this for you automatically by reading your LD search
+# path. Moreover, ACE will automatically insert the correct suffix
+# (e.g., ".dll", ".so", etc.). In addition, you can replace the
+# hardcoded "-p 20xxx" with "-p $PORTxxx" if you set your environment
+# variables correctly.
+dynamic Logger Service_Object * netsvcs:_make_ACE_Logging_Strategy() "-s foobar -f STDERR|OSTREAM"
+dynamic Time_Service Service_Object * netsvcs:_make_ACE_TS_Server_Acceptor() "-p 20222"
+dynamic Name_Server Service_Object * netsvcs:_make_ACE_Name_Acceptor() "-p 20012"
+dynamic Token_Service Service_Object * netsvcs:_make_ACE_Token_Acceptor() "-p 20202"
+dynamic Server_Logging_Service Service_Object * netsvcs:_make_ACE_Server_Logging_Acceptor() active "-p 20009"
+dynamic Thr_Server_Logging_Service Service_Object * netsvcs:_make_ACE_Thr_Server_Logging_Acceptor() active "-p 20020"
+dynamic Client_Logging_Service Service_Object * netsvcs:_make_ACE_Client_Logging_Acceptor() active "-p 20009"