automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: configure dependencies, and version.texi dependencies (PR/358).


From: Akim Demaille
Subject: Re: configure dependencies, and version.texi dependencies (PR/358).
Date: 11 Oct 2002 09:32:01 +0200
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Honest Recruiter)

@@ -5280,6 +5289,16 @@
       elsif ($macro eq 'AM_PROG_CC_C_O')
        {
          $seen_cc_c_o = $where;
+       }
+      elsif ($macro eq 'm4_include' || $macro eq 'm4_sinclude')
+       {
+         # Some modified versions of Autoconf don't use
+         # forzen files.  Consequently it's possible that we see all

Frozen

+         # m4_include's performed during Autoconf's startup.
+         # Obviously we don't want to distribute Autoconf's files
+         # so we skip absolute filenames here.
+         push @configure_deps, $args[1]
+           unless $here =~ m,^(?:\w:)?[\\/],;
        }
    }
 }





There is something I'd like to see documented in Automake, or even
with some ``official'' support: the standard way to express computed
dependencies.  I'm very interested in this because, honestly, it's
been a long while since I want to add something like -MD to autom4te.
And I sure for some other frameworks people have similar tools.  We
all have the same issue to address, and therefore there is certainly
something to factor :)

Wishlist item #210983 :)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]