diff options
author | Bruce Momjian | 1998-10-17 03:37:04 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-10-17 03:37:04 +0000 |
commit | 4aa8376505448590c2bfa457bb3958f8b6efd680 (patch) | |
tree | b365bc45b69744b3774d47a06dba4fac331c31a9 | |
parent | 2bb38b5e2d4202f7f709997c68aecd6b4548abac (diff) |
Remove Makefile.PL.
-rw-r--r-- | src/interfaces/perl5/Makefile.PL | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/interfaces/perl5/Makefile.PL b/src/interfaces/perl5/Makefile.PL deleted file mode 100644 index 69121ecf473..00000000000 --- a/src/interfaces/perl5/Makefile.PL +++ /dev/null @@ -1,45 +0,0 @@ -# Generated automatically from Makefile.PL.in by configure. -#------------------------------------------------------- -# -# $Id: Makefile.PL,v 1.12 1998/10/17 02:36:13 momjian Exp $ -# -# Copyright (c) 1997, 1998 Edmund Mergl -# -#------------------------------------------------------- - -use ExtUtils::MakeMaker; -use Config; -use strict; - -my %opts; - -if (! $ENV{POSTGRES_HOME}) { - - my $cwd = `pwd`; - chop $cwd; - - %opts = ( - NAME => 'Pg', - VERSION_FROM => 'Pg.pm', - INC => "-I$cwd/../libpq -I$cwd/../../include", - OBJECT => "Pg\$(OBJ_EXT)", - LIBS => ["-L/usr/local/pgsql/lib -L$cwd/../libpq -lpq"], - ); - -} else { - - %opts = ( - NAME => 'Pg', - VERSION_FROM => 'Pg.pm', - INC => "-I$ENV{POSTGRES_HOME}/include", - OBJECT => "Pg\$(OBJ_EXT)", - LIBS => ["-L$ENV{POSTGRES_HOME}/lib -lpq"], - ); -} - - -WriteMakefile(%opts); - -exit(0); - -# end of Makefile.PL |