This file is indexed.

/usr/include/babel_config.h is in libsidl-dev 1.4.0.dfsg-8build3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
/* sidl/babel_config.h.  Generated from babel_config.h.in by configure.  */
/* sidl/babel_config.h.in.  Generated from configure.ac by autoheader.  */


#ifndef included_babel_config_h
#define included_babel_config_h


/* Define processor type to be x86. */
#ifndef BABEL_PROCESSOR_X86
#define BABEL_PROCESSOR_X86 /**/
#endif

/* Hexified form of release number: 2 hex digits each for major, minor,
   bugfix, and alpha/beta/candidate/distributed */
#ifndef BABEL_VERSION_HEX
#define BABEL_VERSION_HEX 0x01040000
#endif

/* Name of the F90 compiler to use with CHASM */
#ifndef CHASM_FORTRAN_VENDOR
#define CHASM_FORTRAN_VENDOR "GNU"
#endif

/* Define to 1 if the `closedir' function returns void instead of `int'. */
#ifndef CLOSEDIR_VOID
/* #undef CLOSEDIR_VOID */
#endif

/* If defined, Fortran support was disabled at configure time */
#ifndef CXX_DISABLED
/* #undef CXX_DISABLED */
#endif

/* Define to dummy `main' function (if any) required to link to the Fortran 77
   libraries. */
#ifndef F77_DUMMY_MAIN
/* #undef F77_DUMMY_MAIN */
#endif

/* A macro for making F90 variables volatile (i.e., subject to changes the
   compiler cannot predict. This is necessary for array access via the access
   method. */
#ifndef F90_VOLATILE
#define F90_VOLATILE volatile ::
#endif

/* Define to dummy `main' function (if any) required to link to the Fortran
   libraries. */
#ifndef FC_DUMMY_MAIN
/* #undef FC_DUMMY_MAIN */
#endif

/* Define if F77 and FC dummy `main' functions are identical. */
#ifndef FC_DUMMY_MAIN_EQ_F77
/* #undef FC_DUMMY_MAIN_EQ_F77 */
#endif

/* Define to a macro mangling the given C identifier (in lower and upper
   case), which must not contain underscores, for linking with Fortran. */
#ifndef FC_FUNC
#define FC_FUNC(name,NAME) name ## _
#endif

/* As FC_FUNC, but for C identifiers containing underscores. */
#ifndef FC_FUNC_
#define FC_FUNC_(name,NAME) name ## _
#endif

/* Define to alternate name for `main' routine that is called from a `main' in
   the Fortran libraries. */
#ifndef FC_MAIN
#define FC_MAIN main
#endif

/* If defined, Fortran support was disabled at configure time */
#ifndef FORTRAN77_DISABLED
/* #undef FORTRAN77_DISABLED */
#endif

/* If defined, Fortran support was disabled at configure time */
#ifndef FORTRAN90_DISABLED
/* #undef FORTRAN90_DISABLED */
#endif

/* Define to 1 if you have the `argz_add' function. */
#ifndef HAVE_ARGZ_ADD
#define HAVE_ARGZ_ADD 1
#endif

/* Define to 1 if you have the `argz_append' function. */
#ifndef HAVE_ARGZ_APPEND
#define HAVE_ARGZ_APPEND 1
#endif

/* Define to 1 if you have the `argz_count' function. */
#ifndef HAVE_ARGZ_COUNT
#define HAVE_ARGZ_COUNT 1
#endif

/* Define to 1 if you have the `argz_create_sep' function. */
#ifndef HAVE_ARGZ_CREATE_SEP
#define HAVE_ARGZ_CREATE_SEP 1
#endif

/* Define to 1 if you have the <argz.h> header file. */
#ifndef HAVE_ARGZ_H
#define HAVE_ARGZ_H 1
#endif

/* Define to 1 if you have the `argz_insert' function. */
#ifndef HAVE_ARGZ_INSERT
#define HAVE_ARGZ_INSERT 1
#endif

/* Define to 1 if you have the `argz_next' function. */
#ifndef HAVE_ARGZ_NEXT
#define HAVE_ARGZ_NEXT 1
#endif

/* Define to 1 if you have the `argz_stringify' function. */
#ifndef HAVE_ARGZ_STRINGIFY
#define HAVE_ARGZ_STRINGIFY 1
#endif

/* Define to 1 if you have the `atexit' function. */
#ifndef HAVE_ATEXIT
#define HAVE_ATEXIT 1
#endif

/* Define to 1 if you have the `bzero' function. */
#ifndef HAVE_BZERO
#define HAVE_BZERO 1
#endif

/* Define to 1 if you have the `closedir' function. */
#ifndef HAVE_CLOSEDIR
#define HAVE_CLOSEDIR 1
#endif

/* define if the compiler has complex<T> */
#ifndef HAVE_COMPLEX
#define HAVE_COMPLEX /**/
#endif

/* define if the compiler has complex math functions */
#ifndef HAVE_COMPLEX_MATH1
#define HAVE_COMPLEX_MATH1 /**/
#endif

/* define if the compiler has more complex math functions */
#ifndef HAVE_COMPLEX_MATH2
/* #undef HAVE_COMPLEX_MATH2 */
#endif

/* define if complex math functions are in std:: */
#ifndef HAVE_COMPLEX_MATH_IN_NAMESPACE_STD
#define HAVE_COMPLEX_MATH_IN_NAMESPACE_STD /**/
#endif

/* Define to 1 if you have the <ctype.h> header file. */
#ifndef HAVE_CTYPE_H
#define HAVE_CTYPE_H 1
#endif

/* Define to 1 if you have the declaration of `cygwin_conv_path', and to 0 if
   you don't. */
#ifndef HAVE_DECL_CYGWIN_CONV_PATH
/* #undef HAVE_DECL_CYGWIN_CONV_PATH */
#endif

/* Define to 1 if you have the <dirent.h> header file. */
#ifndef HAVE_DIRENT_H
#define HAVE_DIRENT_H 1
#endif

/* Define if you have the GNU dld library. */
#ifndef HAVE_DLD
/* #undef HAVE_DLD */
#endif

/* Define to 1 if you have the <dld.h> header file. */
#ifndef HAVE_DLD_H
/* #undef HAVE_DLD_H */
#endif

/* Define to 1 if you have the `dlerror' function. */
#ifndef HAVE_DLERROR
#define HAVE_DLERROR 1
#endif

/* Define to 1 if you have the <dlfcn.h> header file. */
#ifndef HAVE_DLFCN_H
#define HAVE_DLFCN_H 1
#endif

/* Define to 1 if you have the <dl.h> header file. */
#ifndef HAVE_DL_H
/* #undef HAVE_DL_H */
#endif

/* Define if you have the _dyld_func_lookup function. */
#ifndef HAVE_DYLD
/* #undef HAVE_DYLD */
#endif

/* Define to 1 if the system has the type `error_t'. */
#ifndef HAVE_ERROR_T
#define HAVE_ERROR_T 1
#endif

/* Define to 1 if you have the <float.h> header file. */
#ifndef HAVE_FLOAT_H
#define HAVE_FLOAT_H 1
#endif

/* Define to 1 if you have the `fork' function. */
#ifndef HAVE_FORK
#define HAVE_FORK 1
#endif

/* Define to 1 if you have the `getcwd' function. */
#ifndef HAVE_GETCWD
#define HAVE_GETCWD 1
#endif

/* define if the compiler supports IEEE math library */
#ifndef HAVE_IEEE_MATH
#define HAVE_IEEE_MATH /**/
#endif

/* Define to 1 if you have the <inttypes.h> header file. */
#ifndef HAVE_INTTYPES_H
#define HAVE_INTTYPES_H 1
#endif

/* Define if you have the libdl library or equivalent. */
#ifndef HAVE_LIBDL
#define HAVE_LIBDL 1
#endif

/* Define if libdlloader will be built on this platform */
#ifndef HAVE_LIBDLLOADER
#define HAVE_LIBDLLOADER 1
#endif

/* libparsifal support included */
#ifndef HAVE_LIBPARSIFAL
#define HAVE_LIBPARSIFAL 1
#endif

/* Libxml2 support included */
#ifndef HAVE_LIBXML2
/* #undef HAVE_LIBXML2 */
#endif

/* Define to 1 if you have the <limits.h> header file. */
#ifndef HAVE_LIMITS_H
#define HAVE_LIMITS_H 1
#endif

/* define if long long is a built in type */
#ifndef HAVE_LONG_LONG
/* #undef HAVE_LONG_LONG */
#endif

/* Define this if a modern libltdl is already installed */
#ifndef HAVE_LTDL
#define HAVE_LTDL 1
#endif

/* Define to 1 if you have the <mach-o/dyld.h> header file. */
#ifndef HAVE_MACH_O_DYLD_H
/* #undef HAVE_MACH_O_DYLD_H */
#endif

/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
   to 0 otherwise. */
#ifndef HAVE_MALLOC
#define HAVE_MALLOC 1
#endif

/* Define to 1 if you have the <malloc.h> header file. */
#ifndef HAVE_MALLOC_H
#define HAVE_MALLOC_H 1
#endif

/* Define to 1 if you have the <memory.h> header file. */
#ifndef HAVE_MEMORY_H
#define HAVE_MEMORY_H 1
#endif

/* Define to 1 if you have the `memset' function. */
#ifndef HAVE_MEMSET
#define HAVE_MEMSET 1
#endif

/* define if the compiler implements namespaces */
#ifndef HAVE_NAMESPACES
#define HAVE_NAMESPACES /**/
#endif

/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
#ifndef HAVE_NDIR_H
/* #undef HAVE_NDIR_H */
#endif

/* Define to 1 if you have the <netinet/in.h> header file. */
#ifndef HAVE_NETINET_IN_H
#define HAVE_NETINET_IN_H 1
#endif

/* define if the compiler has numeric_limits<T> */
#ifndef HAVE_NUMERIC_LIMITS
#define HAVE_NUMERIC_LIMITS /**/
#endif

/* Define to 1 if you have the `opendir' function. */
#ifndef HAVE_OPENDIR
#define HAVE_OPENDIR 1
#endif

/* Define if libtool can extract symbol lists from object files. */
#ifndef HAVE_PRELOADED_SYMBOLS
#define HAVE_PRELOADED_SYMBOLS 1
#endif

/* Define if you have POSIX threads libraries and header files. */
#ifndef HAVE_PTHREAD
#define HAVE_PTHREAD 1
#endif

/* Define to 1 if the system has the type `ptrdiff_t'. */
#ifndef HAVE_PTRDIFF_T
#define HAVE_PTRDIFF_T 1
#endif

/* Define to 1 if you have the `readdir' function. */
#ifndef HAVE_READDIR
#define HAVE_READDIR 1
#endif

/* Define to 1 if your system has a GNU libc compatible `realloc' function,
   and to 0 otherwise. */
#ifndef HAVE_REALLOC
#define HAVE_REALLOC 1
#endif

/* Define to 1 if you have the <sched.h> header file. */
#ifndef HAVE_SCHED_H
#define HAVE_SCHED_H 1
#endif

/* Define if you have the shl_load function. */
#ifndef HAVE_SHL_LOAD
/* #undef HAVE_SHL_LOAD */
#endif

/* Define to 1 if you have the `socket' function. */
#ifndef HAVE_SOCKET
#define HAVE_SOCKET 1
#endif

/* Define to 1 if `stat' has the bug that it succeeds when given the
   zero-length file name argument. */
#ifndef HAVE_STAT_EMPTY_STRING_BUG
/* #undef HAVE_STAT_EMPTY_STRING_BUG */
#endif

/* define if the compiler supports ISO C++ standard library */
#ifndef HAVE_STD
#define HAVE_STD /**/
#endif

/* Define to 1 if stdbool.h conforms to C99. */
#ifndef HAVE_STDBOOL_H
#define HAVE_STDBOOL_H 1
#endif

/* Define to 1 if you have the <stddef.h> header file. */
#ifndef HAVE_STDDEF_H
#define HAVE_STDDEF_H 1
#endif

/* Define to 1 if you have the <stdint.h> header file. */
#ifndef HAVE_STDINT_H
#define HAVE_STDINT_H 1
#endif

/* Define to 1 if you have the <stdlib.h> header file. */
#ifndef HAVE_STDLIB_H
#define HAVE_STDLIB_H 1
#endif

/* define if the compiler supports Standard Template Library */
#ifndef HAVE_STL
#define HAVE_STL /**/
#endif

/* Define to 1 if you have the `strchr' function. */
#ifndef HAVE_STRCHR
#define HAVE_STRCHR 1
#endif

/* Define to 1 if you have the `strdup' function. */
#ifndef HAVE_STRDUP
#define HAVE_STRDUP 1
#endif

/* Define to 1 if you have the <strings.h> header file. */
#ifndef HAVE_STRINGS_H
#define HAVE_STRINGS_H 1
#endif

/* Define to 1 if you have the <string.h> header file. */
#ifndef HAVE_STRING_H
#define HAVE_STRING_H 1
#endif

/* Define to 1 if you have the `strlcat' function. */
#ifndef HAVE_STRLCAT
/* #undef HAVE_STRLCAT */
#endif

/* Define to 1 if you have the `strlcpy' function. */
#ifndef HAVE_STRLCPY
/* #undef HAVE_STRLCPY */
#endif

/* Define to 1 if you have the `strrchr' function. */
#ifndef HAVE_STRRCHR
#define HAVE_STRRCHR 1
#endif

/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
   */
#ifndef HAVE_SYS_DIR_H
/* #undef HAVE_SYS_DIR_H */
#endif

/* Define to 1 if you have the <sys/dl.h> header file. */
#ifndef HAVE_SYS_DL_H
/* #undef HAVE_SYS_DL_H */
#endif

/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
   */
#ifndef HAVE_SYS_NDIR_H
/* #undef HAVE_SYS_NDIR_H */
#endif

/* Define to 1 if you have the <sys/select.h> header file. */
#ifndef HAVE_SYS_SELECT_H
#define HAVE_SYS_SELECT_H 1
#endif

/* Define to 1 if you have the <sys/socket.h> header file. */
#ifndef HAVE_SYS_SOCKET_H
#define HAVE_SYS_SOCKET_H 1
#endif

/* Define to 1 if you have the <sys/stat.h> header file. */
#ifndef HAVE_SYS_STAT_H
#define HAVE_SYS_STAT_H 1
#endif

/* Define to 1 if you have the <sys/time.h> header file. */
#ifndef HAVE_SYS_TIME_H
#define HAVE_SYS_TIME_H 1
#endif

/* Define to 1 if you have the <sys/types.h> header file. */
#ifndef HAVE_SYS_TYPES_H
#define HAVE_SYS_TYPES_H 1
#endif

/* Define to 1 if you have the <unistd.h> header file. */
#ifndef HAVE_UNISTD_H
#define HAVE_UNISTD_H 1
#endif

/* Define to 1 if you have the `vfork' function. */
#ifndef HAVE_VFORK
#define HAVE_VFORK 1
#endif

/* Define to 1 if you have the <vfork.h> header file. */
#ifndef HAVE_VFORK_H
/* #undef HAVE_VFORK_H */
#endif

/* This value is set to 1 to indicate that the system argz facility works */
#ifndef HAVE_WORKING_ARGZ
#define HAVE_WORKING_ARGZ 1
#endif

/* Define to 1 if `fork' works. */
#ifndef HAVE_WORKING_FORK
#define HAVE_WORKING_FORK 1
#endif

/* Define to 1 if `vfork' works. */
#ifndef HAVE_WORKING_VFORK
#define HAVE_WORKING_VFORK 1
#endif

/* Define to 1 if the system has the type `_Bool'. */
#ifndef HAVE__BOOL
#define HAVE__BOOL 1
#endif

/* If defined, Java support was disabled at configure time */
#ifndef JAVA_DISABLED
/* #undef JAVA_DISABLED */
#endif

/* Fully qualified string name of the Java Virtual Machine shared library */
#ifndef JVM_SHARED_LIBRARY
#define JVM_SHARED_LIBRARY "/usr/lib/jvm/java-gcj/lib/libjvm.so"
#endif

/* Version of libxml2 installed */
#ifndef LIBXML2_VERSION
/* #undef LIBXML2_VERSION */
#endif

/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
   slash. */
#ifndef LSTAT_FOLLOWS_SLASHED_SYMLINK
#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
#endif

/* Define if the OS needs help to load dependent libraries for dlopen(). */
#ifndef LTDL_DLOPEN_DEPLIBS
/* #undef LTDL_DLOPEN_DEPLIBS */
#endif

/* Define if dlopen(NULL) is able to resolve symbols from the main program. */
#ifndef LTDL_DLOPEN_SELF_WORKS
/* #undef LTDL_DLOPEN_SELF_WORKS */
#endif

/* Define to the system default library search path. */
#ifndef LT_DLSEARCH_PATH
#define LT_DLSEARCH_PATH "/lib:/usr/lib:/usr/local/lib:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu"
#endif

/* Define to the extension used for runtime loadable modules, say, ".so". */
#ifndef LT_MODULE_EXT
#define LT_MODULE_EXT ".so"
#endif

/* Define to the name of the environment variable that determines the run-time
   module search path. */
#ifndef LT_MODULE_PATH_VAR
#define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
#endif

/* Define to the sub-directory in which libtool stores uninstalled libraries.
   */
#ifndef LT_OBJDIR
#define LT_OBJDIR ".libs/"
#endif

/* Define if dlsym() requires a leading underscore in symbol names. */
#ifndef NEED_USCORE
/* #undef NEED_USCORE */
#endif

/* Name of package */
#ifndef BABEL_PACKAGE
#define BABEL_PACKAGE "babel-runtime"
#endif

/* Define to the address where bug reports for this package should be sent. */
#ifndef BABEL_PACKAGE_BUGREPORT
#define BABEL_PACKAGE_BUGREPORT "babel-bugs@cca-forum.org"
#endif

/* Define to the full name of this package. */
#ifndef BABEL_PACKAGE_NAME
#define BABEL_PACKAGE_NAME "babel-runtime"
#endif

/* Define to the full name and version of this package. */
#ifndef BABEL_PACKAGE_STRING
#define BABEL_PACKAGE_STRING "babel-runtime 1.4.0"
#endif

/* Define to the one symbol short name of this package. */
#ifndef BABEL_PACKAGE_TARNAME
#define BABEL_PACKAGE_TARNAME "babel-runtime"
#endif

/* Define to the version of this package. */
#ifndef BABEL_PACKAGE_VERSION
#define BABEL_PACKAGE_VERSION "1.4.0"
#endif

/* Define to necessary symbol if this constant uses a non-standard name on
   your system. */
#ifndef PTHREAD_CREATE_JOINABLE
/* #undef PTHREAD_CREATE_JOINABLE */
#endif

/* If defined, Python support was disabled at configure time */
#ifndef PYTHON_DISABLED
/* #undef PYTHON_DISABLED */
#endif

/* If defined, server-side Python support was disabled at configure time */
#ifndef PYTHON_SERVER_DISABLED
/* #undef PYTHON_SERVER_DISABLED */
#endif

/* Fully qualified string name of the Python shared library */
#ifndef PYTHON_SHARED_LIBRARY
#define PYTHON_SHARED_LIBRARY "/usr/lib/libpython2.7.so"
#endif

/* Directory of the Python shared library */
#ifndef PYTHON_SHARED_LIBRARY_DIR
#define PYTHON_SHARED_LIBRARY_DIR "/usr/lib"
#endif

/* A string indicating the Python version number */
#ifndef PYTHON_VERSION
#define PYTHON_VERSION "2.7"
#endif

/* define if C++ requires old .h-style header includes */
#ifndef REQUIRE_OLD_CXX_HEADER_SUFFIX
/* #undef REQUIRE_OLD_CXX_HEADER_SUFFIX */
#endif

/* Define to the type of arg 1 for `select'. */
#ifndef SELECT_TYPE_ARG1
#define SELECT_TYPE_ARG1 int
#endif

/* Define to the type of args 2, 3 and 4 for `select'. */
#ifndef SELECT_TYPE_ARG234
#define SELECT_TYPE_ARG234 (fd_set *)
#endif

/* Define to the type of arg 5 for `select'. */
#ifndef SELECT_TYPE_ARG5
#define SELECT_TYPE_ARG5 (struct timeval *)
#endif

/* Directory where libsidl.scl and libsidlx.scl should be located. */
#ifndef SIDLLIBPREFIX
#define SIDLLIBPREFIX "/usr/lib"
#endif

/* This should always be defined for Babel 0.11.0 and beyond */
#ifndef SIDL_CAST_INCREMENTS_REFCOUNT
#define SIDL_CAST_INCREMENTS_REFCOUNT /**/
#endif

/* Define to 1 if the C compiler supports inline. */
#ifndef SIDL_C_HAS_INLINE
#define SIDL_C_HAS_INLINE 1
#endif

/* Define SIDL_DYNAMIC_LIBRARY to force dynamic loading of libraries */
#ifndef SIDL_DYNAMIC_LIBRARY
/* #undef SIDL_DYNAMIC_LIBRARY */
#endif

/* F77 char args are strings */
#ifndef SIDL_F77_CHAR_AS_STRING
#define SIDL_F77_CHAR_AS_STRING /**/
#endif

/* F77 logical false value */
#ifndef SIDL_F77_FALSE
#define SIDL_F77_FALSE 0
#endif

/* F77 logical variable size */
#ifndef SIDL_F77_LOGICAL_SIZE
#define SIDL_F77_LOGICAL_SIZE 4
#endif

/* F77 symbols are lower case */
#ifndef SIDL_F77_LOWER_CASE
#define SIDL_F77_LOWER_CASE /**/
#endif

/* F77 symbols are mixed case */
#ifndef SIDL_F77_MIXED_CASE
/* #undef SIDL_F77_MIXED_CASE */
#endif

/* one underscore after F77 symbols */
#ifndef SIDL_F77_ONE_UNDERSCORE
#define SIDL_F77_ONE_UNDERSCORE /**/
#endif

/* F77 string length integer size */
#ifndef SIDL_F77_STR_INT_SIZE
#define SIDL_F77_STR_INT_SIZE int32_t
#endif

/* F77 string lengths at end of argument list */
#ifndef SIDL_F77_STR_LEN_FAR
#define SIDL_F77_STR_LEN_FAR /**/
#endif

/* F77 string lengths immediately follow string */
#ifndef SIDL_F77_STR_LEN_NEAR
/* #undef SIDL_F77_STR_LEN_NEAR */
#endif

/* Minimum size for out strings */
#ifndef SIDL_F77_STR_MINSIZE
#define SIDL_F77_STR_MINSIZE 512
#endif

/* F77 strings as length-char* structs */
#ifndef SIDL_F77_STR_STRUCT_LEN_STR
/* #undef SIDL_F77_STR_STRUCT_LEN_STR */
#endif

/* F77 strings as char*-length structs */
#ifndef SIDL_F77_STR_STRUCT_STR_LEN
/* #undef SIDL_F77_STR_STRUCT_STR_LEN */
#endif

/* F77 logical true value */
#ifndef SIDL_F77_TRUE
#define SIDL_F77_TRUE 1
#endif

/* two underscores after F77 symbols */
#ifndef SIDL_F77_TWO_UNDERSCORE
/* #undef SIDL_F77_TWO_UNDERSCORE */
#endif

/* F77 symbols are upper case */
#ifndef SIDL_F77_UPPER_CASE
/* #undef SIDL_F77_UPPER_CASE */
#endif

/* no underscores after F77 symbols */
#ifndef SIDL_F77_ZERO_UNDERSCORE
/* #undef SIDL_F77_ZERO_UNDERSCORE */
#endif

/* Fortran 90 char args are strings */
#ifndef SIDL_F90_CHAR_AS_STRING
#define SIDL_F90_CHAR_AS_STRING /**/
#endif

/* Fortran 90 logical false value */
#ifndef SIDL_F90_FALSE
#define SIDL_F90_FALSE 0
#endif

/* F90 logical variable size */
#ifndef SIDL_F90_LOGICAL_SIZE
#define SIDL_F90_LOGICAL_SIZE 4
#endif

/* Fortran 90 symbols are lower case */
#ifndef SIDL_F90_LOWER_CASE
#define SIDL_F90_LOWER_CASE /**/
#endif

/* Fortran 90 symbols are mixed case */
#ifndef SIDL_F90_MIXED_CASE
/* #undef SIDL_F90_MIXED_CASE */
#endif

/* one underscore after Fortran 90 symbols */
#ifndef SIDL_F90_ONE_UNDERSCORE
#define SIDL_F90_ONE_UNDERSCORE /**/
#endif

/* Size in bytes for a F90 pointer to a derived type */
#ifndef SIDL_F90_POINTER_SIZE
#define SIDL_F90_POINTER_SIZE 8
#endif

/* F90 string length integer size */
#ifndef SIDL_F90_STR_INT_SIZE
#define SIDL_F90_STR_INT_SIZE int32_t
#endif

/* F90 string lengths at end of argument list */
#ifndef SIDL_F90_STR_LEN_FAR
#define SIDL_F90_STR_LEN_FAR /**/
#endif

/* F90 string lengths immediately follow string */
#ifndef SIDL_F90_STR_LEN_NEAR
/* #undef SIDL_F90_STR_LEN_NEAR */
#endif

/* Minimum size for out strings */
#ifndef SIDL_F90_STR_MINSIZE
#define SIDL_F90_STR_MINSIZE 512
#endif

/* F90 strings as length-char* structs */
#ifndef SIDL_F90_STR_STRUCT_LEN_STR
/* #undef SIDL_F90_STR_STRUCT_LEN_STR */
#endif

/* F90 strings as char*-length structs */
#ifndef SIDL_F90_STR_STRUCT_STR_LEN
/* #undef SIDL_F90_STR_STRUCT_STR_LEN */
#endif

/* Fortran 90 logical true value */
#ifndef SIDL_F90_TRUE
#define SIDL_F90_TRUE 1
#endif

/* two underscores after Fortran 90 symbols */
#ifndef SIDL_F90_TWO_UNDERSCORE
/* #undef SIDL_F90_TWO_UNDERSCORE */
#endif

/* Fortran 90 symbols are upper case */
#ifndef SIDL_F90_UPPER_CASE
/* #undef SIDL_F90_UPPER_CASE */
#endif

/* no underscores after Fortran 90 symbols */
#ifndef SIDL_F90_ZERO_UNDERSCORE
/* #undef SIDL_F90_ZERO_UNDERSCORE */
#endif

/* Define to 1 if Fortran has C_ASSOCIATED in ISO_C_BINDING. */
#ifndef SIDL_HAS_FORTRAN_C_ASSOC
/* #undef SIDL_HAS_FORTRAN_C_ASSOC */
#endif

/* Define to 1 if the Fortran compiler supports iso_c_binding. */
#ifndef SIDL_HAS_ISO_C_BINDING
/* #undef SIDL_HAS_ISO_C_BINDING */
#endif

/* Numeric Python is installed */
#ifndef SIDL_HAVE_NUMERIC_PYTHON
/* #undef SIDL_HAVE_NUMERIC_PYTHON */
#endif

/* NumPy is installed */
#ifndef SIDL_HAVE_NUMPY
#define SIDL_HAVE_NUMPY 1
#endif

/* Maximum Fortran array descriptor size */
#ifndef SIDL_MAX_F90_DESCRIPTOR
#define SIDL_MAX_F90_DESCRIPTOR 256
#endif

/* Define to prevent the static runtime from using dlopen. */
#ifndef SIDL_PURE_STATIC_RUNTIME
/* #undef SIDL_PURE_STATIC_RUNTIME */
#endif

/* If defined, Python spews all sorts of debugging for thread locking and
   unlocking. */
#ifndef SIDL_PYTHON_THREAD_DEBUGGING
/* #undef SIDL_PYTHON_THREAD_DEBUGGING */
#endif

/* Define SIDL_STATIC_LIBRARY to force static loading of libraries */
#ifndef SIDL_STATIC_LIBRARY
/* #undef SIDL_STATIC_LIBRARY */
#endif

/* The size of `int', as computed by sizeof. */
#ifndef SIZEOF_INT
#define SIZEOF_INT 4
#endif

/* The size of `long', as computed by sizeof. */
#ifndef SIZEOF_LONG
#define SIZEOF_LONG 8
#endif

/* The size of `long long', as computed by sizeof. */
#ifndef SIZEOF_LONG_LONG
#define SIZEOF_LONG_LONG 8
#endif

/* The size of `ptrdiff_t', as computed by sizeof. */
#ifndef SIZEOF_PTRDIFF_T
#define SIZEOF_PTRDIFF_T 8
#endif

/* The size of `short', as computed by sizeof. */
#ifndef SIZEOF_SHORT
#define SIZEOF_SHORT 2
#endif

/* The size of `size_t', as computed by sizeof. */
#ifndef SIZEOF_SIZE_T
#define SIZEOF_SIZE_T 8
#endif

/* The size of `void *', as computed by sizeof. */
#ifndef SIZEOF_VOID_P
#define SIZEOF_VOID_P 8
#endif

/* Define to 1 if you have the ANSI C header files. */
#ifndef STDC_HEADERS
#define STDC_HEADERS 1
#endif

/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#ifndef TIME_WITH_SYS_TIME
#define TIME_WITH_SYS_TIME 1
#endif

/* Version number of package */
#ifndef VERSION
#define VERSION "1.4.0"
#endif

/* Enable RMI */
#ifndef WITH_RMI
#define WITH_RMI /**/
#endif

/* Define so that glibc/gnulib argp.h does not typedef error_t. */
#ifndef __error_t_defined
/* #undef __error_t_defined */
#endif

/* Define to empty if `const' does not conform to ANSI C. */
#ifndef const
/* #undef const */
#endif

/* Define to a type to use for `error_t' if it is not otherwise available. */
#ifndef error_t
/* #undef error_t */
#endif

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
#ifndef inline
/* #undef inline */
#endif
#endif

/* used when a compiler does not recognize int32_t */
#ifndef int32_t
/* #undef int32_t */
#endif

/* used when a compiler does not recognize int64_t */
#ifndef int64_t
/* #undef int64_t */
#endif


/* Define to `int' if <sys/types.h> does not define. */
#ifndef pid_t
/* #undef pid_t */
#endif


/* Define to the equivalent of the C99 'restrict' keyword, or to
   nothing if this is not supported.  Do not define if restrict is
   supported directly.  */
#ifndef restrict
#define restrict __restrict
#endif
/* Work around a bug in Sun C++: it does not support _Restrict, even
   though the corresponding Sun C compiler does, which causes
   "#define restrict _Restrict" in the previous line.  Perhaps some future
   version of Sun C++ will work with _Restrict; if so, it'll probably
   define __RESTRICT, just as Sun C does.  */
#if defined __SUNPRO_CC && !defined __RESTRICT
# define _Restrict
#endif

/* Define to `unsigned int' if <sys/types.h> does not define. */
#ifndef size_t
/* #undef size_t */
#endif

/* Define as `fork' if `vfork' does not work. */
#ifndef vfork
/* #undef vfork */
#endif

/* Define to empty if the keyword `volatile' does not work. Warning: valid
   code using `volatile' can become incorrect without. Disable with care. */
#ifndef volatile
/* #undef volatile */
#endif


/*
 * Set flags for dynamic or static loading of implementations in Babel stubs.
 * One and only one of SIDL_STATIC_LIBRARY and SIDL_DYNAMIC_LIBRARY may be set.
 * If neither is set, then SIDL_DYNAMIC_LIBRARY is chosen as the default if
 * PIC is set and SIDL_STATIC_LIBRARY is chosen otherwise.  This behavior is
 * consistent with GNU libtool.  In general, we want to generate dynamic
 * loading with shared libraries (indicated by -DPIC in libtool) and static
 * loading with static libraries.
 */
#if (!defined(SIDL_STATIC_LIBRARY) && !defined(SIDL_DYNAMIC_LIBRARY))
#ifdef PIC
#define SIDL_DYNAMIC_LIBRARY
#else
#define SIDL_STATIC_LIBRARY
#endif
#endif

#if (defined(SIDL_STATIC_LIBRARY) && defined(SIDL_DYNAMIC_LIBRARY))
#error Cannot define both SIDL_STATIC_LIBRARY and SIDL_DYNAMIC_LIBRARY
#endif
#if (!defined(SIDL_STATIC_LIBRARY) && !defined(SIDL_DYNAMIC_LIBRARY))
#error Must define one of SIDL_STATIC_LIBRARY or SIDL_DYNAMIC_LIBRARY
#endif

#define UCXX
#define UCXX_LOCAL

/*
 * The USE_DL_IMPORT flag is required for proper Python linking under CYGWIN.
 */
#if defined(__CYGWIN__) && !defined(USE_DL_IMPORT)
#define USE_DL_IMPORT
#endif

#endif