# # # patch "ChangeLog" # from [523d4b5c4d76dbc9396249b05212424fe7019420] # to [b8017fb9b7353aa3914c2741947e9b109316f636] # # patch "configure.ac" # from [b95933f4a873708238cdc180353b3136a24e4955] # to [46cbf62091284e7e5a2f7d06a6667a0b511ebbe0] # # patch "rcs_file.cc" # from [79b3250b30913654e617ed31e258ac6f6b9e7c9f] # to [fe17ed7854a347fe0998167fd80e54cea935ceb3] # ============================================================ --- ChangeLog 523d4b5c4d76dbc9396249b05212424fe7019420 +++ ChangeLog b8017fb9b7353aa3914c2741947e9b109316f636 @@ -1,3 +1,10 @@ +2007-01-27 Derek Scherger + + * configure.ac: add AC_FUNC_MMAP check so that the ifdef for + HAVE_MMAP in rcs_file.cc might work + * rcs_file.cc: change ifdef for HAVE_FCNTL to HAVE_FCNTL_H to + match config.h + 2007-01-27 Timothy Brownawell Make vocab-from-string constructors explicit. Fix (some) places ============================================================ --- configure.ac b95933f4a873708238cdc180353b3136a24e4955 +++ configure.ac 46cbf62091284e7e5a2f7d06a6667a0b511ebbe0 @@ -90,6 +90,7 @@ AC_FUNC_STAT # Checks for library functions. AC_FUNC_STAT +AC_FUNC_MMAP AC_FUNC_LOCALE_WORKS AC_CHECK_FUNCS([atexit memset mkstemp setenv strptime lrint \ __cxa_current_exception_type __cxa_demangle]) ============================================================ --- rcs_file.cc 79b3250b30913654e617ed31e258ac6f6b9e7c9f +++ rcs_file.cc fe17ed7854a347fe0998167fd80e54cea935ceb3 @@ -26,7 +26,7 @@ #include #include -#ifdef HAVE_FCNTL +#ifdef HAVE_FCNTL_H #include #endif