2002-03-14 16:10:57 +03:00
|
|
|
require 'mkmf'
|
|
|
|
|
|
|
|
dir_config("iconv")
|
|
|
|
|
2003-07-18 23:51:42 +04:00
|
|
|
conf = File.exist?(File.join($srcdir, "config.charset"))
|
|
|
|
conf = with_config("config-charset", enable_config("config-charset", conf))
|
|
|
|
|
2002-03-14 16:10:57 +03:00
|
|
|
if have_header("iconv.h")
|
2003-07-30 05:31:43 +04:00
|
|
|
if !try_compile("", "-Werror") or checking_for("iconv() 2nd argument is const") do
|
|
|
|
!try_compile('
|
|
|
|
#include <iconv.h>
|
|
|
|
size_t
|
|
|
|
test(iconv_t cd, char **inptr, size_t *inlen, char **outptr, size_t *outlen)
|
|
|
|
{
|
|
|
|
return iconv(cd, inptr, inlen, outptr, outlen);
|
|
|
|
}
|
|
|
|
', "-Werror")
|
|
|
|
end
|
|
|
|
$defs.push('-DICONV_INPTR_CAST=""')
|
|
|
|
else
|
|
|
|
$defs.push('-DICONV_INPTR_CAST="(char **)"')
|
|
|
|
end
|
2002-03-18 06:54:10 +03:00
|
|
|
have_library("iconv")
|
2003-07-18 23:51:42 +04:00
|
|
|
if conf
|
|
|
|
prefix = '$(srcdir)'
|
|
|
|
prefix = $nmake ? "{#{prefix}}" : "#{prefix}/"
|
|
|
|
$INSTALLFILES = [["./iconv.rb", "$(RUBYLIBDIR)"]]
|
|
|
|
if String === conf
|
|
|
|
require 'uri'
|
|
|
|
scheme = URI.parse(conf).scheme
|
|
|
|
else
|
|
|
|
conf = prefix + "config.charset"
|
|
|
|
end
|
|
|
|
end
|
2002-03-14 16:10:57 +03:00
|
|
|
create_makefile("iconv")
|
2003-07-18 23:51:42 +04:00
|
|
|
if conf
|
|
|
|
open("Makefile", "a") do |mf|
|
|
|
|
mf.print("\nall: iconv.rb\n\niconv.rb: ", prefix, "charset_alias.rb")
|
|
|
|
mf.print(" ", conf) unless scheme
|
|
|
|
mf.print("\n\t$(RUBY) ", prefix, "charset_alias.rb ", conf, " $@\n")
|
|
|
|
end
|
|
|
|
end
|
2002-03-14 16:10:57 +03:00
|
|
|
end
|