>>>>> "Assar" == Assar Westerlund <[EMAIL PROTECTED]> writes:
Assar> "Gabor Z. Papp" <[EMAIL PROTECTED]> writes:
>> can I use/define somehow additional aclocal directory, where I can
>> put additional m4 files?
Assar> Yes, use `aclocal -I dir' where dir is the directory of your
Assar> additional files. If you want that to get included in your
Assar> Makefile.in, you can do something like:
Assar> ACLOCAL = @ACLOCAL@ -I dir
Or
ACLOCAL_AMFLAGS = -I dir
which is slighly better, since I don't think autoreconf will recognize
the former, while it definitely knows the latter.
Akim