[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: AC_LIBOBJ_DECL?
From: |
Akim Demaille |
Subject: |
Re: AC_LIBOBJ_DECL? |
Date: |
17 Apr 2001 16:10:05 +0200 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) |
| -For instance you might need to:
| address@hidden AC_LIBSOURCE (@var{file})
| address@hidden LIBSOURCE
| address@hidden LIBSOURCE
This is wrong, ov stands for Output Variables (i.e., the AC_SUBST
guys). You want to keep LIBOBJS here.
| address@hidden AC_LIBSOURCES (@var{files})
| address@hidden LIBSOURCES
| address@hidden LIBSOURCES
Likewise.
| +Like @code{AC_LIBSOURCE}, but accepts one or more @var{files} in a
| +comma-separated M4 list. Thus, the above example might be rewritten:
| +
| address@hidden
| +AC_LIBSOURCES([foo.c, bar.c])
| +AC_LIBOBJ($foo_or_bar)
| address@hidden example
| address@hidden defmac
Perfect!
Thanks, please install!