summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/lib/basic.mk2
-rw-r--r--source4/lib/socket/config.mk2
-rw-r--r--source4/lib/util/config.mk13
-rw-r--r--source4/lib/util/ms_fnmatch.c2
4 files changed, 13 insertions, 6 deletions
diff --git a/source4/lib/basic.mk b/source4/lib/basic.mk
index 51ca3378a2..fef6077a99 100644
--- a/source4/lib/basic.mk
+++ b/source4/lib/basic.mk
@@ -66,5 +66,3 @@ OBJ_FILES = \
OBJ_FILES = db_wrap.o \
gendb.o
REQUIRED_SUBSYSTEMS = LIBLDB LIBTDB
-
-
diff --git a/source4/lib/socket/config.mk b/source4/lib/socket/config.mk
index c76c91ba8c..e9f29b0790 100644
--- a/source4/lib/socket/config.mk
+++ b/source4/lib/socket/config.mk
@@ -44,6 +44,6 @@ OBJ_FILES = \
connect_multi.o \
connect.o
NOPROTO=YES
-REQUIRED_SUBSYSTEMS = LIBCLI_RESOLVE
+REQUIRED_SUBSYSTEMS = LIBCLI_RESOLVE SOCKET_WRAPPER LIBTALLOC
# End SUBSYSTEM SOCKET
################################################
diff --git a/source4/lib/util/config.mk b/source4/lib/util/config.mk
index 79e145775d..81614ed647 100644
--- a/source4/lib/util/config.mk
+++ b/source4/lib/util/config.mk
@@ -1,6 +1,15 @@
-[SUBSYSTEM::LIBBASIC]
+[LIBRARY::LIBBASIC]
+MAJOR_VERSION = 0
+MINOR_VERSION = 0
+RELEASE_VERSION = 1
+DESCRIPTION = Generic utility functions
PRIVATE_PROTO_HEADER = util_proto.h
-PUBLIC_HEADERS = util.h
+PUBLIC_HEADERS = util.h \
+ byteorder.h \
+ debug.h \
+ mutex.h \
+ safe_string.h \
+ xfile.h
OBJ_FILES = xfile.o \
debug.o \
fault.o \
diff --git a/source4/lib/util/ms_fnmatch.c b/source4/lib/util/ms_fnmatch.c
index 699341bede..d44c8b87da 100644
--- a/source4/lib/util/ms_fnmatch.c
+++ b/source4/lib/util/ms_fnmatch.c
@@ -161,7 +161,7 @@ int ms_fnmatch(const char *pattern, const char *string, enum protocol_types prot
}
if (strpbrk(pattern, "<>*?\"") == NULL) {
- /* this is not just an optmisation - it is essential
+ /* this is not just an optimisation - it is essential
for LANMAN1 correctness */
return strcasecmp_m(pattern, string);
}