Bio-Emboss

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    $themakefile .= "/emboss/Makefile";

    warn "\n\$EMB_EXT_LIBS not defined.\n".
	"Usually this variable must be set to a combined value\n".
	"of XLIB and LIBS from the EMBOSS Makefile:\n\n";

    if (-f $themakefile) {
	my $grepres = `$^X -ne 'print if /^(X_\\w+LIBS|LIBS|XLIB)\\b/' $themakefile`;	warn $grepres . "\n";
    } else {
	warn "$themakefile (file not found)\n".
	    "Can not find EMBOSS source to guess XLIB and LIBS\n".
	    "Use parameter EMB_SRC_ROOT to set EMBOSS source location\n\n";
    }
}

$EMB_LIBS = join (" ", map { "-L$EMB_ROOT/$_" } @lib_search_dirs) .  " " .
            join (" ", map { "-l$_" } @emb_libs) .  " " .
            $EMB_EXT_LIBS;
if ($ENV{OSTYPE} eq "solaris") {
     $EMB_LIBS = join (" ", map { "-R$EMB_ROOT/$_" } @lib_search_dirs) .
          " " . $EMB_LIBS;

ppport.h  view on Meta::CPAN

#ifndef UV_MAX
#  define UV_MAX                         PERL_ULONG_MAX
#endif

#endif

#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif

#ifndef UVSIZE
#  define UVSIZE                         IVSIZE
#endif
#ifndef sv_setuv



( run in 1.827 second using v1.01-cache-2.11-cpan-748bfb374f4 )