diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-01-04 19:13:04 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-01-04 19:13:04 +0000 |
commit | 0aa928764a2beddb000973313214227659ce9293 (patch) | |
tree | 4e811fd4b807d5b2749dcacfad89cb99a5e2b3f4 /src/tutorial/C-code | |
parent | a65e4484da3f2548883309a7dcf70cad3570d1dd (diff) | |
download | postgresql-0aa928764a2beddb000973313214227659ce9293.tar.gz postgresql-0aa928764a2beddb000973313214227659ce9293.zip |
Various fixes NETBSD/sparc related
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
Diffstat (limited to 'src/tutorial/C-code')
-rw-r--r-- | src/tutorial/C-code/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tutorial/C-code/Makefile b/src/tutorial/C-code/Makefile index 548bfadcfe3..ec1fa1f21f5 100644 --- a/src/tutorial/C-code/Makefile +++ b/src/tutorial/C-code/Makefile @@ -3,6 +3,14 @@ include ../../Makefile.global 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) clean: |