1 /*
2  * Copyright (c) 2011 QUALCOMM Incorporated.  All rights reserved.
3  * The license.txt file specifies the terms and conditions for
4  * modifications and redistribution.
5  *
6  * Copyright (c) 1989 Regents of the University of California.
7  * All rights reserved.  The Berkeley software License Agreement
8  * specifies the terms and conditions for redistribution.
9  *
10  */
11 
12 /*
13  *  Current version of Qpopper
14  */
15 
16 
17 #define VERS_NUM          "4.1.0"
18 
19 
20 #ifdef KERBEROS
21 #  ifdef KRB4
22 #    define VERS_SUF1     "-krb-IV"
23 #  endif /* KRB4 */
24 
25 #  ifdef KRB5
26 #    define VERS_SUF1     "-krb-V"
27 #  endif /* KRB5 */
28 
29 #else /* not KERBEROS */
30 #  define VERS_SUF1       ""
31 #endif /* KERBEROS */
32 
33 #ifdef _DEBUG
34 #  define VERS_SUF2       "_DEBUG"
35 #else
36 #  define VERS_SUF2       ""
37 #endif
38 
39 #define VERSION         VERS_NUM VERS_SUF1 VERS_SUF2
40