e94d5d7b38
Add ldb_module_error() routine Fedora: work around unreliable configure check for pytevent Drop patch to ignore --disable-silent-rules (included in tarball)
14 lines
726 B
Diff
14 lines
726 B
Diff
diff -ruN ldb-1.1.4.orig/buildtools/wafsamba/samba_bundled.py ldb-1.1.4/buildtools/wafsamba/samba_bundled.py
|
|
--- ldb-1.1.4.orig/buildtools/wafsamba/samba_bundled.py 2011-11-14 12:01:10.000000000 -0500
|
|
+++ ldb-1.1.4/buildtools/wafsamba/samba_bundled.py 2011-12-07 07:33:40.685193659 -0500
|
|
@@ -228,7 +228,8 @@
|
|
try:
|
|
version = m.__version__
|
|
except AttributeError:
|
|
- found = False
|
|
+ Logs.warn('WARNING: Could not determine if %s is of version %s or later. Assuming it is.' % (libname, minversion))
|
|
+ found = True
|
|
else:
|
|
found = tuple(version.split(".")) >= tuple(minversion.split("."))
|
|
if not found and not conf.LIB_MAY_BE_BUNDLED(libname):
|