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
|
This patch is part of a series of patches for speech-tools for
Debian GNU/Linux, to provide Debian specific building of speech-tools.
This patch was not forwarded upstream, since it is Debian specific. However,
a related patch was accepted (https://github.com/festvox/speech_tools/pull/30). On
the next upstream release, consider removing this patch and changing the debian/rules
so they use `./configure SHARED=2 DEBUG=1` instead.
--- a/config/config.in
+++ b/config/config.in
@@ -28,14 +28,14 @@
##
## Examples: sparc_SunOS5 intel_Linux2.0
-SYSTEM_TYPE=$(MACHINETYPE)_$(OSTYPE)$(OSREV)
+SYSTEM_TYPE=unknown_DebianGNULinux
###########################################################################
## Compiler.
## The definitions are in compilers/$(COMPILER).mak
## Examples: gcc suncc egcs gcc28
-COMPILER=@COMPILERTYPE@
+COMPILER=gcc
###########################################################################
## Java system to use if you include the Java interface.
@@ -59,9 +59,9 @@
OPTIMISE=3
WARN=1
# VERBOSE=1
-#DEBUG=1
+DEBUG=1
# PROFILE=gprof
-#SHARED=2
+SHARED=2
## Directory specific selections which override the above
|