Changeset 2327 for box/trunk/configure.ac
- Timestamp:
- 05/10/2008 14:20:21 (4 years ago)
- File:
-
- 1 edited
-
box/trunk/configure.ac (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/configure.ac
r2290 r2327 239 239 ## Check for large file support active. AC_SYS_LARGEFILE has already worked 240 240 ## out how to enable it if necessary, we just use this to report to the user 241 AC_CACHE_CHECK([if we have large file support enabled], [ have_large_file_support],241 AC_CACHE_CHECK([if we have large file support enabled], [box_cv_have_large_file_support], 242 242 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[$ac_includes_default]], [[ 243 243 return sizeof(off_t)==4; 244 244 ]])], 245 [ have_large_file_support=yes], [have_large_file_support=no]245 [box_cv_have_large_file_support=yes], [box_cv_have_large_file_support=no] 246 246 )]) 247 247 248 if test "x$ have_large_file_support" = "xyes"; then248 if test "x$box_cv_have_large_file_support" = "xyes"; then 249 249 AC_DEFINE([HAVE_LARGE_FILE_SUPPORT], [1], 250 250 [Define to 1 if large files are supported]) … … 302 302 prefix=$saved_prefix 303 303 exec_prefix=$saved_exec_prefix 304 AC_SUBST([bindir_expanded sbindir_expanded sysconfdir_expanded localstatedir_expanded]) 304 AC_SUBST([bindir_expanded]) 305 AC_SUBST([sbindir_expanded]) 306 AC_SUBST([sysconfdir_expanded]) 307 AC_SUBST([localstatedir_expanded]) 305 308 306 309 … … 356 359 357 360 Regular expressions: $have_regex_support 358 Large files: $ have_large_file_support361 Large files: $box_cv_have_large_file_support 359 362 Berkeley DB: $ax_path_bdb_ok 360 363 Readline: $have_libreadline … … 365 368 ### Warnings at end for visibility 366 369 367 if test "x$ gcc_3_plus" != "xyes" && test "x$malloc_workaround" != "xyes"; then370 if test "x$box_cv_gcc_3_plus" != "xyes" && test "x$box_cv_malloc_workaround" != "xyes"; then 368 371 echo 369 372 AC_MSG_WARN([[the implementation of the C++ STL on this platform may
Note: See TracChangeset
for help on using the changeset viewer.
