File tree Expand file tree Collapse file tree 8 files changed +65
-11
lines changed Expand file tree Collapse file tree 8 files changed +65
-11
lines changed Original file line number Diff line number Diff line change 34
34
#
35
35
#
36
36
# IDENTIFICATION
37
- # $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.29 1997/12/20 00:22:06 scrappy Exp $
37
+ # $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.30 1998/01/04 19:12:02 scrappy Exp $
38
38
#
39
39
# -------------------------------------------------------------------------
40
40
51
51
52
52
OBJS = $(DIRS:%=%/SUBSYS.o )
53
53
54
+ # kerberos flags
55
+
56
+ ifdef KRBVERS
57
+ CFLAGS+ = $(KRBFLAGS )
58
+ LDFLAGS+ = $(KRBLIBS )
59
+ endif
60
+
61
+
54
62
all : postgres $(POSTGRES_IMP ) global1.bki.source local1_template1.bki.source \
55
63
global1.description local1_template1.description
56
64
@@ -121,7 +129,6 @@ install: $(LIBDIR) $(BINDIR) $(HEADERDIR) postgres $(POSTGRES_IMP) fmgr.h\
121
129
global1.bki.source local1_template1.bki.source \
122
130
global1.description local1_template1.description \
123
131
libpq/pg_hba.conf.sample optimizer/geqo/pg_geqo.sample
124
-
125
132
$(INSTALL) $(INSTL_EXE_OPTS) postgres $(BINDIR)/postgres
126
133
ifeq ($(MAKE_EXPORTS ) , true)
127
134
$(INSTALL) $(INSTLOPTS) $(POSTGRES_IMP) $(LIBDIR)/$(POSTGRES_IMP)
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.4 1997/04/26 06:13:31 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.5 1998/01/04 19:12:06 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
@@ -18,6 +18,14 @@ OBJS= pg_dump.o common.o @STRDUP@
18
18
19
19
CFLAGS+ = -I$(LIBPQDIR )
20
20
21
+ #
22
+ # And where libpq goes, so goes the authentication stuff...
23
+ #
24
+ ifdef KRBVERS
25
+ LDFLAGS+ = $(KRBLIBS )
26
+ CFLAGS+ = $(KRBFLAGS )
27
+ endif
28
+
21
29
all : submake pg_dump
22
30
23
31
pg_dump : $(OBJS ) $(LIBPQDIR ) /libpq.a
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/Makefile,v 1.6 1997/04/26 05:05:20 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/Makefile,v 1.7 1998/01/04 19:12:11 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
@@ -16,6 +16,14 @@ include ../../Makefile.global
16
16
17
17
OBJS = pg_id.o
18
18
19
+ #
20
+ # And where libpq goes, so goes the authentication stuff...
21
+ #
22
+ ifdef KRBVERS
23
+ LDFLAGS+ = $(KRBLIBS )
24
+ CFLAGS+ = $(KRBFLAGS )
25
+ endif
26
+
19
27
all : pg_id
20
28
21
29
pg_id : $(OBJS ) $(LIBPQDIR ) /libpq.a
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.5 1997/04/26 05:06:40 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.6 1998/01/04 19:12:21 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
@@ -16,6 +16,14 @@ include ../../Makefile.global
16
16
17
17
CFLAGS+ = -I$(LIBPQDIR )
18
18
19
+ #
20
+ # And where libpq goes, so goes the authentication stuff...
21
+ #
22
+ ifdef KRBVERS
23
+ LDFLAGS+ = $(KRBLIBS )
24
+ CFLAGS+ = $(KRBFLAGS )
25
+ endif
26
+
19
27
OBJS = psql.o stringutils.o @STRDUP@
20
28
21
29
all : submake psql
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.14 1997/12/30 04:01:28 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.15 1998/01/04 19:12:38 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -241,12 +241,11 @@ tas_dummy()
241
241
242
242
static int tas (slock_t * lock );
243
243
244
- static int
244
+ static void
245
245
tas_dummy ()
246
246
{
247
247
asm(".seg \"data\"" );
248
248
asm(".seg \"text\"" );
249
- asm(".global _tas" );
250
249
asm("_tas:" );
251
250
252
251
/*
@@ -321,7 +320,7 @@ void S_LOCK(slock_t* lock);
321
320
322
321
#endif /* defined(__alpha__) && defined(linux) */
323
322
324
- #if ( defined(linux ) || defined( __NetBSD__ ) ) && defined(sparc )
323
+ #if defined(linux ) && defined(sparc )
325
324
326
325
#define S_LOCK (lock ) do \
327
326
{ \
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/test/bench/Attic/Makefile,v 1.4 1997/07/28 23:57:20 momjian Exp $
10
+ # $Header: /cvsroot/pgsql/src/test/bench/Attic/Makefile,v 1.5 1998/01/04 19:12:48 scrappy Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
@@ -19,6 +19,14 @@ OUTFILES= bench.out bench.out.perquery
19
19
20
20
CFLAGS+ = -I$(LIBPQDIR ) $(CFLAGS_SL )
21
21
22
+ #
23
+ # And where libpq goes, so goes the authentication stuff...
24
+ #
25
+ ifdef KRBVERS
26
+ LDFLAGS+ = $(KRBLIBS )
27
+ CFLAGS+ = $(KRBFLAGS )
28
+ endif
29
+
22
30
all : $(CREATEFILES )
23
31
rm -f $(OUTFILES )
24
32
Original file line number Diff line number Diff line change @@ -3,6 +3,14 @@ include ../../Makefile.global
3
3
4
4
CFLAGS+ = -I../../include -I$(LIBPQDIR )
5
5
6
+ #
7
+ # And where libpq goes, so goes the authentication stuff...
8
+ #
9
+ ifdef KRBVERS
10
+ LDFLAGS+ = $(KRBLIBS )
11
+ CFLAGS+ = $(KRBFLAGS )
12
+ endif
13
+
6
14
all : complex$(DLSUFFIX ) funcs$(DLSUFFIX )
7
15
8
16
clean :
Original file line number Diff line number Diff line change 4
4
# Makefile for tutorial
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.5 1997 /01/05 21:17:45 bryanh Exp $
7
+ # $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.6 1998 /01/04 19:12:55 scrappy Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
@@ -13,6 +13,14 @@ include ../Makefile.global
13
13
14
14
CFLAGS+ = -I$(LIBPQDIR ) -I../../include
15
15
16
+ #
17
+ # And where libpq goes, so goes the authentication stuff...
18
+ #
19
+ ifdef KRBVERS
20
+ LDFLAGS+ = $(KRBLIBS )
21
+ CFLAGS+ = $(KRBFLAGS )
22
+ endif
23
+
16
24
#
17
25
# DLOBJS is the dynamically-loaded object files. The "funcs" queries
18
26
# include CREATE FUNCTIONs that load routines from these files.
You can’t perform that action at this time.
0 commit comments