o Fix possible memory leaks in the Samba master process (bug #8970). o Fix uninitialized memory read in talloc_free(). o Fix joining of XP Pro workstations to 3.6 DCs (bug #8373).
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
$OpenBSD: patch-source3_Makefile_in,v 1.2 2012/06/27 07:29:17 sthen Exp $
|
|
--- source3/Makefile.in.orig Mon Jun 25 03:21:16 2012
|
|
+++ source3/Makefile.in Tue Jun 26 12:01:27 2012
|
|
@@ -28,7 +28,7 @@ SHLD=@SHLD@
|
|
LIB_PATH_VAR=@LIB_PATH_VAR@
|
|
|
|
## Dynamic shared libraries build settings
|
|
-DSO_EXPORTS_CMD=-Wl,--version-script,$(srcdir)/exports/`basename $@ | sed 's:\.@SHLIBEXT@[\.0-9]*$$:.@SYMSEXT@:'`
|
|
+DSO_EXPORTS_CMD=-Wl,--version-script,$(srcdir)/exports/`basename $@ | sed 's/@SHLIBEXT@\(.[0-9]\{1,\}\)\{0,1\}\(.[0-9]\{1,\}\)\{0,1\}$$/@SYMSEXT@/'`
|
|
DSO_EXPORTS=@DSO_EXPORTS@
|
|
SHLD_DSO = $(SHLD) $(LDSHFLAGS) $(DSO_EXPORTS) -o $@
|
|
|
|
@@ -1675,11 +1675,7 @@ COMPILE = $(COMPILE_CC)
|
|
echo "Checking $*.c with '$(CC_CHECKER)'";\
|
|
$(CHECK_CC); \
|
|
fi
|
|
- @echo Compiling $*.c
|
|
- @$(COMPILE) && exit 0;\
|
|
- echo "The following command failed:" 1>&2;\
|
|
- echo "$(subst ",\",$(COMPILE_CC))" 1>&2;\
|
|
- $(COMPILE_CC) >/dev/null 2>&1
|
|
+ $(COMPILE)
|
|
@BROKEN_CC@ -mv `echo $@ | sed 's%^.*/%%g'` $@
|
|
|
|
PRECOMPILED_HEADER = $(builddir)/include/includes.h.gch
|