I've had to use the following just before AC_CONFIG_whatever: # This is necessary so that .o files in LIBOBJS are also built via # the ANSI2KNR-filtering rules. LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
Under autoconf-2.53, the direct assignment to LIBOBJS is now a hard error. So I guess I have some questions: - Do I still need to worry about this problem with LIBOBJS and ANSI2KNR? - If not, at what point was this problem fixed? H
