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
e780f0fe
Commit
e780f0fe
authored
Nov 18, 1996
by
Bryan Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore compiler warnings, because we can't escape "abstract declarator used
as declaration".
parent
529189f4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
src/interfaces/libpq++/Makefile
src/interfaces/libpq++/Makefile
+6
-2
src/interfaces/libpq++/pgenv.cc
src/interfaces/libpq++/pgenv.cc
+2
-4
No files found.
src/interfaces/libpq++/Makefile
View file @
e780f0fe
...
@@ -7,14 +7,18 @@
...
@@ -7,14 +7,18 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.
4 1996/11/14 10:25
:54 bryanh Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.
5 1996/11/18 01:43
:54 bryanh Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
SRCDIR
=
..
SRCDIR
=
..
include
../Makefile.global
include
../Makefile.global
CXXFLAGS
=
$(CFLAGS)
# We have to override -Werror, which makes warnings, fatal, because we
# inevitably get the warning, "abstract declarator used as declaration"
# because of our inclusion of c.h and we don't know how to stop that.
CXXFLAGS
=
$(CFLAGS)
-Wno-error
INCLUDE_OPT
=
\
INCLUDE_OPT
=
\
-I
../backend
\
-I
../backend
\
...
...
src/interfaces/libpq++/pgenv.cc
View file @
e780f0fe
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgenv.cc,v 1.
1.1.1 1996/07/09 06:22:18 scrappy
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgenv.cc,v 1.
2 1996/11/18 01:43:55 bryanh
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -23,14 +23,12 @@
...
@@ -23,14 +23,12 @@
#include "libpq++.H"
#include "libpq++.H"
#define DefaultAuth DEFAULT_CLIENT_AUTHSVC
#define DefaultAuth DEFAULT_CLIENT_AUTHSVC
#define DefaultPort
POSTPORT
#define DefaultPort
"5432"
// default constructor for PGenv
// default constructor for PGenv
// checks the environment variables
// checks the environment variables
PGenv
::
PGenv
()
PGenv
::
PGenv
()
{
{
char
*
temp
;
pgauth
=
NULL
;
pgauth
=
NULL
;
pghost
=
NULL
;
pghost
=
NULL
;
pgport
=
NULL
;
pgport
=
NULL
;
...
...
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