File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.4 1996/11/14 10:25 :54 bryanh Exp $
10
+ # $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.5 1996/11/18 01:43 :54 bryanh Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
14
14
SRCDIR = ..
15
15
include ../Makefile.global
16
16
17
- CXXFLAGS = $(CFLAGS )
17
+ # We have to override -Werror, which makes warnings, fatal, because we
18
+ # inevitably get the warning, "abstract declarator used as declaration"
19
+ # because of our inclusion of c.h and we don't know how to stop that.
20
+
21
+ CXXFLAGS = $(CFLAGS ) -Wno-error
18
22
19
23
INCLUDE_OPT = \
20
24
-I../backend \
Original file line number Diff line number Diff line change 14
14
* Copyright (c) 1994, Regents of the University of California
15
15
*
16
16
* IDENTIFICATION
17
- * $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgenv.cc,v 1.1.1.1 1996/07/09 06:22:18 scrappy Exp $
17
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgenv.cc,v 1.2 1996/11/18 01:43:55 bryanh Exp $
18
18
*
19
19
*-------------------------------------------------------------------------
20
20
*/
23
23
#include " libpq++.H"
24
24
25
25
#define DefaultAuth DEFAULT_CLIENT_AUTHSVC
26
- #define DefaultPort POSTPORT
26
+ #define DefaultPort " 5432 "
27
27
28
28
// default constructor for PGenv
29
29
// checks the environment variables
30
30
PGenv::PGenv ()
31
31
{
32
- char * temp;
33
-
34
32
pgauth = NULL ;
35
33
pghost = NULL ;
36
34
pgport = NULL ;
You can’t perform that action at this time.
0 commit comments