bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Stupid newbie question/ramble: Install?


From: Jay Levitt
Subject: Re: Stupid newbie question/ramble: Install?
Date: Wed, 14 Nov 2007 23:44:11 -0500
User-agent: Thunderbird 2.0.0.6 (Windows/20070728)

On 11/14/2007 9:51 PM, Eric Blake wrote:
OK, so we need to port the fseeko module to VOS.  And since you are the
first person that seems to be porting to this platform, you will have to
do much of the legwork.

You bet - I'm your huckleberry. The more I can use things out of gnulib to caulk the seams from VOS to POSIX, the happier I am.

But in the meantime, install m4 1.4.9, which did not use fseeko.  Your
dependency loop can go as old as m4 1.4.5 while still supporting modern
autoconf.

I'll give that a shot; I didn't have time to check when fseeko got introduced there.

I HAVE ABSOLUTELY NO IDEA HOW TO INSTALL THIS THING.

gnulib doesn't need to be installed, merely checked out.  If you have the
gnulib directory accessible from your VOS machine, you're done;
optionally, you can add that directory to PATH to use gnulib-tool without
a path prefix.

Well, ah hah! So it just magically finds itself the way the initial invocation found it, and treats that as its local dir? Neat trick, to me at least - VOS scripts don't have enough "self" information to figure out who they are and where they were run from.

Second, slightly more intelligent question:  What sort of
interdependencies are there in running the tests?  That is, do they
expect gnulib-tool itself or the repository to be installed?  Can I just
copy the whole fseeko directory from cygwin over to my VOS machine and
expect it to run there?

Once the gnulib directory is accessible, you can do the following to test
just fseeko and its dependencies:

./gnulib-tool --with-tests --test fseeko

gnulib-tool also has the --create-testdir option to create a smaller
directory that tests just fseeko, without having to copy all of gnulib
across OS boundaries.  But I'm not as familiar with that mode of usage.

OK, the first one (which actually didn't have the "force current dir" at the beginning of the command, since I was not in the gnulib-tool dir) worked great for the local gnulib-tool installation on my Cygwin machine. It fetched, it build, it tested, it cleaned, and left no trace of itself but a few PASS messages on the screen.

I used that --create-testdir option then to create a self-contained test bubble, zipped it up and moved it to the VOS machine. Ran configure, make, and make check, and ran right into the same fseek oddness. AFAICT, AC_REPLACE_FUNCS in the configure script does, in fact, correctly detect that we do NOT have fseeko, so it uses (LIBOLD LIBORIG? I forget) to pick up the gnulib version instead.

The link (bind) error I see in the make implies that "the object file called fseeko.o tries to make a call to a function named fseeko, but nothing defines it.

Given that fseeko.o is obviously right there and is a party to that transaction, this could be a gcc platform bug, and I'll look for other evidence to that end. I'll also try getting gnulib-tool to leave the bad files sitting around instead of cleaning them up (I think it does that with --create-test-dir), so I can start hacking away and see what's the boundary between success and failure.

It would be helpful if you posted the config.log of such a test, so we can
see why fseeko.m4 didn't detect that fseeko was missing on your platform.

Attached the configure output as well as the config.log.

Thanks for your quick help.

Jay

bash.pm-2.05$ d config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by dummy configure 0, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  $ ./configure

## --------- ##
## Platform. ##
## --------- ##

hostname = m9
uname -m = i786
uname -r = VOS Release 16.2.0af
uname -s = VOS
uname -v = Thu Jul 26 16:51:10 UTC 2007

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: .
PATH: /%zzy#d010/SysAdmin/JLevitt/command_library
PATH: /usr/local/bin
PATH: /system/gnu_library/bin
PATH: /system/site_library
PATH: /system/command_library
PATH: /system/site_library
PATH: /system/stcp/command_library
PATH: /system/maint_library


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1706: loading site script /usr/local/share/config.site
| # make a backup of config.cache
| cp /var/config.cache /var/config.cache.`date +%y-%m-%d.%H:%M:%S`
| # config.site - read by "autoconf" configure scripts
| #
| # Change some defaults.
| test "$prefix" = NONE && prefix=/usr/local
| test "$exec_prefix" = NONE && exec_prefix=/usr/local
| test "$sharedstatedir" = '$prefix/com' && sharedstatedir="$prefix/var"
|
| # Give Autoconf 2.x generated configure scripts a shared default
| # cache file for feature test results, architecture-specific.
| if test "$cache_file" = /dev/null; then
|     cache_file="$prefix/var/config.cache"
|     # A cache file is only valid for one C compiler.
|     CC=gcc
| fi
|
| # Declare feature-test macros as explained in VOS POSIX.1
| # Reference Guide (R502)
|
| CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE \
| -D_XOPEN_SOURCE=600"
|
| # This isn't a formal autoconf variable but many autoconf scripts
| # use it.
| ac_executable_extensions=".pm"
|
| # Nothing ever has an up-to-date config.guess, and we happen to know
| # the answer
| ac_cv_build="i786-stratus-vos"
| ac_cv_build_alias="i786-stratus-vos"
configure:1717: loading cache /usr/local/var/config.cache
configure:1858: checking for a BSD-compatible install
configure:1914: result: /system/gnu_library/bin/ginstall.pm -c
configure:1925: checking whether build environment is sane
configure:1968: result: yes
configure:1996: checking for a thread-safe mkdir -p
configure:2035: result: /system/gnu_library/bin/mkdir.pm -p
configure:2048: checking for gawk
configure:2075: result: gawk
configure:2086: checking whether gmake sets $(MAKE)
configure:2107: result: yes
configure:2347: checking for gcc
configure:2374: result: gcc
configure:2612: checking for C compiler version
configure:2619: gcc --version >&5
gcc (GCC) 3.3.1
Copyright (C) 2003 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.

configure:2622: $? = 0
configure:2629: gcc -v >&5
Reading specs from /system/gnu_library/lib/gcc-lib/i686-stratus-vos/3.3.1/specs
Configured with: /products/gnu_lang/rebuild.3.3/gcc/configure --build=i686-strat
+us-vos --disable-nls --disable-shared --host=i686-stratus-vos --prefix=/system/
+gnu_library --program-suffix=.pm --disable-install-libiberty --disable-libtool-
+lock --enable-languages=c,c++ --enable-threads=posix --target=i686-stratus-vos
Thread model: posix
gcc version 3.3.1
configure:2632: $? = 0
configure:2639: gcc -V >&5
gcc: `-V' option must have argument
configure:2642: $? = 1
configure:2665: checking for C compiler default output file name
configure:2692: gcc   -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -D_XOPEN_SOURCE=60
+0  conftest.c  >&5
configure:2695: $? = 0
configure:2733: result: conftest.pm
configure:2750: checking whether the C compiler works
configure:2760: ./conftest.pm
configure:2763: $? = 0
configure:2780: result: yes
configure:2787: checking whether we are cross compiling
configure:2789: result: no
configure:2792: checking for suffix of executables
configure:2799: gcc -o conftest.pm   -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -D_
+XOPEN_SOURCE=600  conftest.c  >&5
configure:2802: $? = 0
configure:2826: result: .pm
configure:2832: checking for suffix of object files
configure:2884: result: o
configure:2888: checking whether we are using the GNU C compiler
configure:2940: result: yes
configure:2945: checking whether gcc accepts -g
configure:3080: result: yes
configure:3097: checking for gcc option to accept ISO C89
configure:3200: result: none needed
configure:3229: checking for style of include used by gmake
configure:3257: result: GNU
configure:3282: checking dependency style of gcc
configure:3373: result: gcc3
configure:3401: checking for a BSD-compatible install
configure:3457: result: /system/gnu_library/bin/ginstall.pm -c
configure:3468: checking whether gmake sets $(MAKE)
configure:3489: result: yes
configure:3506: checking build system type
configure:3524: result: i786-stratus-vos
configure:3546: checking host system type
configure:3561: result: i786-stratus-vos
configure:3628: checking for ranlib
configure:3655: result: ranlib
configure:3683: checking for _LARGEFILE_SOURCE value needed for large files
configure:3780: result: no
configure:3876: checking whether stdin defaults to large file offsets
configure:3934: result: yes
configure:3964: checking how to run the C preprocessor
configure:4080: result: gcc -E
configure:4109: gcc -E  -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -D_XOPEN_SOURCE=
+600 conftest.c
configure:4115: $? = 0
configure:4146: gcc -E  -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -D_XOPEN_SOURCE=
+600 conftest.c
conftest.c:11:28: ac_nonexistent.h: No such file or directory.
configure:4152: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "dummy"
| #define PACKAGE_TARNAME "dummy"
| #define PACKAGE_VERSION "0"
| #define PACKAGE_STRING "dummy 0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "dummy"
| #define VERSION "0"
| #define HAVE_FSEEKO 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4192: checking whether the preprocessor supports include_next
configure:4249: result: yes
configure:4265: checking for grep that handles long lines and -e
configure:4339: result: /system/gnu_library/bin/grep.pm
configure:4344: checking for egrep
configure:4422: result: /system/gnu_library/bin/grep.pm -E
configure:4427: checking for ANSI C header files
configure:4588: result: yes
configure:4612: checking for sys/types.h
configure:4655: result: yes
configure:4612: checking for sys/stat.h
configure:4655: result: yes
configure:4612: checking for stdlib.h
configure:4655: result: yes
configure:4612: checking for string.h
configure:4655: result: yes
configure:4612: checking for memory.h
configure:4655: result: yes
configure:4612: checking for strings.h
configure:4655: result: yes
configure:4612: checking for inttypes.h
configure:4655: result: yes
configure:4612: checking for stdint.h
configure:4655: result: yes
configure:4612: checking for unistd.h
configure:4655: result: yes
configure:4676: checking for stdio.h
configure:4682: result: yes
configure:4676: checking for unistd.h
configure:4682: result: yes
configure:4830: checking for fseeko
configure:4881: result: no
configure:4924: checking whether lseek detects pipes
configure:5011: result: yes
configure:5312: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by dummy config.status 0, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  CONFIG_FILES    =
  CONFIG_HEADERS  =
  CONFIG_LINKS    =
  CONFIG_COMMANDS =
  $ ./config.status

on m9

config.status:722: creating Makefile
config.status:722: creating gllib/Makefile
config.status:722: creating glm4/Makefile
config.status:722: creating config.h
config.status:998: executing depfiles commands
configure:6708: === configuring in gltests (/%zzyt#d09g/zzy/source/jrl/ports/fse
+eko/gltests)
configure:6811: running /bin/sh ./configure '--prefix=/usr/local'  'CC=gcc' --ca
+che-file=/usr/local/var/config.cache --srcdir=.

## ---------------- ##
## Cache variables. ##
## ---------------- ##

M4_cv_func_system_consistent=yes
M4_cv_use_stackovf=no
ac_cv_build=i786-stratus-vos
ac_cv_build_alias=i786-stratus-vos
ac_cv_c_bigendian=yes
ac_cv_c_char_unsigned=yes
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
ac_cv_c_restrict=__restrict
ac_cv_c_volatile=yes
ac_cv_decl_EOVERFLOW=E2BIG
ac_cv_env_CC_set=set
ac_cv_env_CC_value=gcc
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_DEFAULT_ARCHIVE_FORMAT_set=
ac_cv_env_DEFAULT_ARCHIVE_FORMAT_value=
ac_cv_env_DEFAULT_ARCHIVE_set=
ac_cv_env_DEFAULT_ARCHIVE_value=
ac_cv_env_DEFAULT_BLOCKING_set=
ac_cv_env_DEFAULT_BLOCKING_value=
ac_cv_env_DEFAULT_QUOTING_STYLE_set=
ac_cv_env_DEFAULT_QUOTING_STYLE_value=
ac_cv_env_DEFAULT_RMT_DIR_set=
ac_cv_env_DEFAULT_RMT_DIR_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_YACC_set=
ac_cv_env_YACC_value=
ac_cv_env_YFLAGS_set=
ac_cv_env_YFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=.pm
ac_cv_func___fpending=no
ac_cv_func___fpurge=no
ac_cv_func___freading=no
ac_cv_func___secure_getenv=no
ac_cv_func__setjmp=no
ac_cv_func__setmode=no
ac_cv_func_acosh=no
ac_cv_func_alarm=yes
ac_cv_func_alloca_works=yes
ac_cv_func_btowc=no
ac_cv_func_canonicalize_file_name=no
ac_cv_func_chown_works=no
ac_cv_func_chroot=no
ac_cv_func_chsize=no
ac_cv_func_clock_gettime=yes
ac_cv_func_clock_settime=yes
ac_cv_func_cosh=yes
ac_cv_func_crypt=yes
ac_cv_func_dirfd=no
ac_cv_func_dlopen=yes
ac_cv_func_dup2=yes
ac_cv_func_eaccess=no
ac_cv_func_erf=no
ac_cv_func_fchdir=yes
ac_cv_func_fchmod=yes
ac_cv_func_fchmodat=no
ac_cv_func_fchown=yes
ac_cv_func_fchownat=no
ac_cv_func_fcntl=yes
ac_cv_func_fdopendir=no
ac_cv_func_finite=no
ac_cv_func_flock=no
ac_cv_func_flockfile=no
ac_cv_func_fmod=yes
ac_cv_func_fnmatch_gnu=no
ac_cv_func_fpurge=no
ac_cv_func_fsync=yes
ac_cv_func_ftello=no
ac_cv_func_ftruncate=yes
ac_cv_func_funlockfile=no
ac_cv_func_futimes=no
ac_cv_func_futimesat=no
ac_cv_func_getcwd=yes
ac_cv_func_getdelim=no
ac_cv_func_getdtablesize=yes
ac_cv_func_getgroups=yes
ac_cv_func_getline=no
ac_cv_func_getopt_long_only=no
ac_cv_func_getpagesize=yes
ac_cv_func_getpgid=no
ac_cv_func_getpgrp=yes
ac_cv_func_getpgrp_void=yes
ac_cv_func_getpriority=no
ac_cv_func_getrlimit=no
ac_cv_func_gettimeofday=yes
ac_cv_func_group_member=no
ac_cv_func_hypot=yes
ac_cv_func_initgroups=no
ac_cv_func_isblank=no
ac_cv_func_isinf=no
ac_cv_func_isnan=no
ac_cv_func_issetugid=no
ac_cv_func_iswcntrl=no
ac_cv_func_iswctype=no
ac_cv_func_killpg=no
ac_cv_func_lchmod=no
ac_cv_func_lchown=no
ac_cv_func_link=no
ac_cv_func_lockf=yes
ac_cv_func_lstat=yes
ac_cv_func_lstat_dereferences_slashed_symlink=no
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_mbrtowc=no
ac_cv_func_mbsinit=no
ac_cv_func_mbsrtowcs=no
ac_cv_func_memchr=yes
ac_cv_func_memcmp_working=yes
ac_cv_func_memmove=yes
ac_cv_func_mempcpy=no
ac_cv_func_memrchr=no
ac_cv_func_memset=yes
ac_cv_func_mkdirat=no
ac_cv_func_mkdtemp=no
ac_cv_func_mkfifo=yes
ac_cv_func_mktime=yes
ac_cv_func_nanotime=no
ac_cv_func_nl_langinfo=no
ac_cv_func_obstack=no
ac_cv_func_openat=no
ac_cv_func_pathconf=yes
ac_cv_func_pause=yes
ac_cv_func_pipe=yes
ac_cv_func_raise=yes
ac_cv_func_readlink=yes
ac_cv_func_rmdir=yes
ac_cv_func_rpmatch=no
ac_cv_func_seekdir=yes
ac_cv_func_setegid=yes
ac_cv_func_setenv=yes
ac_cv_func_seteuid=yes
ac_cv_func_setgid=yes
ac_cv_func_setgroups=no
ac_cv_func_setitimer=no
ac_cv_func_setlocale=yes
ac_cv_func_setmode=no
ac_cv_func_setpgid=yes
ac_cv_func_setpgrp=no
ac_cv_func_setpgrp_void=yes
ac_cv_func_setproctitle=no
ac_cv_func_setregid=no
ac_cv_func_setresgid=no
ac_cv_func_setresuid=no
ac_cv_func_setreuid=no
ac_cv_func_setrgid=no
ac_cv_func_setrlimit=no
ac_cv_func_setruid=no
ac_cv_func_setsid=yes
ac_cv_func_setuid=yes
ac_cv_func_sigaction=yes
ac_cv_func_sigaltstack=no
ac_cv_func_sigprocmask=yes
ac_cv_func_sigstack=no
ac_cv_func_sigvec=no
ac_cv_func_sinh=yes
ac_cv_func_sleep=yes
ac_cv_func_snprintf=yes
ac_cv_func_stpcpy=no
ac_cv_func_strcasecmp=yes
ac_cv_func_strchr=yes
ac_cv_func_strchrnul=no
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strerror_r=no
ac_cv_func_strerror_r_char_p=no
ac_cv_func_strftime=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_strnlen_working=yes
ac_cv_func_strstr=yes
ac_cv_func_strtoimax=yes
ac_cv_func_strtol=yes
ac_cv_func_strtoll=yes
ac_cv_func_strtoul=yes
ac_cv_func_strtoull=yes
ac_cv_func_strtoumax=yes
ac_cv_func_symlink=yes
ac_cv_func_syscall=no
ac_cv_func_sysconf=yes
ac_cv_func_tanh=yes
ac_cv_func_telldir=yes
ac_cv_func_timegm=yes
ac_cv_func_times=yes
ac_cv_func_truncate=no
ac_cv_func_unsetenv=yes
ac_cv_func_utime_null=yes
ac_cv_func_utimes=no
ac_cv_func_vasnprintf=no
ac_cv_func_vasprintf=yes
ac_cv_func_vsnprintf=yes
ac_cv_func_wait4=yes
ac_cv_func_waitpid=yes
ac_cv_func_wcrtomb=no
ac_cv_func_wcscoll=no
ac_cv_func_wcslen=no
ac_cv_func_wcwidth=no
ac_cv_func_wmemchr=no
ac_cv_func_wmemcpy=no
ac_cv_func_wmempcpy=no
ac_cv_func_working_mktime=no
ac_cv_gnu_library_2_1=no
ac_cv_have_decl___fpending=no
ac_cv_have_decl__snprintf=no
ac_cv_have_decl_canonicalize_file_name=no
ac_cv_have_decl_clearerr_unlocked=no
ac_cv_have_decl_dirfd=no
ac_cv_have_decl_feof_unlocked=no
ac_cv_have_decl_ferror_unlocked=no
ac_cv_have_decl_fflush_unlocked=no
ac_cv_have_decl_fgets_unlocked=no
ac_cv_have_decl_fpurge=no
ac_cv_have_decl_fputc_unlocked=no
ac_cv_have_decl_fputs_unlocked=no
ac_cv_have_decl_fread_unlocked=no
ac_cv_have_decl_fwrite_unlocked=no
ac_cv_have_decl_getc_unlocked=yes
ac_cv_have_decl_getchar_unlocked=yes
ac_cv_have_decl_getcwd=yes
ac_cv_have_decl_getdelim=no
ac_cv_have_decl_getenv=yes
ac_cv_have_decl_getgrgid=yes
ac_cv_have_decl_getline=no
ac_cv_have_decl_getpwuid=yes
ac_cv_have_decl_imaxabs=yes
ac_cv_have_decl_imaxdiv=yes
ac_cv_have_decl_isblank=no
ac_cv_have_decl_memrchr=no
ac_cv_have_decl_mkdir=yes
ac_cv_have_decl_program_invocation_name=no
ac_cv_have_decl_program_invocation_short_name=no
ac_cv_have_decl_putc_unlocked=yes
ac_cv_have_decl_putchar_unlocked=yes
ac_cv_have_decl_strdup=yes
ac_cv_have_decl_strerror_r=no
ac_cv_have_decl_strncasecmp=yes
ac_cv_have_decl_strndup=no
ac_cv_have_decl_strnlen=yes
ac_cv_have_decl_strtoimax=yes
ac_cv_have_decl_strtoumax=yes
ac_cv_have_decl_sys_nerr=no
ac_cv_have_decl_time=yes
ac_cv_have_decl_tzname=yes
ac_cv_have_decl_vsnprintf=yes
ac_cv_have_decl_wcwidth=no
ac_cv_header_OS_h=no
ac_cv_header_a_out_h=no
ac_cv_header_direct_h=no
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dirent_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_features_h=yes
ac_cv_header_float_h=yes
ac_cv_header_getopt_h=yes
ac_cv_header_grp_h=yes
ac_cv_header_iconv_h=no
ac_cv_header_ieeefp_h=no
ac_cv_header_intrinsics_h=no
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_linewrap_h=no
ac_cv_header_linux_fd_h=no
ac_cv_header_locale_h=yes
ac_cv_header_math_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_net_errno_h=no
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_in_systm_h=yes
ac_cv_header_priv_h=no
ac_cv_header_pthread_h=yes
ac_cv_header_pwd_h=yes
ac_cv_header_sgtty_h=no
ac_cv_header_siginfo_h=no
ac_cv_header_signal_h=yes
ac_cv_header_stat_broken=no
ac_cv_header_stdbool_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdio_ext_h=no
ac_cv_header_stdio_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_stropts_h=yes
ac_cv_header_sys_bitypes_h=no
ac_cv_header_sys_buf_h=no
ac_cv_header_sys_device_h=no
ac_cv_header_sys_fcntl_h=yes
ac_cv_header_sys_file_h=yes
ac_cv_header_sys_filio_h=no
ac_cv_header_sys_gentape_h=no
ac_cv_header_sys_inet_h=no
ac_cv_header_sys_inttypes_h=no
ac_cv_header_sys_io_trioctl_h=no
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_mkdev_h=no
ac_cv_header_sys_mtio_h=no
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_resource_h=no
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_syscall_h=no
ac_cv_header_sys_sysmacros_h=yes
ac_cv_header_sys_tape_h=no
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_times_h=yes
ac_cv_header_sys_tprintf_h=no
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_types_h_makedev=no
ac_cv_header_sys_utime_h=no
ac_cv_header_sys_wait_h=yes
ac_cv_header_syscall_h=no
ac_cv_header_sysexits_h=yes
ac_cv_header_time=yes
ac_cv_header_time_h=yes
ac_cv_header_ucontext_h=no
ac_cv_header_unistd_h=yes
ac_cv_header_utime_h=yes
ac_cv_header_wchar_h=no
ac_cv_header_wctype_h=no
ac_cv_host=i786-stratus-vos
ac_cv_host_alias=i786-stratus-vos
ac_cv_lib_cposix_strerror=no
ac_cv_lib_dl_dlopen=no
ac_cv_lib_dld_shl_load=no
ac_cv_lib_error_at_line=no
ac_cv_member_stack_t_ss_sp=no
ac_cv_member_struct_sigaction_sa_sigaction=yes
ac_cv_member_struct_stat_st_atim_st__tim_tv_nsec=no
ac_cv_member_struct_stat_st_atim_tv_nsec=no
ac_cv_member_struct_stat_st_atimensec=no
ac_cv_member_struct_stat_st_atimespec_tv_nsec=no
ac_cv_member_struct_stat_st_birthtim_tv_nsec=no
ac_cv_member_struct_stat_st_birthtimensec=no
ac_cv_member_struct_stat_st_birthtimespec_tv_nsec=no
ac_cv_member_struct_stat_st_blksize=yes
ac_cv_member_struct_stat_st_blocks=yes
ac_cv_member_struct_stat_st_rdev=yes
ac_cv_member_struct_tm_tm_gmtoff=no
ac_cv_member_struct_tm_tm_zone=no
ac_cv_objext=o
ac_cv_path_EGREP=$'/system/gnu_library/bin/grep.pm -E'
ac_cv_path_GMSGFMT=:
ac_cv_path_GREP=/system/gnu_library/bin/grep.pm
ac_cv_path_MSGFMT=:
ac_cv_path_MSGMERGE=:
ac_cv_path_XGETTEXT=:
ac_cv_path_install=$'/system/gnu_library/bin/ginstall.pm -c'
ac_cv_path_mkdir=/system/gnu_library/bin/mkdir.pm
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP=$'gcc -E'
ac_cv_prog_YACC=$'bison -y'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_AS=as
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_c99=no
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_gcc_c_o=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_egrep=$'grep -E'
ac_cv_prog_gcc_traditional=no
ac_cv_prog_make_gmake_set=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_clock_gettime=$'none required'
ac_cv_search_cos=$'none required'
ac_cv_search_crypt=$'none required'
ac_cv_search_opendir=$'none required'
ac_cv_search_setsockopt=$'none required'
ac_cv_sizeof___int64=0
ac_cv_sizeof_double=8
ac_cv_sizeof_float=4
ac_cv_sizeof_int=4
ac_cv_sizeof_long=4
ac_cv_sizeof_long_long=8
ac_cv_sizeof_off_t=4
ac_cv_sizeof_rlim_t=0
ac_cv_sizeof_short=2
ac_cv_sizeof_time_t=4
ac_cv_sizeof_voidp=4
ac_cv_struct_tm=time.h
ac_cv_sys_file_offset_bits=no
ac_cv_sys_large_files=no
ac_cv_sys_largefile_CC=no
ac_cv_sys_largefile_source=no
ac_cv_sys_long_file_names=yes
ac_cv_sys_pending_output_n_bytes=$'fp->_ptr - fp->_base'
ac_cv_target=i786-stratus-vos
ac_cv_target_alias=i786-stratus-vos
ac_cv_type__Bool=yes
ac_cv_type___int64=no
ac_cv_type_dev_t=yes
ac_cv_type_double=yes
ac_cv_type_float=yes
ac_cv_type_getgroups=gid_t
ac_cv_type_gid_t=yes
ac_cv_type_iconv_t=no
ac_cv_type_ino_t=yes
ac_cv_type_int=yes
ac_cv_type_long=yes
ac_cv_type_long_long=yes
ac_cv_type_long_long_int=yes
ac_cv_type_major_t=no
ac_cv_type_mbstate_t=no
ac_cv_type_minor_t=no
ac_cv_type_mode_t=yes
ac_cv_type_off_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_ptrdiff_t=yes
ac_cv_type_rlim_t=no
ac_cv_type_short=yes
ac_cv_type_sig_atomic_t=yes
ac_cv_type_siginfo_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_time_t=yes
ac_cv_type_uid_t=yes
ac_cv_type_unsigned_long_long_int=yes
ac_cv_type_voidp=yes
ac_cv_var_tzname=yes
ac_cv_win_or_dos=no
ac_cv_working_alloca_h=yes
acl_cv_hardcode_direct=no
acl_cv_hardcode_libdir_flag_spec=
acl_cv_hardcode_libdir_separator=
acl_cv_hardcode_minus_L=no
acl_cv_libext=a
acl_cv_libname_spec=$'lib$name'
acl_cv_library_names_spec=
acl_cv_path_LD=/system/gnu_library/bin/ld
acl_cv_prog_gnu_ld=no
acl_cv_rpath=done
acl_cv_shlibext=so
acl_cv_wl=-Wl,
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_func_iconv=$'no, consider installing GNU libiconv'
am_cv_func_working_getline=no
am_cv_langinfo_codeset=no
am_cv_lib_iconv=no
am_cv_prog_tar_ustar=none
diff_cv_st_fstype_string=no
gl_cv_bitsizeof_ptrdiff_t=32
gl_cv_bitsizeof_sig_atomic_t=32
gl_cv_bitsizeof_size_t=32
gl_cv_bitsizeof_wchar_t=32
gl_cv_bitsizeof_wint_t=unknown
gl_cv_c_inline_effective=yes
gl_cv_cc_double_expbit0=$'word 0 bit 20'
gl_cv_cc_double_signbit=$'word 0 bit 31'
gl_cv_cc_float_expbit0=$'word 0 bit 23'
gl_cv_cc_float_signbit=$'word 0 bit 31'
gl_cv_cc_long_double_expbit0=$'word 0 bit 20'
gl_cv_cc_long_double_signbit=$'word 0 bit 31'
gl_cv_compound_literals=yes
gl_cv_double_slash_root=no
gl_cv_func_chown_follows_symlink=yes
gl_cv_func_dirfd_macro=no
gl_cv_func_fflush_stdin=yes
gl_cv_func_free=yes
gl_cv_func_frexp_no_libm=yes
gl_cv_func_frexp_works=yes
gl_cv_func_frexpl_no_libm=no
gl_cv_func_fseeko=no
gl_cv_func_ftello=no
gl_cv_func_getcwd_null=no
gl_cv_func_gettimeofday_clobber=no
gl_cv_func_gettimeofday_posix_signature=yes
gl_cv_func_isnan_no_libm=yes
gl_cv_func_isnanf_no_libm=yes
gl_cv_func_isnanf_works=yes
gl_cv_func_isnanl_no_libm=yes
gl_cv_func_isnanl_works=no
gl_cv_func_ldexp_no_libm=yes
gl_cv_func_ldexpl_no_libm=no
gl_cv_func_lseek_pipe=yes
gl_cv_func_malloc_0_nonnull=1
gl_cv_func_malloc_posix=yes
gl_cv_func_mbrtowc=no
gl_cv_func_printf_directive_a=no
gl_cv_func_printf_directive_f=no
gl_cv_func_printf_directive_n=yes
gl_cv_func_printf_flag_grouping=no
gl_cv_func_printf_flag_zero=no
gl_cv_func_printf_infinite=no
gl_cv_func_printf_infinite_long_double=no
gl_cv_func_printf_long_double=yes
gl_cv_func_printf_positions=no
gl_cv_func_printf_sizes_c99=no
gl_cv_func_re_compile_pattern_working=no
gl_cv_func_signbit=no
gl_cv_func_sigprocmask=1
gl_cv_func_strndup=no
gl_cv_func_va_copy=yes
gl_cv_func_vasprintf_posix=no
gl_cv_func_working_mkstemp=no
gl_cv_func_working_strerror=yes
gl_cv_func_working_utimes=no
gl_cv_have_arbitrary_file_name_length_limit=yes
gl_cv_have_include_next=yes
gl_cv_header_inttypes_h=yes
gl_cv_header_stdint_h=yes
gl_cv_header_wchar_h_standalone=no
gl_cv_header_working_fcntl_h=$'no (bad O_NOATIME, O_NOFOLLOW)'
gl_cv_header_working_inttypes_h=no
gl_cv_header_working_stdint_h=no
gl_cv_next_fcntl_h=$'<fcntl.h>'
gl_cv_next_inttypes_h=$'<inttypes.h>'
gl_cv_next_math_h=$'<math.h>'
gl_cv_next_signal_h=$'<signal.h>'
gl_cv_next_stdint_h=$'<stdint.h>'
gl_cv_next_stdio_h=$'<stdio.h>'
gl_cv_next_stdlib_h=$'<stdlib.h>'
gl_cv_next_string_h=$'<string.h>'
gl_cv_next_sys_stat_h=$'<sys/stat.h>'
gl_cv_next_sys_time_h=$'<sys/time.h>'
gl_cv_next_sysexits_h=$'<sysexits.h>'
gl_cv_next_time_h=$'<time.h>'
gl_cv_next_unistd_h=$'<unistd.h>'
gl_cv_next_wchar_h=$'<wchar.h>'
gl_cv_rpl_alloca=yes
gl_cv_size_max=yes
gl_cv_struct_dirent_d_ino=no
gl_cv_sys_dir_fd_member_name=no_such_member
gl_cv_sys_struct_timespec_in_time_h=yes
gl_cv_sys_struct_timeval=yes
gl_cv_sys_struct_utimbuf=yes
gl_cv_time_r_posix=yes
gl_cv_type_ptrdiff_t_signed=yes
gl_cv_type_ptrdiff_t_suffix=l
gl_cv_type_sig_atomic_t_signed=yes
gl_cv_type_sig_atomic_t_suffix=l
gl_cv_type_size_t_signed=no
gl_cv_type_size_t_suffix=ul
gl_cv_type_wchar_t_signed=yes
gl_cv_type_wchar_t_suffix=l
gl_cv_type_wint_t_signed=no
gl_cv_type_wint_t_suffix=no
gl_cv_var_stdin_large_offset=yes
gt_cv_c_intmax_t=yes
gt_cv_c_wchar_t=yes
gt_cv_c_wint_t=no
gt_cv_func_CFLocaleCopyCurrent=no
gt_cv_func_CFPreferencesCopyAppValue=no
gt_cv_func_gnugettext3_libc=no
gt_cv_func_gnugettext3_libintl=no
gt_cv_func_unsetenv_ret=void
gt_cv_inttypes_pri_broken=no
gt_cv_ssize_t=yes
jm_cv_func_strtoimax_macro=no
jm_cv_func_strtoumax_macro=no
pu_cv_header_mtio_check_field=mt_type
rb_cv_binary_elf=no
rb_cv_cppoutfile=yes
rb_cv_dlopen=unknown
rb_cv_fcnt=_cnt
rb_cv_frptr=_ptr
rb_cv_func_noinline=$'__attribute__ ((noinline)) x'
rb_cv_func_noreturn=$'__attribute__ ((noreturn)) x'
rb_cv_have_daylight=no
rb_cv_have_prototypes=yes
rb_cv_have_sc_clk_tck=yes
rb_cv_huge_st_ino=no
rb_cv_member_struct_tm_tm_gmtoff=no
rb_cv_need_io_seek_between_rw=yes
rb_cv_negative_time_t=no
rb_cv_prog_gnu_ld=no
rb_cv_rshift_sign=yes
rb_cv_ruby_extern=no
rb_cv_stack_grow_dir=-1
rb_cv_stdarg=yes
rb_cv_tokenpaste=ansi
tar_cv_path_RSH=no

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /%zzyt#d09g/zzy/source/jrl/ports/fseeko/build-aux/missing --ru
+n aclocal-1.10'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /%zzyt#d09g/zzy/source/jrl/ports/fseeko/build-aux/missing --run
+tar'
AUTOCONF='${SHELL} /%zzyt#d09g/zzy/source/jrl/ports/fseeko/build-aux/missing --r
+un autoconf'
AUTOHEADER='${SHELL} /%zzyt#d09g/zzy/source/jrl/ports/fseeko/build-aux/missing -
+-run autoheader'
AUTOMAKE='${SHELL} /%zzyt#d09g/zzy/source/jrl/ports/fseeko/build-aux/missing --r
+un automake-1.10'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=' -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -D_XOPEN_SOURCE=600'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/system/gnu_library/bin/grep.pm -E'
EXEEXT='.pm'
GL_COND_LIBTOOL_FALSE=''
GL_COND_LIBTOOL_TRUE='#'
GNULIB_CHOWN='0'
GNULIB_DUP2='0'
GNULIB_FCHDIR='0'
GNULIB_FFLUSH='0'
GNULIB_FOPEN='0'
GNULIB_FPRINTF_POSIX='0'
GNULIB_FREOPEN='0'
GNULIB_FSEEK='0'
GNULIB_FSEEKO='1'
GNULIB_FTELL='0'
GNULIB_FTELLO='0'
GNULIB_FTRUNCATE='0'
GNULIB_GETCWD='0'
GNULIB_GETDELIM='0'
GNULIB_GETLINE='0'
GNULIB_GETLOGIN_R='0'
GNULIB_LCHOWN='0'
GNULIB_LSEEK='1'
GNULIB_PRINTF_POSIX='0'
GNULIB_READLINK='0'
GNULIB_SLEEP='0'
GNULIB_SNPRINTF='0'
GNULIB_SPRINTF_POSIX='0'
GNULIB_VASPRINTF='0'
GNULIB_VFPRINTF_POSIX='0'
GNULIB_VPRINTF_POSIX='0'
GNULIB_VSNPRINTF='0'
GNULIB_VSPRINTF_POSIX='0'
GREP='/system/gnu_library/bin/grep.pm'
HAVE_DECL_GETDELIM='1'
HAVE_DECL_GETLINE='1'
HAVE_DECL_GETLOGIN_R='1'
HAVE_DECL_SNPRINTF='1'
HAVE_DECL_VSNPRINTF='1'
HAVE_DUP2='1'
HAVE_FSEEKO='0'
HAVE_FTELLO='1'
HAVE_FTRUNCATE='1'
HAVE_READLINK='1'
HAVE_SLEEP='1'
HAVE_UNISTD_H='1'
HAVE_VASPRINTF='1'
INCLUDE_NEXT='include_next'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LDFLAGS=''
LIBGNU_LIBDEPS=''
LIBGNU_LTLIBDEPS=''
LIBOBJS=''
LIBS=''
LTLIBOBJS=''
MAKEINFO='${SHELL} /%zzyt#d09g/zzy/source/jrl/ports/fseeko/build-aux/missing --r
+un makeinfo'
NEXT_STDIO_H='<stdio.h>'
NEXT_UNISTD_H='<unistd.h>'
OBJEXT='o'
PACKAGE='dummy'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='dummy'
PACKAGE_STRING='dummy 0'
PACKAGE_TARNAME='dummy'
PACKAGE_VERSION='0'
PATH_SEPARATOR=':'
RANLIB='ranlib'
REPLACE_CHOWN='0'
REPLACE_FCHDIR='0'
REPLACE_FFLUSH='0'
REPLACE_FOPEN='0'
REPLACE_FPRINTF='0'
REPLACE_FREOPEN='0'
REPLACE_FSEEK='0'
REPLACE_FSEEKO='1'
REPLACE_FTELL='0'
REPLACE_FTELLO='0'
REPLACE_GETCWD='0'
REPLACE_GETLINE='0'
REPLACE_LCHOWN='0'
REPLACE_LSEEK='0'
REPLACE_PRINTF='0'
REPLACE_SNPRINTF='0'
REPLACE_SPRINTF='0'
REPLACE_VASPRINTF='0'
REPLACE_VFPRINTF='0'
REPLACE_VPRINTF='0'
REPLACE_VSNPRINTF='0'
REPLACE_VSPRINTF='0'
SET_MAKE=''
SHELL='/bin/sh'
STRIP=''
VERSION='0'
ac_ct_CC='gcc'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i786-stratus-vos'
build_alias=''
build_cpu='i786'
build_os='vos'
build_vendor='stratus'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='/usr/local'
gl_LIBOBJS=' fseeko.o'
gl_LTLIBOBJS=' fseeko.lo'
host='i786-stratus-vos'
host_alias=''
host_cpu='i786'
host_os='vos'
host_vendor='stratus'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='$(SHELL) /%zzyt#d09g/zzy/source/jrl/ports/fseeko/build-aux/install-s
+h'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/system/gnu_library/bin/mkdir.pm -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
subdirs=' gltests'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_NAME "dummy"
#define PACKAGE_TARNAME "dummy"
#define PACKAGE_VERSION "0"
#define PACKAGE_STRING "dummy 0"
#define PACKAGE_BUGREPORT ""
#define PACKAGE "dummy"
#define VERSION "0"
#define HAVE_FSEEKO 1
#define HAVE_INCLUDE_NEXT 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_STDIO_H 1
#define HAVE_UNISTD_H 1

configure: exit 0
bash.pm-2.05$
bash.pm-2.05$ cd fseeko
bash.pm-2.05$ ls
Makefile     aclocal.m4      config.h     config.status  gllib    stamp-h1
Makefile.am  autom4te.cache  config.h.in  configure      glm4
Makefile.in  build-aux       config.log   configure.ac   gltests
bash.pm-2.05$ make distclean
Making distclean in gltests
gmake[1]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
Making distclean in .
gmake[2]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
test -z "" || rm -f
rm -rf SunWS_cache
test -z "test-fseeko.exe test-lseek.exe test-stdio.exe test-unistd.exe" || rm -f
+ test-fseeko.exe test-lseek.exe test-stdio.exe test-unistd.exe
rm -f *.o
test -z "core *.stackdump" || rm -f core *.stackdump
rm -f *.tab.c
test -z "" || rm -f
test -z "" || rm -f
rm -f config.h stamp-h1
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
gmake[2]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
rm -f config.status config.cache config.log configure.lineno config.status.linen
+o
rm -rf ./.deps
rm -f Makefile
gmake[1]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
Making distclean in glm4
gmake[1]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/glm4'
test -z "" || rm -f
rm -f Makefile
gmake[1]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/glm4'
Making distclean in gllib
gmake[1]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gllib'
test -z "" || rm -f
test -z "libgnu.a" || rm -f libgnu.a
test -z "" || rm -f
rm -f *.o
test -z "core *.stackdump stdio.h stdio.h-t unistd.h unistd.h-t" || rm -f core *
+.stackdump stdio.h stdio.h-t unistd.h unistd.h-t
rm -f *.tab.c
test -z "" || rm -f
test -z "" || rm -f
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[1]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gllib'
Making distclean in .
gmake[1]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko'
test -z "" || rm -f
rm -f config.h stamp-h1
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
gmake[1]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko'
rm -f config.status config.cache config.log configure.lineno config.status.linen
+o
rm -f Makefile
bash.pm-2.05$

bash.pm-2.05$ ./configure
configure: loading site script /usr/local/share/config.site
configure: loading cache /usr/local/var/config.cache
checking for a BSD-compatible install... (cached) /system/gnu_library/bin/ginsta
+ll.pm -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... (cached) /system/gnu_library/bin/mkdir.pm
+ -p
checking for gawk... (cached) gawk
checking whether gmake sets $(MAKE)... (cached) yes
checking for gcc... (cached) gcc
checking for C compiler default output file name... conftest.pm
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .pm
checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking for style of include used by gmake... GNU
checking dependency style of gcc... (cached) gcc3
checking for a BSD-compatible install... /system/gnu_library/bin/ginstall.pm -c
checking whether gmake sets $(MAKE)... (cached) yes
checking build system type... (cached) i786-stratus-vos
checking host system type... (cached) i786-stratus-vos
checking for ranlib... (cached) ranlib
checking for _LARGEFILE_SOURCE value needed for large files... (cached) no
checking whether stdin defaults to large file offsets... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking whether the preprocessor supports include_next... (cached) yes
checking for grep that handles long lines and -e... (cached) /system/gnu_library
+/bin/grep.pm
checking for egrep... (cached) /system/gnu_library/bin/grep.pm -E
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for stdio.h... (cached) yes
checking for unistd.h... (cached) yes
checking for fseeko... (cached) no
checking whether lseek detects pipes... (cached) yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating gllib/Makefile
config.status: creating glm4/Makefile
config.status: creating config.h
config.status: executing depfiles commands
=== configuring in gltests (/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests)
configure: running /bin/sh ./configure '--prefix=/usr/local'  'CC=gcc' --cache-f
+ile=/usr/local/var/config.cache --srcdir=.
configure: loading site script /usr/local/share/config.site
configure: loading cache /usr/local/var/config.cache
checking for a BSD-compatible install... (cached) /system/gnu_library/bin/ginsta
+ll.pm -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... (cached) /system/gnu_library/bin/mkdir.pm
+ -p
checking for gawk... (cached) gawk
checking whether gmake sets $(MAKE)... (cached) yes
checking for gcc... (cached) gcc
checking for C compiler default output file name... conftest.pm
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .pm
checking for suffix of object files... (cached) o
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking for style of include used by gmake... GNU
checking dependency style of gcc... (cached) gcc3
checking for a BSD-compatible install... /system/gnu_library/bin/ginstall.pm -c
checking whether gmake sets $(MAKE)... (cached) yes
checking for ranlib... (cached) ranlib
checking for _LARGEFILE_SOURCE value needed for large files... (cached) no
checking whether stdin defaults to large file offsets... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking whether the preprocessor supports include_next... (cached) yes
checking for grep that handles long lines and -e... (cached) /system/gnu_library
+/bin/grep.pm
checking for egrep... (cached) /system/gnu_library/bin/grep.pm -E
checking for ANSI C header files... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for unistd.h... (cached) yes
checking for stdio.h... (cached) yes
checking for unistd.h... (cached) yes
checking for fseeko... (cached) no
checking whether lseek detects pipes... (cached) yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
bash.pm-2.05$ make
gmake  all-recursive
gmake[1]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko'
Making all in gllib
gmake[2]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gllib'
rm -f stdio.h-t stdio.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  sed -e 's/@''INCLUDE_NEXT''@/include_next/g' \
      -e 's|@''NEXT_STDIO_H''@|<stdio.h>|g' \
      -e 's|@''GNULIB_FPRINTF_POSIX''@|0|g' \
      -e 's|@''GNULIB_PRINTF_POSIX''@|0|g' \
      -e 's|@''GNULIB_SNPRINTF''@|0|g' \
      -e 's|@''GNULIB_SPRINTF_POSIX''@|0|g' \
      -e 's|@''GNULIB_VFPRINTF_POSIX''@|0|g' \
      -e 's|@''GNULIB_VPRINTF_POSIX''@|0|g' \
      -e 's|@''GNULIB_VSNPRINTF''@|0|g' \
      -e 's|@''GNULIB_VSPRINTF_POSIX''@|0|g' \
      -e 's|@''GNULIB_VASPRINTF''@|0|g' \
      -e 's|@''GNULIB_FOPEN''@|0|g' \
      -e 's|@''GNULIB_FREOPEN''@|0|g' \
      -e 's|@''GNULIB_FSEEK''@|0|g' \
      -e 's|@''GNULIB_FSEEKO''@|1|g' \
      -e 's|@''GNULIB_FTELL''@|0|g' \
      -e 's|@''GNULIB_FTELLO''@|0|g' \
      -e 's|@''GNULIB_FFLUSH''@|0|g' \
      -e 's|@''GNULIB_GETDELIM''@|0|g' \
      -e 's|@''GNULIB_GETLINE''@|0|g' \
      -e 's|@''REPLACE_FPRINTF''@|0|g' \
      -e 's|@''REPLACE_VFPRINTF''@|0|g' \
      -e 's|@''REPLACE_PRINTF''@|0|g' \
      -e 's|@''REPLACE_VPRINTF''@|0|g' \
      -e 's|@''REPLACE_SNPRINTF''@|0|g' \
      -e 's|@''HAVE_DECL_SNPRINTF''@|1|g' \
      -e 's|@''REPLACE_VSNPRINTF''@|0|g' \
      -e 's|@''HAVE_DECL_VSNPRINTF''@|1|g' \
      -e 's|@''REPLACE_SPRINTF''@|0|g' \
      -e 's|@''REPLACE_VSPRINTF''@|0|g' \
      -e 's|@''HAVE_VASPRINTF''@|1|g' \
      -e 's|@''REPLACE_VASPRINTF''@|0|g' \
      -e 's|@''REPLACE_FOPEN''@|0|g' \
      -e 's|@''REPLACE_FREOPEN''@|0|g' \
      -e 's|@''REPLACE_FSEEKO''@|1|g' \
      -e 's|@''REPLACE_FSEEK''@|0|g' \
      -e 's|@''REPLACE_FTELLO''@|0|g' \
      -e 's|@''REPLACE_FTELL''@|0|g' \
      -e 's|@''REPLACE_FFLUSH''@|0|g' \
      -e 's|@''HAVE_DECL_GETDELIM''@|1|g' \
      -e 's|@''HAVE_DECL_GETLINE''@|1|g' \
      -e 's|@''REPLACE_GETLINE''@|0|g' \
      -e '/definition of GL_LINK_WARNING/r ../build-aux/link-warning.h' \
      < ./stdio.in.h; \
} > stdio.h-t
mv stdio.h-t stdio.h
rm -f unistd.h-t unistd.h
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  sed -e 's|@''HAVE_UNISTD_H''@|1|g' \
      -e 's/@''INCLUDE_NEXT''@/include_next/g' \
      -e 's|@''NEXT_UNISTD_H''@|<unistd.h>|g' \
      -e 's|@''GNULIB_CHOWN''@|0|g' \
      -e 's|@''GNULIB_DUP2''@|0|g' \
      -e 's|@''GNULIB_FCHDIR''@|0|g' \
      -e 's|@''GNULIB_FTRUNCATE''@|0|g' \
      -e 's|@''GNULIB_GETCWD''@|0|g' \
      -e 's|@''GNULIB_GETLOGIN_R''@|0|g' \
      -e 's|@''GNULIB_LCHOWN''@|0|g' \
      -e 's|@''GNULIB_LSEEK''@|1|g' \
      -e 's|@''GNULIB_READLINK''@|0|g' \
      -e 's|@''GNULIB_SLEEP''@|0|g' \
      -e 's|@''HAVE_DUP2''@|1|g' \
      -e 's|@''HAVE_FTRUNCATE''@|1|g' \
      -e 's|@''HAVE_READLINK''@|1|g' \
      -e 's|@''HAVE_SLEEP''@|1|g' \
      -e 's|@''HAVE_DECL_GETLOGIN_R''@|1|g' \
      -e 's|@''REPLACE_CHOWN''@|0|g' \
      -e 's|@''REPLACE_FCHDIR''@|0|g' \
      -e 's|@''REPLACE_GETCWD''@|0|g' \
      -e 's|@''REPLACE_LCHOWN''@|0|g' \
      -e 's|@''REPLACE_LSEEK''@|0|g' \
      < ./unistd.in.h; \
} > unistd.h-t
mv unistd.h-t unistd.h
gmake  all-am
gmake[3]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gllib'
gcc -DHAVE_CONFIG_H -I. -I..   -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -D_XOPEN_
+SOURCE=600  -g -O2 -MT dummy.o -MD -MP -MF .deps/dummy.Tpo -c -o dummy.o dummy.
+c
mv -f .deps/dummy.Tpo .deps/dummy.Po
gcc -DHAVE_CONFIG_H -I. -I..   -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE -D_XOPEN_
+SOURCE=600  -g -O2 -MT fseeko.o -MD -MP -MF .deps/fseeko.Tpo -c -o fseeko.o fse
+eko.c
mv -f .deps/fseeko.Tpo .deps/fseeko.Po
rm -f libgnu.a
ar cru libgnu.a dummy.o fseeko.o
ranlib libgnu.a
gmake[3]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gllib'
gmake[2]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gllib'
Making all in glm4
gmake[2]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/glm4'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/glm4'
Making all in gltests
gmake[2]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
gmake  all-recursive
gmake[3]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
gmake[4]: Entering directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
gcc -DHAVE_CONFIG_H -I.  -I. -I. -I.. -I./.. -I../gllib -I./../gllib -D_POSIX_C_
+SOURCE=200112L -D_BSD_SOURCE -D_XOPEN_SOURCE=600  -g -O2 -MT test-fseeko.o -MD
+-MP -MF .deps/test-fseeko.Tpo -c -o test-fseeko.o test-fseeko.c
mv -f .deps/test-fseeko.Tpo .deps/test-fseeko.Po
gcc  -g -O2   -o test-fseeko.pm test-fseeko.o ../gllib/libgnu.a
bind: Undefined entry point: fseeko, first referenced by fseeko.

bind: Binding had warnings.
gmake[4]: *** [test-fseeko.pm] Error 1
gmake[4]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
gmake[3]: *** [all-recursive] Error 1
gmake[3]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko/gltests'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/%zzyt#d09g/zzy/source/jrl/ports/fseeko'
make: *** [all] Error 2

reply via email to

[Prev in Thread] Current Thread [Next in Thread]