]> git.sur5r.net Git - bacula/bacula/commitdiff
- Work on getting wx-console building on MinGW. wxWidgets now builds
authorKern Sibbald <kern@sibbald.com>
Mon, 1 May 2006 08:18:44 +0000 (08:18 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 1 May 2006 08:18:44 +0000 (08:18 +0000)
  started adding Makefile ...
- Moved MinGW library objects to src/win32/lib to reduce clutter.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@2991 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/kes-1.39
bacula/src/lib/alloc.c
bacula/src/version.h

index c3f8eb10f0eef4e49b69622a25dec8156c7b64bd..49fd0bdd2939d90a1c7a215be53cc8a4c293cc5b 100644 (file)
@@ -2,8 +2,13 @@
                         Kern Sibbald
 
 General:
+01Ma06
+- Work on getting wx-console building on MinGW. wxWidgets now builds
+  started adding Makefile ...
+- Moved MinGW library objects to src/win32/lib to reduce clutter.
 30Apr06
 - Reloading a bad configuration file doesn't kill director any more.
+  Thanks to fix from Eric Bollengier.
 29Apr06
 - Fix problem of accents with new Win32 code.
 - Integrate Howard's VSS patch. Tweak it a bit. VSS now
index 8de592cf1dc4ec5f49549dfff2125ab192904358..ae48a615a1f5c030042311bb0f2ee8f8575231be 100644 (file)
@@ -1,27 +1,22 @@
 /*
 
-       Error checking memory allocator
+        Error checking memory allocator
 
      Version $Id$
 */
 
 /*
-   Copyright (C) 2000-2004 Kern Sibbald and John Walker
+   Copyright (C) 2000-2006 Kern Sibbald
 
    This program is free software; you can redistribute it and/or
-   modify it under the terms of the GNU General Public License as
-   published by the Free Software Foundation; either version 2 of
-   the License, or (at your option) any later version.
+   modify it under the terms of the GNU General Public License
+   version 2 as amended with additional clauses defined in the
+   file LICENSE in the main source directory.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-   General Public License for more details.
-
-   You should have received a copy of the GNU General Public
-   License along with this program; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-   MA 02111-1307, USA.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
+   the file LICENSE for additional details.
 
  */
 
@@ -37,7 +32,7 @@
 
 /*LINTLIBRARY*/
 
-#define V       (void)
+#define V        (void)
 
 #ifdef SMARTALLOC
 
@@ -47,16 +42,16 @@ extern void *sm_malloc();
 
 void *sm_alloc(char *fname, int lineno, unsigned int nbytes)
 {
-       void *buf;
-
-       if ((buf = sm_malloc(fname, lineno, nbytes)) != NULL) {
-          return buf;
-       }
-       V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
-       V fprintf(stderr, "  Requested %u bytes at line %d of %s.\n",
-          nbytes, lineno, fname);
-       abort();
-       /*NOTREACHED*/
+   void *buf;
+
+   if ((buf = sm_malloc(fname, lineno, nbytes)) != NULL) {
+      return buf;
+   }
+   V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
+   V fprintf(stderr, "  Requested %u bytes at line %d of %s.\n",
+      nbytes, lineno, fname);
+   abort();
+   /*NOTREACHED*/
 }
 #else
 
@@ -64,15 +59,15 @@ void *sm_alloc(char *fname, int lineno, unsigned int nbytes)
 
 void *alloc(unsigned int nbytes)
 {
-       void *buf;
-
-       if ((buf = malloc(nbytes)) != NULL) {
-          return buf;
-       }
-       V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
-       V fprintf(stderr, "  Requested %u bytes.\n", nbytes);
-       abort();
-       /*NOTREACHED*/
+   void *buf;
+
+   if ((buf = malloc(nbytes)) != NULL) {
+      return buf;
+   }
+   V fprintf(stderr, "\nBoom!!!  Memory capacity exceeded.\n");
+   V fprintf(stderr, "  Requested %u bytes.\n", nbytes);
+   abort();
+   /*NOTREACHED*/
 }
 #endif
 #endif
index 3f7d9def04a3ae9c7260d55658bec4f1c015701b..5da1b34b88cca9b518f7fa728fb59ede11b77a8d 100644 (file)
@@ -4,8 +4,8 @@
 
 #undef  VERSION
 #define VERSION "1.39.10"
-#define BDATE   "29 April 2006"
-#define LSMDATE "29Apr06"
+#define BDATE   "01 May 2006"
+#define LSMDATE "01May06"
 
 /* Debug flags */
 #undef  DEBUG