This file is indexed.

/usr/share/doc/gnustep-base-common/examples/config.mak is in gnustep-base-examples 1.24.7-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
#
# Extra make variables for base library
#
# Copyright (C) 2005-2010 Free Software Foundation
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.

WHOAMI=/usr/bin/whoami

DYNAMIC_LINKER=simple

HAVE_LIBXML=1
HAVE_GNUTLS=1
HAVE_BLOCKS=0

WITH_FFI=libffi

NX_CONST_STRING_CLASS=NSConstantString
OBJCFLAGS+=-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -fgnu-runtime
OBJC2RUNTIME=1
OBJCSYNC=1
WARN_FLAGS=-Wall -Wdeclaration-after-statement

HAVE_INET_PTON=yes
HAVE_INET_NTOP=yes
HAVE_OBJC_SYNC_ENTER=yes

CONFIG_SYSTEM_INCL += -D_FORTIFY_SOURCE=2 -I/usr/local/include/GNUstep -I/usr/local/include/GNUstep -I/usr/include/GNUstep  -I/usr/include/libxml2 -I/usr/include/p11-kit-1 
ifeq ($(shared),yes)
  CONFIG_SYSTEM_LIBS += -lgmp -lavahi-common -lavahi-client  -lgnutls  -lxslt -lxml2 -lffi  -lrt -ldl  -lpthread -lz -licui18n -licuuc -licudata 
  CONFIG_SYSTEM_LIB_DIR += -Wl,-z,relro -Wl,-z,defs -Wl,--as-needed -L/usr/local/lib -L/usr/local/lib -L/usr/lib -L/usr/lib/x86_64-linux-gnu 
endif

GNUSTEP_INSTALL_GDOMAP_AS_SETUID=no
GNUSTEP_GDOMAP_PORT_OVERRIDE=no

GNUSTEP_BASE_HAVE_LIBXML=1
GNUSTEP_BASE_HAVE_GNUTLS=1
GNUSTEP_BASE_HAVE_MDNS=0
GNUSTEP_BASE_HAVE_AVAHI=1
GNUSTEP_BASE_HAVE_ICU=1
GNUSTEP_BASE_HAVE_LIBDISPATCH=0

# Default to building only -baseadd
# on non *-gnu-* library combos
ifneq ($(FOUNDATION_LIB),gnu)
add=yes
base=no
endif

GNUSTEP_BASE_DOMAIN=SYSTEM
GNUSTEP_BASE_RELATIVE_PATHS=no

# Any global prefprocessor defines can be added here
DEFS=

ifeq ($(GNUSTEP_BASE_RELATIVE_PATHS), yes)
ifneq ($(GNUSTEP_BASE_DOMAIN), $(GNUSTEP_INSTALLATION_DOMAIN))
$(warning "Error: GNUSTEP_INSTALLATION_DOMAIN does not match GNUSTEP_BASE_DOMAIN")
$(warning " ")
$(warning "You can install gnustep-base in one of the four domains: SYSTEM, LOCAL, NETWORK or USER.")
$(warning " ")
$(warning "gnustep-base was configured to be installed into: $(GNUSTEP_BASE_DOMAIN)")
$(warning "but it would now being installed into: $(GNUSTEP_INSTALLATION_DOMAIN)")
$(warning "That's not right: they must match.")
$(warning " ")
$(warning "If you want to install into $(GNUSTEP_BASE_DOMAIN), please use")
$(warning " ")
$(warning "   make install GNUSTEP_INSTALLATION_DOMAIN=$(GNUSTEP_BASE_DOMAIN) [plus any other options you need]")
$(warning " ")
$(warning "Instead, if you want to install into $(GNUSTEP_INSTALLATION_DOMAIN), please reconfigure")
$(warning "gnustep-base by doing")
$(warning " ")
$(warning "   ./configure --with-installation-domain=$(GNUSTEP_INSTALLATION_DOMAIN) [plus any other options you need]")
$(warning " ")
$(warning "and then recompile and reinstall.")

# We used to automatically rerun configure here.  Unfortunately we
# don't know if the right domain that we should be installing into is
# GNUSTEP_BASE_DOMAIN (specified or automatically picked up by
# configure) or GNUSTEP_INSTALLATION_DOMAIN (specified or
# automatically picked up by make install) so the user really has to
# spend two minutes checking this and fixing it herself.

$(error "Please fix the installation domain then try again.  If you are stuck, contact discuss-gnustep@gnu.org for help.")
endif
endif