|
View:
New views
10 Messages
—
Rating Filter:
Alert me
|
|
|
Bug report (as s/w requests).I've tried to subscribe using bug-coreutils-request but I get
no response, so I'm sending this in the hope that it will reach a useful destination nonetheless. PASS: not-rewound -: test block-sync-1: stderr mismatch, comparing block-sync-1.E (actual) and block-sync-1.3 (expected) *** block-sync-1.E Thu Mar 9 18:50:30 2006 --- block-sync-1.3 Thu Mar 9 18:50:30 2006 *************** *** 1,3 **** 2+1 records in 0+1 records out ! 1 truncated records --- 1,3 ---- 2+1 records in 0+1 records out ! 1 truncated record FAIL: skip-seek PASS: skip-seek2 3+1 records in 0+1 records out 18 bytes (18 B) copied, 0.000685894 seconds, 26.2 kB/s PASS: unblock-sync ====================================== 1 of 5 tests failed Please report to bug-coreutils@... ====================================== gmake[3]: *** [check-TESTS] Error 1 gmake[3]: Leaving directory `/export/home/Scratch/hgs/coreutils-5.94/tests/dd' gmake[2]: *** [check-am] Error 2 gmake[2]: Leaving directory `/export/home/Scratch/hgs/coreutils-5.94/tests/dd' gmake[1]: *** [check-recursive] Error 1 gmake[1]: Leaving directory `/export/home/Scratch/hgs/coreutils-5.94/tests' gmake: *** [check-recursive] Error 1 The only difference I can see is that record is singular in one case. This is on a Sun, Sparc, Solaris 2.9 if that helps Hugh _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
|
|
Re: Bug report (as s/w requests).Hugh Sasse <hgs@...> wrote:
> I've tried to subscribe using bug-coreutils-request but I get The list software's database was corrupted for a long time, but everything seems to be working now. > no response, so I'm sending this in the hope that it will reach > a useful destination nonetheless. > > PASS: not-rewound > -: test block-sync-1: stderr mismatch, comparing block-sync-1.E (actual) and block-sync-1.3 (expected) > *** block-sync-1.E Thu Mar 9 18:50:30 2006 > --- block-sync-1.3 Thu Mar 9 18:50:30 2006 > *************** > *** 1,3 **** > 2+1 records in > 0+1 records out > ! 1 truncated records > --- 1,3 ---- > 2+1 records in > 0+1 records out > ! 1 truncated record Thanks for the report. Are you using GNU make? That difference implies your test is running the wrong dd binary. That could be because the PATH setting (original is in Makefile.am in that directory) is not being honored by your make program. _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
|
|
Re: Bug report (as s/w requests).On Wed, 22 Mar 2006, Jim Meyering wrote:
> Hugh Sasse <hgs@...> wrote: > > I've tried to subscribe using bug-coreutils-request but I get > > The list software's database was corrupted for a long time, but > everything seems to be working now. > > > no response, so I'm sending this in the hope that it will reach > > a useful destination nonetheless. > > > > PASS: not-rewound > > -: test block-sync-1: stderr mismatch, comparing block-sync-1.E (actual) and block-sync-1.3 (expected) > > *** block-sync-1.E Thu Mar 9 18:50:30 2006 > > --- block-sync-1.3 Thu Mar 9 18:50:30 2006 > > *************** > > *** 1,3 **** > > 2+1 records in > > 0+1 records out > > ! 1 truncated records > > --- 1,3 ---- > > 2+1 records in > > 0+1 records out > > ! 1 truncated record > > Thanks for the report. > Are you using GNU make? Yes. GNU Make 3.80 > That difference implies your test is running > the wrong dd binary. That could be because > the PATH setting (original is in Makefile.am in that directory) > is not being honored by your make program. Anything else I can tell you? Thank you, Hugh > _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
|
|
Re: Bug report (as s/w requests).-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 According to Hugh Sasse on 3/22/2006 2:50 AM: > >> That difference implies your test is running >> the wrong dd binary. That could be because >> the PATH setting (original is in Makefile.am in that directory) >> is not being honored by your make program. > > Anything else I can tell you? Try running 'make -C tests/dd TESTS=skip-seek DEBUG=yes VERBOSE=yes check' so we can see exactly what the testsuite attempted. Maybe something in there will point out the culprit. - -- Life is short - so eat dessert first! Eric Blake ebb9@... -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.1 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEIUDb84KuGfSFAYARAiyDAKCoAuZgPW3bfNH34KRArVw542b8RQCdFkh/ r+HCa9QVCqhJywmR7uVXKs0= =gepU -----END PGP SIGNATURE----- _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
|
|
Re: Bug report (as s/w requests).Hugh Sasse <hgs@...> wrote:
... >> > *** block-sync-1.E Thu Mar 9 18:50:30 2006 >> > --- block-sync-1.3 Thu Mar 9 18:50:30 2006 >> > *************** >> > *** 1,3 **** >> > 2+1 records in >> > 0+1 records out >> > ! 1 truncated records >> > --- 1,3 ---- >> > 2+1 records in >> > 0+1 records out >> > ! 1 truncated record >> >> Thanks for the report. >> Are you using GNU make? > > Yes. > GNU Make 3.80 > >> That difference implies your test is running >> the wrong dd binary. That could be because >> the PATH setting (original is in Makefile.am in that directory) >> is not being honored by your make program. > > Anything else I can tell you? Would you please run this (from the top level): make && env LC_ALL=C make -C tests/dd check TESTS=skip-seek If that succeeds, then we'll know that the problem is locale-related, making dd's use of ngettext malfunction. If the above still fails, then please run this variant, which will show, among other things, the output of running `dd --version': make && \ env LC_ALL=C VERBOSE=yes DEBUG=yes make -C tests/dd check TESTS=skip-seek Please make sure that the version information corresponds to the version of the package that you're building. I get this, since I'm building the latest from cvs: make[1]: Entering directory `/var/tmp/cu/tests/dd' dd (coreutils) 6.0-cvs ... _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
|
|
|
|
|
Re: Bug report (as s/w requests).Hugh Sasse wrote:
> I've tried to subscribe using bug-coreutils-request but I get > no response, so I'm sending this in the hope that it will reach > a useful destination nonetheless. Thank you very much for making your report. The machine hosting the mailing list had hardware problems. This cascaded into file corruption and it took down the mailing list for way too many days. It seems to finally be back online now. We appreciate your patience. > PASS: not-rewound > -: test block-sync-1: stderr mismatch, comparing block-sync-1.E (actual) and block-sync-1.3 (expected) > *** block-sync-1.E Thu Mar 9 18:50:30 2006 > --- block-sync-1.3 Thu Mar 9 18:50:30 2006 > *************** > *** 1,3 **** > 2+1 records in > 0+1 records out > ! 1 truncated records > --- 1,3 ---- > 2+1 records in > 0+1 records out > ! 1 truncated record > FAIL: skip-seek > PASS: skip-seek2 > 3+1 records in > 0+1 records out > 18 bytes (18 B) copied, 0.000685894 seconds, 26.2 kB/s > PASS: unblock-sync > ====================================== > 1 of 5 tests failed > Please report to bug-coreutils@... What version of coreutils is this for? Actually, the debug output will provide that. > The only difference I can see is that record is singular in one case. > This is on a Sun, Sparc, Solaris 2.9 if that helps Just to cover all of the bases would you be so kind as to run the following command and to send the output to the mailing list? env DEBUG=yes VERBOSE=yes make check -C tests/dd TESTS=not-rewound Thanks Bob _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
|
|
Re: Bug report (as s/w requests).Hugh Sasse <hgs@...> writes:
> -: test block-sync-1: stderr mismatch, comparing block-sync-1.E (actual) and block-sync-1.3 (expected) > *** block-sync-1.E Thu Mar 9 18:50:30 2006 > --- block-sync-1.3 Thu Mar 9 18:50:30 2006 > *************** > *** 1,3 **** > 2+1 records in > 0+1 records out > ! 1 truncated records > --- 1,3 ---- > 2+1 records in > 0+1 records out > ! 1 truncated record > FAIL: skip-seek > ... > > The only difference I can see is that record is singular in one case. > This is on a Sun, Sparc, Solaris 2.9 if that helps I can't reproduce the problem on my Sun Sparc Solaris 2.9 host. Which compiler and build options did you use? I built coreutils 5.94 as follows: CC='cc -xarch=v9' ./configure with Forte Developer 7 C 5.4 (with current patches). I suppose I can try again with GCC 4.1.0 (the latest version) but I doubt whether that would affect the result. Which version of coreutils are you using? If it's not 5.94, please try upgrading first. Do you have GNU gettext installed? Is it being used as part of your build? That could well be related to the problem. Do you have the output of your 'configure' and 'make' and 'make check' runs? That could help us debug this. Here's my output, if that helps: $ CC='cc -xarch=v9' ./configure checking build system type... sparc-sun-solaris2.9 checking host system type... sparc-sun-solaris2.9 configure: autobuild project... GNU coreutils configure: autobuild revision... 5.94 configure: autobuild hostname... pete.twinsun.com configure: autobuild timestamp... 20060322-104249 checking for a BSD-compatible install... /opt/sfw/bin/ginstall -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for desired default level of POSIX conformance... none-specified checking for style of include used by make... GNU checking for gcc... cc -xarch=v9 checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... no checking whether cc -xarch=v9 accepts -g... yes checking for cc -xarch=v9 option to accept ISO C89... none needed checking dependency style of cc -xarch=v9... none checking how to run the C preprocessor... cc -xarch=v9 -E checking for grep that handles long lines and -e... /opt/reb/bin/grep checking for egrep... /opt/reb/bin/grep -E checking for AIX... no checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking for perl5.003 or newer... yes checking for cc -xarch=v9 option to accept ISO C99... unsupported checking for cc -xarch=v9 option to accept ISO C89... (cached) none needed checking for cc -xarch=v9 option to accept ISO Standard C... (cached) none needed checking whether cc -xarch=v9 and cc understand -c and -o together... yes checking how to run the C preprocessor... cc -xarch=v9 -E checking for ranlib... ranlib checking whether ln -s works... yes checking for uname... yes checking for chroot... yes checking for gethostid... yes checking for library containing strerror... none required checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for _LARGE_FILES value needed for large files... no checking for function prototypes... yes checking for string.h... (cached) yes checking whether byte ordering is bigendian... yes checking for an ANSI C-conforming const... yes checking for working volatile... yes checking for inline... inline checking for working long double with more range or precision than double... yes checking hurd.h usability... no checking hurd.h presence... no checking for hurd.h... no checking paths.h usability... no checking paths.h presence... no checking for paths.h... no checking priv.h usability... no checking priv.h presence... no checking for priv.h... no checking stropts.h usability... yes checking stropts.h presence... yes checking for stropts.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/statvfs.h usability... yes checking sys/statvfs.h presence... yes checking for sys/statvfs.h... yes checking sys/systeminfo.h usability... yes checking sys/systeminfo.h presence... yes checking for sys/systeminfo.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/vfs.h usability... yes checking sys/vfs.h presence... yes checking for sys/vfs.h... yes checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking grp.h usability... yes checking grp.h presence... yes checking for grp.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking utmp.h usability... yes checking utmp.h presence... yes checking for utmp.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking for sys/types.h... (cached) yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking sys/fs_types.h usability... no checking sys/fs_types.h presence... no checking for sys/fs_types.h... no checking stdio_ext.h usability... yes checking stdio_ext.h presence... yes checking for stdio_ext.h... yes checking libgen.h usability... yes checking libgen.h presence... yes checking for libgen.h... yes checking for unistd.h... (cached) yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking wchar.h usability... yes checking wchar.h presence... yes checking for wchar.h... yes checking wctype.h usability... yes checking wctype.h presence... yes checking for wctype.h... yes checking utmpx.h usability... yes checking utmpx.h presence... yes checking for utmpx.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking sys/sysmacros.h usability... yes checking sys/sysmacros.h presence... yes checking for sys/sysmacros.h... yes checking for sys/mount.h... yes checking for sys/sysctl.h... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for struct stat.st_blocks... yes checking for st_dm_mode in struct stat... no checking for uid_t in sys/types.h... yes checking type of array argument to getgroups... gid_t checking for mbstate_t... yes checking for mode_t... yes checking for off_t... yes checking for pid_t... yes checking for size_t... yes checking for uint32_t... uint32_t checking for UINT32_MAX... yes checking for inttypes.h... yes checking for stdint.h... no checking for unsigned long long... yes checking for uintptr_t... uintptr_t checking for UINTPTR_MAX... yes checking whether sys/types.h defines makedev... no checking sys/mkdev.h usability... yes checking sys/mkdev.h presence... yes checking for sys/mkdev.h... yes checking host operating system... Solaris checking whether to enable assertions... yes checking for d_type member in directory struct... no checking for d_ino member in directory struct... yes checking whether time.h and sys/time.h may both be included... yes checking whether free is declared... yes checking whether getenv is declared... yes checking whether geteuid is declared... yes checking whether getgrgid is declared... yes checking whether getlogin is declared... yes checking whether getpwuid is declared... yes checking whether getuid is declared... yes checking whether getutent is declared... yes checking whether lseek is declared... yes checking whether malloc is declared... yes checking whether memchr is declared... yes checking whether memrchr is declared... no checking whether nanosleep is declared... yes checking whether realloc is declared... yes checking whether stpcpy is declared... no checking whether strndup is declared... no checking whether strnlen is declared... no checking whether strstr is declared... yes checking whether strtoul is declared... yes checking whether strtoull is declared... yes checking whether ttyname is declared... yes checking for stdbool.h that conforms to C99... no checking for _Bool... no checking for working alloca.h... yes checking for alloca... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for long long... yes checking for long double... yes checking whether system is Windows or MSDOS... no checking for long file names... yes checking for pathconf... yes checking for isascii... yes checking for mempcpy... no checking for __fsetlocking... yes checking for tcgetattr... yes checking for tcsetattr... yes checking for alarm... yes checking for gettimeofday... yes checking for microuptime... no checking for nanouptime... no checking for nanotime... no checking for setlocale... yes checking for iswprint... yes checking for mbsinit... yes checking for utmpname... yes checking for utmpxname... yes checking for isblank... no checking for mbrtowc... yes checking for wcrtomb... yes checking for wcscoll... yes checking for fchdir... yes checking for settimeofday... yes checking for stime... yes checking for futimes... no checking for futimesat... yes checking for mblen... yes checking for mbrlen... yes checking for tzset... yes checking for siginterrupt... yes checking for directio... yes checking for endgrent... yes checking for endpwent... yes checking for fchmod... yes checking for fchown... yes checking for ftruncate... yes checking for hasmntopt... yes checking for iswspace... yes checking for lchown... yes checking for listmntent... no checking for mkfifo... yes checking for realpath... yes checking for sethostname... yes checking for sysctl... no checking for sysinfo... yes checking for tcgetpgrp... yes checking for statvfs... yes checking for fdopendir... yes checking whether strtold conforms to C99... no checking for C/C++ restrict keyword... restrict checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking for library containing getaddrinfo... -lsocket checking for library containing gethostbyname... -lnsl checking for library containing getservbyname... none required checking for getaddrinfo... yes checking for gai_strerror... yes checking whether getaddrinfo is declared... yes checking whether freeaddrinfo is declared... yes checking whether gai_strerror is declared... yes checking for struct addrinfo... yes checking whether strerror_r is declared... no checking for strerror_r... no checking whether strerror_r returns char *... no checking for error_at_line... no checking for struct stat.st_blocks... (cached) yes checking for sys/mount.h... (cached) yes checking how to get file system space usage... checking for statvfs function (SVR4)... yes checking dustat.h usability... no checking dustat.h presence... no checking for dustat.h... no checking sys/fs/s5param.h usability... no checking sys/fs/s5param.h presence... no checking for sys/fs/s5param.h... no checking sys/filsys.h usability... no checking sys/filsys.h presence... no checking for sys/filsys.h... no checking sys/statfs.h usability... yes checking sys/statfs.h presence... yes checking for sys/statfs.h... yes checking for sys/statvfs.h... (cached) yes checking for statfs that truncates block counts... no checking for atexit... yes checking for dup2... yes checking for working GNU fnmatch... no checking whether getenv is declared... (cached) yes checking for btowc... yes checking for mbsrtowcs... yes checking for mempcpy... (cached) no checking for wmemchr... yes checking for wmemcpy... yes checking for wmempcpy... no checking for wchar.h... (cached) yes checking for wctype.h... (cached) yes checking for gethostname... yes checking whether getdelim is declared... no checking whether getline is declared... no checking for getline... no checking for getdelim... no checking for flockfile... yes checking for funlockfile... yes checking for getloadavg... yes checking for pstat_getdynamic... no checking for kstat_open in -lkstat... yes checking for getloadavg... yes checking whether getloadavg requires setgid... no checking whether getpass is declared... yes checking whether fflush_unlocked is declared... no checking whether flockfile is declared... yes checking whether fputs_unlocked is declared... no checking whether funlockfile is declared... yes checking whether putc_unlocked is declared... yes checking for getusershell... yes checking whether lstat dereferences a symlink specified with a trailing slash... no checking for memchr... yes checking for memcpy... yes checking for memmove... yes checking for mempcpy... (cached) no checking whether memrchr is declared... (cached) no checking for memrchr... no checking for memset... yes checking whether mkdir fails due to a trailing slash... no checking for working mktime... no checking whether getenv is declared... (cached) yes checking for mkstemp... yes checking for mkstemp limitations... no checking whether euidaccess is declared... no checking whether setregid is declared... yes checking for getgroups... yes checking for working getgroups... yes checking for euidaccess... no checking for library containing eaccess... -lgen checking for eaccess... yes checking for readlink... yes checking for rmdir... yes checking for rpmatch... no checking for setenv... no checking for unsetenv... no checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking if errno is properly declared... yes checking if environ is properly declared... no checking if errno is properly declared... (cached) yes checking if environ is properly declared... (cached) no checking for sig2str... yes checking for stpcpy... no checking for strcspn... yes checking whether strdup is declared... yes checking for strdup... yes checking for strndup... no checking whether strnlen is declared... (cached) no checking for working strnlen... no checking for strpbrk... yes checking whether mbrtowc and mbstate_t are properly declared... yes checking for working strtod... yes checking whether <inttypes.h> defines strtoimax as a macro... no checking for strtoimax... no checking whether strtoll is declared... yes checking for strtoll... yes checking for strtol... yes checking for strtoull... yes checking for strtoul... yes checking whether <inttypes.h> defines strtoumax as a macro... no checking for strtoumax... no checking whether strtoull is declared... (cached) yes checking for strverscmp... no checking whether tzset clobbers localtime buffer... no checking for EOVERFLOW... yes checking for signed... yes checking for wchar_t... yes checking for wint_t... yes checking for intmax_t... yes checking for vasnprintf... no checking for ptrdiff_t... yes checking for snprintf... yes checking for wcslen... yes checking for vasprintf... no checking for struct timespec... yes checking whether nanosleep is declared... (cached) yes checking for compound literals... no checking whether struct tm is in sys/time.h or time.h... time.h checking for library containing clock_gettime... -lrt checking for clock_gettime... yes checking for clock_settime... yes checking for struct tm.tm_gmtoff... no checking for struct tm.tm_zone... no checking whether tzname is declared... yes checking for tzname... yes checking for arithmetic hrtime_t... yes checking whether gethrtime is declared... yes checking getopt.h usability... no checking getopt.h presence... no checking for getopt.h... no checking OS.h usability... no checking OS.h presence... no checking for OS.h... no checking for getpagesize... yes checking type of array argument to getgroups... (cached) gid_t checking for nl_langinfo and CODESET... yes checking whether we are using the GNU C Library 2.1 or newer... no checking for iswcntrl... yes checking for wcwidth... yes checking whether mbrtowc and mbstate_t are properly declared... (cached) yes checking whether wcwidth is declared... yes checking whether mbswidth is declared in <wchar.h>... no checking for mbstate_t... (cached) yes checking for working memcmp... yes checking for working strcoll... yes checking for listmntent... (cached) no checking for getmntinfo... no checking for sys/ucred.h... no checking for sys/mount.h... (cached) yes checking mntent.h usability... no checking mntent.h presence... no checking for mntent.h... no checking for sys/fs_types.h... (cached) no checking for struct fsstat.f_fstypename... no checking for library containing getmntent... none required checking for getmntent... yes checking for listmntent of Cray/Unicos-9... no checking for mntctl function and struct vmount... no checking for one-argument getmntent function... no checking for two-argument getmntent function... yes checking sys/mntent.h usability... yes checking sys/mntent.h presence... yes checking for sys/mntent.h... yes checking for f_fstypename in struct statfs... no checking for obstacks... no checking for external symbol _system_configuration... no checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/sysinfo.h... yes checking for machine/hal_sysinfo.h... no checking for sys/table.h... no checking for sys/param.h... (cached) yes checking for sys/sysctl.h... (cached) no checking for sys/systemcfg.h... no checking for pstat_getstatic... no checking for pstat_getdynamic... (cached) no checking for sysmp... no checking for getsysinfo... no checking for sysctl... (cached) no checking for table... no checking whether struct tm is in sys/time.h or time.h... (cached) time.h checking for mbstate_t... (cached) yes checking whether mbrtowc and mbstate_t are properly declared... (cached) yes checking whether free (NULL) is known to work... yes checking whether getutent is declared... (cached) yes checking for struct utmpx.ut_user... yes checking for struct utmp.ut_user... yes checking for struct utmpx.ut_name... yes checking for struct utmp.ut_name... yes checking for struct utmpx.ut_type... yes checking for struct utmp.ut_type... yes checking for struct utmpx.ut_pid... yes checking for struct utmp.ut_pid... yes checking for struct utmpx.ut_id... yes checking for struct utmp.ut_id... yes checking for struct utmpx.ut_exit... yes checking for struct utmp.ut_exit... yes checking for struct utmpx.ut_exit.ut_exit... no checking for struct utmp.ut_exit.ut_exit... no checking for struct utmpx.ut_exit.e_exit... yes checking for struct utmp.ut_exit.e_exit... yes checking for struct utmpx.ut_exit.ut_termination... no checking for struct utmp.ut_exit.ut_termination... no checking for struct utmpx.ut_exit.e_termination... yes checking for struct utmp.ut_exit.e_termination... yes checking whether off_t can be used in a switch statement... yes checking for working re_compile_pattern... yes checking whether closedir returns void... no checking whether stat file-mode macros are broken... no checking for struct stat.st_atim.tv_nsec... yes checking whether struct stat.st_atim is of type struct timespec... yes checking for strncasecmp... yes checking for inline... (cached) inline checking determine whether the utimes function works... yes checking for struct utimbuf... yes checking whether getcwd (NULL, 0) allocates memory for result... no checking whether getcwd is declared... yes checking whether strtoimax is declared... no checking whether strtoumax is declared... no checking for GNU libc compatible calloc... yes checking whether clearerr_unlocked is declared... no checking whether feof_unlocked is declared... no checking whether ferror_unlocked is declared... no checking whether fgets_unlocked is declared... no checking whether fputc_unlocked is declared... no checking whether fread_unlocked is declared... no checking whether fwrite_unlocked is declared... no checking whether getc_unlocked is declared... yes checking whether getchar_unlocked is declared... yes checking whether putchar_unlocked is declared... yes checking for strftime... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking for library containing nanosleep... -lrt checking whether nanosleep works... yes checking for SVID conformant putenv... no checking for stdlib.h... (cached) yes checking for GNU libc compatible realloc... yes checking whether utime accepts a null argument... yes checking whether rename is broken... no checking for dirent.h that defines DIR... (cached) yes checking for library containing opendir... (cached) none required checking for dirfd... no checking whether dirfd is declared... no checking whether dirfd is a macro... no checking for dirfd... (cached) no checking how to get the file descriptor associated with an open DIR*... dd_fd checking sys/acl.h usability... yes checking sys/acl.h presence... yes checking for sys/acl.h... yes checking for acl... yes checking for unistd.h... (cached) yes checking for working chown... yes checking whether chown(2) dereferences symlinks... yes checking for lchown... (cached) yes checking for rmdir-not-empty errno value... 17 checking whether lstat accepts an empty string... no checking for group_member... no checking whether link(2) dereferences a symlink specified with a trailing slash... no checking for stdio_ext.h... (cached) yes checking for __fpending... yes checking whether __fpending is declared... yes checking for inttypes.h... yes checking whether the inttypes.h PRIxNN macros are broken... no checking whether ULONG_MAX < ULLONG_MAX... no checking for _LARGEFILE_SOURCE value needed for large files... no checking for fseeko... yes checking for /proc/uptime... no checking for ftruncate... (cached) yes checking for sys/mount.h... (cached) yes checking for netinet/in.h... (cached) yes checking for nfs/nfs_clnt.h... no checking for nfs/vfs.h... no checking for struct statfs.f_basetype... no checking for struct statvfs.f_basetype... yes checking for struct statfs.f_fstypename... no checking for struct statfs.f_type... no checking for struct statvfs.f_type... no checking for struct statfs.f_fsid.__val... no checking for struct statvfs.f_fsid.__val... no checking for struct statfs.f_namemax... no checking for struct statvfs.f_namemax... yes checking for struct statfs.f_namelen... no checking for struct statvfs.f_namelen... no checking for non-GNU ld... /usr/ccs/bin/ld checking if the linker (/usr/ccs/bin/ld) is GNU ld... no checking for shared library run path origin... done checking for sys/param.h... (cached) yes checking for resolvepath... yes checking for canonicalize_file_name... no checking whether this system has an arbitrary file name length limit... yes checking for mempcpy... (cached) no checking for openat... yes checking for memrchr... (cached) no checking for socklen_t... yes checking for struct stat.st_author... no checking for struct stat.st_blksize... yes checking for ino_t... yes checking for ssize_t... yes checking for major_t... yes checking for minor_t... yes checking for getloadavg... (cached) yes checking for pstat_getdynamic... (cached) no checking for kstat_open in -lkstat... (cached) yes checking for getloadavg... (cached) yes checking whether getloadavg requires setgid... (cached) no checking for raise... yes checking whether setvbuf arguments are reversed... no checking whether gettimeofday clobbers localtime buffer... no checking for working strtod... (cached) yes checking for library containing fdatasync... -lrt checking for fdatasync... yes checking for iconv... yes checking for iconv declaration... extern size_t iconv (iconv_t cd, const char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking whether a running program can be unlinked... yes checking for fchdir... (cached) yes checking POSIX termios... yes checking whether use of struct winsize requires sys/ptem.h... no checking whether localtime caches TZ... yes checking for initgroups... yes checking for syslog... yes checking for 3-argument setpriority function... yes checking ut_host in struct utmp... no checking ut_host in struct utmpx... yes checking for sysctl... (cached) no checking for sys/sysctl.h... (cached) no checking whether we can get the system boot time... yes checking POSIX termios... (cached) yes checking whether use of TIOCGWINSZ requires termios.h... yes checking whether use of TIOCGWINSZ requires sys/ioctl.h... no checking whether termios.h needs _XOPEN_SOURCE... no checking c_line in struct termios... no checking whether use of struct winsize requires sys/ptem.h... (cached) no checking whether use of TIOCGWINSZ requires termios.h... (cached) yes checking whether strsignal is declared... yes checking whether sys_siglist is declared... no checking whether _sys_siglist is declared... yes checking whether __sys_siglist is declared... no checking whether strtoimax is declared... (cached) no checking whether strtoumax is declared... (cached) no checking for main in -lypsec... no checking for main in -lldgc... no checking for library containing floor... -lm checking for library containing modf... none required checking for library containing rint... none required checking for floor... yes checking for modf... yes checking for rint... yes checking for library containing yp_match... none required checking for library containing getspnam... none required checking shadow.h usability... yes checking shadow.h presence... yes checking for shadow.h... yes checking for struct spwd.sp_pwdp... yes checking for getspnam... yes checking for library containing crypt... none required checking whether NLS is requested... yes checking for msgfmt... /opt/reb/bin/msgfmt checking for gmsgfmt... /opt/reb/bin/msgfmt checking for xgettext... /opt/reb/bin/xgettext checking for msgmerge... /opt/reb/bin/msgmerge checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking whether NLS is requested... yes checking for GNU gettext in libc... no checking for iconv... (cached) yes checking for GNU gettext in libintl... no checking whether to use NLS... no configure: creating ./config.status config.status: creating Makefile config.status: creating doc/Makefile config.status: creating lib/Makefile config.status: creating man/Makefile config.status: creating po/Makefile.in config.status: creating src/Makefile config.status: creating tests/Makefile config.status: creating tests/basename/Makefile config.status: creating tests/chgrp/Makefile config.status: creating tests/chmod/Makefile config.status: creating tests/chown/Makefile config.status: creating tests/cp/Makefile config.status: creating tests/cut/Makefile config.status: creating tests/dd/Makefile config.status: creating tests/dircolors/Makefile config.status: creating tests/du/Makefile config.status: creating tests/expr/Makefile config.status: creating tests/factor/Makefile config.status: creating tests/fmt/Makefile config.status: creating tests/head/Makefile config.status: creating tests/install/Makefile config.status: creating tests/join/Makefile config.status: creating tests/ln/Makefile config.status: creating tests/ls-2/Makefile config.status: creating tests/ls/Makefile config.status: creating tests/md5sum/Makefile config.status: creating tests/misc/Makefile config.status: creating tests/mkdir/Makefile config.status: creating tests/mv/Makefile config.status: creating tests/od/Makefile config.status: creating tests/pr/Makefile config.status: creating tests/readlink/Makefile config.status: creating tests/rm/Makefile config.status: creating tests/rmdir/Makefile config.status: creating tests/seq/Makefile config.status: creating tests/sha1sum/Makefile config.status: creating tests/shred/Makefile config.status: creating tests/sort/Makefile config.status: creating tests/stty/Makefile config.status: creating tests/sum/Makefile config.status: creating tests/tac/Makefile config.status: creating tests/tail-2/Makefile config.status: creating tests/tail/Makefile config.status: creating tests/tee/Makefile config.status: creating tests/test/Makefile config.status: creating tests/touch/Makefile config.status: creating tests/tr/Makefile config.status: creating tests/tsort/Makefile config.status: creating tests/unexpand/Makefile config.status: creating tests/uniq/Makefile config.status: creating tests/wc/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing default-1 commands config.status: creating po/POTFILES config.status: creating po/Makefile $ make make all-recursive Making all in lib sed -e 's/@''HAVE__BOOL''@/0/g' ./stdbool_.h > stdbool.ht mv stdbool.ht stdbool.h cp ./fnmatch_.h fnmatch.h-t mv fnmatch.h-t fnmatch.h cp ./getopt_.h getopt.h-t mv getopt.h-t getopt.h make all-am source='allocsa.c' object='allocsa.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c allocsa.c source='fprintftime.c' object='fprintftime.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c fprintftime.c source='full-read.c' object='full-read.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c full-read.c source='full-write.c' object='full-write.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c full-write.c source='localcharset.c' object='localcharset.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c localcharset.c source='mbswidth.c' object='mbswidth.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c mbswidth.c source='readtokens0.c' object='readtokens0.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c readtokens0.c source='strnlen1.c' object='strnlen1.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strnlen1.c source='time_r.c' object='time_r.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c time_r.c source='unicodeio.c' object='unicodeio.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c unicodeio.c source='xalloc-die.c' object='xalloc-die.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xalloc-die.c source='xgethostname.c' object='xgethostname.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xgethostname.c source='xmemcoll.c' object='xmemcoll.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xmemcoll.c source='xstrndup.c' object='xstrndup.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xstrndup.c source='xstrtoimax.c' object='xstrtoimax.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xstrtoimax.c source='xstrtoumax.c' object='xstrtoumax.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xstrtoumax.c source='backupfile.c' object='backupfile.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c backupfile.c source='basename.c' object='basename.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c basename.c source='c-strtod.c' object='c-strtod.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c c-strtod.c source='c-strtold.c' object='c-strtold.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c c-strtold.c source='canon-host.c' object='canon-host.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c canon-host.c source='cloexec.c' object='cloexec.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c cloexec.c source='closeout.c' object='closeout.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c closeout.c source='dirname.c' object='dirname.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c dirname.c source='error.c' object='error.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c error.c source='exclude.c' object='exclude.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c exclude.c source='exitfail.c' object='exitfail.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c exitfail.c source='open-safer.c' object='open-safer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c open-safer.c source='creat-safer.c' object='creat-safer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c creat-safer.c source='fd-reopen.c' object='fd-reopen.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c fd-reopen.c source='filemode.c' object='filemode.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c filemode.c source='filenamecat.c' object='filenamecat.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c filenamecat.c source='file-type.c' object='file-type.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c file-type.c source='fsusage.c' object='fsusage.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c fsusage.c source='fnmatch.c' object='fnmatch.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c fnmatch.c source='getline.c' object='getline.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getline.c source='getdelim.c' object='getdelim.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getdelim.c source='getpass.c' object='getpass.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getpass.c source='lstat.c' object='lstat.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c lstat.c source='mempcpy.c' object='mempcpy.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c mempcpy.c source='memrchr.c' object='memrchr.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c memrchr.c source='mktime.c' object='mktime.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c mktime.c source='euidaccess.c' object='euidaccess.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c euidaccess.c source='rpmatch.c' object='rpmatch.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c rpmatch.c source='setenv.c' object='setenv.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c setenv.c source='unsetenv.c' object='unsetenv.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c unsetenv.c source='stpcpy.c' object='stpcpy.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c stpcpy.c source='strndup.c' object='strndup.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strndup.c source='strnlen.c' object='strnlen.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strnlen.c source='strstr.c' object='strstr.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strstr.c source='strtoimax.c' object='strtoimax.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strtoimax.c source='strtoumax.c' object='strtoumax.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strtoumax.c source='strverscmp.c' object='strverscmp.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strverscmp.c source='vasnprintf.c' object='vasnprintf.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c vasnprintf.c source='printf-args.c' object='printf-args.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c printf-args.c source='printf-parse.c' object='printf-parse.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c printf-parse.c source='asnprintf.c' object='asnprintf.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c asnprintf.c source='vasprintf.c' object='vasprintf.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c vasprintf.c source='asprintf.c' object='asprintf.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c asprintf.c source='getdate.c' object='getdate.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getdate.c source='getndelim2.c' object='getndelim2.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getndelim2.c source='getopt.c' object='getopt.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getopt.c source='getopt1.c' object='getopt1.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getopt1.c source='gettime.c' object='gettime.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c gettime.c source='getugroups.c' object='getugroups.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getugroups.c source='hard-locale.c' object='hard-locale.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c hard-locale.c source='hash.c' object='hash.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c hash.c source='hash-pjw.c' object='hash-pjw.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c hash-pjw.c source='human.c' object='human.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c human.c source='idcache.c' object='idcache.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c idcache.c source='imaxtostr.c' object='imaxtostr.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c imaxtostr.c source='offtostr.c' object='offtostr.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c offtostr.c source='umaxtostr.c' object='umaxtostr.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c umaxtostr.c source='linebuffer.c' object='linebuffer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c linebuffer.c source='long-options.c' object='long-options.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c long-options.c source='mbchar.c' object='mbchar.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c mbchar.c source='md5.c' object='md5.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c md5.c source='memcoll.c' object='memcoll.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c memcoll.c source='mkdir-p.c' object='mkdir-p.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c mkdir-p.c source='modechange.c' object='modechange.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c modechange.c source='mountlist.c' object='mountlist.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c mountlist.c source='obstack.c' object='obstack.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c obstack.c source='physmem.c' object='physmem.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c physmem.c source='posixtm.c' object='posixtm.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c posixtm.c source='posixver.c' object='posixver.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c posixver.c source='quotearg.c' object='quotearg.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c quotearg.c source='quote.c' object='quote.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c quote.c source='readtokens.c' object='readtokens.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c readtokens.c source='readutmp.c' object='readutmp.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c readutmp.c source='regex.c' object='regex.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c regex.c source='safe-read.c' object='safe-read.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c safe-read.c source='safe-write.c' object='safe-write.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c safe-write.c source='same.c' object='same.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c same.c source='savedir.c' object='savedir.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c savedir.c source='save-cwd.c' object='save-cwd.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c save-cwd.c source='settime.c' object='settime.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c settime.c source='sha1.c' object='sha1.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c sha1.c source='fopen-safer.c' object='fopen-safer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c fopen-safer.c source='mkstemp-safer.c' object='mkstemp-safer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c mkstemp-safer.c source='strcasecmp.c' object='strcasecmp.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strcasecmp.c source='strintcmp.c' object='strintcmp.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strintcmp.c source='strnumcmp.c' object='strnumcmp.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strnumcmp.c source='stripslash.c' object='stripslash.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c stripslash.c source='dup-safer.c' object='dup-safer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c dup-safer.c source='fd-safer.c' object='fd-safer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c fd-safer.c source='pipe-safer.c' object='pipe-safer.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c pipe-safer.c source='unlinkdir.c' object='unlinkdir.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c unlinkdir.c source='userspec.c' object='userspec.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c userspec.c source='utimecmp.c' object='utimecmp.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c utimecmp.c source='utimens.c' object='utimens.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c utimens.c source='xmalloc.c' object='xmalloc.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xmalloc.c source='getcwd.c' object='getcwd.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c getcwd.c "getcwd.c", line 134: warning: initializer does not fit or is out of range: 0xffd19553 source='xgetcwd.c' object='xgetcwd.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xgetcwd.c source='xnanosleep.c' object='xnanosleep.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xnanosleep.c source='xreadlink.c' object='xreadlink.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xreadlink.c source='xstrtod.c' object='xstrtod.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xstrtod.c source='xstrtol.c' object='xstrtol.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xstrtol.c source='xstrtoul.c' object='xstrtoul.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xstrtoul.c source='yesno.c' object='yesno.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c yesno.c source='strftime.c' object='strftime.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c strftime.c source='putenv.c' object='putenv.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c putenv.c source='fts.c' object='fts.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c fts.c source='memcasecmp.c' object='memcasecmp.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c memcasecmp.c source='argmatch.c' object='argmatch.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c argmatch.c source='cycle-check.c' object='cycle-check.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c cycle-check.c source='dirfd.c' object='dirfd.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c dirfd.c source='acl.c' object='acl.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c acl.c source='group-member.c' object='group-member.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c group-member.c source='canonicalize.c' object='canonicalize.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c canonicalize.c source='chdir-long.c' object='chdir-long.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c chdir-long.c source='openat-die.c' object='openat-die.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c openat-die.c source='xfts.c' object='xfts.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c xfts.c source='root-dev-ino.c' object='root-dev-ino.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c root-dev-ino.c source='version-etc-fsf.c' object='version-etc-fsf.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c version-etc-fsf.c source='version-etc.c' object='version-etc.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c version-etc.c source='diacrit.c' object='diacrit.o' libtool=no \ DEPDIR=.deps depmode=none /bin/bash ../build-aux/depcomp \ cc -xarch=v9 -DHAVE_CONFIG_H -DLIBDIR=\"/usr/local/lib\" -I. -I. -I.. -I.. -I. -g -c diacrit.c rm -f libcoreutils.a ar cru libcoreutils.a allocsa.o fprintftime.o full-read.o full-write.o localcharset.o mbswidth.o readtokens0.o strnlen1.o time_r.o unicodeio.o xalloc-die.o xgethostnam |
|
|
Re: Bug report (as s/w requests).On Wed, 22 Mar 2006, Jim Meyering wrote:
> Hugh Sasse <hgs@...> wrote: > ... > >> Would you please run this (from the top level): > >> > >> make && env LC_ALL=C make -C tests/dd check TESTS=skip-seek [...] > > >> If the above still fails, then please run this variant, which will > >> show, among other things, the output of running `dd --version': > >> > >> make && \ > >> env LC_ALL=C VERBOSE=yes DEBUG=yes make -C tests/dd check TESTS=skip-seek > >> > >> Please make sure that the version information corresponds to > >> the version of the package that you're building. I get this, > >> since I'm building the latest from cvs: > >> > >> make[1]: Entering directory `/var/tmp/cu/tests/dd' > >> dd (coreutils) 6.0-cvs > > > > Yes, it does. See attached. > > > > I've not CC'd the list this time as my other response may well suffice. > > By all means include the list in a reply. > > Then maybe your version of ngettext is malfunctioning. a new libiconv and Emacs[!!], and the problem seems to have gone. See attached typescript.gz Thank you, Hugh _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
|
|
Re: Bug report (as s/w requests).I was going to send you this information before my last response, but
forgot it was half composed. Maybe configure should die in this circumstance. Still if it is only for the tests, and only one fails, probably not. On Wed, 22 Mar 2006, Jim Meyering wrote: > Hugh Sasse <hgs@...> wrote: > ... > >> Would you please run this (from the top level): > >> > >> make && env LC_ALL=C make -C tests/dd check TESTS=skip-seek [...] > > Did you try the above? Yes, I put both in the same file, the compressed one. > > >> If the above still fails, then please run this variant, which will > >> show, among other things, the output of running `dd --version': > >> > >> make && \ > >> env LC_ALL=C VERBOSE=yes DEBUG=yes make -C tests/dd check TESTS=skip-seek > >> > >> Please make sure that the version information corresponds to > >> the version of the package that you're building. I get this, [...] > > > > Yes, it does. See attached. > > > > Then maybe your version of ngettext is malfunctioning. man ngettext tells me there is a Solaris version of this. config.log tellingly has: configure:52912: checking for xgettext configure: trying /bin/xgettext... /bin/xgettext: illegal option -- - /bin/xgettext: illegal option -- o /bin/xgettext: illegal option -- - /bin/xgettext: illegal option -- - Usage: xgettext [-a [-x exclude-file]] [-jns][-c comment-tag] [-d default-domain] [-m prefix] [-M suffix] [-p pathname] files ... xgettext -h configure: trying /usr/bin/xgettext... /usr/bin/xgettext: illegal option -- - /usr/bin/xgettext: illegal option -- o /usr/bin/xgettext: illegal option -- - /usr/bin/xgettext: illegal option -- - Usage: xgettext [-a [-x exclude-file]] [-jns][-c comment-tag] [-d default-domain] [-m prefix] [-M suffix] [-p pathname] files ... xgettext -h configure: trying /usr/local/bin/xgettext... /usr/local/bin/xgettext: unrecognized option `--copyright-holder=' Try `/usr/local/bin/xgettext --help' for more information. configure:52947: result: no configure:52984: checking for msgmerge Which is what? (:r! /usr/local/bin/xgettext --version) xgettext (GNU gettext) 0.10.40 Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Ulrich Drepper. Current release seems to be 0.14.5.... _______________________________________________ Bug-coreutils mailing list Bug-coreutils@... http://lists.gnu.org/mailman/listinfo/bug-coreutils |
| Free embeddable forum powered by Nabble | Forum Help |