File: krb5_constants.c

package info (click to toggle)
libauthen-krb5-perl 1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 200 kB
  • ctags: 9
  • sloc: ansic: 3,024; perl: 217; makefile: 56
file content (3025 lines) | stat: -rw-r--r-- 65,448 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
static double
constant(name, arg)
char *name;
int arg;
{
    errno = 0;
    switch (*name) {
    case 'A':
	if (strEQ(name, "ADDRTYPE_ADDRPORT"))
#ifdef ADDRTYPE_ADDRPORT
	    return ADDRTYPE_ADDRPORT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ADDRTYPE_CHAOS"))
#ifdef ADDRTYPE_CHAOS
	    return ADDRTYPE_CHAOS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ADDRTYPE_DDP"))
#ifdef ADDRTYPE_DDP
	    return ADDRTYPE_DDP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ADDRTYPE_INET"))
#ifdef ADDRTYPE_INET
	    return ADDRTYPE_INET;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ADDRTYPE_IPPORT"))
#ifdef ADDRTYPE_IPPORT
	    return ADDRTYPE_IPPORT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ADDRTYPE_ISO"))
#ifdef ADDRTYPE_ISO
	    return ADDRTYPE_ISO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ADDRTYPE_XNS"))
#ifdef ADDRTYPE_XNS
	    return ADDRTYPE_XNS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AD_TYPE_EXTERNAL"))
#ifdef AD_TYPE_EXTERNAL
	    return AD_TYPE_EXTERNAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AD_TYPE_FIELD_TYPE_MASK"))
#ifdef AD_TYPE_FIELD_TYPE_MASK
	    return AD_TYPE_FIELD_TYPE_MASK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AD_TYPE_INTERNAL_MASK"))
#ifdef AD_TYPE_INTERNAL_MASK
	    return AD_TYPE_INTERNAL_MASK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AD_TYPE_REGISTERED"))
#ifdef AD_TYPE_REGISTERED
	    return AD_TYPE_REGISTERED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AD_TYPE_RESERVED"))
#ifdef AD_TYPE_RESERVED
	    return AD_TYPE_RESERVED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ANSI_STDIO"))
#ifdef ANSI_STDIO
	    return ANSI_STDIO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AP_OPTS_MUTUAL_REQUIRED"))
#ifdef AP_OPTS_MUTUAL_REQUIRED
	    return AP_OPTS_MUTUAL_REQUIRED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AP_OPTS_RESERVED"))
#ifdef AP_OPTS_RESERVED
	    return AP_OPTS_RESERVED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AP_OPTS_USE_SESSION_KEY"))
#ifdef AP_OPTS_USE_SESSION_KEY
	    return AP_OPTS_USE_SESSION_KEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AP_OPTS_USE_SUBKEY"))
#ifdef AP_OPTS_USE_SUBKEY
	    return AP_OPTS_USE_SUBKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "AP_OPTS_WIRE_MASK"))
#ifdef AP_OPTS_WIRE_MASK
	    return AP_OPTS_WIRE_MASK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_BAD_FORMAT"))
#ifdef ASN1_BAD_FORMAT
	    return ASN1_BAD_FORMAT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_BAD_ID"))
#ifdef ASN1_BAD_ID
	    return ASN1_BAD_ID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_BAD_LENGTH"))
#ifdef ASN1_BAD_LENGTH
	    return ASN1_BAD_LENGTH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_BAD_TIMEFORMAT"))
#ifdef ASN1_BAD_TIMEFORMAT
	    return ASN1_BAD_TIMEFORMAT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_MISPLACED_FIELD"))
#ifdef ASN1_MISPLACED_FIELD
	    return ASN1_MISPLACED_FIELD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_MISSING_FIELD"))
#ifdef ASN1_MISSING_FIELD
	    return ASN1_MISSING_FIELD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_OVERFLOW"))
#ifdef ASN1_OVERFLOW
	    return ASN1_OVERFLOW;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_OVERRUN"))
#ifdef ASN1_OVERRUN
	    return ASN1_OVERRUN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_PARSE_ERROR"))
#ifdef ASN1_PARSE_ERROR
	    return ASN1_PARSE_ERROR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ASN1_TYPE_MISMATCH"))
#ifdef ASN1_TYPE_MISMATCH
	    return ASN1_TYPE_MISMATCH;
#else
	    goto not_there;
#endif
	break;
    case 'B':
	break;
    case 'C':
	if (strEQ(name, "CKSUMTYPE_CRC32"))
#ifdef CKSUMTYPE_CRC32
	    return CKSUMTYPE_CRC32;
#else
	    goto not_there;
#endif
	if (strEQ(name, "CKSUMTYPE_DESCBC"))
#ifdef CKSUMTYPE_DESCBC
	    return CKSUMTYPE_DESCBC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "CKSUMTYPE_HMAC_SHA"))
#ifdef CKSUMTYPE_HMAC_SHA
	    return CKSUMTYPE_HMAC_SHA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "CKSUMTYPE_NIST_SHA"))
#ifdef CKSUMTYPE_NIST_SHA
	    return CKSUMTYPE_NIST_SHA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "CKSUMTYPE_RSA_MD4"))
#ifdef CKSUMTYPE_RSA_MD4
	    return CKSUMTYPE_RSA_MD4;
#else
	    goto not_there;
#endif
	if (strEQ(name, "CKSUMTYPE_RSA_MD4_DES"))
#ifdef CKSUMTYPE_RSA_MD4_DES
	    return CKSUMTYPE_RSA_MD4_DES;
#else
	    goto not_there;
#endif
	if (strEQ(name, "CKSUMTYPE_RSA_MD5"))
#ifdef CKSUMTYPE_RSA_MD5
	    return CKSUMTYPE_RSA_MD5;
#else
	    goto not_there;
#endif
	if (strEQ(name, "CKSUMTYPE_RSA_MD5_DES"))
#ifdef CKSUMTYPE_RSA_MD5_DES
	    return CKSUMTYPE_RSA_MD5_DES;
#else
	    goto not_there;
#endif
	break;
    case 'D':
	break;
    case 'E':
	if (strEQ(name, "ENCTYPE_DES3_CBC_RAW"))
#ifdef ENCTYPE_DES3_CBC_RAW
	    return ENCTYPE_DES3_CBC_RAW;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENCTYPE_DES3_CBC_SHA"))
#ifdef ENCTYPE_DES3_CBC_SHA
	    return ENCTYPE_DES3_CBC_SHA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENCTYPE_DES_CBC_CRC"))
#ifdef ENCTYPE_DES_CBC_CRC
	    return ENCTYPE_DES_CBC_CRC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENCTYPE_DES_CBC_MD4"))
#ifdef ENCTYPE_DES_CBC_MD4
	    return ENCTYPE_DES_CBC_MD4;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENCTYPE_DES_CBC_MD5"))
#ifdef ENCTYPE_DES_CBC_MD5
	    return ENCTYPE_DES_CBC_MD5;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENCTYPE_DES_CBC_RAW"))
#ifdef ENCTYPE_DES_CBC_RAW
	    return ENCTYPE_DES_CBC_RAW;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENCTYPE_NULL"))
#ifdef ENCTYPE_NULL
	    return ENCTYPE_NULL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENCTYPE_UNKNOWN"))
#ifdef ENCTYPE_UNKNOWN
	    return ENCTYPE_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ENOMEM"))
#ifdef ENOMEM
	    return ENOMEM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ERROR_TABLE_BASE_asn1"))
#ifdef ERROR_TABLE_BASE_asn1
	    return ERROR_TABLE_BASE_asn1;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ERROR_TABLE_BASE_kdb5"))
#ifdef ERROR_TABLE_BASE_kdb5
	    return ERROR_TABLE_BASE_kdb5;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ERROR_TABLE_BASE_krb5"))
#ifdef ERROR_TABLE_BASE_krb5
	    return ERROR_TABLE_BASE_krb5;
#else
	    goto not_there;
#endif
	if (strEQ(name, "ERROR_TABLE_BASE_kv5m"))
#ifdef ERROR_TABLE_BASE_kv5m
	    return ERROR_TABLE_BASE_kv5m;
#else
	    goto not_there;
#endif
	break;
    case 'F':
	if (strEQ(name, "FALSE"))
#ifdef FALSE
	    return FALSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "FAR"))
#ifdef FAR
	    return FAR;
#else
	    goto not_there;
#endif
	break;
    case 'G':
	break;
    case 'H':
	if (strEQ(name, "HAS_LABS"))
#ifdef HAS_LABS
	    return HAS_LABS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "HAS_VOID_TYPE"))
#ifdef HAS_VOID_TYPE
	    return HAS_VOID_TYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "HAVE_SRAND"))
#ifdef HAVE_SRAND
	    return HAVE_SRAND;
#else
	    goto not_there;
#endif
	if (strEQ(name, "HAVE_STDARG_H"))
#ifdef HAVE_STDARG_H
	    return HAVE_STDARG_H;
#else
	    goto not_there;
#endif
	if (strEQ(name, "HAVE_SYS_TYPES_H"))
#ifdef HAVE_SYS_TYPES_H
	    return HAVE_SYS_TYPES_H;
#else
	    goto not_there;
#endif
	break;
    case 'I':
	if (strEQ(name, "INTERFACE"))
#ifdef INTERFACE
	    return INTERFACE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "INTERFACE_C"))
#ifdef INTERFACE_C
	    return INTERFACE_C;
#else
	    goto not_there;
#endif
	break;
    case 'J':
	break;
    case 'K':
	if (strEQ(name, "KDC_OPT_ALLOW_POSTDATE"))
#ifdef KDC_OPT_ALLOW_POSTDATE
	    return KDC_OPT_ALLOW_POSTDATE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_ENC_TKT_IN_SKEY"))
#ifdef KDC_OPT_ENC_TKT_IN_SKEY
	    return KDC_OPT_ENC_TKT_IN_SKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_FORWARDABLE"))
#ifdef KDC_OPT_FORWARDABLE
	    return KDC_OPT_FORWARDABLE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_FORWARDED"))
#ifdef KDC_OPT_FORWARDED
	    return KDC_OPT_FORWARDED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_POSTDATED"))
#ifdef KDC_OPT_POSTDATED
	    return KDC_OPT_POSTDATED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_PROXIABLE"))
#ifdef KDC_OPT_PROXIABLE
	    return KDC_OPT_PROXIABLE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_PROXY"))
#ifdef KDC_OPT_PROXY
	    return KDC_OPT_PROXY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_RENEW"))
#ifdef KDC_OPT_RENEW
	    return KDC_OPT_RENEW;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_RENEWABLE"))
#ifdef KDC_OPT_RENEWABLE
	    return KDC_OPT_RENEWABLE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_RENEWABLE_OK"))
#ifdef KDC_OPT_RENEWABLE_OK
	    return KDC_OPT_RENEWABLE_OK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_OPT_VALIDATE"))
#ifdef KDC_OPT_VALIDATE
	    return KDC_OPT_VALIDATE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KDC_TKT_COMMON_MASK"))
#ifdef KDC_TKT_COMMON_MASK
	    return KDC_TKT_COMMON_MASK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5DES_BAD_KEYPAR"))
#ifdef KRB5DES_BAD_KEYPAR
	    return KRB5DES_BAD_KEYPAR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5DES_WEAK_KEY"))
#ifdef KRB5DES_WEAK_KEY
	    return KRB5DES_WEAK_KEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_BADOPTION"))
#ifdef KRB5KDC_ERR_BADOPTION
	    return KRB5KDC_ERR_BADOPTION;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_BAD_PVNO"))
#ifdef KRB5KDC_ERR_BAD_PVNO
	    return KRB5KDC_ERR_BAD_PVNO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_CANNOT_POSTDATE"))
#ifdef KRB5KDC_ERR_CANNOT_POSTDATE
	    return KRB5KDC_ERR_CANNOT_POSTDATE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_CLIENT_NOTYET"))
#ifdef KRB5KDC_ERR_CLIENT_NOTYET
	    return KRB5KDC_ERR_CLIENT_NOTYET;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_CLIENT_REVOKED"))
#ifdef KRB5KDC_ERR_CLIENT_REVOKED
	    return KRB5KDC_ERR_CLIENT_REVOKED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_C_OLD_MAST_KVNO"))
#ifdef KRB5KDC_ERR_C_OLD_MAST_KVNO
	    return KRB5KDC_ERR_C_OLD_MAST_KVNO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN"))
#ifdef KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN
	    return KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_ETYPE_NOSUPP"))
#ifdef KRB5KDC_ERR_ETYPE_NOSUPP
	    return KRB5KDC_ERR_ETYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_KEY_EXP"))
#ifdef KRB5KDC_ERR_KEY_EXP
	    return KRB5KDC_ERR_KEY_EXP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_NAME_EXP"))
#ifdef KRB5KDC_ERR_NAME_EXP
	    return KRB5KDC_ERR_NAME_EXP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_NEVER_VALID"))
#ifdef KRB5KDC_ERR_NEVER_VALID
	    return KRB5KDC_ERR_NEVER_VALID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_NONE"))
#ifdef KRB5KDC_ERR_NONE
	    return KRB5KDC_ERR_NONE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_NULL_KEY"))
#ifdef KRB5KDC_ERR_NULL_KEY
	    return KRB5KDC_ERR_NULL_KEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_PADATA_TYPE_NOSUPP"))
#ifdef KRB5KDC_ERR_PADATA_TYPE_NOSUPP
	    return KRB5KDC_ERR_PADATA_TYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_POLICY"))
#ifdef KRB5KDC_ERR_POLICY
	    return KRB5KDC_ERR_POLICY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_PREAUTH_FAILED"))
#ifdef KRB5KDC_ERR_PREAUTH_FAILED
	    return KRB5KDC_ERR_PREAUTH_FAILED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_PREAUTH_REQUIRED"))
#ifdef KRB5KDC_ERR_PREAUTH_REQUIRED
	    return KRB5KDC_ERR_PREAUTH_REQUIRED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_PRINCIPAL_NOT_UNIQUE"))
#ifdef KRB5KDC_ERR_PRINCIPAL_NOT_UNIQUE
	    return KRB5KDC_ERR_PRINCIPAL_NOT_UNIQUE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_SERVER_NOMATCH"))
#ifdef KRB5KDC_ERR_SERVER_NOMATCH
	    return KRB5KDC_ERR_SERVER_NOMATCH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_SERVICE_EXP"))
#ifdef KRB5KDC_ERR_SERVICE_EXP
	    return KRB5KDC_ERR_SERVICE_EXP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_SERVICE_NOTYET"))
#ifdef KRB5KDC_ERR_SERVICE_NOTYET
	    return KRB5KDC_ERR_SERVICE_NOTYET;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_SERVICE_REVOKED"))
#ifdef KRB5KDC_ERR_SERVICE_REVOKED
	    return KRB5KDC_ERR_SERVICE_REVOKED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_SUMTYPE_NOSUPP"))
#ifdef KRB5KDC_ERR_SUMTYPE_NOSUPP
	    return KRB5KDC_ERR_SUMTYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_S_OLD_MAST_KVNO"))
#ifdef KRB5KDC_ERR_S_OLD_MAST_KVNO
	    return KRB5KDC_ERR_S_OLD_MAST_KVNO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN"))
#ifdef KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN
	    return KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_TGT_REVOKED"))
#ifdef KRB5KDC_ERR_TGT_REVOKED
	    return KRB5KDC_ERR_TGT_REVOKED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KDC_ERR_TRTYPE_NOSUPP"))
#ifdef KRB5KDC_ERR_TRTYPE_NOSUPP
	    return KRB5KDC_ERR_TRTYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BADADDR"))
#ifdef KRB5KRB_AP_ERR_BADADDR
	    return KRB5KRB_AP_ERR_BADADDR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BADDIRECTION"))
#ifdef KRB5KRB_AP_ERR_BADDIRECTION
	    return KRB5KRB_AP_ERR_BADDIRECTION;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BADKEYVER"))
#ifdef KRB5KRB_AP_ERR_BADKEYVER
	    return KRB5KRB_AP_ERR_BADKEYVER;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BADMATCH"))
#ifdef KRB5KRB_AP_ERR_BADMATCH
	    return KRB5KRB_AP_ERR_BADMATCH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BADORDER"))
#ifdef KRB5KRB_AP_ERR_BADORDER
	    return KRB5KRB_AP_ERR_BADORDER;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BADSEQ"))
#ifdef KRB5KRB_AP_ERR_BADSEQ
	    return KRB5KRB_AP_ERR_BADSEQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BADVERSION"))
#ifdef KRB5KRB_AP_ERR_BADVERSION
	    return KRB5KRB_AP_ERR_BADVERSION;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_BAD_INTEGRITY"))
#ifdef KRB5KRB_AP_ERR_BAD_INTEGRITY
	    return KRB5KRB_AP_ERR_BAD_INTEGRITY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_ILL_CR_TKT"))
#ifdef KRB5KRB_AP_ERR_ILL_CR_TKT
	    return KRB5KRB_AP_ERR_ILL_CR_TKT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_INAPP_CKSUM"))
#ifdef KRB5KRB_AP_ERR_INAPP_CKSUM
	    return KRB5KRB_AP_ERR_INAPP_CKSUM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_METHOD"))
#ifdef KRB5KRB_AP_ERR_METHOD
	    return KRB5KRB_AP_ERR_METHOD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_MODIFIED"))
#ifdef KRB5KRB_AP_ERR_MODIFIED
	    return KRB5KRB_AP_ERR_MODIFIED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_MSG_TYPE"))
#ifdef KRB5KRB_AP_ERR_MSG_TYPE
	    return KRB5KRB_AP_ERR_MSG_TYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_MUT_FAIL"))
#ifdef KRB5KRB_AP_ERR_MUT_FAIL
	    return KRB5KRB_AP_ERR_MUT_FAIL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_NOKEY"))
#ifdef KRB5KRB_AP_ERR_NOKEY
	    return KRB5KRB_AP_ERR_NOKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_NOT_US"))
#ifdef KRB5KRB_AP_ERR_NOT_US
	    return KRB5KRB_AP_ERR_NOT_US;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_REPEAT"))
#ifdef KRB5KRB_AP_ERR_REPEAT
	    return KRB5KRB_AP_ERR_REPEAT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_SKEW"))
#ifdef KRB5KRB_AP_ERR_SKEW
	    return KRB5KRB_AP_ERR_SKEW;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_TKT_EXPIRED"))
#ifdef KRB5KRB_AP_ERR_TKT_EXPIRED
	    return KRB5KRB_AP_ERR_TKT_EXPIRED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_TKT_INVALID"))
#ifdef KRB5KRB_AP_ERR_TKT_INVALID
	    return KRB5KRB_AP_ERR_TKT_INVALID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_TKT_NYV"))
#ifdef KRB5KRB_AP_ERR_TKT_NYV
	    return KRB5KRB_AP_ERR_TKT_NYV;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_ERR_V4_REPLY"))
#ifdef KRB5KRB_AP_ERR_V4_REPLY
	    return KRB5KRB_AP_ERR_V4_REPLY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_AP_WRONG_PRINC"))
#ifdef KRB5KRB_AP_WRONG_PRINC
	    return KRB5KRB_AP_WRONG_PRINC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_ERR_FIELD_TOOLONG"))
#ifdef KRB5KRB_ERR_FIELD_TOOLONG
	    return KRB5KRB_ERR_FIELD_TOOLONG;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5KRB_ERR_GENERIC"))
#ifdef KRB5KRB_ERR_GENERIC
	    return KRB5KRB_ERR_GENERIC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_100"))
#ifdef KRB5PLACEHOLD_100
	    return KRB5PLACEHOLD_100;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_101"))
#ifdef KRB5PLACEHOLD_101
	    return KRB5PLACEHOLD_101;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_102"))
#ifdef KRB5PLACEHOLD_102
	    return KRB5PLACEHOLD_102;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_103"))
#ifdef KRB5PLACEHOLD_103
	    return KRB5PLACEHOLD_103;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_104"))
#ifdef KRB5PLACEHOLD_104
	    return KRB5PLACEHOLD_104;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_105"))
#ifdef KRB5PLACEHOLD_105
	    return KRB5PLACEHOLD_105;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_106"))
#ifdef KRB5PLACEHOLD_106
	    return KRB5PLACEHOLD_106;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_107"))
#ifdef KRB5PLACEHOLD_107
	    return KRB5PLACEHOLD_107;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_108"))
#ifdef KRB5PLACEHOLD_108
	    return KRB5PLACEHOLD_108;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_109"))
#ifdef KRB5PLACEHOLD_109
	    return KRB5PLACEHOLD_109;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_110"))
#ifdef KRB5PLACEHOLD_110
	    return KRB5PLACEHOLD_110;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_111"))
#ifdef KRB5PLACEHOLD_111
	    return KRB5PLACEHOLD_111;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_112"))
#ifdef KRB5PLACEHOLD_112
	    return KRB5PLACEHOLD_112;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_113"))
#ifdef KRB5PLACEHOLD_113
	    return KRB5PLACEHOLD_113;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_114"))
#ifdef KRB5PLACEHOLD_114
	    return KRB5PLACEHOLD_114;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_115"))
#ifdef KRB5PLACEHOLD_115
	    return KRB5PLACEHOLD_115;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_116"))
#ifdef KRB5PLACEHOLD_116
	    return KRB5PLACEHOLD_116;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_117"))
#ifdef KRB5PLACEHOLD_117
	    return KRB5PLACEHOLD_117;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_118"))
#ifdef KRB5PLACEHOLD_118
	    return KRB5PLACEHOLD_118;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_119"))
#ifdef KRB5PLACEHOLD_119
	    return KRB5PLACEHOLD_119;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_120"))
#ifdef KRB5PLACEHOLD_120
	    return KRB5PLACEHOLD_120;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_121"))
#ifdef KRB5PLACEHOLD_121
	    return KRB5PLACEHOLD_121;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_122"))
#ifdef KRB5PLACEHOLD_122
	    return KRB5PLACEHOLD_122;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_123"))
#ifdef KRB5PLACEHOLD_123
	    return KRB5PLACEHOLD_123;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_124"))
#ifdef KRB5PLACEHOLD_124
	    return KRB5PLACEHOLD_124;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_125"))
#ifdef KRB5PLACEHOLD_125
	    return KRB5PLACEHOLD_125;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_126"))
#ifdef KRB5PLACEHOLD_126
	    return KRB5PLACEHOLD_126;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_127"))
#ifdef KRB5PLACEHOLD_127
	    return KRB5PLACEHOLD_127;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_27"))
#ifdef KRB5PLACEHOLD_27
	    return KRB5PLACEHOLD_27;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_28"))
#ifdef KRB5PLACEHOLD_28
	    return KRB5PLACEHOLD_28;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_29"))
#ifdef KRB5PLACEHOLD_29
	    return KRB5PLACEHOLD_29;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_30"))
#ifdef KRB5PLACEHOLD_30
	    return KRB5PLACEHOLD_30;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_51"))
#ifdef KRB5PLACEHOLD_51
	    return KRB5PLACEHOLD_51;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_52"))
#ifdef KRB5PLACEHOLD_52
	    return KRB5PLACEHOLD_52;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_53"))
#ifdef KRB5PLACEHOLD_53
	    return KRB5PLACEHOLD_53;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_54"))
#ifdef KRB5PLACEHOLD_54
	    return KRB5PLACEHOLD_54;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_55"))
#ifdef KRB5PLACEHOLD_55
	    return KRB5PLACEHOLD_55;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_56"))
#ifdef KRB5PLACEHOLD_56
	    return KRB5PLACEHOLD_56;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_57"))
#ifdef KRB5PLACEHOLD_57
	    return KRB5PLACEHOLD_57;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_58"))
#ifdef KRB5PLACEHOLD_58
	    return KRB5PLACEHOLD_58;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_59"))
#ifdef KRB5PLACEHOLD_59
	    return KRB5PLACEHOLD_59;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_62"))
#ifdef KRB5PLACEHOLD_62
	    return KRB5PLACEHOLD_62;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_63"))
#ifdef KRB5PLACEHOLD_63
	    return KRB5PLACEHOLD_63;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_64"))
#ifdef KRB5PLACEHOLD_64
	    return KRB5PLACEHOLD_64;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_65"))
#ifdef KRB5PLACEHOLD_65
	    return KRB5PLACEHOLD_65;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_66"))
#ifdef KRB5PLACEHOLD_66
	    return KRB5PLACEHOLD_66;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_67"))
#ifdef KRB5PLACEHOLD_67
	    return KRB5PLACEHOLD_67;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_68"))
#ifdef KRB5PLACEHOLD_68
	    return KRB5PLACEHOLD_68;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_69"))
#ifdef KRB5PLACEHOLD_69
	    return KRB5PLACEHOLD_69;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_70"))
#ifdef KRB5PLACEHOLD_70
	    return KRB5PLACEHOLD_70;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_71"))
#ifdef KRB5PLACEHOLD_71
	    return KRB5PLACEHOLD_71;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_72"))
#ifdef KRB5PLACEHOLD_72
	    return KRB5PLACEHOLD_72;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_73"))
#ifdef KRB5PLACEHOLD_73
	    return KRB5PLACEHOLD_73;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_74"))
#ifdef KRB5PLACEHOLD_74
	    return KRB5PLACEHOLD_74;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_75"))
#ifdef KRB5PLACEHOLD_75
	    return KRB5PLACEHOLD_75;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_76"))
#ifdef KRB5PLACEHOLD_76
	    return KRB5PLACEHOLD_76;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_77"))
#ifdef KRB5PLACEHOLD_77
	    return KRB5PLACEHOLD_77;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_78"))
#ifdef KRB5PLACEHOLD_78
	    return KRB5PLACEHOLD_78;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_79"))
#ifdef KRB5PLACEHOLD_79
	    return KRB5PLACEHOLD_79;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_80"))
#ifdef KRB5PLACEHOLD_80
	    return KRB5PLACEHOLD_80;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_81"))
#ifdef KRB5PLACEHOLD_81
	    return KRB5PLACEHOLD_81;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_82"))
#ifdef KRB5PLACEHOLD_82
	    return KRB5PLACEHOLD_82;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_83"))
#ifdef KRB5PLACEHOLD_83
	    return KRB5PLACEHOLD_83;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_84"))
#ifdef KRB5PLACEHOLD_84
	    return KRB5PLACEHOLD_84;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_85"))
#ifdef KRB5PLACEHOLD_85
	    return KRB5PLACEHOLD_85;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_86"))
#ifdef KRB5PLACEHOLD_86
	    return KRB5PLACEHOLD_86;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_87"))
#ifdef KRB5PLACEHOLD_87
	    return KRB5PLACEHOLD_87;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_88"))
#ifdef KRB5PLACEHOLD_88
	    return KRB5PLACEHOLD_88;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_89"))
#ifdef KRB5PLACEHOLD_89
	    return KRB5PLACEHOLD_89;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_90"))
#ifdef KRB5PLACEHOLD_90
	    return KRB5PLACEHOLD_90;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_91"))
#ifdef KRB5PLACEHOLD_91
	    return KRB5PLACEHOLD_91;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_92"))
#ifdef KRB5PLACEHOLD_92
	    return KRB5PLACEHOLD_92;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_93"))
#ifdef KRB5PLACEHOLD_93
	    return KRB5PLACEHOLD_93;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_94"))
#ifdef KRB5PLACEHOLD_94
	    return KRB5PLACEHOLD_94;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_95"))
#ifdef KRB5PLACEHOLD_95
	    return KRB5PLACEHOLD_95;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_96"))
#ifdef KRB5PLACEHOLD_96
	    return KRB5PLACEHOLD_96;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_97"))
#ifdef KRB5PLACEHOLD_97
	    return KRB5PLACEHOLD_97;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_98"))
#ifdef KRB5PLACEHOLD_98
	    return KRB5PLACEHOLD_98;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5PLACEHOLD_99"))
#ifdef KRB5PLACEHOLD_99
	    return KRB5PLACEHOLD_99;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_ALTAUTH_ATT_CHALLENGE_RESPONSE"))
#ifdef KRB5_ALTAUTH_ATT_CHALLENGE_RESPONSE
	    return KRB5_ALTAUTH_ATT_CHALLENGE_RESPONSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AP_REP"))
#ifdef KRB5_AP_REP
	    return KRB5_AP_REP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AP_REQ"))
#ifdef KRB5_AP_REQ
	    return KRB5_AP_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AS_REP"))
#ifdef KRB5_AS_REP
	    return KRB5_AS_REP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AS_REQ"))
#ifdef KRB5_AS_REQ
	    return KRB5_AS_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTHDATA_OSF_DCE"))
#ifdef KRB5_AUTHDATA_OSF_DCE
	    return KRB5_AUTHDATA_OSF_DCE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTHDATA_SESAME"))
#ifdef KRB5_AUTHDATA_SESAME
	    return KRB5_AUTHDATA_SESAME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_DO_SEQUENCE"))
#ifdef KRB5_AUTH_CONTEXT_DO_SEQUENCE
	    return KRB5_AUTH_CONTEXT_DO_SEQUENCE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_DO_TIME"))
#ifdef KRB5_AUTH_CONTEXT_DO_TIME
	    return KRB5_AUTH_CONTEXT_DO_TIME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_GENERATE_LOCAL_ADDR"))
#ifdef KRB5_AUTH_CONTEXT_GENERATE_LOCAL_ADDR
	    return KRB5_AUTH_CONTEXT_GENERATE_LOCAL_ADDR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR"))
#ifdef KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR
	    return KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_GENERATE_REMOTE_ADDR"))
#ifdef KRB5_AUTH_CONTEXT_GENERATE_REMOTE_ADDR
	    return KRB5_AUTH_CONTEXT_GENERATE_REMOTE_ADDR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR"))
#ifdef KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR
	    return KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_RET_SEQUENCE"))
#ifdef KRB5_AUTH_CONTEXT_RET_SEQUENCE
	    return KRB5_AUTH_CONTEXT_RET_SEQUENCE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_AUTH_CONTEXT_RET_TIME"))
#ifdef KRB5_AUTH_CONTEXT_RET_TIME
	    return KRB5_AUTH_CONTEXT_RET_TIME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_BADMSGTYPE"))
#ifdef KRB5_BADMSGTYPE
	    return KRB5_BADMSGTYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_BAD_ENCTYPE"))
#ifdef KRB5_BAD_ENCTYPE
	    return KRB5_BAD_ENCTYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_BAD_KEYSIZE"))
#ifdef KRB5_BAD_KEYSIZE
	    return KRB5_BAD_KEYSIZE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_BAD_MSIZE"))
#ifdef KRB5_BAD_MSIZE
	    return KRB5_BAD_MSIZE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CCACHE_BADVNO"))
#ifdef KRB5_CCACHE_BADVNO
	    return KRB5_CCACHE_BADVNO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_BADNAME"))
#ifdef KRB5_CC_BADNAME
	    return KRB5_CC_BADNAME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_END"))
#ifdef KRB5_CC_END
	    return KRB5_CC_END;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_FORMAT"))
#ifdef KRB5_CC_FORMAT
	    return KRB5_CC_FORMAT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_IO"))
#ifdef KRB5_CC_IO
	    return KRB5_CC_IO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_NOMEM"))
#ifdef KRB5_CC_NOMEM
	    return KRB5_CC_NOMEM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_NOTFOUND"))
#ifdef KRB5_CC_NOTFOUND
	    return KRB5_CC_NOTFOUND;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_TYPE_EXISTS"))
#ifdef KRB5_CC_TYPE_EXISTS
	    return KRB5_CC_TYPE_EXISTS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_UNKNOWN_TYPE"))
#ifdef KRB5_CC_UNKNOWN_TYPE
	    return KRB5_CC_UNKNOWN_TYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CC_WRITE"))
#ifdef KRB5_CC_WRITE
	    return KRB5_CC_WRITE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CONFIG_BADFORMAT"))
#ifdef KRB5_CONFIG_BADFORMAT
	    return KRB5_CONFIG_BADFORMAT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CONFIG_CANTOPEN"))
#ifdef KRB5_CONFIG_CANTOPEN
	    return KRB5_CONFIG_CANTOPEN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CONFIG_NODEFREALM"))
#ifdef KRB5_CONFIG_NODEFREALM
	    return KRB5_CONFIG_NODEFREALM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CONFIG_NOTENUFSPACE"))
#ifdef KRB5_CONFIG_NOTENUFSPACE
	    return KRB5_CONFIG_NOTENUFSPACE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CRED"))
#ifdef KRB5_CRED
	    return KRB5_CRED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CRYPTO_INTERNAL"))
#ifdef KRB5_CRYPTO_INTERNAL
	    return KRB5_CRYPTO_INTERNAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_CYBERSAFE_SECUREID"))
#ifdef KRB5_CYBERSAFE_SECUREID
	    return KRB5_CYBERSAFE_SECUREID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_DECLSPEC"))
#ifdef KRB5_DECLSPEC
	    return KRB5_DECLSPEC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_DLLIMP"))
#ifdef KRB5_DLLIMP
	    return KRB5_DLLIMP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_DOMAIN_X500_COMPRESS"))
#ifdef KRB5_DOMAIN_X500_COMPRESS
	    return KRB5_DOMAIN_X500_COMPRESS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_ERROR"))
#ifdef KRB5_ERROR
	    return KRB5_ERROR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_ERR_BAD_HOSTNAME"))
#ifdef KRB5_ERR_BAD_HOSTNAME
	    return KRB5_ERR_BAD_HOSTNAME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_ERR_HOST_REALM_UNKNOWN"))
#ifdef KRB5_ERR_HOST_REALM_UNKNOWN
	    return KRB5_ERR_HOST_REALM_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_ERR_RCSID"))
#ifdef KRB5_ERR_RCSID
	    return KRB5_ERR_RCSID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_FCC_INTERNAL"))
#ifdef KRB5_FCC_INTERNAL
	    return KRB5_FCC_INTERNAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_FCC_NOFILE"))
#ifdef KRB5_FCC_NOFILE
	    return KRB5_FCC_NOFILE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_FCC_PERM"))
#ifdef KRB5_FCC_PERM
	    return KRB5_FCC_PERM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_FWD_BAD_PRINCIPAL"))
#ifdef KRB5_FWD_BAD_PRINCIPAL
	    return KRB5_FWD_BAD_PRINCIPAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_GC_CACHED"))
#ifdef KRB5_GC_CACHED
	    return KRB5_GC_CACHED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_GC_USER_USER"))
#ifdef KRB5_GC_USER_USER
	    return KRB5_GC_USER_USER;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_GET_IN_TKT_LOOP"))
#ifdef KRB5_GET_IN_TKT_LOOP
	    return KRB5_GET_IN_TKT_LOOP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_INT16_MAX"))
#ifdef KRB5_INT16_MAX
	    return KRB5_INT16_MAX;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_INT16_MIN"))
#ifdef KRB5_INT16_MIN
	    return KRB5_INT16_MIN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_INT32_MAX"))
#ifdef KRB5_INT32_MAX
	    return KRB5_INT32_MAX;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_INT32_MIN"))
#ifdef KRB5_INT32_MIN
	    return KRB5_INT32_MIN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_INVALID_FLAGS"))
#ifdef KRB5_INVALID_FLAGS
	    return KRB5_INVALID_FLAGS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_IN_TKT_REALM_MISMATCH"))
#ifdef KRB5_IN_TKT_REALM_MISMATCH
	    return KRB5_IN_TKT_REALM_MISMATCH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_BADLOCKMODE"))
#ifdef KRB5_KDB_BADLOCKMODE
	    return KRB5_KDB_BADLOCKMODE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_BADMASTERKEY"))
#ifdef KRB5_KDB_BADMASTERKEY
	    return KRB5_KDB_BADMASTERKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_BADSTORED_MKEY"))
#ifdef KRB5_KDB_BADSTORED_MKEY
	    return KRB5_KDB_BADSTORED_MKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_BAD_ENCTYPE"))
#ifdef KRB5_KDB_BAD_ENCTYPE
	    return KRB5_KDB_BAD_ENCTYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_BAD_SALTTYPE"))
#ifdef KRB5_KDB_BAD_SALTTYPE
	    return KRB5_KDB_BAD_SALTTYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_BAD_VERSION"))
#ifdef KRB5_KDB_BAD_VERSION
	    return KRB5_KDB_BAD_VERSION;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_CANTLOCK_DB"))
#ifdef KRB5_KDB_CANTLOCK_DB
	    return KRB5_KDB_CANTLOCK_DB;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_CANTREAD_STORED"))
#ifdef KRB5_KDB_CANTREAD_STORED
	    return KRB5_KDB_CANTREAD_STORED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_DBINITED"))
#ifdef KRB5_KDB_DBINITED
	    return KRB5_KDB_DBINITED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_DBNOTINITED"))
#ifdef KRB5_KDB_DBNOTINITED
	    return KRB5_KDB_DBNOTINITED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_DB_CHANGED"))
#ifdef KRB5_KDB_DB_CHANGED
	    return KRB5_KDB_DB_CHANGED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_DB_CORRUPT"))
#ifdef KRB5_KDB_DB_CORRUPT
	    return KRB5_KDB_DB_CORRUPT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_DB_INUSE"))
#ifdef KRB5_KDB_DB_INUSE
	    return KRB5_KDB_DB_INUSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_ILLDIRECTION"))
#ifdef KRB5_KDB_ILLDIRECTION
	    return KRB5_KDB_ILLDIRECTION;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_ILL_WILDCARD"))
#ifdef KRB5_KDB_ILL_WILDCARD
	    return KRB5_KDB_ILL_WILDCARD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_INUSE"))
#ifdef KRB5_KDB_INUSE
	    return KRB5_KDB_INUSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_INVALIDKEYSIZE"))
#ifdef KRB5_KDB_INVALIDKEYSIZE
	    return KRB5_KDB_INVALIDKEYSIZE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_NOENTRY"))
#ifdef KRB5_KDB_NOENTRY
	    return KRB5_KDB_NOENTRY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_NOMASTERKEY"))
#ifdef KRB5_KDB_NOMASTERKEY
	    return KRB5_KDB_NOMASTERKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_NOTLOCKED"))
#ifdef KRB5_KDB_NOTLOCKED
	    return KRB5_KDB_NOTLOCKED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_RCSID"))
#ifdef KRB5_KDB_RCSID
	    return KRB5_KDB_RCSID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_RECURSIVELOCK"))
#ifdef KRB5_KDB_RECURSIVELOCK
	    return KRB5_KDB_RECURSIVELOCK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_TRUNCATED_RECORD"))
#ifdef KRB5_KDB_TRUNCATED_RECORD
	    return KRB5_KDB_TRUNCATED_RECORD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_UK_RERROR"))
#ifdef KRB5_KDB_UK_RERROR
	    return KRB5_KDB_UK_RERROR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_UK_SERROR"))
#ifdef KRB5_KDB_UK_SERROR
	    return KRB5_KDB_UK_SERROR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDB_UNAUTH"))
#ifdef KRB5_KDB_UNAUTH
	    return KRB5_KDB_UNAUTH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDCREP_MODIFIED"))
#ifdef KRB5_KDCREP_MODIFIED
	    return KRB5_KDCREP_MODIFIED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDCREP_SKEW"))
#ifdef KRB5_KDCREP_SKEW
	    return KRB5_KDCREP_SKEW;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KDC_UNREACH"))
#ifdef KRB5_KDC_UNREACH
	    return KRB5_KDC_UNREACH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KEYTAB_BADVNO"))
#ifdef KRB5_KEYTAB_BADVNO
	    return KRB5_KEYTAB_BADVNO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_BADNAME"))
#ifdef KRB5_KT_BADNAME
	    return KRB5_KT_BADNAME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_END"))
#ifdef KRB5_KT_END
	    return KRB5_KT_END;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_IOERR"))
#ifdef KRB5_KT_IOERR
	    return KRB5_KT_IOERR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_KVNONOTFOUND"))
#ifdef KRB5_KT_KVNONOTFOUND
	    return KRB5_KT_KVNONOTFOUND;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_NAME_TOOLONG"))
#ifdef KRB5_KT_NAME_TOOLONG
	    return KRB5_KT_NAME_TOOLONG;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_NOTFOUND"))
#ifdef KRB5_KT_NOTFOUND
	    return KRB5_KT_NOTFOUND;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_NOWRITE"))
#ifdef KRB5_KT_NOWRITE
	    return KRB5_KT_NOWRITE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_TYPE_EXISTS"))
#ifdef KRB5_KT_TYPE_EXISTS
	    return KRB5_KT_TYPE_EXISTS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_KT_UNKNOWN_TYPE"))
#ifdef KRB5_KT_UNKNOWN_TYPE
	    return KRB5_KT_UNKNOWN_TYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LIBOS_BADLOCKFLAG"))
#ifdef KRB5_LIBOS_BADLOCKFLAG
	    return KRB5_LIBOS_BADLOCKFLAG;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LIBOS_BADPWDMATCH"))
#ifdef KRB5_LIBOS_BADPWDMATCH
	    return KRB5_LIBOS_BADPWDMATCH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LIBOS_CANTREADPWD"))
#ifdef KRB5_LIBOS_CANTREADPWD
	    return KRB5_LIBOS_CANTREADPWD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LIBOS_PWDINTR"))
#ifdef KRB5_LIBOS_PWDINTR
	    return KRB5_LIBOS_PWDINTR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LNAME_BADFORMAT"))
#ifdef KRB5_LNAME_BADFORMAT
	    return KRB5_LNAME_BADFORMAT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LNAME_CANTOPEN"))
#ifdef KRB5_LNAME_CANTOPEN
	    return KRB5_LNAME_CANTOPEN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LNAME_NOTRANS"))
#ifdef KRB5_LNAME_NOTRANS
	    return KRB5_LNAME_NOTRANS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ALL_LAST_INITIAL"))
#ifdef KRB5_LRQ_ALL_LAST_INITIAL
	    return KRB5_LRQ_ALL_LAST_INITIAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ALL_LAST_RENEWAL"))
#ifdef KRB5_LRQ_ALL_LAST_RENEWAL
	    return KRB5_LRQ_ALL_LAST_RENEWAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ALL_LAST_REQ"))
#ifdef KRB5_LRQ_ALL_LAST_REQ
	    return KRB5_LRQ_ALL_LAST_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ALL_LAST_TGT"))
#ifdef KRB5_LRQ_ALL_LAST_TGT
	    return KRB5_LRQ_ALL_LAST_TGT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ALL_LAST_TGT_ISSUED"))
#ifdef KRB5_LRQ_ALL_LAST_TGT_ISSUED
	    return KRB5_LRQ_ALL_LAST_TGT_ISSUED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_NONE"))
#ifdef KRB5_LRQ_NONE
	    return KRB5_LRQ_NONE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ONE_LAST_INITIAL"))
#ifdef KRB5_LRQ_ONE_LAST_INITIAL
	    return KRB5_LRQ_ONE_LAST_INITIAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ONE_LAST_RENEWAL"))
#ifdef KRB5_LRQ_ONE_LAST_RENEWAL
	    return KRB5_LRQ_ONE_LAST_RENEWAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ONE_LAST_REQ"))
#ifdef KRB5_LRQ_ONE_LAST_REQ
	    return KRB5_LRQ_ONE_LAST_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ONE_LAST_TGT"))
#ifdef KRB5_LRQ_ONE_LAST_TGT
	    return KRB5_LRQ_ONE_LAST_TGT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_LRQ_ONE_LAST_TGT_ISSUED"))
#ifdef KRB5_LRQ_ONE_LAST_TGT_ISSUED
	    return KRB5_LRQ_ONE_LAST_TGT_ISSUED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_MUTUAL_FAILED"))
#ifdef KRB5_MUTUAL_FAILED
	    return KRB5_MUTUAL_FAILED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NOCREDS_SUPPLIED"))
#ifdef KRB5_NOCREDS_SUPPLIED
	    return KRB5_NOCREDS_SUPPLIED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NO_2ND_TKT"))
#ifdef KRB5_NO_2ND_TKT
	    return KRB5_NO_2ND_TKT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NO_LOCALNAME"))
#ifdef KRB5_NO_LOCALNAME
	    return KRB5_NO_LOCALNAME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NO_TKT_IN_RLM"))
#ifdef KRB5_NO_TKT_IN_RLM
	    return KRB5_NO_TKT_IN_RLM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NO_TKT_SUPPLIED"))
#ifdef KRB5_NO_TKT_SUPPLIED
	    return KRB5_NO_TKT_SUPPLIED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NT_PRINCIPAL"))
#ifdef KRB5_NT_PRINCIPAL
	    return KRB5_NT_PRINCIPAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NT_SRV_HST"))
#ifdef KRB5_NT_SRV_HST
	    return KRB5_NT_SRV_HST;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NT_SRV_INST"))
#ifdef KRB5_NT_SRV_INST
	    return KRB5_NT_SRV_INST;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NT_SRV_XHST"))
#ifdef KRB5_NT_SRV_XHST
	    return KRB5_NT_SRV_XHST;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NT_UID"))
#ifdef KRB5_NT_UID
	    return KRB5_NT_UID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_NT_UNKNOWN"))
#ifdef KRB5_NT_UNKNOWN
	    return KRB5_NT_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_AFS3_SALT"))
#ifdef KRB5_PADATA_AFS3_SALT
	    return KRB5_PADATA_AFS3_SALT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_AP_REQ"))
#ifdef KRB5_PADATA_AP_REQ
	    return KRB5_PADATA_AP_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_DASS"))
#ifdef KRB5_PADATA_DASS
	    return KRB5_PADATA_DASS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_ENC_ENCKEY"))
#ifdef KRB5_PADATA_ENC_ENCKEY
	    return KRB5_PADATA_ENC_ENCKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_ENC_SANDIA_SECURID"))
#ifdef KRB5_PADATA_ENC_SANDIA_SECURID
	    return KRB5_PADATA_ENC_SANDIA_SECURID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_ENC_TIMESTAMP"))
#ifdef KRB5_PADATA_ENC_TIMESTAMP
	    return KRB5_PADATA_ENC_TIMESTAMP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_ENC_UNIX_TIME"))
#ifdef KRB5_PADATA_ENC_UNIX_TIME
	    return KRB5_PADATA_ENC_UNIX_TIME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_ETYPE_INFO"))
#ifdef KRB5_PADATA_ETYPE_INFO
	    return KRB5_PADATA_ETYPE_INFO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_NONE"))
#ifdef KRB5_PADATA_NONE
	    return KRB5_PADATA_NONE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_OSF_DCE"))
#ifdef KRB5_PADATA_OSF_DCE
	    return KRB5_PADATA_OSF_DCE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_PW_SALT"))
#ifdef KRB5_PADATA_PW_SALT
	    return KRB5_PADATA_PW_SALT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_SAM_CHALLENGE"))
#ifdef KRB5_PADATA_SAM_CHALLENGE
	    return KRB5_PADATA_SAM_CHALLENGE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_SAM_RESPONSE"))
#ifdef KRB5_PADATA_SAM_RESPONSE
	    return KRB5_PADATA_SAM_RESPONSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_SESAME"))
#ifdef KRB5_PADATA_SESAME
	    return KRB5_PADATA_SESAME;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PADATA_TGS_REQ"))
#ifdef KRB5_PADATA_TGS_REQ
	    return KRB5_PADATA_TGS_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PARSE_ILLCHAR"))
#ifdef KRB5_PARSE_ILLCHAR
	    return KRB5_PARSE_ILLCHAR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PARSE_MALFORMED"))
#ifdef KRB5_PARSE_MALFORMED
	    return KRB5_PARSE_MALFORMED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PREAUTH_BAD_TYPE"))
#ifdef KRB5_PREAUTH_BAD_TYPE
	    return KRB5_PREAUTH_BAD_TYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PREAUTH_FAILED"))
#ifdef KRB5_PREAUTH_FAILED
	    return KRB5_PREAUTH_FAILED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PREAUTH_NO_KEY"))
#ifdef KRB5_PREAUTH_NO_KEY
	    return KRB5_PREAUTH_NO_KEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PRINC_NOMATCH"))
#ifdef KRB5_PRINC_NOMATCH
	    return KRB5_PRINC_NOMATCH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PRIV"))
#ifdef KRB5_PRIV
	    return KRB5_PRIV;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PROG_ATYPE_NOSUPP"))
#ifdef KRB5_PROG_ATYPE_NOSUPP
	    return KRB5_PROG_ATYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PROG_ETYPE_NOSUPP"))
#ifdef KRB5_PROG_ETYPE_NOSUPP
	    return KRB5_PROG_ETYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PROG_KEYTYPE_NOSUPP"))
#ifdef KRB5_PROG_KEYTYPE_NOSUPP
	    return KRB5_PROG_KEYTYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PROG_SUMTYPE_NOSUPP"))
#ifdef KRB5_PROG_SUMTYPE_NOSUPP
	    return KRB5_PROG_SUMTYPE_NOSUPP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PROVIDE_PROTOTYPES"))
#ifdef KRB5_PROVIDE_PROTOTYPES
	    return KRB5_PROVIDE_PROTOTYPES;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_PVNO"))
#ifdef KRB5_PVNO
	    return KRB5_PVNO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RCACHE_BADVNO"))
#ifdef KRB5_RCACHE_BADVNO
	    return KRB5_RCACHE_BADVNO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_IO"))
#ifdef KRB5_RC_IO
	    return KRB5_RC_IO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_IO_EOF"))
#ifdef KRB5_RC_IO_EOF
	    return KRB5_RC_IO_EOF;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_IO_IO"))
#ifdef KRB5_RC_IO_IO
	    return KRB5_RC_IO_IO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_IO_MALLOC"))
#ifdef KRB5_RC_IO_MALLOC
	    return KRB5_RC_IO_MALLOC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_IO_PERM"))
#ifdef KRB5_RC_IO_PERM
	    return KRB5_RC_IO_PERM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_IO_SPACE"))
#ifdef KRB5_RC_IO_SPACE
	    return KRB5_RC_IO_SPACE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_IO_UNKNOWN"))
#ifdef KRB5_RC_IO_UNKNOWN
	    return KRB5_RC_IO_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_MALLOC"))
#ifdef KRB5_RC_MALLOC
	    return KRB5_RC_MALLOC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_NOIO"))
#ifdef KRB5_RC_NOIO
	    return KRB5_RC_NOIO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_PARSE"))
#ifdef KRB5_RC_PARSE
	    return KRB5_RC_PARSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_REPLAY"))
#ifdef KRB5_RC_REPLAY
	    return KRB5_RC_REPLAY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_REQUIRED"))
#ifdef KRB5_RC_REQUIRED
	    return KRB5_RC_REQUIRED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_TYPE_EXISTS"))
#ifdef KRB5_RC_TYPE_EXISTS
	    return KRB5_RC_TYPE_EXISTS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_TYPE_NOTFOUND"))
#ifdef KRB5_RC_TYPE_NOTFOUND
	    return KRB5_RC_TYPE_NOTFOUND;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RC_UNKNOWN"))
#ifdef KRB5_RC_UNKNOWN
	    return KRB5_RC_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_REALM_BRANCH_CHAR"))
#ifdef KRB5_REALM_BRANCH_CHAR
	    return KRB5_REALM_BRANCH_CHAR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_REALM_CANT_RESOLVE"))
#ifdef KRB5_REALM_CANT_RESOLVE
	    return KRB5_REALM_CANT_RESOLVE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_REALM_UNKNOWN"))
#ifdef KRB5_REALM_UNKNOWN
	    return KRB5_REALM_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RECVAUTH_BADAUTHVERS"))
#ifdef KRB5_RECVAUTH_BADAUTHVERS
	    return KRB5_RECVAUTH_BADAUTHVERS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_RECVAUTH_SKIP_VERSION"))
#ifdef KRB5_RECVAUTH_SKIP_VERSION
	    return KRB5_RECVAUTH_SKIP_VERSION;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SAFE"))
#ifdef KRB5_SAFE
	    return KRB5_SAFE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SAM_MUST_PK_ENCRYPT_SAD"))
#ifdef KRB5_SAM_MUST_PK_ENCRYPT_SAD
	    return KRB5_SAM_MUST_PK_ENCRYPT_SAD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SAM_SEND_ENCRYPTED_SAD"))
#ifdef KRB5_SAM_SEND_ENCRYPTED_SAD
	    return KRB5_SAM_SEND_ENCRYPTED_SAD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SAM_UNSUPPORTED"))
#ifdef KRB5_SAM_UNSUPPORTED
	    return KRB5_SAM_UNSUPPORTED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SAM_USE_SAD_AS_KEY"))
#ifdef KRB5_SAM_USE_SAD_AS_KEY
	    return KRB5_SAM_USE_SAD_AS_KEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SENDAUTH_BADAPPLVERS"))
#ifdef KRB5_SENDAUTH_BADAPPLVERS
	    return KRB5_SENDAUTH_BADAPPLVERS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SENDAUTH_BADAUTHVERS"))
#ifdef KRB5_SENDAUTH_BADAUTHVERS
	    return KRB5_SENDAUTH_BADAUTHVERS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SENDAUTH_BADRESPONSE"))
#ifdef KRB5_SENDAUTH_BADRESPONSE
	    return KRB5_SENDAUTH_BADRESPONSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SENDAUTH_REJECTED"))
#ifdef KRB5_SENDAUTH_REJECTED
	    return KRB5_SENDAUTH_REJECTED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SERVICE_UNKNOWN"))
#ifdef KRB5_SERVICE_UNKNOWN
	    return KRB5_SERVICE_UNKNOWN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SNAME_UNSUPP_NAMETYPE"))
#ifdef KRB5_SNAME_UNSUPP_NAMETYPE
	    return KRB5_SNAME_UNSUPP_NAMETYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_SYSTYPES__"))
#ifdef KRB5_SYSTYPES__
	    return KRB5_SYSTYPES__;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_2ND_TKT"))
#ifdef KRB5_TC_MATCH_2ND_TKT
	    return KRB5_TC_MATCH_2ND_TKT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_AUTHDATA"))
#ifdef KRB5_TC_MATCH_AUTHDATA
	    return KRB5_TC_MATCH_AUTHDATA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_FLAGS"))
#ifdef KRB5_TC_MATCH_FLAGS
	    return KRB5_TC_MATCH_FLAGS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_FLAGS_EXACT"))
#ifdef KRB5_TC_MATCH_FLAGS_EXACT
	    return KRB5_TC_MATCH_FLAGS_EXACT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_IS_SKEY"))
#ifdef KRB5_TC_MATCH_IS_SKEY
	    return KRB5_TC_MATCH_IS_SKEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_KTYPE"))
#ifdef KRB5_TC_MATCH_KTYPE
	    return KRB5_TC_MATCH_KTYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_SRV_NAMEONLY"))
#ifdef KRB5_TC_MATCH_SRV_NAMEONLY
	    return KRB5_TC_MATCH_SRV_NAMEONLY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_TIMES"))
#ifdef KRB5_TC_MATCH_TIMES
	    return KRB5_TC_MATCH_TIMES;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_MATCH_TIMES_EXACT"))
#ifdef KRB5_TC_MATCH_TIMES_EXACT
	    return KRB5_TC_MATCH_TIMES_EXACT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TC_OPENCLOSE"))
#ifdef KRB5_TC_OPENCLOSE
	    return KRB5_TC_OPENCLOSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TGS_NAME_SIZE"))
#ifdef KRB5_TGS_NAME_SIZE
	    return KRB5_TGS_NAME_SIZE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TGS_REP"))
#ifdef KRB5_TGS_REP
	    return KRB5_TGS_REP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TGS_REQ"))
#ifdef KRB5_TGS_REQ
	    return KRB5_TGS_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TKT_NOT_FORWARDABLE"))
#ifdef KRB5_TKT_NOT_FORWARDABLE
	    return KRB5_TKT_NOT_FORWARDABLE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TRANS_BADFORMAT"))
#ifdef KRB5_TRANS_BADFORMAT
	    return KRB5_TRANS_BADFORMAT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_TRANS_CANTOPEN"))
#ifdef KRB5_TRANS_CANTOPEN
	    return KRB5_TRANS_CANTOPEN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KRB5_WRONG_ETYPE"))
#ifdef KRB5_WRONG_ETYPE
	    return KRB5_WRONG_ETYPE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ADDRESS"))
#ifdef KV5M_ADDRESS
	    return KV5M_ADDRESS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ALT_METHOD"))
#ifdef KV5M_ALT_METHOD
	    return KV5M_ALT_METHOD;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_AP_REP"))
#ifdef KV5M_AP_REP
	    return KV5M_AP_REP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_AP_REP_ENC_PART"))
#ifdef KV5M_AP_REP_ENC_PART
	    return KV5M_AP_REP_ENC_PART;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_AP_REQ"))
#ifdef KV5M_AP_REQ
	    return KV5M_AP_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_AUTHDATA"))
#ifdef KV5M_AUTHDATA
	    return KV5M_AUTHDATA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_AUTHENTICATOR"))
#ifdef KV5M_AUTHENTICATOR
	    return KV5M_AUTHENTICATOR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_AUTH_CONTEXT"))
#ifdef KV5M_AUTH_CONTEXT
	    return KV5M_AUTH_CONTEXT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CCACHE"))
#ifdef KV5M_CCACHE
	    return KV5M_CCACHE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CHECKSUM"))
#ifdef KV5M_CHECKSUM
	    return KV5M_CHECKSUM;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CHECKSUM_ENTRY"))
#ifdef KV5M_CHECKSUM_ENTRY
	    return KV5M_CHECKSUM_ENTRY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CONTEXT"))
#ifdef KV5M_CONTEXT
	    return KV5M_CONTEXT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CRED"))
#ifdef KV5M_CRED
	    return KV5M_CRED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CREDS"))
#ifdef KV5M_CREDS
	    return KV5M_CREDS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CRED_ENC_PART"))
#ifdef KV5M_CRED_ENC_PART
	    return KV5M_CRED_ENC_PART;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CRED_INFO"))
#ifdef KV5M_CRED_INFO
	    return KV5M_CRED_INFO;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CRYPTOSYSTEM_ENTRY"))
#ifdef KV5M_CRYPTOSYSTEM_ENTRY
	    return KV5M_CRYPTOSYSTEM_ENTRY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_CS_TABLE_ENTRY"))
#ifdef KV5M_CS_TABLE_ENTRY
	    return KV5M_CS_TABLE_ENTRY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_DATA"))
#ifdef KV5M_DATA
	    return KV5M_DATA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_DB_CONTEXT"))
#ifdef KV5M_DB_CONTEXT
	    return KV5M_DB_CONTEXT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ENCRYPT_BLOCK"))
#ifdef KV5M_ENCRYPT_BLOCK
	    return KV5M_ENCRYPT_BLOCK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ENC_DATA"))
#ifdef KV5M_ENC_DATA
	    return KV5M_ENC_DATA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ENC_KDC_REP_PART"))
#ifdef KV5M_ENC_KDC_REP_PART
	    return KV5M_ENC_KDC_REP_PART;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ENC_SAM_RESPONSE_ENC"))
#ifdef KV5M_ENC_SAM_RESPONSE_ENC
	    return KV5M_ENC_SAM_RESPONSE_ENC;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ENC_TKT_PART"))
#ifdef KV5M_ENC_TKT_PART
	    return KV5M_ENC_TKT_PART;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ERROR"))
#ifdef KV5M_ERROR
	    return KV5M_ERROR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_ETYPE_INFO_ENTRY"))
#ifdef KV5M_ETYPE_INFO_ENTRY
	    return KV5M_ETYPE_INFO_ENTRY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_GSS_OID"))
#ifdef KV5M_GSS_OID
	    return KV5M_GSS_OID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_GSS_QUEUE"))
#ifdef KV5M_GSS_QUEUE
	    return KV5M_GSS_QUEUE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_KDC_REP"))
#ifdef KV5M_KDC_REP
	    return KV5M_KDC_REP;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_KDC_REQ"))
#ifdef KV5M_KDC_REQ
	    return KV5M_KDC_REQ;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_KEYBLOCK"))
#ifdef KV5M_KEYBLOCK
	    return KV5M_KEYBLOCK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_KEYTAB"))
#ifdef KV5M_KEYTAB
	    return KV5M_KEYTAB;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_KEYTAB_ENTRY"))
#ifdef KV5M_KEYTAB_ENTRY
	    return KV5M_KEYTAB_ENTRY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_LAST_REQ_ENTRY"))
#ifdef KV5M_LAST_REQ_ENTRY
	    return KV5M_LAST_REQ_ENTRY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_NONE"))
#ifdef KV5M_NONE
	    return KV5M_NONE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_OS_CONTEXT"))
#ifdef KV5M_OS_CONTEXT
	    return KV5M_OS_CONTEXT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PASSWD_PHRASE_ELEMENT"))
#ifdef KV5M_PASSWD_PHRASE_ELEMENT
	    return KV5M_PASSWD_PHRASE_ELEMENT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PA_DATA"))
#ifdef KV5M_PA_DATA
	    return KV5M_PA_DATA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PREAUTH_OPS"))
#ifdef KV5M_PREAUTH_OPS
	    return KV5M_PREAUTH_OPS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PREDICTED_SAM_RESPONSE"))
#ifdef KV5M_PREDICTED_SAM_RESPONSE
	    return KV5M_PREDICTED_SAM_RESPONSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PRINCIPAL"))
#ifdef KV5M_PRINCIPAL
	    return KV5M_PRINCIPAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PRIV"))
#ifdef KV5M_PRIV
	    return KV5M_PRIV;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PRIV_ENC_PART"))
#ifdef KV5M_PRIV_ENC_PART
	    return KV5M_PRIV_ENC_PART;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_PWD_DATA"))
#ifdef KV5M_PWD_DATA
	    return KV5M_PWD_DATA;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_RCACHE"))
#ifdef KV5M_RCACHE
	    return KV5M_RCACHE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_RESPONSE"))
#ifdef KV5M_RESPONSE
	    return KV5M_RESPONSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_SAFE"))
#ifdef KV5M_SAFE
	    return KV5M_SAFE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_SAM_CHALLENGE"))
#ifdef KV5M_SAM_CHALLENGE
	    return KV5M_SAM_CHALLENGE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_SAM_KEY"))
#ifdef KV5M_SAM_KEY
	    return KV5M_SAM_KEY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_SAM_RESPONSE"))
#ifdef KV5M_SAM_RESPONSE
	    return KV5M_SAM_RESPONSE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_TICKET"))
#ifdef KV5M_TICKET
	    return KV5M_TICKET;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_TKT_AUTHENT"))
#ifdef KV5M_TKT_AUTHENT
	    return KV5M_TKT_AUTHENT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "KV5M_TRANSITED"))
#ifdef KV5M_TRANSITED
	    return KV5M_TRANSITED;
#else
	    goto not_there;
#endif
	break;
    case 'L':
	if (strEQ(name, "LR_TYPE_INTERPRETATION_MASK"))
#ifdef LR_TYPE_INTERPRETATION_MASK
	    return LR_TYPE_INTERPRETATION_MASK;
#else
	    goto not_there;
#endif
	if (strEQ(name, "LR_TYPE_THIS_SERVER_ONLY"))
#ifdef LR_TYPE_THIS_SERVER_ONLY
	    return LR_TYPE_THIS_SERVER_ONLY;
#else
	    goto not_there;
#endif
	break;
    case 'M':
	if (strEQ(name, "MAX_KEYTAB_NAME_LEN"))
#ifdef MAX_KEYTAB_NAME_LEN
	    return MAX_KEYTAB_NAME_LEN;
#else
	    goto not_there;
#endif
	if (strEQ(name, "MSEC_DIRBIT"))
#ifdef MSEC_DIRBIT
	    return MSEC_DIRBIT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "MSEC_VAL_MASK"))
#ifdef MSEC_VAL_MASK
	    return MSEC_VAL_MASK;
#else
	    goto not_there;
#endif
	break;
    case 'N':
	if (strEQ(name, "NEAR"))
#ifdef NEAR
	    return NEAR;
#else
	    goto not_there;
#endif
	if (strEQ(name, "NO_PASSWORD"))
#ifdef NO_PASSWORD
	    return NO_PASSWORD;
#else
	    goto not_there;
#endif
	break;
    case 'O':
	break;
    case 'P':
	break;
    case 'Q':
	break;
    case 'R':
	break;
    case 'S':
	if (strEQ(name, "SIZEOF_INT"))
#ifdef SIZEOF_INT
	    return SIZEOF_INT;
#else
	    goto not_there;
#endif
	if (strEQ(name, "SIZEOF_LONG"))
#ifdef SIZEOF_LONG
	    return SIZEOF_LONG;
#else
	    goto not_there;
#endif
	if (strEQ(name, "SIZEOF_SHORT"))
#ifdef SIZEOF_SHORT
	    return SIZEOF_SHORT;
#else
	    goto not_there;
#endif
	break;
    case 'T':
	if (strEQ(name, "TKT_FLG_FORWARDABLE"))
#ifdef TKT_FLG_FORWARDABLE
	    return TKT_FLG_FORWARDABLE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_FORWARDED"))
#ifdef TKT_FLG_FORWARDED
	    return TKT_FLG_FORWARDED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_HW_AUTH"))
#ifdef TKT_FLG_HW_AUTH
	    return TKT_FLG_HW_AUTH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_INITIAL"))
#ifdef TKT_FLG_INITIAL
	    return TKT_FLG_INITIAL;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_INVALID"))
#ifdef TKT_FLG_INVALID
	    return TKT_FLG_INVALID;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_MAY_POSTDATE"))
#ifdef TKT_FLG_MAY_POSTDATE
	    return TKT_FLG_MAY_POSTDATE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_POSTDATED"))
#ifdef TKT_FLG_POSTDATED
	    return TKT_FLG_POSTDATED;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_PRE_AUTH"))
#ifdef TKT_FLG_PRE_AUTH
	    return TKT_FLG_PRE_AUTH;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_PROXIABLE"))
#ifdef TKT_FLG_PROXIABLE
	    return TKT_FLG_PROXIABLE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_PROXY"))
#ifdef TKT_FLG_PROXY
	    return TKT_FLG_PROXY;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TKT_FLG_RENEWABLE"))
#ifdef TKT_FLG_RENEWABLE
	    return TKT_FLG_RENEWABLE;
#else
	    goto not_there;
#endif
	if (strEQ(name, "TRUE"))
#ifdef TRUE
	    return TRUE;
#else
	    goto not_there;
#endif
	break;
    case 'U':
	break;
    case 'V':
	if (strEQ(name, "VALID_INT_BITS"))
#ifdef VALID_INT_BITS
	    return VALID_INT_BITS;
#else
	    goto not_there;
#endif
	if (strEQ(name, "VALID_UINT_BITS"))
#ifdef VALID_UINT_BITS
	    return VALID_UINT_BITS;
#else
	    goto not_there;
#endif
	break;
    case 'W':
	break;
    case 'X':
	break;
    case 'Y':
	break;
    case 'Z':
	break;
    case 'a':
	break;
    case 'b':
	break;
    case 'c':
	break;
    case 'd':
	break;
    case 'e':
	break;
    case 'f':
	break;
    case 'g':
	break;
    case 'h':
	break;
    case 'i':
	break;
    case 'j':
	break;
    case 'k':
	break;
    case 'l':
	break;
    case 'm':
	break;
    case 'n':
	break;
    case 'o':
	break;
    case 'p':
	break;
    case 'q':
	break;
    case 'r':
	break;
    case 's':
	break;
    case 't':
	break;
    case 'u':
	break;
    case 'v':
	break;
    case 'w':
	break;
    case 'x':
	break;
    case 'y':
	break;
    case 'z':
	break;
    case '_':
	break;
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}