···1616index 505d1df..fc38b76 100644
1717--- a/Makefile.PL
1818+++ b/Makefile.PL
1919-@@ -28,12 +28,18 @@ foreach (@ARGV) {
1919+@@ -29,12 +29,17 @@ foreach (@ARGV) {
2020 @ARGV = @replacement_args;
21212222 unless (
2323-- check_lib( # fill in what you prompted the user for here
2424-- lib => [qw(expat)],
2525-- header => ['expat.h'],
2626-- incpath => $expat_incpath,
2727-- ($expat_libpath?
2828-- (libpath => $expat_libpath):()),
2929-- )) {
3030-+ #check_lib( # fill in what you prompted the user for here
3131-+ # lib => [qw(expat)],
3232-+ # header => ['expat.h'],
3333-+ # incpath => $expat_incpath,
3434-+ # ($expat_libpath?
3535-+ # (libpath => $expat_libpath):()),
3636-+ #)
3737-+ # The check_lib implementation fails horribly with cross-compilation.
3838-+ # We are giving known good paths to expat.
3939-+ # And in all cases, the previous behaviour of not actually failing
4040-+ # seemed to work just fine :/.
4141-+ false
4242-+ ) {
2323+- check_lib( # fill in what you prompted the user for here
2424+- lib => [qw(expat)],
2525+- header => ['expat.h'],
2626+- incpath => $expat_incpath,
2727+- ( $expat_libpath ? ( libpath => $expat_libpath ) : () ),
2828+- )
2929++ #check_lib( # fill in what you prompted the user for here
3030++ # lib => [qw(expat)],
3131++ # header => ['expat.h'],
3232++ # incpath => $expat_incpath,
3333++ # ( $expat_libpath ? ( libpath => $expat_libpath ) : () ),
3434++ #)
3535++ # The check_lib implementation fails horribly with cross-compilation.
3636++ # We are giving known good paths to expat.
3737++ # And in all cases, the previous behaviour of not actually failing
3838++ # seemed to work just fine :/.
3939++ false
4040+ ) {
4341 warn <<'Expat_Not_Installed;';
44424543--