~ubuntu-branches/ubuntu/natty/stfl/natty

« back to all changes in this revision

Viewing changes to perl5/Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2007-08-07 13:06:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070807130654-fmvsraotulj0nbri
Tags: 0.15-3
Again added fPIC to CFLAGS. Hopefully all build issues
are fixed now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use ExtUtils::MakeMaker;
2
2
WriteMakefile(
3
3
        "NAME"    => "stfl",
4
 
        "CCFLAGS" => "-I..",
5
 
        "LIBS"    => ["-L.. -lstfl -lncurses"],
6
 
        "OBJECT"  => "stfl_wrap.o"
 
4
        # The -D_LARGEFILE64_SOURCE -D_GNU_SOURCE are needed by perl (not STFL!) on some systems
 
5
        "CCFLAGS" => "-I.. -D_LARGEFILE64_SOURCE -D_GNU_SOURCE",
 
6
        "LIBS"    => ["-lncursesw"],
 
7
        "OBJECT"  => "stfl_wrap.o ../libstfl.a"
7
8
);