From 4aa8376505448590c2bfa457bb3958f8b6efd680 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Sat, 17 Oct 1998 03:37:04 +0000
Subject: [PATCH] Remove Makefile.PL.

---
 src/interfaces/perl5/Makefile.PL | 45 --------------------------------
 1 file changed, 45 deletions(-)
 delete mode 100644 src/interfaces/perl5/Makefile.PL

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
-- 
GitLab