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
041a8b37
Commit
041a8b37
authored
Oct 13, 2007
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try to fix msvc build for recent initdb changes.
parent
2ffc0e88
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
src/bin/initdb/Makefile
src/bin/initdb/Makefile
+2
-2
src/tools/msvc/Mkvcbuild.pm
src/tools/msvc/Mkvcbuild.pm
+3
-2
No files found.
src/bin/initdb/Makefile
View file @
041a8b37
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2007, 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/initdb/Makefile,v 1.5
4 2007/10/13 20:18:41
tgl Exp $
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.5
5 2007/10/13 22:55:38
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -30,7 +30,7 @@ initdb: $(OBJS)
...
@@ -30,7 +30,7 @@ initdb: $(OBJS)
encnames.c
:
% : $(top_srcdir)/src/backend/utils/mb/%
encnames.c
:
% : $(top_srcdir)/src/backend/utils/mb/%
rm
-f
$@
&&
$(LN_S)
$<
.
rm
-f
$@
&&
$(LN_S)
$<
.
pqsignal.c
:
% : $(
libpq_srcdir)
/%
pqsignal.c
:
% : $(
top_srcdir)/src/interfaces/libpq
/%
rm
-f
$@
&&
$(LN_S)
$<
.
rm
-f
$@
&&
$(LN_S)
$<
.
install
:
all installdirs
install
:
all installdirs
...
...
src/tools/msvc/Mkvcbuild.pm
View file @
041a8b37
...
@@ -3,7 +3,7 @@ package Mkvcbuild;
...
@@ -3,7 +3,7 @@ package Mkvcbuild;
#
#
# Package that generates build files for msvc build
# Package that generates build files for msvc build
#
#
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.2
1 2007/10/03 13:43:24 mha
Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.2
2 2007/10/13 22:55:38 tgl
Exp $
#
#
use
Carp
;
use
Carp
;
use
Win32
;
use
Win32
;
...
@@ -176,7 +176,8 @@ sub mkvcbuild
...
@@ -176,7 +176,8 @@ sub mkvcbuild
$pgregress_ecpg
->
AddReference
(
$libpgport
);
$pgregress_ecpg
->
AddReference
(
$libpgport
);
# src/bin
# src/bin
my
$initdb
=
AddSimpleFrontend
('
initdb
',
1
);
my
$initdb
=
AddSimpleFrontend
('
initdb
');
$initdb
->
AddIncludeDir
('
src
\
interfaces
\
libpq
');
$initdb
->
AddLibrary
('
wsock32.lib ws2_32.lib
');
$initdb
->
AddLibrary
('
wsock32.lib ws2_32.lib
');
my
$pgconfig
=
AddSimpleFrontend
('
pg_config
');
my
$pgconfig
=
AddSimpleFrontend
('
pg_config
');
...
...
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