Warning: Cannot modify header information - headers already sent by (output started at /home/destefa1/public_html/nf/function.php:1) in /home/destefa1/public_html/nf/function.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/destefa1/public_html/nf/function.php:1) in /home/destefa1/public_html/nf/function.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/destefa1/public_html/nf/function.php:1) in /home/destefa1/public_html/nf/function.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/destefa1/public_html/nf/function.php:1) in /home/destefa1/public_html/nf/function.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/destefa1/public_html/nf/function.php:1) in /home/destefa1/public_html/nf/function.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/destefa1/public_html/nf/function.php:1) in /home/destefa1/public_html/nf/function.php on line 220
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - checkcompiler Copyright 2011 cPanel, Inc. # All rights Reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use Cpanel::Sys::Compiler (); use Cpanel::Usage (); my $verbose = 0; my $biarch_test = 0; my $compiler = 'gcc'; Cpanel::Usage::wrap_options( \@ARGV, \&usage, { 'compiler' => \$compiler, 'verbose' => \$verbose, 'biarch' => \$biarch_test } ); if ( -e '/etc/skipccheck' ) { print "C compiler check disabled per /etc/skipccheck\n"; exit 0; } my ( $status, $statusmsgs, $flags_ref ) = Cpanel::Sys::Compiler::check_c_compiler( 'compiler' => $compiler, 'verbose' => $verbose, 'biarch_test' => $biarch_test ); print join( "\n", @{$statusmsgs} ) . "\n"; if ( ref $flags_ref && @{$flags_ref} ) { print "Prefered Compile Flags: " . join( " ", @{$flags_ref} ) . "\n"; } exit( $status ? 0 : 1 ); sub usage { print <