From: Kern Sibbald Date: Thu, 4 Oct 2007 15:01:59 +0000 (+0000) Subject: Correct lib/Makefile.in to include enh_fnmatch.o that was removed X-Git-Tag: Release-2.2.5~12 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e2431683188b59808b6418098baeec179cda65c2;p=bacula%2Fbacula Correct lib/Makefile.in to include enh_fnmatch.o that was removed in back porting from 2.3.x git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.2@5721 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/lib/Makefile.in b/bacula/src/lib/Makefile.in index c32085f460..0e53207d73 100644 --- a/bacula/src/lib/Makefile.in +++ b/bacula/src/lib/Makefile.in @@ -22,7 +22,8 @@ dummy: LIBSRCS = attr.c base64.c berrno.c bsys.c bget_msg.c \ bnet.c bnet_server.c runscript.c \ bsock.c bpipe.c bsnprintf.c btime.c \ - cram-md5.c crc32.c crypto.c daemon.c edit.c fnmatch.c \ + cram-md5.c crc32.c crypto.c daemon.c edit.c \ + enh_fnmatch.c fnmatch.c \ guid_to_name.c hmac.c jcr.c lex.c alist.c dlist.c \ md5.c message.c mem_pool.c openssl.c parse_conf.c \ queue.c bregex.c \ @@ -35,7 +36,8 @@ LIBSRCS = attr.c base64.c berrno.c bsys.c bget_msg.c \ LIBOBJS = attr.o base64.o berrno.o bsys.o bget_msg.o \ bnet.o bnet_server.o runscript.o \ bsock.o bpipe.o bsnprintf.o btime.o \ - cram-md5.o crc32.o crypto.o daemon.o edit.o fnmatch.o \ + cram-md5.o crc32.o crypto.o daemon.o edit.o \ + enh_fnmatch.o fnmatch.o \ guid_to_name.o hmac.o jcr.o lex.o alist.o dlist.o \ md5.o message.o mem_pool.o openssl.o parse_conf.o \ queue.o bregex.o \ diff --git a/bacula/src/version.h b/bacula/src/version.h index 5a707861db..58ac0e4d1a 100644 --- a/bacula/src/version.h +++ b/bacula/src/version.h @@ -4,8 +4,8 @@ #undef VERSION #define VERSION "2.2.5" -#define BDATE "03 October 2007" -#define LSMDATE "03Oct07" +#define BDATE "04 October 2007" +#define LSMDATE "04Oct07" #define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n" #define BYEAR "2007" /* year for copyright messages in progs */ diff --git a/bacula/technotes-2.1 b/bacula/technotes-2.1 index f5d4aac55d..025c71c751 100644 --- a/bacula/technotes-2.1 +++ b/bacula/technotes-2.1 @@ -1,6 +1,9 @@ Technical notes on version 2.2 General: +04Oct07 +kes Correct lib/Makefile.in to include enh_fnmatch.o that was removed + in back porting from 2.3.x 03Oct07 kes Backport almost 4000 lines of 2.3 code that fixes a number of bugs. The details are included in the notes in this file.