Remove BUILDSYS_INIT and BUILDSYS_TOUCH_DEPS.
This commit is contained in:
parent
037fef6232
commit
05e30dae9d
2 changed files with 10 additions and 15 deletions
|
@ -21,7 +21,7 @@ dnl ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|||
dnl POSSIBILITY OF SUCH DAMAGE.
|
||||
dnl
|
||||
|
||||
AC_DEFUN([BUILDSYS_INIT], [
|
||||
AC_CONFIG_COMMANDS_PRE([
|
||||
AC_SUBST(CC_DEPENDS, $GCC)
|
||||
AC_SUBST(CXX_DEPENDS, $GXX)
|
||||
AC_SUBST(OBJC_DEPENDS, $GOBJC)
|
||||
|
@ -73,6 +73,15 @@ AC_DEFUN([BUILDSYS_INIT], [
|
|||
])
|
||||
])
|
||||
|
||||
AC_CONFIG_COMMANDS_POST([
|
||||
${as_echo:="echo"} ${as_me:="configure"}": touching .deps files"
|
||||
for i in $(find . -name Makefile); do
|
||||
DEPSFILE="$(dirname $i)/.deps"
|
||||
test -f "$DEPSFILE" && rm "$DEPSFILE"
|
||||
touch -t 0001010000 "$DEPSFILE"
|
||||
done
|
||||
])
|
||||
|
||||
AC_DEFUN([BUILDSYS_PROG_IMPLIB], [
|
||||
AC_REQUIRE([AC_CANONICAL_HOST])
|
||||
AC_MSG_CHECKING(whether we need an implib)
|
||||
|
@ -181,12 +190,3 @@ AC_DEFUN([BUILDSYS_SHARED_LIB], [
|
|||
AC_SUBST(UNINSTALL_LIB)
|
||||
AC_SUBST(CLEAN_LIB)
|
||||
])
|
||||
|
||||
AC_DEFUN([BUILDSYS_TOUCH_DEPS], [
|
||||
${as_echo:="echo"} ${as_me:="configure"}": touching .deps files"
|
||||
for i in $(find . -name Makefile); do
|
||||
DEPSFILE="$(dirname $i)/.deps"
|
||||
test -f "$DEPSFILE" && rm "$DEPSFILE"
|
||||
touch -t 0001010000 "$DEPSFILE"
|
||||
done
|
||||
])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue