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
bd2d0983
Commit
bd2d0983
authored
Mar 02, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch for Irix from Mark Dalphin.
parent
c75adac7
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
10 deletions
+12
-10
src/interfaces/libpq++/examples/Makefile
src/interfaces/libpq++/examples/Makefile
+2
-1
src/interfaces/libpq++/examples/testlibpq1.cc
src/interfaces/libpq++/examples/testlibpq1.cc
+1
-1
src/interfaces/libpq++/examples/testlibpq2.cc
src/interfaces/libpq++/examples/testlibpq2.cc
+1
-1
src/interfaces/libpq++/examples/testlibpq3.cc
src/interfaces/libpq++/examples/testlibpq3.cc
+1
-1
src/interfaces/libpq++/libpq++.h
src/interfaces/libpq++/libpq++.h
+2
-1
src/interfaces/libpq++/pgconnection.h
src/interfaces/libpq++/pgconnection.h
+2
-1
src/interfaces/odbc/GNUmakefile.in
src/interfaces/odbc/GNUmakefile.in
+2
-2
src/makefiles/Makefile.irix5
src/makefiles/Makefile.irix5
+1
-2
No files found.
src/interfaces/libpq++/examples/Makefile
View file @
bd2d0983
...
...
@@ -12,7 +12,8 @@ LIBPQDIR= /usr/local/pgsql/lib
# 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
-Wno-unused
-Wl
,-Bdynamic
#CXXFLAGS= $(CFLAGS) -Wno-error -Wno-unused -Wl,-Bdynamic
CXXFLAGS
=
$(CFLAGS)
INCLUDE_OPT
=
-I
$(HEADERDIR)
...
...
src/interfaces/libpq++/examples/testlibpq1.cc
View file @
bd2d0983
...
...
@@ -51,7 +51,7 @@ int main()
cout
<<
endl
<<
endl
;
// next, print out the instances
for
(
i
nt
i
=
0
;
i
<
data
.
Tuples
();
i
++
)
{
for
(
i
=
0
;
i
<
data
.
Tuples
();
i
++
)
{
for
(
int
j
=
0
;
j
<
nFields
;
j
++
)
cout
<<
setiosflags
(
ios
::
right
)
<<
setw
(
15
)
<<
data
.
GetValue
(
i
,
j
);
cout
<<
endl
;
...
...
src/interfaces/libpq++/examples/testlibpq2.cc
View file @
bd2d0983
...
...
@@ -45,7 +45,7 @@ int main()
cout
<<
endl
<<
endl
;
// next, print out the instances
for
(
int
i
=
0
;
i
<
data
.
Tuples
();
i
++
)
{
for
(
i
=
0
;
i
<
data
.
Tuples
();
i
++
)
{
for
(
int
j
=
0
;
j
<
nFields
;
j
++
)
cout
<<
setiosflags
(
ios
::
right
)
<<
setw
(
15
)
<<
data
.
GetValue
(
i
,
j
);
cout
<<
endl
;
...
...
src/interfaces/libpq++/examples/testlibpq3.cc
View file @
bd2d0983
...
...
@@ -48,7 +48,7 @@ int main()
cout
<<
endl
<<
endl
;
// next, print out the instances
for
(
int
i
=
0
;
i
<
cData
.
Tuples
();
i
++
)
{
for
(
i
=
0
;
i
<
cData
.
Tuples
();
i
++
)
{
for
(
int
j
=
0
;
j
<
nFields
;
j
++
)
cout
<<
setiosflags
(
ios
::
right
)
<<
setw
(
15
)
<<
cData
.
GetValue
(
i
,
j
);
cout
<<
endl
;
...
...
src/interfaces/libpq++/libpq++.h
View file @
bd2d0983
...
...
@@ -31,8 +31,9 @@ extern "C" {
#include "libpq-fe.h"
}
static
char
rcsid
[]
=
"$Id: libpq++.h,v 1.
5 2000/01/26 05:58:47
momjian Exp $"
;
static
char
rcsid
[]
=
"$Id: libpq++.h,v 1.
6 2000/03/02 02:00:58
momjian Exp $"
;
using
namespace
std
;
// ****************************************************************
//
...
...
src/interfaces/libpq++/pgconnection.h
View file @
bd2d0983
...
...
@@ -13,7 +13,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pgconnection.h,v 1.
3 2000/01/26 05:58:47
momjian Exp $
* $Id: pgconnection.h,v 1.
4 2000/03/02 02:00:58
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -28,6 +28,7 @@ extern "C" {
#include "libpq-fe.h"
}
using
namespace
std
;
// ****************************************************************
//
...
...
src/interfaces/odbc/GNUmakefile.in
View file @
bd2d0983
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile.in,v 1.1
1 1999/06/30 23:57:29 tgl
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile.in,v 1.1
2 2000/03/02 02:01:00 momjian
Exp $
#
#-------------------------------------------------------------------------
@SET_MAKE@
...
...
@@ -37,7 +37,7 @@ OBJS = info.o bind.o columninfo.o connection.o convert.o drvconn.o \
pgtypes.o psqlodbc.o qresult.o results.o socket.o parse.o statement.o \
gpps.o tuple.o tuplelist.o dlg_specific.o $(OBJX)
SHLIB_LINK= $(L
IB
S)
SHLIB_LINK= $(L
D_FLAG
S)
# Shared library stuff, also default 'all' target
include $(SRCDIR)/Makefile.shlib
...
...
src/makefiles/Makefile.irix5
View file @
bd2d0983
...
...
@@ -6,5 +6,4 @@ MK_NO_LORDER= true
%.so
:
%.o
$(LD)
-G
-Bdynamic
-shared
-o
$@
$<
CFLAGS
+=
-U_NO_XOPEN4
CFLAGS
+=
-U_NO_XOPEN4
-woff
1164,1171,1185,1195,1552
-Wl
,-woff,15
-Wl
,-woff,84
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