]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Tweak code to compile win64 version with mingw
authorEric Bollengier <eric@eb.homelinux.org>
Mon, 23 Mar 2009 08:56:20 +0000 (08:56 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 23 Mar 2009 08:56:20 +0000 (08:56 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8584 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/baconfig.h
bacula/src/bc_types.h
bacula/technotes-2.5

index f7d2327b01f44cc3859785be298fda5188c27ce4..c341826e7c6a3784d2ddeb5761aedc8549767fa5 100644 (file)
 #define TRUE  1
 #define FALSE 0
 
-#ifndef MAX
-#define MAX(a, b) ((a) > (b) ? (a) : (b))
-#endif
-#ifndef MIN
-#define MIN(a, b) ((a) < (b) ? (a) : (b))
-#endif
-
 #ifdef HAVE_TLS
 #define have_tls 1
 #else
index 4a7c30de5393fc38782454df0f9b17302245dd9b..bd08067dd67121186cd968f66c37b40db82ecc48 100644 (file)
@@ -247,5 +247,11 @@ enum {
    CF_CREATED                         /* file created, no data to extract */
 };
 
+#ifndef MAX
+#define MAX(a, b) ((a) > (b) ? (a) : (b))
+#endif
+#ifndef MIN
+#define MIN(a, b) ((a) < (b) ? (a) : (b))
+#endif
 
 #endif /* __bc_types_INCLUDED */
index f61d1f36287260eae2e686312710da4ad12e502f..05e49296e4f65520875e475441dc2b05ecb964fa 100644 (file)
@@ -49,6 +49,8 @@ Code to be completed before 3.0.0 is released:
 
 
 General:
+23Mar09
+ebl  Tweak code to compile win64 version with mingw
 21Mar09
 Kes  Attempt to correct timing problems with starting bat and obtaining
      lists. Maintain in_command counter to know when a list is coming.