mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
6 lines
175 B
Ruby
6 lines
175 B
Ruby
require 'mkmf'
|
|
if have_library('iphlpapi', 'GetNetworkParams')
|
|
create_makefile('win32/resolv')
|
|
else
|
|
File.write('Makefile', "all clean install:\n\t@echo Done: $(@)\n")
|
|
end
|