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
953ac7b5
Commit
953ac7b5
authored
Apr 15, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up the -Wno-error problem for non-gcc compilers
Pointed out by many many ppl
parent
a69c5fc8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
6 deletions
+20
-6
src/backend/bootstrap/Makefile
src/backend/bootstrap/Makefile
+6
-2
src/backend/optimizer/geqo/Makefile
src/backend/optimizer/geqo/Makefile
+7
-2
src/backend/parser/Makefile
src/backend/parser/Makefile
+7
-2
No files found.
src/backend/bootstrap/Makefile
View file @
953ac7b5
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for the bootstrap module
# Makefile for the bootstrap module
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.
6 1997/04/04 10:38:58
scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.
7 1997/04/15 17:24:07
scrappy Exp $
#
#
#
#
# We must build bootparse.c and bootscanner.c with yacc and lex and sed,
# We must build bootparse.c and bootscanner.c with yacc and lex and sed,
...
@@ -25,7 +25,11 @@ INCLUDE_OPT= -I.. \
...
@@ -25,7 +25,11 @@ INCLUDE_OPT= -I.. \
-I
../port/
$(PORTNAME)
\
-I
../port/
$(PORTNAME)
\
-I
../../include
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
-Wno-error
CFLAGS
+=
$(INCLUDE_OPT)
ifeq
($CC), gcc)
CFLAGS
+=
-Wno-error
endif
BOOTYACCS
=
bootstrap_tokens.h bootparse.c
BOOTYACCS
=
bootstrap_tokens.h bootparse.c
...
...
src/backend/optimizer/geqo/Makefile
View file @
953ac7b5
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
#
#
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# $Id: Makefile,v 1.
5 1997/04/04 10:39:50
scrappy Exp $
# $Id: Makefile,v 1.
6 1997/04/15 17:24:17
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,7 +16,12 @@ INCLUDE_OPT = -I../.. \
...
@@ -16,7 +16,12 @@ INCLUDE_OPT = -I../.. \
-I
../../port/
$(PORTNAME)
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
-Wno-error
CFLAGS
+=
$(INCLUDE_OPT)
ifeq
($CC), gcc)
CFLAGS
+=
-Wno-error
endif
OBJS
=
geqo_copy.o geqo_eval.o geqo_main.o geqo_misc.o
\
OBJS
=
geqo_copy.o geqo_eval.o geqo_main.o geqo_misc.o
\
geqo_params.o geqo_paths.o geqo_pool.o geqo_recombination.o
\
geqo_params.o geqo_paths.o geqo_pool.o geqo_recombination.o
\
...
...
src/backend/parser/Makefile
View file @
953ac7b5
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for parser
# Makefile for parser
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.
6 1997/04/04 10:40:11
scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.
7 1997/04/15 17:24:26
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,7 +15,12 @@ INCLUDE_OPT= -I.. \
...
@@ -15,7 +15,12 @@ INCLUDE_OPT= -I.. \
-I
../port/
$(PORTNAME)
\
-I
../port/
$(PORTNAME)
\
-I
../../include
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
-Wno-error
CFLAGS
+=
$(INCLUDE_OPT)
ifeq
($CC), gcc)
CFLAGS
+=
-Wno-error
endif
OBJS
=
analyze.o catalog_utils.o dbcommands.o gram.o
\
OBJS
=
analyze.o catalog_utils.o dbcommands.o gram.o
\
keywords.o parser.o parse_query.o scan.o scansup.o sysfunc.o
keywords.o parser.o parse_query.o scan.o scansup.o sysfunc.o
...
...
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