Kern Sibbald wrote:

> You probably mixed the trunk and the Branch code.  You must explicitly 
> checkout a new copy of the Branch into a clean directory, or do an "svn 
> update" on a directory that was originally checked out from the branch.  If 
> you checkout into a directory that was previously used for the trunk, you 
> will probably have some bizarre mixture ...
> 
> My local copy seems of the branch seems to be perfectly valid and does 
> contain 
> a copy of enh_fnmatch.c (deleted in trunk).  However, over the next few 
> hours, I will check out a fresh copy just to be sure.

Found the glitch!  I did check out a fresh copy of the 2.2 branch, and it does
indeed include enh_fnmatch.c; however, the file is not referenced in the
Makefile.  The attached fixes compilation for me.

And now to run the actual regression tests...

-- 
Frank Sweetser fs at wpi.edu  |  For every problem, there is a solution that
WPI Senior Network Engineer   |  is simple, elegant, and wrong. - HL Mencken
    GPG fingerprint = 6174 1257 129E 0D21 D8D4  E8A3 8E39 29E3 E2E8 8CEC
Index: src/lib/Makefile.in
===================================================================
--- src/lib/Makefile.in (revision 5720)
+++ src/lib/Makefile.in (working copy)
@@ -29,7 +29,7 @@
          res.c rwlock.c scan.c serial.c sha1.c \
          signal.c smartall.c rblist.c tls.c tree.c \
          util.c var.c watchdog.c workq.c btimers.c \
-         address_conf.c pythonlib.c breg.c
+         address_conf.c pythonlib.c breg.c enh_fnmatch.c
 
 
 LIBOBJS = attr.o base64.o berrno.o bsys.o bget_msg.o \
@@ -42,7 +42,7 @@
          res.o rwlock.o scan.o serial.o sha1.o \
          signal.o smartall.o rblist.o tls.o tree.o \
          util.o var.o watchdog.o workq.o btimers.o \
-         address_conf.o pythonlib.o breg.o
+         address_conf.o pythonlib.o breg.o enh_fnmatch.o
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Bacula-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bacula-devel

Reply via email to