summaryrefslogtreecommitdiff
path: root/databases/postgresql93/patches/patch-src_makefiles_Makefile.cygwin
diff options
context:
space:
mode:
Diffstat (limited to 'databases/postgresql93/patches/patch-src_makefiles_Makefile.cygwin')
-rw-r--r--databases/postgresql93/patches/patch-src_makefiles_Makefile.cygwin20
1 files changed, 0 insertions, 20 deletions
diff --git a/databases/postgresql93/patches/patch-src_makefiles_Makefile.cygwin b/databases/postgresql93/patches/patch-src_makefiles_Makefile.cygwin
deleted file mode 100644
index 9504ab2c49c..00000000000
--- a/databases/postgresql93/patches/patch-src_makefiles_Makefile.cygwin
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-src_makefiles_Makefile.cygwin,v 1.1 2013/10/04 18:23:40 joerg Exp $
-
---- src/makefiles/Makefile.cygwin.orig 2013-09-02 20:53:17.000000000 +0000
-+++ src/makefiles/Makefile.cygwin
-@@ -1,6 +1,5 @@
--# src/makefiles/Makefile.cygwin
- DLLTOOL= dlltool
--DLLWRAP= dllwrap
-+# src/makefiles/Makefile.cygwin
- ifdef PGXS
- BE_DLLLIBS= -L$(libdir) -lpostgres
- else
-@@ -44,6 +43,4 @@ endif
-
- # Rule for building a shared library from a single .o file
- %.dll: %.o
-- $(DLLTOOL) --export-all --output-def $*.def $<
-- $(DLLWRAP) -o $@ --def $*.def $< $(LDFLAGS) $(LDFLAGS_SL) $(BE_DLLLIBS)
-- rm -f $*.def
-+ $(CC) $(CFLAGS) -shared -o $@ $< $(LDFLAGS) $(LDFLAGS_SL) $(BE_DLLLIBS)