Diff

Differences From Artifact [256f7a5826]:

To Artifact [63209e8aa4]:


     1      1   #! /usr/bin/env bash
     2      2   
     3      3   # Do not run on Win32
     4         -if echo '_WIN64' | x86_64-w64-mingw32-gcc -E - | grep '^_WIN64$'; then
            4  +if echo '_WIN64' | ${CC:-cc} -E - | grep '^_WIN64$'; then
     5      5   	(
     6      6   		echo '#ifndef _USE_32BIT_TIME_T'
     7      7   		echo '#define _USE_32BIT_TIME_T 1'
     8      8   		echo '#endif'
     9      9   		cat generic/tcl.h
    10     10   	) > generic/tcl.h.new
    11     11   	cat generic/tcl.h.new > generic/tcl.h
    12     12   fi
    13     13   
    14     14   exit 0