Added ifndef to config.h latest changes to allow makefile configurations.
This commit is contained in:
@@ -137,7 +137,16 @@
|
|||||||
/*
|
/*
|
||||||
** Set the maximum vector type sizes
|
** Set the maximum vector type sizes
|
||||||
*/
|
*/
|
||||||
#define MAX_BITSTRING_BYTES (15)
|
#ifndef MAX_BITSTRING_BYTES
|
||||||
#define MAX_CHARACTER_STRING_BYTES (MAX_APDU-6)
|
#define MAX_BITSTRING_BYTES (15)
|
||||||
#define MAX_OCTET_STRING_BYTES (MAX_APDU-6)
|
#endif
|
||||||
|
|
||||||
|
#ifndef MAX_CHARACTER_STRING_BYTES
|
||||||
|
#define MAX_CHARACTER_STRING_BYTES (MAX_APDU-6)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef MAX_OCTET_STRING_BYTES
|
||||||
|
#define MAX_OCTET_STRING_BYTES (MAX_APDU-6)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user