-
Notifications
You must be signed in to change notification settings - Fork 12
/
configure.in
267 lines (229 loc) · 7.73 KB
/
configure.in
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
264
265
266
dnl Applied patch to handle AC_ARG_ENABLE targets (Patch 1250604) - Provided by Andrew Kephart <[email protected]
AC_INIT(BCUnit, 3.0-1)
AM_INIT_AUTOMAKE(BCUnit, 3.0-1)
dnl Package version information
PACKAGE=BCUnit
VERSION_MAJOR=3
VERSION_MINOR=0
VERSION=${VERSION_MAJOR}.${VERSION_MINOR}
RELEASE=1
dnl Shared library version information
dnl
dnl Current = interface version (increment when change user interface to lib)
dnl Revision = revision number (increment when change implementation, reset to 0 for new interface)
dnl Age = number of previous interfaces this one is compatible with (i.e. is a superset of)
dnl
dnl Suffix1 = [Current - Age] (on Linux, anyway, soname suffix is [C-A].A.R)
dnl
LIBTOOL_CURRENT=1
LIBTOOL_REVISION=1
LIBTOOL_AGE=0
LIBTOOL_SUFFIX1=1
LIBTOOL_SUFFIX=${LIBTOOL_SUFFIX1}.${LIBTOOL_AGE}.${LIBTOOL_REVISION}
TOPDIR=`pwd`
CFLAGS="$CFLAGS -DRELEASE=@RELEASE@ -Wall -W -pedantic -Wshadow -ansi -I${PWD}/BCUnit/Headers -std=c99"
LDFLAGS="$LDFLAGS -L${PWD}/BCUnit/Sources"
AC_ARG_ENABLE(debug,
[AS_HELP_STRING([--enable-debug],[enable debugging [default=no]])],
[cu_do_debug=$enableval],
[cu_do_debug="no"])
if test x"$cu_do_debug" = xyes ; then
echo "++++++++++ Enabling debug mode compilation."
CFLAGS="$CFLAGS -D_DEBUG -g3 -O0 -Wall"
LDFLAGS="$LDFLAGS -g"
ENABLE_DEBUG="TRUE"
else
echo "---------- Disabling debug mode compilation."
ENABLE_DEBUG="FALSE"
fi
AC_ARG_ENABLE(automated,
[AS_HELP_STRING([--enable-automated],[compile BCUnit automated interface [default=yes]])],
[cu_do_automated=$enableval],
[cu_do_automated="yes"])
if test x"$cu_do_automated" = xyes ; then
echo "++++++++++ Enabling automated(XML) mode compilation"
BUILD_AUTOMATED="TRUE"
else
echo "---------- Disabling automated(XML) mode compilation"
BUILD_AUTOMATED="FALSE"
fi
AM_CONDITIONAL(ENABLE_AUTOMATED, test x"$cu_do_automated" = xyes)
AC_ARG_ENABLE(basic,
[AS_HELP_STRING([--enable-basic],[compile BCUnit basic interface [default=yes]])],
[cu_do_basic=$enableval],
[cu_do_basic="yes"])
if test x"$cu_do_basic" = xyes ; then
echo "++++++++++ Enabling basic mode compilation"
BUILD_BASIC="TRUE"
else
echo "---------- Disabling basic mode compilation"
BUILD_BASIC="FALSE"
fi
AM_CONDITIONAL(ENABLE_BASIC, test x"$cu_do_basic" = xyes)
AC_ARG_ENABLE(console,
[AS_HELP_STRING([--enable-console],[compile BCUnit console interface [default=yes]])],
[cu_do_console=$enableval],
[cu_do_console="yes"])
if test x"$cu_do_console" = xyes ; then
echo "++++++++++ Enabling console mode compilation"
BUILD_CONSOLE="TRUE"
else
echo "---------- Disabling console mode compilation"
BUILD_CONSOLE="FALSE"
fi
AM_CONDITIONAL(ENABLE_CONSOLE, test x"$cu_do_console" = xyes)
AC_ARG_ENABLE(curses,
[AS_HELP_STRING([--enable-curses],[compile BCUnit curses interface [default=no]])],
[cu_do_curses=$enableval],
[cu_do_curses="no"])
if test x"$cu_do_curses" = xyes ; then
echo "++++++++++ Enabling curses mode compilation"
else
echo "---------- Disabling curses mode compilation"
BUILD_CURSES="FALSE"
fi
AC_ARG_ENABLE(examples,
[AS_HELP_STRING([--enable-examples],[compile BCUnit example programs [default=no]])],
[cu_do_examples=$enableval],
[cu_do_examples="no"])
if test x"$cu_do_examples" = xyes ; then
echo "++++++++++ Enabling examples mode compilation"
BUILD_EXAMPLES="TRUE"
else
echo "---------- Disabling examples mode compilation"
BUILD_EXAMPLES="FALSE"
fi
AM_CONDITIONAL(ENABLE_EXAMPLES, test x"$cu_do_examples" = xyes)
AC_ARG_ENABLE(test,
[AS_HELP_STRING([--enable-test],[compile BCUnit internal test program [default=no]])],
[cu_do_test=$enableval],
[cu_do_test="no"])
if test x"$cu_do_test" = xyes ; then
echo "++++++++++ Enabling test mode compilation"
BUILD_TEST="TRUE"
else
echo "---------- Disabling test mode compilation"
BUILD_TEST="FALSE"
fi
AM_CONDITIONAL(ENABLE_TEST, test x"$cu_do_test" = xyes)
AC_ARG_ENABLE(memtrace,
[AS_HELP_STRING([--enable-memtrace],[enable BCUnit internal memory tracking [default=no]])],
[cu_do_memtrace=$enableval],
[cu_do_memtrace="no"])
if test x"$cu_do_memtrace" = xyes ; then
echo "++++++++++ Enabling memtrace functionality at compile time"
CFLAGS="$CFLAGS -DMEMTRACE"
ENABLE_MEMTRACE="TRUE"
else
echo "---------- Disabling memtrace functionality at compile time"
ENABLE_MEMTRACE="FALSE"
fi
AC_ARG_ENABLE(deprecated,
[AS_HELP_STRING([--enable-deprecated],[enable use of deprecated v1.1 names [default=no]])],
[cu_do_deprecated=$enableval],
[cu_do_deprecated="no"])
if test x"$cu_do_deprecated" = xyes ; then
echo "++++++++++ Enabling use of deprecated v1.1 names"
CFLAGS="$CFLAGS -DUSE_DEPRECATED_BCUNIT_NAMES"
ENABLE_DEPRECATED="TRUE"
else
echo "---------- Disabling use of deprecated v1.1 names"
ENABLE_DEPRECATED="FALSE"
fi
dnl Check for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
LT_INIT(disable-static win32-dll)
dnl Check for libraries
AC_CHECK_LIB(c, main)
dnl TODO: We should provide a --with-curses=PREFIX option to allow user to point to curses lib
if test x"$cu_do_curses" = xyes ; then
AC_CHECK_LIB([ncurses], [initscr], [cu_have_curses="ncurses"], [cu_have_curses="no"])
if test x"$cu_have_curses" = xno ; then
AC_CHECK_LIB([curses], [initscr], [cu_have_curses="curses"], [cu_have_curses="no"])
fi
if test x"$cu_have_curses" = xno ; then
echo "---------- Disabling curses mode compilation (lib not found)"
cu_do_curses="no"
BUILD_CURSES=FALSE
else
BUILD_CURSES=TRUE
fi
CURSES_LIB=$cu_have_curses
fi
AM_CONDITIONAL(ENABLE_CURSES, test x"$cu_do_curses" = xyes)
dnl Check for standard functions
AC_CHECK_FUNC(malloc, [], [echo malloc not found; exit 1])
AC_CHECK_FUNC(free, [], [echo free not found; exit 1])
AC_CHECK_FUNC(calloc, [], [echo calloc not found; exit 1])
AC_CHECK_FUNC(realloc, [], [echo realloc not found; exit 1])
AC_CHECK_FUNC(strcpy, [], [echo strcpy not found; exit 1])
AC_CHECK_FUNC(strerror, [], [echo strerror not found; exit 1])
AC_CHECK_FUNC(fopen, [], [echo fopen not found; exit 1])
AC_CHECK_FUNC(fclose, [], [echo fclose not found; exit 1])
AC_CHECK_FUNC(fprintf, [], [echo fprintf not found; exit 1])
AC_CHECK_FUNC(snprintf, [], [echo snprintf not found; exit 1])
AC_CHECK_FUNC(setvbuf, [], [echo setvbuf not found; exit 1])
AC_CHECK_FUNC(time, [], [echo time not found; exit 1])
AC_CHECK_FUNC(ctime, [], [echo ctime not found; exit 1])
dnl Check for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(assert.h)
AC_CHECK_HEADERS(ctype.h)
AC_CHECK_HEADERS(math.h)
AC_CHECK_HEADERS(file.h)
AC_CHECK_HEADERS(stdio.h)
AC_CHECK_HEADERS(stdlib.h)
AC_CHECK_HEADERS(string.h)
AM_CONFIG_HEADER(config.h)
dnl Check for typedefs, structures, and compiler characteristics.
AC_C_CONST
dnl Set environment variables.
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_SUBST(VERSION_MAJOR)
AC_SUBST(VERSION_MINOR)
AC_SUBST(RELEASE)
AC_SUBST(LIBTOOL_CURRENT)
AC_SUBST(LIBTOOL_REVISION)
AC_SUBST(LIBTOOL_AGE)
AC_SUBST(LIBTOOL_SUFFIX1)
AC_SUBST(LIBTOOL_SUFFIX)
AC_SUBST(ENABLE_DEBUG)
AC_SUBST(ENABLE_MEMTRACE)
AC_SUBST(ENABLE_DEPRECATED)
AC_SUBST(BUILD_AUTOMATED)
AC_SUBST(BUILD_BASIC)
AC_SUBST(BUILD_CONSOLE)
AC_SUBST(BUILD_CURSES)
AC_SUBST(CURSES_LIB)
AC_SUBST(BUILD_EXAMPLES)
AC_SUBST(BUILD_TEST)
dnl Configure Jamrules for user environment
AC_CONFIG_FILES([Jamrules:Jamrules.in])
dnl Configure Makefile set.
AC_CONFIG_FILES( Makefile
BCUnit.spec
bcunit.pc
BCUnit/Makefile
BCUnit/Headers/Makefile
BCUnit/Headers/BCUnit.h
BCUnit/Sources/Makefile
BCUnit/Sources/Framework/Makefile
BCUnit/Sources/Automated/Makefile
BCUnit/Sources/Basic/Makefile
BCUnit/Sources/Console/Makefile
BCUnit/Sources/Curses/Makefile
BCUnit/Sources/Test/Makefile
doc/Makefile
doc/headers/Makefile
Examples/Makefile
Examples/AutomatedTest/Makefile
Examples/BasicTest/Makefile
Examples/ConsoleTest/Makefile
Examples/CursesTest/Makefile
Man/Makefile
Man/man3/Makefile
Share/Makefile )
AC_OUTPUT