This file is indexed.

/usr/include/globus/globus_config.h is in libglobus-common-dev 16.9-1.

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
/*
 * Copyright 1999-2013 University of Chicago
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file globus_config.h
 * @brief Globus Platform Configuration
 */

#include <stdint.h>
#include <limits.h>

#if !defined(GLOBUS_CONFIG_H)
#define GLOBUS_CONFIG_H 1
#define BUILD_DEBUG 1

#ifdef __STDC__
    #ifndef HAVE_STDARG_H
        #define HAVE_STDARG_H
    #endif
#endif

#ifdef _WIN32
    #define TARGET_ARCH_WIN32 1
    #define WINVER 0x0502
#endif

#ifdef __MINGW32__
    #ifndef HAVE_IN6_IS_ADDR_UNSPECIFIED 
        #define HAVE_IN6_IS_ADDR_UNSPECIFIED 1
    #endif
    #ifndef __USE_MINGW_ANSI_STDIO
        #define __USE_MINGW_ANSI_STDIO 1
    #endif
    #ifndef _POSIX
        #define _POSIX 1
    #endif
    #define TARGET_ARCH_MINGW32
#endif

#ifdef __HOS_AIX__
    #define TARGET_ARCH_AIX 1
#endif

#ifdef __FreeBSD__
    #define TARGET_ARCH_FREEBSD 1
    #define TARGET_ARCH_BSD 1
#endif

#ifdef __OpenBSD__
    #define TARGET_ARCH_OPENBSD 1
    #define TARGET_ARCH_BSD 1
#endif

#ifdef __CYGWIN__
    #define TARGET_ARCH_CYGWIN
#endif

#ifdef __APPLE__
    #define TARGET_ARCH_DARWIN 1
    #define TARGET_ARCH_BSD 1
#endif

#ifdef sun
    #define TARGET_ARCH_SOLARIS 1
    #ifdef __i386
        #define TARGET_ARCH_X86 1
    #endif
    #ifdef __x86_64
        #define TARGET_ARCH_X86_64 1
    #endif
#endif

#ifdef __hpux
    #define TARGET_ARCH_HPUX 1
    #ifdef __ia64
        #define TARGET_ARCH_IA64 1
    #endif
#endif

#if defined(__linux__) || defined(linux) || defined(__linux)
    #define TARGET_ARCH_LINUX 1
    #if defined(__x86_64) || defined(__x86_64__)
        #define TARGET_ARCH_X86 1
    #elif defined(i386) || defined(__i386) || defined(__i386__)
        #define TARGET_ARCH_X86_64 1
    #elif defined(__ia64) || defined(__itanium__)
        #define TARGET_ARCH_IA64 1
    #elif defined(__sparc)
        #define TARGET_ARCH_SPARC 1
    #endif
#endif

#ifdef __GNUC__
#define GLOBUS_FLAVOR_PREFIX "gcc"
#else
#define GLOBUS_FLAVOR_PREFIX "cc"
#endif

#if LONG_MAX >= INT64_MAX
#define GLOBUS_FLAVOR_SUFFIX "64"
#else
#define GLOBUS_FLAVOR_SUFFIX "32"
#endif

#define GLOBUS_FLAVOR_NAME GLOBUS_FLAVOR_PREFIX GLOBUS_FLAVOR_SUFFIX

#endif /* GLOBUS_CONFIG_H */