Help for this page

Select Code to Download


  1. or download this
     my build = Module::Build->new(
         extra_compiler_flags => '... -mmacosx-version-min=11.0',
         extra_linker_flags   => '... -mmacosx-version-min=11.0',
     );
    
  2. or download this
    my $extra_cflags = $aug_cflags . ' ' . $libxml2_cflags . ' -Wall -Wfor
    +mat -Werror=format-security';
    my $extra_ldflags = $aug_libs . ' ' . $libxml2_cflags;
    ...
    # insert the above before this:
    print "Using $aug_libs and $aug_cflags to compile (Augeas version $aug
    +_version)\n" ;
    print "Using $libxml2_libs and $libxml2_cflags to compile (Augeas vers
    +ion $aug_version)\n" ;
    
  3. or download this
    my $build = Module::Build->new
      (
    ...
       extra_linker_flags   => $extra_ldflags,
     ...
    );
    
  4. or download this
    perl -MConfig -e 'print $_.": ".$Config{$_}."\n" for keys %Config;'