Skip to content

Commit

Permalink
Merge pull request #34 from lowjoel/master
Browse files Browse the repository at this point in the history
Add support for 64-bit Windows rubies.
  • Loading branch information
copiousfreetime committed Jan 26, 2015
2 parents 3534018 + 3d8357d commit 0a030b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/hitimes/c/extconf.rb
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 0a030b6

Please sign in to comment.