]> git.eshelyaron.com Git - emacs.git/commitdiff
Streamline definition of BOOT_TIME_FILE on MS-Windows
authorEli Zaretskii <eliz@gnu.org>
Thu, 10 Aug 2023 08:44:49 +0000 (11:44 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 10 Aug 2023 08:44:49 +0000 (11:44 +0300)
* nt/inc/ms-w32.h: Don't define BOOT_TIME_FILE here...
* configure.ac: ...define it here instead, as for the other
systems.

configure.ac
nt/inc/ms-w32.h

index 0bc0de1bfac14ecc3b14693bdd461c0c0a6a6684..0236dbd89d867d45e5e37e9b7a3a34eb379095b5 100644 (file)
@@ -2643,6 +2643,17 @@ AC_CACHE_CHECK([for old but post-boot file],
         do
           test -f $file && { emacs_cv_boot_time_file=$file; break; }
         done])],
+     # This isn't perfect, as some systems might have the page file in
+     # another place.  Also, I suspect that the time stamp of that
+     # file might also change when Windows enlarges the file due to
+     # insufficient VM.  Still, this seems to be the most reliable
+     # way; the alternative (of using GetSystemTimes) won't work on
+     # laptops that hibernate, because the system clock is stopped
+     # then.  Other possibility would be to run "net statistics
+     # workstation" and parse the output, but that's gross.  So this
+     # should do; if the file is not there, the boot time will be
+     # returned as zero, and filelock.c already handles that.
+     [mingw32], [emacs_cv_boot_time_file=C:/pagefile.sys],
      [*], [emacs_cv_boot_time_file=not-needed])])
 
 AS_CASE([$emacs_cv_boot_time_file],
index 58be1199345bcf9ec435d08333fec2ef45b4f085..fce15fcbd8c0915d786b90c4a57efb12fe56ce32 100644 (file)
@@ -111,18 +111,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 # endif
 #endif
 
-/* This isn't perfect, as some systems might have the page file in
-   another place.  Also, I suspect that the time stamp of that file
-   might also change when Windows enlarges the file due to
-   insufficient VM.  Still, this seems to be the most reliable way;
-   the alternative (of using GetSystemTimes) won't work on laptops
-   that hibernate, because the system clock is stopped then.  Other
-   possibility would be to run "net statistics workstation" and parse
-   the output, but that's gross.  So this should do; if the file is
-   not there, the boot time will be returned as zero, and filelock.c
-   already handles that.  */
-#define BOOT_TIME_FILE "C:/pagefile.sys"
-
 /* ============================================================ */
 
 /* Here, add any special hacks needed to make Emacs work on this