On 4 Jun 1999, SL Baur wrote:
to 21.2.15 "Sakuragawa"
-- miscellaneous build and cosmetic fixes from Steve Baur
The include/ subdirectories in the site-prefixes dirs are no longer added
to the c_switches. Is this intentional? From the diffs I guess they are
supposed to be optional but still be added if they exist, correct?
The relevant snippet is:
for dir in $site_prefixes; do
lib_dir="${dir}/lib"
if test ! -d "$dir"; then
XE_DIE("Invalid site prefix \`$dir': no such directory")
elif test ! -d "$lib_dir"; then
XE_DIE("Invalid site prefix \`$dir': no such directory
\`$lib_dir'")
else
if test -d "$inc_dir"; then
XE_APPEND("-I$inc_dir", c_switch_site)
fi
XE_APPEND("-L$lib_dir", ld_switch_site)
fi
done
shouldn't there be a line like
inc_dir="${dir}/include"
somewhere?
Sorry, I can't test this right now. I have to install autoconf first...
Gunnar