Skip to content

Commit

Permalink
Add support for 64-bit Windows rubies.
Browse files Browse the repository at this point in the history
  • Loading branch information
lowjoel committed Jan 25, 2015
1 parent 3534018 commit 3d8357d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/hitimes/c/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
if RbConfig::CONFIG['host_os'] =~ /darwin/ then
$CFLAGS += " -DUSE_INSTANT_OSX=1 -Wall"
$LDFLAGS += " -framework CoreServices"
elsif RbConfig::CONFIG['host_os'] =~ /win32/ or RbConfig::CONFIG['host_os'] =~ /mingw/ then
elsif RbConfig::CONFIG['host_os'] =~ /win(32|64)/ or RbConfig::CONFIG['host_os'] =~ /mingw/ then
$CFLAGS += " -DUSE_INSTANT_WINDOWS=1"
else
if have_library("rt", "clock_gettime") then
Expand Down

0 comments on commit 3d8357d

Please sign in to comment.