This file is indexed.

/usr/lib/speech_tools/config/config.in is in libestools-dev 1:2.4~release-5+b3.

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
########################################################-*-mode:Makefile-*-
##                                                                       ##
##  Edinburgh Speech Tools: local configuration file                     ##
##                                                                       ##
###########################################################################
##
##  Specific config file for local installation
##

###########################################################################
## Where the speech_tools tree will be installed.
## 
## The default is that the speech_tools will remain where it is compiled.
##
## You may need to set this explicitly if automounter or NFS
## side effects cause problems

EST_HOME := $(shell (cd $(EST); pwd))

###########################################################################
## System type. 
##
## The system will attempt to determine this, but if it is wrong you may
## need to set it explicitly. The definitions are in 
## systems/$(SYSTEM_TYPE).mak
##
## Format: machine _ os osrev
## 
## Examples: sparc_SunOS5 intel_Linux2.0

SYSTEM_TYPE=unknown_DebianGNULinux

###########################################################################
## Compiler.
## The definitions are in compilers/$(COMPILER).mak
## Examples: gcc suncc egcs gcc28

COMPILER=gcc

###########################################################################
## Java system to use if you include the Java interface.
## Examples jdk

JAVA_COMPILER=jdk

###########################################################################
## Pre defined configurations (for directory locations, setup peculiarities
## etc.)
##
## Examples: default cstr rjc

CONFIGURATION = 

###########################################################################
## Compilation options.
##
## OPTIMISE=4 will turn off DEBUG

OPTIMISE=3
WARN=1
# VERBOSE=1
DEBUG=1
# PROFILE=gprof
SHARED=2

## Directory specific selections which override the above

OPTIMISE_sigpr = 3

###########################################################################
## Feature selection.
##
## Select modules to include.

## AUDIO
## various audio devices are supported directly but you can always
## specify a program to play files in a desired format.

## NCD's network audio system.
# INCLUDE_MODULES += NAS_AUDIO

## Elightenment Sound Demon, for KDE etc.
# INCLUDE_MODULES += ESD_AUDIO

## Native audio for your platform (sun, linux, freebsd, irix, macosx, windows)
INCLUDE_MODULES += NATIVE_AUDIO

## Special code to run Windows MPLAYER
# INCLUDE_MODULES += MPLAYER_AUDIO

## Under Linux there may be a choice of audio support
## This is only used if we are under Linux (or a linux like system)
LINUXAUDIO = @LINUXAUDIO@
# Change it to pulseaudio to enable pulseaudio
PULSEAUDIO = pulseaudio

## USER INTERFACE

## Command-line editing. This option gives command line editing and history.
## It may not work under all systems, so may be optionally omitted.
INCLUDE_MODULES += EDITLINE

TERMCAPLIB = @TERMCAPLIB@
# speech recognition
#INCLUDE_MODULES += ASR


## Scheme

## Scheme In One Defun interpreter and data structures
INCLUDE_MODULES += SIOD

## Enable Python Support in SIOD Interpreter.
## Enables the (call_python module func arg) command.
#INCLUDE_MODULES += SIOD_PYTHON

## The following subsystems depend on the Scheme subsystem and so
## must be removed if Scheme is not included

INCLUDE_MODULES += WAGON
INCLUDE_MODULES += SCFG
INCLUDE_MODULES += WFST
INCLUDE_MODULES += OLS

## Java


## Define this to include the pure Java code
# INCLUDE_MODULES += JAVA
# JAVA_HOME = PUT_SOMETHING_HERE

## Define this to compile the Java interface to the EST classes. You
## need to compile with the SHARED option above. This is required for
## fringe.
# INCLUDE_MODULES += JAVA_CPP

## Define this to have the Java code use the Java Media API to
## play sounds etc.
# INCLUDE_MODULES += JAVA_MEDIA
# JMF_HOME = PUT_SOMETHING_HERE

## Richard Tobin's RXP XML parser.
INCLUDE_MODULES += RXP

## Debugging, You should probably only do one or the other of these.

## Efence protected malloc library to catch memory errors
# INCLUDE_MODULES += EFENCE

## Dmalloc, another chekcing malloc library
# INCLUDE_MODULES += DMALLOC

###################################################################
## Wrappers for selected EST Classes and functionality for
## various high level scripted languages, Only python is currently
## supported

## Uncomment following to enable building of wrappers
#INCLUDE_MODULES += WRAPPERS

## Path to Swig.
##
## If you can't or don't need to run swig yourself (you probably
## don't), then leaving this variable commented out will use the
## default pre-generated code.
##
## Only set this if you *DO* want to run swig (for example to modify
## the wrappers yourself).  If so, the safest bet is to use the same
## version of swig as speech tools developers (download from
## http://www.swig.org/ (SWIG-3.02 last tested))
##
#CONFIG_SWIG_COMPILER = /usr/bin/swig


# Languages to generate wrappers for. Currently: PYTHON
# PERL5 is no longer supported
CONFIG_WRAPPER_LANGUAGES = PYTHON 

# Language specific includes should be set to correct site paths
CONFIG_PYTHON_INCLUDES= -I/usr/include/python2.2/
##
###################################################################



## Additional subsystems to include should be listed here.

ALSO_INCLUDE=

## Turn this on to compile all known modules. This is intended for
## portability testing.

# INCLUDE_EVERYTHING=1


###########################################################################
## Now include the settings

include $(EST)/config/systems/$(SYSTEM_TYPE).mak

include $(EST)/config/compilers/$(COMPILER).mak

include $(EST)/config/user_flags.mak

ifneq ($(JAVA_COMPILER),none)
    include $(EST)/config/compilers/$(JAVA_COMPILER).mak
endif

ifneq ($(CONFIGURATION),)
    include $(CONFIGURATION:%=$(EST)/config/configs/%.mak)
endif

###########################################################################
##
## Any settings you need to describe how your system differs from the
## assumed defaults should go below. See config/ReadMe for a description
## of the most common things you might need.

# COMPILERLIBS =