| |
180 |
180 |
fi |
| |
181 |
181 |
AC_SUBST([aol_prefix]) |
| |
182 |
182 |
|
| |
183 |
183 |
#-------------------------------------------------------------------- |
| |
184 |
184 |
# check for tclCompile.h (needed, when compiled without full source) |
| |
185 |
185 |
if test -f "$TCL_SRC_DIR/generic/tclCompile.h"; then |
| |
186 |
186 |
AC_DEFINE([HAVE_TCL_COMPILE_H], [1], [Do we have tclCompile.h installed?]) |
| |
187 |
187 |
fi |
| |
188 |
188 |
|
| |
189 |
189 |
if test "$enable_assertions" = yes; then |
| |
190 |
190 |
AC_DEFINE([NSF_WITH_ASSERTIONS], [1], [Are we building with assertions support?]) |
| |
191 |
191 |
fi |
| |
192 |
192 |
|
| |
193 |
193 |
if test "$enable_profile" = yes; then |
| |
194 |
194 |
AC_DEFINE([NSF_PROFILE], [1], [Are we building with profile support?]) |
| |
195 |
195 |
fi |
| |
196 |
196 |
|
| |
197 |
197 |
if test "$enable_development" = yes; then |
| |
198 |
198 |
AC_DEFINE([NSF_DEVELOPMENT], [1], [Are we building with development support?]) |
| |
199 |
199 |
fi |
| |
200 |
|
if test "$enable_development" = full; then |
| |
|
200 |
if test "$enable_development" = test; then |
| |
201 |
201 |
AC_DEFINE([NSF_DEVELOPMENT_TEST], [1], [Are we building with development support and intesive testing?]) |
| |
202 |
202 |
fi |
| |
203 |
203 |
|
| |
204 |
204 |
if test "$enable_memcount" = yes; then |
| |
205 |
205 |
AC_DEFINE([NSF_MEM_COUNT], [1], [Are we building with memcount support?]) |
| |
206 |
206 |
fi |
| |
207 |
207 |
if test "$enable_memcount" = trace; then |
| |
208 |
208 |
AC_DEFINE([NSF_MEM_TRACE], [1], [Are we building with memcount tracing support?]) |
| |
209 |
209 |
fi |
| |
210 |
210 |
|
| |
211 |
211 |
if test "$enable_assemble" = yes; then |
| |
212 |
212 |
AC_DEFINE([NSF_ASSEMBLE], [1], [Are we building with assembly support?]) |
| |
213 |
213 |
fi |
| |
214 |
214 |
if test "$enable_assemble" = call; then |
| |
215 |
215 |
AC_DEFINE([NSF_ASSEMBLE_CT], [1], [Are we building with assembly call threading support?]) |
| |
216 |
216 |
fi |
| |
217 |
217 |
if test "$enable_assemble" = call; then |
| |
218 |
218 |
AC_DEFINE([NSF_ASSEMBLE_LT], [1], [Are we building with assembly label threading support?]) |
| |
219 |
219 |
fi |
| |
220 |
220 |
|