home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / ext / Socket / Makefile.PL next >
Encoding:
Makefile  |  1999-09-04  |  295 b   |  10 lines

  1. use ExtUtils::MakeMaker;
  2. use Config;
  3. WriteMakefile(
  4.     NAME     => 'Socket',
  5.     VERSION_FROM => 'Socket.pm',
  6.    ($Config{libs} =~ /(-lsocks\S*)/ ? (LIBS => [ "$1" ] ) : ()),
  7.     MAN3PODS       => {},     # Pods will be built by installman.
  8.     XSPROTOARG   => '-noprototypes',         # XXX remove later?
  9. );
  10.