diff -ruN postgresql-7.4.13-old/contrib/Makefile postgresql-7.4.13/contrib/Makefile
--- postgresql-7.4.13-old/contrib/Makefile	2004-11-01 00:25:19.367496000 +0100
+++ postgresql-7.4.13/contrib/Makefile	2004-11-01 00:25:46.184419840 +0100
@@ -25,6 +25,7 @@
 		mysql		\
 		noupdate	\
 		oid2name	\
+		oracle		\
 		pg_autovacuum	\
 		pg_dumplo	\
 		pg_logger	\
@@ -49,7 +50,6 @@
 #		ipc_check	\ (does not have a makefile)
 #		mSQL-interface	\ (requires msql installed)
 #		mac		\ (does not have a makefile)
-#		oracle		\ (does not have a makefile)
 #		pg_upgrade	\ (does not have a makefile)
 #		reindexdb	\ (does not have a makefile)
 #		start-scripts	\ (does not have a makefile)
diff -ruN postgresql-7.4.13-old/contrib/oracle/Makefile postgresql-7.4.13/contrib/oracle/Makefile
--- postgresql-7.4.13-old/contrib/oracle/Makefile	1970-01-01 01:00:00.000000000 +0100
+++ postgresql-7.4.13/contrib/oracle/Makefile	2004-11-01 00:27:41.077953368 +0100
@@ -0,0 +1,11 @@
+# oracle conversion Perl scripts
+
+subdir = contrib/oracle
+top_builddir = ../..
+include $(top_builddir)/src/Makefile.global
+
+MODULES =
+SCRIPTS = Ora2Pg.pm ora2pg.pl
+DOCS = README.ora2pg
+
+include $(top_srcdir)/contrib/contrib-global.mk
diff -ruN postgresql-7.4.13-old/contrib/oracle/ora2pg.pl postgresql-7.4.13/contrib/oracle/ora2pg.pl
--- postgresql-7.4.13-old/contrib/oracle/ora2pg.pl	2003-01-07 23:17:14.000000000 +0100
+++ postgresql-7.4.13/contrib/oracle/ora2pg.pl	2004-11-01 00:26:23.957677432 +0100
@@ -17,6 +17,10 @@
 
 use strict;
 
+# allow to put Ora2Pg.pm in the same directory as this script
+use File::Basename;
+use lib dirname($0);
+
 use Ora2Pg;
 
 # Initialyze the database connection
