Move the definition of DLL_DEF_FILE from windows.in to win-post.in, so that
authorTheodore Tso <tytso@mit.edu>
Tue, 23 Mar 1999 22:24:29 +0000 (22:24 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 23 Mar 1999 22:24:29 +0000 (22:24 +0000)
the base Makefile has a chance to set DLL_EXP_TYPE.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11304 dc483132-0cff-0310-8789-dd5450dbe970

src/config/win-post.in
src/config/windows.in

index a410d36314e8f73326338b7ebfa57d26be53c2d1..dbbc08301fcbcdee7c96ba26bcdd98273f2456a9 100644 (file)
@@ -3,6 +3,16 @@
 #
 all::
 
+#
+# Set the #define to indicate that we are compiling a DLL.  We default to 
+# compiling the Kerberos library
+#
+!if defined(DLL_EXP_TYPE)
+DLL_FILE_DEF=/D$(DLL_EXP_TYPE)_DLL_FILE
+!else
+DLL_FILE_DEF=/DKRB5_DLL_FILE
+!endif
+
 # Build the Makefile unless we are in the top-level
 #(where there is already an explicit rule).
 !if !defined(ZIP) && !defined(WINFILES)
index e80c9fd6fa981c37b13b3ab6d20e04f290ff3619..c2369ae5242199a96d7c0e547b23150aa499628f 100644 (file)
@@ -33,15 +33,6 @@ SRCTOP = $(srcdir)\$(BUILDTOP)
 CC=cl /nologo
 CL=
 #
-# Set the #define to indicate that we are compiling a DLL.  We default to 
-# compiling the Kerberos library
-#
-!if defined(DLL_EXP_TYPE)
-DLL_FILE_DEF=/D$(DLL_EXP_TYPE)_DLL_FILE
-!else
-DLL_FILE_DEF=/DKRB5_DLL_FILE
-!endif
-#
 # CCOPTS for DLL functions
 #
 ##WIN16##CCOPTS=/ALw /Zp /GD2s /Os /Zi /Od /W3 /Ld $(XTRA) $(DLL_FILE_DEF)