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
0aa92876
Commit
0aa92876
authored
Jan 04, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various fixes NETBSD/sparc related
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
parent
a65e4484
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
65 additions
and
11 deletions
+65
-11
src/backend/Makefile
src/backend/Makefile
+9
-2
src/bin/pg_dump/Makefile.in
src/bin/pg_dump/Makefile.in
+9
-1
src/bin/pg_id/Makefile
src/bin/pg_id/Makefile
+9
-1
src/bin/psql/Makefile.in
src/bin/psql/Makefile.in
+9
-1
src/include/storage/s_lock.h
src/include/storage/s_lock.h
+3
-4
src/test/bench/Makefile
src/test/bench/Makefile
+9
-1
src/tutorial/C-code/Makefile
src/tutorial/C-code/Makefile
+8
-0
src/tutorial/Makefile
src/tutorial/Makefile
+9
-1
No files found.
src/backend/Makefile
View file @
0aa92876
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.
29 1997/12/20 00:22:06
scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.
30 1998/01/04 19:12:02
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -51,6 +51,14 @@ endif
...
@@ -51,6 +51,14 @@ endif
OBJS
=
$
(
DIRS:%
=
%/SUBSYS.o
)
OBJS
=
$
(
DIRS:%
=
%/SUBSYS.o
)
# kerberos flags
ifdef
KRBVERS
CFLAGS
+=
$(KRBFLAGS)
LDFLAGS
+=
$(KRBLIBS)
endif
all
:
postgres $(POSTGRES_IMP) global1.bki.source local1_template1.bki.source
\
all
:
postgres $(POSTGRES_IMP) global1.bki.source local1_template1.bki.source
\
global1.description local1_template1.description
global1.description local1_template1.description
...
@@ -121,7 +129,6 @@ install: $(LIBDIR) $(BINDIR) $(HEADERDIR) postgres $(POSTGRES_IMP) fmgr.h\
...
@@ -121,7 +129,6 @@ install: $(LIBDIR) $(BINDIR) $(HEADERDIR) postgres $(POSTGRES_IMP) fmgr.h\
global1.bki.source local1_template1.bki.source
\
global1.bki.source local1_template1.bki.source
\
global1.description local1_template1.description
\
global1.description local1_template1.description
\
libpq/pg_hba.conf.sample optimizer/geqo/pg_geqo.sample
libpq/pg_hba.conf.sample optimizer/geqo/pg_geqo.sample
$(INSTALL)
$(INSTL_EXE_OPTS)
postgres
$(BINDIR)
/postgres
$(INSTALL)
$(INSTL_EXE_OPTS)
postgres
$(BINDIR)
/postgres
ifeq
($(MAKE_EXPORTS), true)
ifeq
($(MAKE_EXPORTS), true)
$(INSTALL)
$(INSTLOPTS)
$(POSTGRES_IMP)
$(LIBDIR)
/
$(POSTGRES_IMP)
$(INSTALL)
$(INSTLOPTS)
$(POSTGRES_IMP)
$(LIBDIR)
/
$(POSTGRES_IMP)
...
...
src/bin/pg_dump/Makefile.in
View file @
0aa92876
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.
4 1997/04/26 06:13:31
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.
5 1998/01/04 19:12:06
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -18,6 +18,14 @@ OBJS= pg_dump.o common.o @STRDUP@
...
@@ -18,6 +18,14 @@ OBJS= pg_dump.o common.o @STRDUP@
CFLAGS
+=
-I
$(LIBPQDIR)
CFLAGS
+=
-I
$(LIBPQDIR)
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
all
:
submake pg_dump
all
:
submake pg_dump
pg_dump
:
$(OBJS) $(LIBPQDIR)/libpq.a
pg_dump
:
$(OBJS) $(LIBPQDIR)/libpq.a
...
...
src/bin/pg_id/Makefile
View file @
0aa92876
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/Makefile,v 1.
6 1997/04/26 05:05:20
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/Makefile,v 1.
7 1998/01/04 19:12:11
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,6 +16,14 @@ include ../../Makefile.global
...
@@ -16,6 +16,14 @@ include ../../Makefile.global
OBJS
=
pg_id.o
OBJS
=
pg_id.o
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
all
:
pg_id
all
:
pg_id
pg_id
:
$(OBJS) $(LIBPQDIR)/libpq.a
pg_id
:
$(OBJS) $(LIBPQDIR)/libpq.a
...
...
src/bin/psql/Makefile.in
View file @
0aa92876
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.
5 1997/04/26 05:06:40
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.
6 1998/01/04 19:12:21
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,6 +16,14 @@ include ../../Makefile.global
...
@@ -16,6 +16,14 @@ include ../../Makefile.global
CFLAGS
+=
-I
$(LIBPQDIR)
CFLAGS
+=
-I
$(LIBPQDIR)
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
OBJS
=
psql.o stringutils.o @STRDUP@
OBJS
=
psql.o stringutils.o @STRDUP@
all
:
submake psql
all
:
submake psql
...
...
src/include/storage/s_lock.h
View file @
0aa92876
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.1
4 1997/12/30 04:01:2
8 scrappy Exp $
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.1
5 1998/01/04 19:12:3
8 scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -241,12 +241,11 @@ tas_dummy()
...
@@ -241,12 +241,11 @@ tas_dummy()
static
int
tas
(
slock_t
*
lock
);
static
int
tas
(
slock_t
*
lock
);
static
int
static
void
tas_dummy
()
tas_dummy
()
{
{
asm
(
".seg
\"
data
\"
"
);
asm
(
".seg
\"
data
\"
"
);
asm
(
".seg
\"
text
\"
"
);
asm
(
".seg
\"
text
\"
"
);
asm
(
".global _tas"
);
asm
(
"_tas:"
);
asm
(
"_tas:"
);
/*
/*
...
@@ -321,7 +320,7 @@ void S_LOCK(slock_t* lock);
...
@@ -321,7 +320,7 @@ void S_LOCK(slock_t* lock);
#endif
/* defined(__alpha__) && defined(linux) */
#endif
/* defined(__alpha__) && defined(linux) */
#if
(defined(linux) || defined(__NetBSD__)
) && defined(sparc)
#if
defined(linux
) && defined(sparc)
#define S_LOCK(lock) do \
#define S_LOCK(lock) do \
{ \
{ \
...
...
src/test/bench/Makefile
View file @
0aa92876
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/test/bench/Attic/Makefile,v 1.
4 1997/07/28 23:57:20 momjian
Exp $
# $Header: /cvsroot/pgsql/src/test/bench/Attic/Makefile,v 1.
5 1998/01/04 19:12:48 scrappy
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -19,6 +19,14 @@ OUTFILES= bench.out bench.out.perquery
...
@@ -19,6 +19,14 @@ OUTFILES= bench.out bench.out.perquery
CFLAGS
+=
-I
$(LIBPQDIR)
$(CFLAGS_SL)
CFLAGS
+=
-I
$(LIBPQDIR)
$(CFLAGS_SL)
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
all
:
$(CREATEFILES)
all
:
$(CREATEFILES)
rm
-f
$(OUTFILES)
rm
-f
$(OUTFILES)
...
...
src/tutorial/C-code/Makefile
View file @
0aa92876
...
@@ -3,6 +3,14 @@ include ../../Makefile.global
...
@@ -3,6 +3,14 @@ include ../../Makefile.global
CFLAGS
+=
-I
../../include
-I
$(LIBPQDIR)
CFLAGS
+=
-I
../../include
-I
$(LIBPQDIR)
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
all
:
complex$(DLSUFFIX) funcs$(DLSUFFIX)
all
:
complex$(DLSUFFIX) funcs$(DLSUFFIX)
clean
:
clean
:
...
...
src/tutorial/Makefile
View file @
0aa92876
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for tutorial
# Makefile for tutorial
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.
5 1997/01/05 21:17:45 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.
6 1998/01/04 19:12:55 scrappy
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -13,6 +13,14 @@ include ../Makefile.global
...
@@ -13,6 +13,14 @@ include ../Makefile.global
CFLAGS
+=
-I
$(LIBPQDIR)
-I
../../include
CFLAGS
+=
-I
$(LIBPQDIR)
-I
../../include
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef
KRBVERS
LDFLAGS
+=
$(KRBLIBS)
CFLAGS
+=
$(KRBFLAGS)
endif
#
#
# DLOBJS is the dynamically-loaded object files. The "funcs" queries
# DLOBJS is the dynamically-loaded object files. The "funcs" queries
# include CREATE FUNCTIONs that load routines from these files.
# include CREATE FUNCTIONs that load routines from these files.
...
...
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