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
b5ddfb4b
Commit
b5ddfb4b
authored
Oct 04, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Readd -DFRONTEND to client makefiles because it still affects win32.h
defines.
parent
0ac4ced0
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
12 deletions
+12
-12
src/bin/initdb/Makefile
src/bin/initdb/Makefile
+2
-2
src/bin/pg_config/Makefile
src/bin/pg_config/Makefile
+2
-2
src/bin/pg_ctl/Makefile
src/bin/pg_ctl/Makefile
+2
-2
src/bin/pg_dump/Makefile
src/bin/pg_dump/Makefile
+2
-2
src/bin/psql/Makefile
src/bin/psql/Makefile
+2
-2
src/bin/scripts/Makefile
src/bin/scripts/Makefile
+2
-2
No files found.
src/bin/initdb/Makefile
View file @
b5ddfb4b
...
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.4
5 2004/10/04 13:43:55
momjian Exp $
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.4
6 2004/10/04 18:05:53
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,7 @@ subdir = src/bin/initdb
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= -I$(libpq_srcdir) $(CPPFLAGS)
override CPPFLAGS
:
= -
DFRONTEND -
I$(libpq_srcdir) $(CPPFLAGS)
OBJS
=
initdb.o
...
...
src/bin/pg_config/Makefile
View file @
b5ddfb4b
...
...
@@ -4,7 +4,7 @@
#
# Copyright (c) 1998-2002, PostgreSQL Global Development Group
#
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.
9 2004/10/04 13:43:55
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.
10 2004/10/04 18:05:54
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -14,7 +14,7 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
pg_config.o
override CPPFLAGS
:
= -I$(libpq_srcdir) -DVAL_CONFIGURE="
\"
$(configure_args)
\"
" $(CPPFLAGS)
override CPPFLAGS
:
= -
DFRONTEND -
I$(libpq_srcdir) -DVAL_CONFIGURE="
\"
$(configure_args)
\"
" $(CPPFLAGS)
all
:
submake-libpgport pg_config
...
...
src/bin/pg_ctl/Makefile
View file @
b5ddfb4b
...
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.1
6 2004/10/04 13:43:56
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.1
7 2004/10/04 18:05:54
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,7 @@ subdir = src/bin/pg_ctl
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= -DDEF_PGPORT=$(DEF_PGPORT) -I$(libpq_srcdir) $(CPPFLAGS)
override CPPFLAGS
:
= -D
FRONTEND -D
DEF_PGPORT=$(DEF_PGPORT) -I$(libpq_srcdir) $(CPPFLAGS)
OBJS
=
pg_ctl.o
...
...
src/bin/pg_dump/Makefile
View file @
b5ddfb4b
...
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.5
3 2004/10/04 13:43:56
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.5
4 2004/10/04 18:05:54
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,7 @@ subdir = src/bin/pg_dump
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= -I$(libpq_srcdir) $(CPPFLAGS)
override CPPFLAGS
:
= -
DFRONTEND -
I$(libpq_srcdir) $(CPPFLAGS)
OBJS
=
pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o
\
pg_backup_files.o pg_backup_null.o pg_backup_tar.o
\
...
...
src/bin/psql/Makefile
View file @
b5ddfb4b
...
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.4
8 2004/10/04 13:43:57
momjian Exp $
# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.4
9 2004/10/04 18:05:55
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -15,7 +15,7 @@ include $(top_builddir)/src/Makefile.global
REFDOCDIR
=
$(top_srcdir)
/doc/src/sgml/ref
override CPPFLAGS
:
= -I$(libpq_srcdir) $(CPPFLAGS) -DFRONTEND
override CPPFLAGS
:
= -
DFRONTEND -
I$(libpq_srcdir) $(CPPFLAGS) -DFRONTEND
OBJS
=
command.o common.o help.o input.o stringutils.o mainloop.o copy.o
\
startup.o prompt.o variables.o large_obj.o print.o describe.o
\
...
...
src/bin/scripts/Makefile
View file @
b5ddfb4b
...
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.
29 2004/10/04 13:43:57
momjian Exp $
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.
30 2004/10/04 18:05:55
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -15,7 +15,7 @@ include $(top_builddir)/src/Makefile.global
PROGRAMS
=
createdb createlang createuser dropdb droplang dropuser clusterdb vacuumdb
override CPPFLAGS
:
= -I$(top_srcdir)/src/bin/pg_dump -I$(top_srcdir)/src/bin/psql -I$(libpq_srcdir) $(CPPFLAGS)
override CPPFLAGS
:
= -
DFRONTEND -
I$(top_srcdir)/src/bin/pg_dump -I$(top_srcdir)/src/bin/psql -I$(libpq_srcdir) $(CPPFLAGS)
all
:
submake-libpq submake-backend $(PROGRAMS)
...
...
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