From: Paul B. S. <pa...@us...> - 2001-09-14 21:18:01
|
Update of /cvsroot/linux-atm/linux-atm/src/ilmid/asn1 In directory usw-pr-cvs1:/tmp/cvs-serv5287/src/ilmid/asn1 Modified Files: Tag: V2_4_0 asn_int.c asn_tag.h Log Message: Chas Williams' ia64 build fixes... Index: asn_int.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/ilmid/asn1/Attic/asn_int.c,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** asn_int.c 2001/09/03 18:41:06 1.1.2.1 --- asn_int.c 2001/09/14 21:17:58 1.1.2.2 *************** *** 85,89 **** unsigned long int dataCpy; ! #define INT_MASK (0x7f80 << ((sizeof(AsnInt) - 2) * 8)) dataCpy = *data; --- 85,89 ---- unsigned long int dataCpy; ! #define INT_MASK (0x7f80L << ((sizeof(AsnInt) - 2) * 8)) dataCpy = *data; Index: asn_tag.h =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/ilmid/asn1/Attic/asn_tag.h,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** asn_tag.h 2001/09/03 18:41:06 1.1.2.1 --- asn_tag.h 2001/09/14 21:17:58 1.1.2.2 *************** *** 70,73 **** --- 70,74 ---- } BER_CLASS; + #ifdef notdef typedef enum { *************** *** 77,80 **** --- 78,87 ---- CONS = (1 << 5) } BER_FORM; + #else + #define ANY_FORM -2 + #define NULL_FORM -1 + #define PRIM 0 + #define CONS (1L << 5) + #endif |