summaryrefslogtreecommitdiff
path: root/devel/p5-Inline-CPP/files/patch-Makefile.PL
blob: 377fc652d0f2ad15fbf12e483221b1c0d16835d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- ./Makefile.PL.orig	2013-01-01 03:27:22.000000000 +0800
+++ ./Makefile.PL	2013-01-01 03:30:52.000000000 +0800
@@ -121,10 +121,9 @@
 print "This will configure and build Inline::C++.\n";
 
 my $cpp_compiler
-    = prompt( "What default C++ compiler would you like to use?", $cc_guess );
+    = $cc_guess;
 
-my $libs = prompt( "What default libraries would you like to include?",
-    $libs_guess );
+my $libs = $libs_guess;
 
 #============================================================================
 # Test whether the compiler prefers <iostream> or <iostream.h>.