diff options
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/m4/check_cc.m4 | 8 | ||||
-rw-r--r-- | source4/build/smb_build/TODO | 1 |
2 files changed, 6 insertions, 3 deletions
diff --git a/source4/build/m4/check_cc.m4 b/source4/build/m4/check_cc.m4 index 6823237805..a56627eecc 100644 --- a/source4/build/m4/check_cc.m4 +++ b/source4/build/m4/check_cc.m4 @@ -217,12 +217,16 @@ if test "x$GNU_MAKE" = x"yes"; then fi -automatic_dependencies=no +new_make=no AC_MSG_CHECKING([for GNU make >= 3.81]) if test x$GNU_MAKE = x"yes"; then if $PERL -e " \$_ = '$GNU_MAKE_VERSION'; s/@<:@^\d\.@:>@.*//g; exit (\$_ < 3.81);"; then - AX_CXXFLAGS_GCC_OPTION(-MT, [], [automatic_dependencies=yes], []) + new_make=yes fi fi +AC_MSG_RESULT($new_make) +automatic_dependencies=no +AX_CXXFLAGS_GCC_OPTION(-MT, [], [ automatic_dependencies=$new_make ], []) +AC_MSG_CHECKING([Whether to use automatic dependencies]) AC_MSG_RESULT($automatic_dependencies) AC_SUBST(automatic_dependencies) diff --git a/source4/build/smb_build/TODO b/source4/build/smb_build/TODO index ebd595c999..be79bd984d 100644 --- a/source4/build/smb_build/TODO +++ b/source4/build/smb_build/TODO @@ -1,6 +1,5 @@ - make --enable-dso the default - fix module loading for selftest during non-developer builds -- per-subsystem CFLAGS (which are inherited) - clearer distinction between dcerpc and ndr. seperate interface tables? - saner names for: libcli.so.0.0.1 (rename to libsmb?) |