-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
263 lines (230 loc) · 7.23 KB
/
configure.ac
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
# -----------------------------------------------------------
#
# ___
# |_| | |_/ SPEECH
# | | | | \ RECOGNITION
# ========= SOFTWARE
#
#
# -----------------------------------------------------------
# Copyright: Cambridge University
# 1995-2009 Engineering Department
# http://htk.eng.cam.ac.uk
# http://mi.eng.cam.ac.uk
#
# Use of this software is governed by a License Agreement
# ** See the file License for the Conditions of Use **
# ** This banner notice must not be removed **
#
# -----------------------------------------------------------
# File: configure.ac source file for generating configure script
# -----------------------------------------------------------
# After editing this file, run "autoconf" to regenerate "configure".
AC_INIT(HTK,3.4.1,[email protected])
AC_COPYRIGHT(Copyright 2003-2009 University of Cambridge)
dnl Checks for programs.
AC_PROG_MAKE_SET
AC_PROG_AWK
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_RANLIB
dnl Checks for libraries.
AC_CHECK_LIB([X11], [main])
AC_CHECK_LIB([m], [main])
dnl Checks for header files.
AC_CONFIG_HEADERS
AC_PATH_X
AC_HEADER_STDC
AC_CHECK_HEADERS(errno.h fcntl.h float.h limits.h malloc.h memory.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM
dnl Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MEMCMP
AC_FUNC_MALLOC
AC_FUNC_STRTOD
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(floor gettimeofday memmove memset modf pow socket sqrt strchr strcspn strrchr strspn strstr strtol)
AC_CANONICAL_HOST
dnl Traditional HTK build?
dnl if enabled this will install in $bindir.$host_cpu
AC_ARG_ENABLE(trad-htk,
AS_HELP_STRING([--enable-trad-htk],
[HTK installed into $prefix/bin.$cpu and installed when compiled]))
dnl Build HDecode
AC_ARG_ENABLE(hdecode,
AS_HELP_STRING([--enable-hdecode],
[build large vocabulary recognition system (HDecode)]))
dnl Build LM Tools
AC_ARG_ENABLE(hlmtools,
AS_HELP_STRING([--disable-hlmtools],
[don't build Language Modelling tools]))
dnl Disable building for X
dnl i.e. use HGraf.null, and don't build HSLab
AC_ARG_ENABLE(hslab,
AS_HELP_STRING([--disable-hslab],
[don't build HSLab]))
dnl Build LV Recognition
AC_ARG_ENABLE(htkbook,
AS_HELP_STRING([--enable-htkbook],
[build HTK book]))
dnl Use -Wall if using gcc
case "$CC" in
gcc*)
CFLAGS="-Wall -Wno-switch $CFLAGS"
;;
esac
dnl customise for htk comilpation
trad_bin_dir=$host
case "$host_cpu" in
powerpc)
host=darwin
trad_bin_dir=$host
;;
esac
case "$host" in
*x86_64*linux*)
CFLAGS="-ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH=\"$host_cpu\"' $CFLAGS"
LDFLAGS="-L/usr/X11R6/lib $LDFLAGS"
ARCH=linux
trad_bin_dir=linux
;;
*linux*)
CFLAGS="-ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH=\"$host_cpu\"' $CFLAGS"
LDFLAGS="-L/usr/X11R6/lib $LDFLAGS"
ARCH=linux
trad_bin_dir=linux
;;
*pc-solaris*)
CFLAGS="-ansi -I/usr/openwin/include -O2 -DSOLARIS16_AUDIO -DBSD_COMP -D'ARCH=\"$host_cpu\"' $CFLAGS"
LDFLAGS="-L/usr/openwin/lib -ldl -lsocket -lnsl -lintl $LDFLAGS"
;;
*sun*)
CFLAGS="-ansi -I/usr/openwin/include -O2 -DSOLARIS16_AUDIO -DBSD_COMP -D'ARCH=\"$host_cpu\"' $CFLAGS"
LDFLAGS="-L/usr/openwin/lib -ldl -lsocket -lnsl -lintl $LDFLAGS"
;;
*sgi*)
CFLAGS="-O -DSGI_AUDIO -D'ARCH=\"$host_cpu\"' $CFLAGS"
LDFLAGS="-laudio -lmalloc $LDFLAGS"
;;
*hp*)
CFLAGS="+e -O -I/usr/include/X11R5 -I/usr/include/audio -I/opt/audio/include -D_HPUX_SOURCE -Aa -DHPUX_AUDIO -DUSE_TIMER -D'ARCH=\"$host_cpu\"' $CFLAGS"
LDFLAGS="-L/opt/audio/lib -lAlib $LDFLAGS"
;;
*cygwin)
CFLAGS="-ansi -DCYGWIN -D'ARCH=\"ASCII\"' $CFLAGS"
LDFLAGS="-L/usr/X11R6/lib $LDFLAGS"
ARCH=ASCII
CPU=darwin
BINARY_EXTENSION=.exe
;;
i386*darwin*)
CFLAGS="-ansi -g -O2 -DNO_AUDIO -D'ARCH=\"darwin\"' -I/usr/include/malloc $CFLAGS"
LDFLAGS="-L/usr/X11R6/lib $LDFLAGS"
ARCH=darwin
Objcopy=echo
PRILF="-x"
CPU=darwin
SHRLF="-shared"
LIBEXT=dylib
;;
darwin)
CFLAGS="-ansi -g -O2 -DNO_AUDIO -D'ARCH=\"darwin\"' $CFLAGS"
LDFLAGS="-L/usr/X11R6/lib $LDFLAGS"
ARCH=darwin
Objcopy=echo
PRILF="-x"
CPU=darwin
SHRLF="-shared"
LIBEXT=dylib
;;
esac
dnl Process customised options
make_all=htktools
make_install=install-htktools
build_notes="Build notes: "
dnl Tweak bindir and libdir for backwards compatibility
dnl with previous versions of HTK
case "$enable_trad_htk" in
yes)
bindir=${bindir}.${trad_bin_dir}
libdir=${libdir}.${trad_bin_dir}
;;
esac
case "$enable_hlmtools" in
no)
build_notes="$build_notes The Language Modelling tools will not be built. You can build them manually later by running 'make hlmtools install-hlmtools'"
;;
*)
make_all="$make_all hlmtools"
make_install="$make_install install-hlmtools"
build_notes="$build_notes Language Modelling tools will be built."
;;
esac
case "$enable_hdecode" in
yes)
make_all="$make_all hdecode"
make_install="$make_install install-hdecode"
build_notes="$build_notes Large Vocabulary recogniser HDecode will be built."
;;
*)
build_notes="$build_notes HDecode will not be built. You can build it manually later by running 'make hdecode install-hdecode'"
;;
esac
case "$enable_htkbook" in
yes)
make_all="$make_all book"
make_install="$make_install install-book"
build_notes="$build_notes The HTK Book will be built."
;;
esac
case "$enable_hslab" in
no)
HSLAB=
HGRAF=HGraf.null.o
build_notes="$build_notes HSLab will not be built. If you want to change this then run 'configure' again with the '--enable-hslab' option."
;;
*)
HSLAB=HSLab
HGRAF=HGraf.o
build_notest="$build_notes GUI tool HSLab will be built."
;;
esac
AC_SUBST(TRADHTK, $enable_trad_htk)
AC_SUBST(TRADHTKBIN, $trad_bin_dir)
AC_SUBST(make_all, $make_all)
AC_SUBST(make_install, $make_install)
AC_SUBST(HSLAB, $HSLAB)
AC_SUBST(HGRAF, $HGRAF)
AC_SUBST(BINARY_EXTENSION, $BINARY_EXTENSION)
AC_OUTPUT(HTKLib/Makefile HTKTools/Makefile HLMLib/Makefile HLMTools/Makefile HTKLVRec/Makefile Makefile)
case "$enable_trad_htk" in
yes)
cat<<EOF
**************************************************
HTK is now ready to be built.
Type "make all" to build and install the HTK
libraries and tools.
The tools will be installed in ${prefix}/`basename ${bindir}`
`echo $build_notes | fmt -w 50`
**************************************************
EOF
;;
*)
cat<<EOF
**************************************************
HTK is now ready to be built.
Type "make all" to build the HTK libraries
and tools.
Then "make install" to install them.
The tools will be installed in ${prefix}/`basename ${bindir}`
`echo $build_notes | fmt -w 50`
**************************************************
EOF
;;
esac