On 2/3/08, Bob Proulx <[EMAIL PROTECTED]> wrote: > NightStrike wrote: > > I found this in ls-mntd-fs.m4: > > > > if test -z "$ac_list_mounted_fs"; then > > AC_MSG_ERROR([could not determine how to read list of mounted file > > systems]) > > # FIXME -- no need to abort building the whole package > > # Can't build mountlist.c or anything that needs its functions > > fi > > > > So in theory, I could edit it here, yes? > > Yes. That would be the place. That file is part of gnulib. I am not > sure that it can be overridden at my glance over it. But improving it > does seem like the way to go. Best would be to improve it such that > it successfully handles your system.
I commented out the AC_MSG_ERROR line and the configure completed successfully. I moved on to the next issue, which was a multiple declaration of "timespec" due to the fact that configure checked in time.h and sys/time.h, while our header set has it defined in timeb.h and sys/timeb.h. Until a better solution can be found, we just made the headers for time.h and sys/time.h include the *b variants. On to the next error.. :) _______________________________________________ Bug-coreutils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-coreutils
