Diff

Differences From Artifact [ecac082458]:

To Artifact [256f7a5826]:


1
2


3
4
5
6
7
8
9








10
11
1
2
3
4







5
6
7
8
9
10
11
12
13
14


+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+


#! /usr/bin/env bash

# Do not run on Win32
if echo '_WIN64' | x86_64-w64-mingw32-gcc -E - | grep '^_WIN64$'; then
(
	echo '#ifndef _USE_32BIT_TIME_T'
	echo '#define _USE_32BIT_TIME_T 1'
	echo '#endif'
	cat generic/tcl.h
) > generic/tcl.h.new
cat generic/tcl.h.new > generic/tcl.h
	(
		echo '#ifndef _USE_32BIT_TIME_T'
		echo '#define _USE_32BIT_TIME_T 1'
		echo '#endif'
		cat generic/tcl.h
	) > generic/tcl.h.new
	cat generic/tcl.h.new > generic/tcl.h
fi

exit 0