Re-arrange KRBVERS postition
authorMarc G. Fournier
Wed, 31 Jul 1996 17:19:49 +0000 (17:19 +0000)
committerMarc G. Fournier
Wed, 31 Jul 1996 17:19:49 +0000 (17:19 +0000)
Suggested by: Daniel Kalchev 

src/backend/Makefile

index 4cdc7adaf43218c2aa8605740074d8aeb2c9b559..fbde3abee0cc22528e0e5533e376073ad4fce868 100644 (file)
@@ -7,7 +7,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.1.1.1 1996/07/09 06:21:08 scrappy Exp $
+#    $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.2 1996/07/31 17:19:49 scrappy Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -93,19 +93,11 @@ ifdef EUROPEAN_DATES
 CFLAGS += -DEUROPEAN_STYLE
 endif
 
-# kerberos flags
-ifdef KRBVERS
-CFLAGS+= $(KRBFLAGS)
-LDADD+= $(KRBLIBS)
-endif
-
 # host based access flags
 ifdef HBA
 CFLAGS+= $(HBAFLAGS)
 endif
  
-
-
 #
 # All systems except NEXTSTEP require the math library.
 # Loader flags for system-dependent libraries are appended in
@@ -115,6 +107,12 @@ ifneq ($(PORTNAME), next)
 LDADD+=    -lm
 endif
 
+# kerberos flags
+ifdef KRBVERS
+CFLAGS+= $(KRBFLAGS)
+LDADD+= $(KRBLIBS)
+endif
+
 # statically link in libc for linux
 ifeq ($(PORTNAME), linux)
 LDADD+= -lc