|
Lines 1-23
Link Here
|
| 1 |
--- Makefile.PL 2012-12-10 21:27:04.000000000 +0100 |
|
|
| 2 |
+++ /tmp/Makefile.PL 2012-12-11 07:17:41.000000000 +0100 |
| 3 |
@@ -14,13 +14,14 @@ |
| 4 |
OBJECT => '$(O_FILES)', |
| 5 |
); |
| 6 |
|
| 7 |
-my $cc = (grep defined, $mm->{CC}, $Config{cc}, 'cc')[0]; |
| 8 |
+# my $cc = (grep defined, $mm->{CC}, $Config{cc}, 'cc')[0]; |
| 9 |
+my $cc = 'gcc44'; |
| 10 |
my $cc_version = `$cc --version --verbose 2>&1`; |
| 11 |
-unless ($cc_version =~ /^GNU\s+C\s+\([^)]*\)\s+version\s+(4\.(\d+)\S*)/im and $2 >= 4) { |
| 12 |
- unlink $mm->{MAKEFILE}; |
| 13 |
- die "This module requires version 4.4 or above of the GCC compiler.\nAborting!\n\n" |
| 14 |
-} |
| 15 |
-print "GNU C compiler version $1 found, good!\n"; |
| 16 |
+#unless ($cc_version =~ /^GNU\s+C\s+\([^)]*\)\s+version\s+(4\.(\d+)\S*)/im and $2 >= 4) { |
| 17 |
+# unlink $mm->{MAKEFILE}; |
| 18 |
+# die "This module requires version 4.4 or above of the GCC compiler.\nAborting!\n\n" |
| 19 |
+#} |
| 20 |
+#print "GNU C compiler version $1 found, good!\n"; |
| 21 |
|
| 22 |
package MY; |
| 23 |
|