Artifact 039781ed6710e054be0af5f9c3e3c4911d0ab424:
- File tk/patchscripts/fixfixstrtod.sh — part of check-in [abc83d3b1d] at 2014-05-29 05:15:56 on branch trunk — Added script to remove "fixstrtod" in Tk (user: rkeene, size: 504) [annotate] [blame] [check-ins using] [more...]
#! /bin/bash # The "fix" for strtod: # 1. Only applies to Solaris 2.4 (which noone should use) # 2. Does not actually link against the file (which is # not even in Tk 8.6.1) that would supply such a symbol grep -v '#define strtod fixstrtod' unix/configure > unix/configure.new cat unix/configure.new > unix/configure rm -f unix/configure.new grep -v '#define strtod fixstrtod' macosx/configure > macosx/configure.new cat macosx/configure.new > macosx/configure rm -f macosx/configure.new