Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0d3b8e9a
Commit
0d3b8e9a
authored
Nov 08, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow win32/cygwin link against the first matching library symbol rather
than erroring out. This is the Unix behavior.
parent
3a372d61
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
7 deletions
+10
-7
src/bin/pg_dump/Makefile
src/bin/pg_dump/Makefile
+1
-7
src/template/cygwin
src/template/cygwin
+5
-0
src/template/win32
src/template/win32
+4
-0
No files found.
src/bin/pg_dump/Makefile
View file @
0d3b8e9a
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.5
7 2004/10/07 13:45:48
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.5
8 2004/11/08 05:23:23
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -22,12 +22,6 @@ OBJS= pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o \
...
@@ -22,12 +22,6 @@ OBJS= pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o \
EXTRA_OBJS
=
$(top_builddir)
/src/backend/parser/keywords.o
EXTRA_OBJS
=
$(top_builddir)
/src/backend/parser/keywords.o
# Not sure why MinGW needs this but it prevents a link failure
# of duplicate definitions for pg_tolower(). 2004-10-06
ifeq
($(PORTNAME), win32)
EXTRA_OBJS
+=
$(top_builddir)
/src/port/exec.o
endif
all
:
submake-libpq submake-libpgport submake-backend pg_dump pg_restore pg_dumpall
all
:
submake-libpq submake-libpgport submake-backend pg_dump pg_restore pg_dumpall
pg_dump
:
pg_dump.o common.o pg_dump_sort.o $(OBJS) $(libpq_builddir)/libpq.a
pg_dump
:
pg_dump.o common.o pg_dump_sort.o $(OBJS) $(libpq_builddir)/libpq.a
...
...
src/template/cygwin
View file @
0d3b8e9a
SRCH_LIB="/usr/local/lib"
SRCH_LIB="/usr/local/lib"
# This is required to link pg_dump because it finds pg_toupper() in
# libpq and pgport
LDFLAGS="-Wl,--allow-multiple-definition"
src/template/win32
View file @
0d3b8e9a
# This is required to link pg_dump because it finds pg_toupper() in
# libpq and pgport
LDFLAGS="-Wl,--allow-multiple-definition"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment