[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

2009.0. "linking with dce and mcc libraries on BSD Ultrix" by MICROW::LANG () Mon Dec 30 1991 16:28

	I am writing an AM, which uses DCE RPC and MCC on ultrix.

	I am using the MCC internal field test kit, and want to link
	with	/opt/dce/lib/libdce.a

	However, when I do, I get an unresolved function: dnsCvtUTCtoTimeout
	When I link with the /usr/mcc/mmtoolkit/lib/mcc_dns_libdns.a, I get
	multiply defined symbols, since the dns routines are also
	in the dce library.

	I need to link with DCE for the rpc calls.

	Can someone tell me the correct way to do this?

			thanks,

				Bonnie

T.RTitleUserPersonal
Name
DateLines
2009.1problem resolvedMICROW::LANGMon Jan 06 1992 11:0811
The problem linking with DCE and MCC has been resolved.  The change was
to order the libraries in the following manner in the make file:

		/usr/mcc/mmtoolkit/lib/mcc_dns_libdns.a \
		/opt/dce/lib/libdce.a

CDS originated from DNS, and the DCE starter kit includes some but not all
DNS routines.  The DCE OSF kit has removed the DNS routines from the DCE
library.

2009.2update on DCE/MCC integrationMICROW::LANGTue Jan 21 1992 14:0013
    
    	More on this - we found out that although the link we had
    	performed was successful, the LOCAL DNS MIR routines were pulled
    	into CDS and accessed by CDS (we installed MCC w/out DNS), so
    	the CDS routines didn't work correctly.
    
    	We changed the link back to get the unresolved function, and
    	were able to transmit data using MCC EFT and DCE.  We talked to 
    	DCE about the naming conflict.  It occurs because CDS is
    	a  derivative of DNS and still uses uses functions that DNS uses. 
    	Thus when the two are linked together, one gets a conflict.  DCE
    	is working to resolve this.