Help: undefined reference
Mimmo Di Ianni
mimmodiianni at gmail.com
Fri Apr 22 15:19:26 UTC 2005
I have given in input to snacc a file (ldap.asn1) which contain LDAP
definitions and it has generate ldap.c and ldap.h correctly. If i try
to compile ldap.c (gcc -I/usr/local/snacc-1.3/
-I/usr/local/snacc-1.3/c-lib/inc/ -I/usr/local/snacc-1.3/c-lib/
-DUSE_SBUF ldap.c) I have a lot of undefined reference errors like
this
"In function `BEncBindRequestChoiceContent':: undefined reference to
`BEncAsnOctsContent'".
Someone can help me to resolve this problem?
In attachments there are ldap.asn1 and error.txt(which contains gcc errors).
Thanks in advance.
Mimmo
-------------- next part --------------
Lightweight-Directory-Access-Protocol DEFINITIONS IMPLICIT TAGS ::=
BEGIN
LDAPMessage ::=
SEQUENCE {
messageID MessageID,
-- unique id in request,
-- to be echoed in response(s)
protocolOp CHOICE {
searchRequest SearchRequest,
searchResponse SearchResponse,
--modifyRequest ModifyRequest,
--modifyResponse ModifyResponse,
--addRequest AddRequest,
--addResponse AddResponse,
--delRequest DelRequest,
--delResponse DelResponse,
--modifyDNRequest ModifyDNRequest,
--modifyDNResponse ModifyDNResponse,
--compareDNRequest CompareRequest,
--compareDNResponse CompareResponse,
bindRequest BindRequest,
bindResponse BindResponse
--abandonRequest AbandonRequest,
--unbindRequest UnbindRequest,
}
}
BindRequest ::=
[APPLICATION 0] SEQUENCE {
version INTEGER (1 .. 127),
-- current version is 2
name LDAPDN,
-- null name implies an anonymous bind
authentication CHOICE {
simple [0] OCTET STRING,
-- a zero length octet string
-- implies an unauthenticated
-- bind.
krbv42LDAP [1] OCTET STRING,
krbv42DSA [2] OCTET STRING
-- values as returned by
-- krb_mk_req()
-- Other values in later versions
-- of this protocol.
}
}
BindResponse ::= [APPLICATION 1] LDAPResult
--UnbindRequest ::= [APPLICATION 2] NULL
SearchRequest ::=
[APPLICATION 3] SEQUENCE {
baseObject LDAPDN,
scope ENUMERATED {
baseObject (0),
singleLevel (1),
wholeSubtree (2)
},
derefAliases ENUMERATED {
neverDerefAliases (0),
derefInSearching (1),
derefFindingBaseObj (2),
alwaysDerefAliases (3)
},
sizeLimit INTEGER (0 .. maxInt),
-- value of 0 implies no sizelimit
timeLimit INTEGER (0 .. maxInt),
-- value of 0 implies no timelimit
attrsOnly BOOLEAN,
-- TRUE, if only attributes (without values)
-- to be returned.
filter Filter,
attributes SEQUENCE OF AttributeType
}
SearchResponse ::=
CHOICE {
entry [APPLICATION 4] SEQUENCE {
objectName LDAPDN,
attributes SEQUENCE OF SEQUENCE {
AttributeType,
SET OF
AttributeValue
}
},
resultCode [APPLICATION 5] LDAPResult
}
--ModifyRequest ::=
-- [APPLICATION 6] SEQUENCE {
-- object LDAPDN,
-- modifications SEQUENCE OF SEQUENCE {
-- operation ENUMERATED {
-- add (0),
-- delete (1),
-- replace (2)
-- },
-- modification SEQUENCE {
-- type AttributeType,
-- values SET OF
-- AttributeValue
-- }
-- }
-- }
--ModifyResponse ::= [APPLICATION 7] LDAPResult
--AddRequest ::=
-- [APPLICATION 8] SEQUENCE {
-- entry LDAPDN,
-- attrs SEQUENCE OF SEQUENCE {
-- type AttributeType,
-- values SET OF AttributeValue
-- }
-- }
--AddResponse ::= [APPLICATION 9] LDAPResult
--DelRequest ::= [APPLICATION 10] LDAPDN
--DelResponse ::= [APPLICATION 11] LDAPResult
--ModifyDNRequest ::=
-- [APPLICATION 12] SEQUENCE {
-- entry LDAPDN,
-- newrdn RelativeLDAPDN -- --old RDN always deleted
-- }
--ModifyDNResponse ::= [APPLICATION 13] LDAPResult
--CompareRequest ::=
-- [APPLICATION 14] SEQUENCE {
-- entry LDAPDN,
-- ava AttributeValueAssertion
--}
--CompareResponse ::= [APPLICATION 15] LDAPResult
--AbandonRequest ::= [APPLICATION 16] MessageID
MessageID ::= INTEGER (0 .. maxInt)
LDAPDN ::= LDAPString
RelativeLDAPDN ::= LDAPString
Filter ::=
CHOICE {
and [0] SET OF Filter,
or [1] SET OF Filter,
not [2] Filter,
equalityMatch [3] AttributeValueAssertion,
substrings [4] SubstringFilter,
greaterOrEqual [5] AttributeValueAssertion,
lessOrEqual [6] AttributeValueAssertion,
present [7] AttributeType,
approxMatch [8] AttributeValueAssertion
}
LDAPResult ::=
SEQUENCE {
resultCode ENUMERATED {
success (0),
operationsError (1),
protocolError (2),
timeLimitExceeded (3),
sizeLimitExceeded (4),
compareFalse (5),
compareTrue (6),
authMethodNotSupported (7),
strongAuthRequired (8),
noSuchAttribute (16),
undefinedAttributeType (17),
inappropriateMatching (18),
constraintViolation (19),
attributeOrValueExists (20),
invalidAttributeSyntax (21),
noSuchObject (32),
aliasProblem (33),
invalidDNSyntax (34),
isLeaf (35),
aliasDereferencingProblem (36),
inappropriateAuthentication (48),
invalidCredentials (49),
insufficientAccessRights (50),
busy (51),
unavailable (52),
unwillingToPerform (53),
loopDetect (54),
namingViolation (64),
objectClassViolation (65),
notAllowedOnNonLeaf (66),
notAllowedOnRDN (67),
entryAlreadyExists (68),
objectClassModsProhibited (69),
other (80)
},
matchedDN LDAPDN,
errorMessage LDAPString
}
AttributeType ::= LDAPString
-- text name of the attribute, or dotted
-- OID representation
AttributeValue ::= OCTET STRING
AttributeValueAssertion ::=
SEQUENCE {
attributeType AttributeType,
attributeValue AttributeValue
}
SubstringFilter ::=
SEQUENCE {
type AttributeType,
SEQUENCE OF CHOICE {
initial [0] LDAPString,
any [1] LDAPString,
final [2] LDAPString
}
}
LDAPString ::= OCTET STRING
maxInt INTEGER ::= 65535
END
-------------- next part --------------
ldap.c: In function `BEncLDAPResultContent':
ldap.c:561: warning: passing arg 2 of `BEncAsnIntContent' from incompatible pointer type
ldap.c: In function `BDecLDAPResultContent':
ldap.c:593: warning: passing arg 4 of `BDecAsnIntContent' from incompatible pointer type
ldap.c: In function `PrintLDAPResult':
ldap.c:645: warning: passing arg 2 of `PrintAsnInt' from incompatible pointer type
ldap.c: In function `BEncSearchRequestContent':
ldap.c:2214: warning: passing arg 2 of `BEncAsnIntContent' from incompatible pointer type
ldap.c:2221: warning: passing arg 2 of `BEncAsnIntContent' from incompatible pointer type
ldap.c: In function `BDecSearchRequestContent':
ldap.c:2273: warning: passing arg 4 of `BDecAsnIntContent' from incompatible pointer type
ldap.c:2283: warning: passing arg 4 of `BDecAsnIntContent' from incompatible pointer type
ldap.c: In function `PrintSearchRequest':
ldap.c:2380: warning: passing arg 2 of `PrintAsnInt' from incompatible pointer type
ldap.c:2384: warning: passing arg 2 of `PrintAsnInt' from incompatible pointer type
/usr/lib/gcc-lib/i586-suse-linux/3.3.4/../../../crt1.o(.text+0x18): In function `_start':
../sysdeps/i386/elf/start.S:115: undefined reference to `main'
/tmp/cc1MifXl.o(.text+0x3d): In function `BEncBindRequestChoiceContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x51): In function `BEncBindRequestChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0xa1): In function `BEncBindRequestChoiceContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0xb5): In function `BEncBindRequestChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x102): In function `BEncBindRequestChoiceContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x116): In function `BEncBindRequestChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x1f4): In function `BDecBindRequestChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x22e): In function `BDecBindRequestChoiceContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x24c): In function `BDecBindRequestChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x286): In function `BDecBindRequestChoiceContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x2a1): In function `BDecBindRequestChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x2db): In function `BDecBindRequestChoiceContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x2ed): In function `BDecBindRequestChoiceContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x357): In function `PrintBindRequestChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x36f): In function `PrintBindRequestChoice':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x390): In function `PrintBindRequestChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3a8): In function `PrintBindRequestChoice':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x3c9): In function `PrintBindRequestChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3e1): In function `PrintBindRequestChoice':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x41e): In function `FreeBindRequestChoice':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x431): In function `FreeBindRequestChoice':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x444): In function `FreeBindRequestChoice':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x48a): In function `BEncSubstringFilterSeqOfChoiceContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x49e): In function `BEncSubstringFilterSeqOfChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x4ee): In function `BEncSubstringFilterSeqOfChoiceContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x502): In function `BEncSubstringFilterSeqOfChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x54f): In function `BEncSubstringFilterSeqOfChoiceContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x563): In function `BEncSubstringFilterSeqOfChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x641): In function `BDecSubstringFilterSeqOfChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x67b): In function `BDecSubstringFilterSeqOfChoiceContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x699): In function `BDecSubstringFilterSeqOfChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x6d3): In function `BDecSubstringFilterSeqOfChoiceContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x6ee): In function `BDecSubstringFilterSeqOfChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x728): In function `BDecSubstringFilterSeqOfChoiceContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x73a): In function `BDecSubstringFilterSeqOfChoiceContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x7a4): In function `PrintSubstringFilterSeqOfChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x7bc): In function `PrintSubstringFilterSeqOfChoice':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x7dd): In function `PrintSubstringFilterSeqOfChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x7f5): In function `PrintSubstringFilterSeqOfChoice':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x816): In function `PrintSubstringFilterSeqOfChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x82e): In function `PrintSubstringFilterSeqOfChoice':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x86b): In function `FreeSubstringFilterSeqOfChoice':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x87e): In function `FreeSubstringFilterSeqOfChoice':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x891): In function `FreeSubstringFilterSeqOfChoice':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x952): In function `BDecSubstringFilterSeqOfContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x9a4): In function `BDecSubstringFilterSeqOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x9cd): In function `BDecSubstringFilterSeqOfContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x9de): In function `BDecSubstringFilterSeqOfContent':
: undefined reference to `AsnListAppend'
/tmp/cc1MifXl.o(.text+0x9f1): In function `BDecSubstringFilterSeqOfContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0xaab): In function `PrintSubstringFilterSeqOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0xabd): In function `PrintSubstringFilterSeqOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0xac9): In function `PrintSubstringFilterSeqOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0xb3e): In function `PrintSubstringFilterSeqOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0xbf0): In function `BEncSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0xc04): In function `BEncSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0xc9e): In function `BDecSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0xcf0): In function `BDecSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0xd30): In function `BDecSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0xd41): In function `BDecSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `AsnListAppend'
/tmp/cc1MifXl.o(.text+0xd54): In function `BDecSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0xd8b): In function `BDecSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0xda0): In function `BDecSearchResponseSeqSeqOfSeqSetOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0xe2b): In function `PrintSearchResponseSeqSeqOfSeqSetOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0xe3d): In function `PrintSearchResponseSeqSeqOfSeqSetOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0xe49): In function `PrintSearchResponseSeqSeqOfSeqSetOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0xe5e): In function `PrintSearchResponseSeqSeqOfSeqSetOf':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0xebe): In function `PrintSearchResponseSeqSeqOfSeqSetOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0xf02): In function `FreeSearchResponseSeqSeqOfSeqSetOf':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0xf37): In function `BEncLDAPResultContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0xf4b): In function `BEncLDAPResultContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0xf97): In function `BEncLDAPResultContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0xfab): In function `BEncLDAPResultContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0xff3): In function `BEncLDAPResultContent':
: undefined reference to `BEncAsnIntContent'
/tmp/cc1MifXl.o(.text+0x1085): In function `BDecLDAPResultContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x10a6): In function `BDecLDAPResultContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x10c7): In function `BDecLDAPResultContent':
: undefined reference to `BDecAsnIntContent'
/tmp/cc1MifXl.o(.text+0x10dc): In function `BDecLDAPResultContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x1117): In function `BDecLDAPResultContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x113c): In function `BDecLDAPResultContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x1151): In function `BDecLDAPResultContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x118c): In function `BDecLDAPResultContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x11b1): In function `BDecLDAPResultContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x11d3): In function `BDecLDAPResultContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x1250): In function `PrintLDAPResult':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1262): In function `PrintLDAPResult':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1281): In function `PrintLDAPResult':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1296): In function `PrintLDAPResult':
: undefined reference to `PrintAsnInt'
/tmp/cc1MifXl.o(.text+0x12b5): In function `PrintLDAPResult':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x12c7): In function `PrintLDAPResult':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x12e6): In function `PrintLDAPResult':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x12ff): In function `PrintLDAPResult':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x131e): In function `PrintLDAPResult':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1330): In function `PrintLDAPResult':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x134f): In function `PrintLDAPResult':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1368): In function `PrintLDAPResult':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x1393): In function `PrintLDAPResult':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x13c8): In function `FreeLDAPResult':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x13da): In function `FreeLDAPResult':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x13fe): In function `BEncAttributeValueAssertionContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x1412): In function `BEncAttributeValueAssertionContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x145a): In function `BEncAttributeValueAssertionContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x146e): In function `BEncAttributeValueAssertionContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x14da): In function `BDecAttributeValueAssertionContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x1506): In function `BDecAttributeValueAssertionContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x1527): In function `BDecAttributeValueAssertionContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x153c): In function `BDecAttributeValueAssertionContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x1577): In function `BDecAttributeValueAssertionContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x159c): In function `BDecAttributeValueAssertionContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x15be): In function `BDecAttributeValueAssertionContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x163b): In function `PrintAttributeValueAssertion':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x164d): In function `PrintAttributeValueAssertion':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x166c): In function `PrintAttributeValueAssertion':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1681): In function `PrintAttributeValueAssertion':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x16a0): In function `PrintAttributeValueAssertion':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x16b2): In function `PrintAttributeValueAssertion':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x16d1): In function `PrintAttributeValueAssertion':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x16ea): In function `PrintAttributeValueAssertion':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x1715): In function `PrintAttributeValueAssertion':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1746): In function `FreeAttributeValueAssertion':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x1758): In function `FreeAttributeValueAssertion':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x178f): In function `BEncSubstringFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x17d7): In function `BEncSubstringFilterContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x17eb): In function `BEncSubstringFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x1858): In function `BDecSubstringFilterContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x1884): In function `BDecSubstringFilterContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x18a5): In function `BDecSubstringFilterContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x18ba): In function `BDecSubstringFilterContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x18ee): In function `BDecSubstringFilterContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x1901): In function `BDecSubstringFilterContent':
: undefined reference to `AsnListNew'
/tmp/cc1MifXl.o(.text+0x195d): In function `BDecSubstringFilterContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x19dd): In function `PrintSubstringFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x19ef): In function `PrintSubstringFilter':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1a0e): In function `PrintSubstringFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1a23): In function `PrintSubstringFilter':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x1a42): In function `PrintSubstringFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1a54): In function `PrintSubstringFilter':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1a60): In function `PrintSubstringFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1aa3): In function `PrintSubstringFilter':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1ad4): In function `FreeSubstringFilter':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x1b1c): In function `BEncSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x1b64): In function `BEncSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x1b78): In function `BEncSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x1be5): In function `BDecSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x1c11): In function `BDecSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x1c32): In function `BDecSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x1c47): In function `BDecSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x1c7b): In function `BDecSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x1c8e): In function `BDecSearchResponseSeqSeqOfSeqContent':
: undefined reference to `AsnListNew'
/tmp/cc1MifXl.o(.text+0x1cea): In function `BDecSearchResponseSeqSeqOfSeqContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x1d6a): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1d7c): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1d88): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1d9d): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x1dbc): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1dce): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1dda): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x1e1d): In function `PrintSearchResponseSeqSeqOfSeq':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x1e4e): In function `FreeSearchResponseSeqSeqOfSeq':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x1ed0): In function `BEncSearchResponseSeqSeqOfContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x1f6a): In function `BDecSearchResponseSeqSeqOfContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x1fbc): In function `BDecSearchResponseSeqSeqOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x1ff1): In function `BDecSearchResponseSeqSeqOfContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x2002): In function `BDecSearchResponseSeqSeqOfContent':
: undefined reference to `AsnListAppend'
/tmp/cc1MifXl.o(.text+0x2015): In function `BDecSearchResponseSeqSeqOfContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x2061): In function `BDecSearchResponseSeqSeqOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x20ec): In function `PrintSearchResponseSeqSeqOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x20fe): In function `PrintSearchResponseSeqSeqOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x210a): In function `PrintSearchResponseSeqSeqOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x217f): In function `PrintSearchResponseSeqSeqOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x220b): In function `BEncSearchResponseSeqContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x2253): In function `BEncSearchResponseSeqContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x2267): In function `BEncSearchResponseSeqContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x22d4): In function `BDecSearchResponseSeqContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x2300): In function `BDecSearchResponseSeqContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x2321): In function `BDecSearchResponseSeqContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x2336): In function `BDecSearchResponseSeqContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x236a): In function `BDecSearchResponseSeqContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x237d): In function `BDecSearchResponseSeqContent':
: undefined reference to `AsnListNew'
/tmp/cc1MifXl.o(.text+0x23d9): In function `BDecSearchResponseSeqContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x2459): In function `PrintSearchResponseSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x246b): In function `PrintSearchResponseSeq':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x248a): In function `PrintSearchResponseSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x249f): In function `PrintSearchResponseSeq':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x24be): In function `PrintSearchResponseSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x24d0): In function `PrintSearchResponseSeq':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x24ef): In function `PrintSearchResponseSeq':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x2532): In function `PrintSearchResponseSeq':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x2563): In function `FreeSearchResponseSeq':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x25d1): In function `BEncSearchRequestSeqOfContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x25e5): In function `BEncSearchRequestSeqOfContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x267f): In function `BDecSearchRequestSeqOfContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x26d1): In function `BDecSearchRequestSeqOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x2711): In function `BDecSearchRequestSeqOfContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x2722): In function `BDecSearchRequestSeqOfContent':
: undefined reference to `AsnListAppend'
/tmp/cc1MifXl.o(.text+0x2735): In function `BDecSearchRequestSeqOfContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x276c): In function `BDecSearchRequestSeqOfContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x2781): In function `BDecSearchRequestSeqOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x280c): In function `PrintSearchRequestSeqOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x281e): In function `PrintSearchRequestSeqOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x282a): In function `PrintSearchRequestSeqOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x283f): In function `PrintSearchRequestSeqOf':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x289f): In function `PrintSearchRequestSeqOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x28e3): In function `FreeSearchRequestSeqOf':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x2937): In function `BEncBindRequestContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x294b): In function `BEncBindRequestContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x2993): In function `BEncBindRequestContent':
: undefined reference to `BEncAsnIntContent'
/tmp/cc1MifXl.o(.text+0x2a2d): In function `BDecBindRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x2a4e): In function `BDecBindRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x2a6f): In function `BDecBindRequestContent':
: undefined reference to `BDecAsnIntContent'
/tmp/cc1MifXl.o(.text+0x2a84): In function `BDecBindRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x2abf): In function `BDecBindRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x2ae4): In function `BDecBindRequestContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x2af9): In function `BDecBindRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x2b5b): In function `BDecBindRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x2b6e): In function `BDecBindRequestContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x2bca): In function `BDecBindRequestContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x2c50): In function `PrintBindRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x2c62): In function `PrintBindRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x2c81): In function `PrintBindRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x2c96): In function `PrintBindRequest':
: undefined reference to `PrintAsnInt'
/tmp/cc1MifXl.o(.text+0x2cb5): In function `PrintBindRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x2cc7): In function `PrintBindRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x2ce6): In function `PrintBindRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x2cff): In function `PrintBindRequest':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x2d1e): In function `PrintBindRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x2d30): In function `PrintBindRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x2d4f): In function `PrintBindRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x2d92): In function `PrintBindRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x2dc7): In function `FreeBindRequest':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x2e28): In function `BEncSearchResponseContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x2e89): In function `BEncSearchResponseContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x2f17): In function `BDecSearchResponseContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x2f6c): In function `BDecSearchResponseContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x2fb8): In function `BDecSearchResponseContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x301c): In function `PrintSearchResponse':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3055): In function `PrintSearchResponse':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3178): In function `BDecFilterSetOf1Content':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x31ca): In function `BDecFilterSetOf1Content':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x31f3): In function `BDecFilterSetOf1Content':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x3204): In function `BDecFilterSetOf1Content':
: undefined reference to `AsnListAppend'
/tmp/cc1MifXl.o(.text+0x3217): In function `BDecFilterSetOf1Content':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x32d1): In function `PrintFilterSetOf1':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x32e3): In function `PrintFilterSetOf1':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x32ef): In function `PrintFilterSetOf1':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3364): In function `PrintFilterSetOf1':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x347a): In function `BDecFilterSetOfContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x34cc): In function `BDecFilterSetOfContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x34f5): In function `BDecFilterSetOfContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x3506): In function `BDecFilterSetOfContent':
: undefined reference to `AsnListAppend'
/tmp/cc1MifXl.o(.text+0x3519): In function `BDecFilterSetOfContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x35d3): In function `PrintFilterSetOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x35e5): In function `PrintFilterSetOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x35f1): In function `PrintFilterSetOf':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3666): In function `PrintFilterSetOf':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x3714): In function `BEncFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x3778): In function `BEncFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x37dc): In function `BEncFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x3840): In function `BEncFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x38a4): In function `BEncFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x3908): more undefined references to `BEncDefLen' follow
/tmp/cc1MifXl.o(.text+0x39bc): In function `BEncFilterContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x39d0): In function `BEncFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x3a31): In function `BEncFilterContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x3b67): In function `BDecFilterContent':
: undefined reference to `AsnListNew'
/tmp/cc1MifXl.o(.text+0x3bbf): In function `BDecFilterContent':
: undefined reference to `AsnListNew'
/tmp/cc1MifXl.o(.text+0x3c17): In function `BDecFilterContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x3c45): In function `BDecFilterContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x3c5d): In function `BDecFilterContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x3c9c): In function `BDecFilterContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x3cbb): In function `BDecFilterContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x3cd9): In function `BDecFilterContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x3d31): In function `BDecFilterContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x3d89): In function `BDecFilterContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x3de1): In function `BDecFilterContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x3e39): In function `BDecFilterContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x3e73): In function `BDecFilterContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x3e8e): In function `BDecFilterContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x3eda): In function `BDecFilterContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x3f4a): In function `PrintFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3f86): In function `PrintFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3fc2): In function `PrintFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x3ffe): In function `PrintFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x403a): In function `PrintFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4076): more undefined references to `stdIndentG' follow
/tmp/cc1MifXl.o(.text+0x4103): In function `PrintFilter':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x4124): In function `PrintFilter':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x420d): In function `FreeFilter':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x4257): In function `BEncSearchRequestContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x42c2): In function `BEncSearchRequestContent':
: undefined reference to `BEncAsnBoolContent'
/tmp/cc1MifXl.o(.text+0x4334): In function `BEncSearchRequestContent':
: undefined reference to `BEncAsnIntContent'
/tmp/cc1MifXl.o(.text+0x43a6): In function `BEncSearchRequestContent':
: undefined reference to `BEncAsnIntContent'
/tmp/cc1MifXl.o(.text+0x4418): In function `BEncSearchRequestContent':
: undefined reference to `BEncAsnIntContent'
/tmp/cc1MifXl.o(.text+0x448a): In function `BEncSearchRequestContent':
: undefined reference to `BEncAsnIntContent'
/tmp/cc1MifXl.o(.text+0x44f8): In function `BEncSearchRequestContent':
: undefined reference to `BEncAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x450c): In function `BEncSearchRequestContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x4580): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x45ac): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x45cd): In function `BDecSearchRequestContent':
: undefined reference to `BDecAsnOctsContent'
/tmp/cc1MifXl.o(.text+0x45e2): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x4615): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x463a): In function `BDecSearchRequestContent':
: undefined reference to `BDecAsnIntContent'
/tmp/cc1MifXl.o(.text+0x464f): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x4682): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x46a7): In function `BDecSearchRequestContent':
: undefined reference to `BDecAsnIntContent'
/tmp/cc1MifXl.o(.text+0x46bc): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x46ef): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x4714): In function `BDecSearchRequestContent':
: undefined reference to `BDecAsnIntContent'
/tmp/cc1MifXl.o(.text+0x4729): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x475c): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x4781): In function `BDecSearchRequestContent':
: undefined reference to `BDecAsnIntContent'
/tmp/cc1MifXl.o(.text+0x4796): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x47c9): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x47ee): In function `BDecSearchRequestContent':
: undefined reference to `BDecAsnBoolContent'
/tmp/cc1MifXl.o(.text+0x4803): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x4889): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x489c): In function `BDecSearchRequestContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x48eb): In function `BDecSearchRequestContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x4922): In function `BDecSearchRequestContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x4935): In function `BDecSearchRequestContent':
: undefined reference to `AsnListNew'
/tmp/cc1MifXl.o(.text+0x4991): In function `BDecSearchRequestContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x4a1a): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4a2c): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4a4b): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4a60): In function `PrintSearchRequest':
: undefined reference to `PrintAsnOcts'
/tmp/cc1MifXl.o(.text+0x4a7f): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4a91): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4ab0): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4ac9): In function `PrintSearchRequest':
: undefined reference to `PrintAsnInt'
/tmp/cc1MifXl.o(.text+0x4ae8): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4afa): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4b19): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4b32): In function `PrintSearchRequest':
: undefined reference to `PrintAsnInt'
/tmp/cc1MifXl.o(.text+0x4b51): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4b63): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4b82): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4b9b): In function `PrintSearchRequest':
: undefined reference to `PrintAsnInt'
/tmp/cc1MifXl.o(.text+0x4bba): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4bcc): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4beb): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4c04): In function `PrintSearchRequest':
: undefined reference to `PrintAsnInt'
/tmp/cc1MifXl.o(.text+0x4c23): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4c35): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4c54): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4c6d): In function `PrintSearchRequest':
: undefined reference to `PrintAsnBool'
/tmp/cc1MifXl.o(.text+0x4c8c): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4c9e): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4cbd): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4cf4): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4d06): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4d25): In function `PrintSearchRequest':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x4d68): In function `PrintSearchRequest':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x4d99): In function `FreeSearchRequest':
: undefined reference to `FreeAsnOcts'
/tmp/cc1MifXl.o(.text+0x4e23): In function `BEncLDAPMessageChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x4eab): In function `BEncLDAPMessageChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x4f0c): In function `BEncLDAPMessageChoiceContent':
: undefined reference to `BEncDefLen'
/tmp/cc1MifXl.o(.text+0x4fd2): In function `BDecLDAPMessageChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x502a): In function `BDecLDAPMessageChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x5082): In function `BDecLDAPMessageChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x50d7): In function `BDecLDAPMessageChoiceContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x5123): In function `BDecLDAPMessageChoiceContent':
: undefined reference to `Asn1Error'
/tmp/cc1MifXl.o(.text+0x519e): In function `PrintLDAPMessageChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x51da): In function `PrintLDAPMessageChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x5213): In function `PrintLDAPMessageChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x524c): In function `PrintLDAPMessageChoice':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x531f): In function `BEncLDAPMessageContent':
: undefined reference to `BEncAsnIntContent'
/tmp/cc1MifXl.o(.text+0x53b9): In function `BDecLDAPMessageContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x53da): In function `BDecLDAPMessageContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x53fb): In function `BDecLDAPMessageContent':
: undefined reference to `BDecAsnIntContent'
/tmp/cc1MifXl.o(.text+0x5410): In function `BDecLDAPMessageContent':
: undefined reference to `BDecTag'
/tmp/cc1MifXl.o(.text+0x546c): In function `BDecLDAPMessageContent':
: undefined reference to `BDecLen'
/tmp/cc1MifXl.o(.text+0x547f): In function `BDecLDAPMessageContent':
: undefined reference to `NibbleAlloc'
/tmp/cc1MifXl.o(.text+0x54db): In function `BDecLDAPMessageContent':
: undefined reference to `BDecEoc'
/tmp/cc1MifXl.o(.text+0x5564): In function `PrintLDAPMessage':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x5576): In function `PrintLDAPMessage':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x5595): In function `PrintLDAPMessage':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x55aa): In function `PrintLDAPMessage':
: undefined reference to `PrintAsnInt'
/tmp/cc1MifXl.o(.text+0x55c9): In function `PrintLDAPMessage':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x55db): In function `PrintLDAPMessage':
: undefined reference to `Indent'
/tmp/cc1MifXl.o(.text+0x55fa): In function `PrintLDAPMessage':
: undefined reference to `stdIndentG'
/tmp/cc1MifXl.o(.text+0x563d): In function `PrintLDAPMessage':
: undefined reference to `Indent'
collect2: ld returned 1 exit status
More information about the dev
mailing list