]> git.sur5r.net Git - bacula/bacula/commitdiff
Reduce compiler warnings for Win32 plugins + tweak bpipe-fd
authorKern Sibbald <kern@sibbald.com>
Sat, 27 Mar 2010 08:07:27 +0000 (09:07 +0100)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:49:42 +0000 (16:49 +0200)
bacula/src/win32/filed/plugins/Makefile
bacula/src/win32/filed/plugins/bpipe-fd.c

index dba4b9cab8fe3510c73ad0549f40e5bfe9099e8e..63ae13a3255067e525d3c8ec26954039fefc19c8 100644 (file)
@@ -110,7 +110,7 @@ $(BINDIR)/exchange-fd.dll: $(EXCHANGE_OBJS) exchange-fd.def
 
 $(BINDIR)/systemstate-fd.dll: DLL_DEFINE=BUILDING_DLL
 
-$(BINDIR)/systemstate-fd.dll: $(SYSTEMSTATE_OBJS) systemstate-fd.def
+$(BINDIR)/systemstate-fd.dll: $(SYSTEMSTATE_OBJS) systemstate-fd.def $(LIBS_BACULA)
        @echo "Linking $@"
        $(call checkdir,$@)
        $(ECHO_CMD)$(CXX) $(LDFLAGS) -mdll -mwindows -Wl,--out-implib,$(OBJDIR)/systemstate-fd.a $^ $(LIBS_DLL) -o $@
index be61fa3e5d731ead1ccbac736727f9e0acb05d74..b5de40486f1ca2b9dc6d336b0f235dd13dcaaefb 100644 (file)
@@ -29,6 +29,7 @@
  * A simple pipe plugin for the Bacula File Daemon
  *
  *  Kern Sibbald, October 2007
+ *    Copied into Windows plugin environment March, 2010 (KES)
  *
  */
 #include "bacula.h"
@@ -49,9 +50,9 @@ static const int dbglvl = 150;
 
 #define PLUGIN_LICENSE      "Bacula GPLv2"
 #define PLUGIN_AUTHOR       "Kern Sibbald"
-#define PLUGIN_DATE         "January 2008"
+#define PLUGIN_DATE         "January 2010"
 #define PLUGIN_VERSION      "1"
-#define PLUGIN_DESCRIPTION  "Bacula Pipe File Daemon Plugin"
+#define PLUGIN_DESCRIPTION  "Bacula Pipe Windows File Daemon Plugin"
 
 /* Forward referenced functions */
 static bRC newPlugin(bpContext *ctx);