Kern Sibbald
General:
+04Jun06
+- Modify configure.in to check for typeof().
+- Better detection of postgresql installation if pg_conf works.
+- Fix RescheduleTimes = 0 bug (should not reschedule).
+- Down port from 1.39: fixes for reload, autochanger error messages,
+ scheduler fixes for reload and day light savings change,
01Jun06
- Implement partial error messages for src/filed/acl.c
- Fix return code to fail when doing update barcodes and
26May06
- Prevent DVD code from rewriting label if the device cannot be
opened read/write.
-- Used __GNUC__ to detect GNU g++ as suggested by John Goerzen to
- fix Debian build bug.
- Fix Dir/SD run race in migrate.c, verify.c, and restore.c
- Update projects file.
24May06
$(LIBDIR)/pythonlib.o \
$(LIBDIR)/queue.o \
$(LIBDIR)/res.o \
+ $(LIBDIR)/runscript.o \
$(LIBDIR)/rwlock.o \
$(LIBDIR)/semlock.o \
$(LIBDIR)/serial.o \
$(LIBDIR)/res.o: ../lib/res.c
$(CXX) -c $< -o $@
+$(LIBDIR)/runscript.o: ../lib/runscript.c
+ $(CXX) -c $< -o $@
+
+
$(LIBDIR)/rwlock.o: ../lib/rwlock.c
$(CXX) -c $< -o $@
#define unlink win32_unlink
#define chdir win32_chdir
extern "C" void syslog(int type, const char *fmt, ...);
+
+#ifndef HAVE_MINGW
#ifndef LOG_DAEMON
#define LOG_DAEMON 0
#endif
#ifndef LOG_ERR
#define LOG_ERR 0
#endif
-
-#ifndef HAVE_MINGW
#define R_OK 04
#define W_OK 02
int stat(const char *, struct stat *);