1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#
# ruby extconf.rb
# --with-perl-enc-map[=/path/to/enc-map]
# --with-expat-dir=/path/to/expat
# --with-expat-lib=/path/to/expat/lib
# --with-expat-include=/path/to/expat/include
#
require 'mkmf'
$CFLAGS += ' -Wno-int-conversion -Wno-incompatible-pointer-types'
xml_enc_path = with_config("perl-enc-map")
if xml_enc_path == true
## Encoding maps may be stored in $perl_archlib/XML/Parser/Encodins/
#perl_archlib = '/usr/lib/perl5/site_perl/5.005/i586-linux'
#perl_archlib = '/usr/local/lib'
perl= ENV['PERL'] || 'perl'
perl_archlib = `#{perl} -e 'use Config; print $Config{"archlib"}'`
xml_enc_path = perl_archlib + "/XML/Parser/Encodings"
end
##cwd=`pwd`.chomp!
##$CFLAGS="-I#{cwd}/expat/xmlparse -I#{cwd}/expat/xmltok" +
## ' -DXML_ENC_PATH=getenv\(\"XML_ENC_PATH\"\)' +
## " -DNEW_EXPAT"
#$CFLAGS = "-I#{cwd}/expat/xmlparse -I#{cwd}/expat/xmltok"
#$LDFLAGS = "-L#{cwd}/expat/xmlparse -Wl,-rpath,/usr/local/lib"
#$LDFLAGS = "-L#{cwd}/expat/xmlparse"
dir_config("expat")
#dir_config("xmltok")
#dir_config("xmlparse")
if xml_enc_path
$CFLAGS += " -DXML_ENC_PATH=\\\"#{xml_enc_path}\\\""
end
#if have_header("xmlparse.h") || have_header("expat.h")
if have_header("expat.h") || have_header("xmlparse.h")
if have_library("expat", "XML_ParserCreate", "expat.h") ||
have_library("xmltok", "XML_ParserCreate") ||
have_library("libexpat", "XML_ParserCreate")
if have_func("XML_SetNotStandaloneHandler", "expat.h")
$CFLAGS += " -DNEW_EXPAT"
end
if have_func("XML_SetParamEntityParsing", "expat.h")
$CFLAGS += " -DXML_DTD"
end
# if have_func("XML_SetExternalParsedEntityDeclHandler")
# $CFLAGS += " -DEXPAT_1_2"
# end
have_func("XML_SetDoctypeDeclHandler", "expat.h")
have_func("XML_ParserReset", "expat.h")
have_func("XML_SetSkippedEntityHandler", "expat.h")
have_func("XML_GetFeatureList", "expat.h")
have_func("XML_UseForeignDTD", "expat.h")
have_func("XML_GetIdAttributeIndex", "expat.h")
have_func("ntohl", "arpa/inet.h")
have_library("wsock32") if RUBY_PLATFORM =~ /mswin32|mingw/
create_makefile("xmlparser")
end
end
|