summaryrefslogtreecommitdiff
path: root/src/interfaces/perl5/Makefile.PL
blob: 8c758c0802d21d634eb9c443492f6d0902bed75a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#-------------------------------------------------------
#
# $Id: Makefile.PL,v 1.6 1998/04/06 01:36:30 momjian Exp $
#
# Copyright (c) 1997  Edmund Mergl
#
#-------------------------------------------------------

use ExtUtils::MakeMaker;
use Config;
use strict;

print "\nConfiguring Pg\n";
print "Remember to actually read the README file !\n";
die "\nYou didn't read the README file !\n" unless ($] >= 5.002);

my %opts = (
    NAME         => 'Pg',
    VERSION_FROM => 'Pg.pm',
    INC	         =>  "-I../libpq -I../../include",
    LIBS         => ["-L../libpq -lpq"],
    CC		 => 'gcc',
);


WriteMakefile(%opts);

exit(0);

# end of Makefile.PL