hY, This is strange. I tried the gentoo portage version, the gentoo lisp overlay version and finally I downloaded and compiled ECL myself. Same issue, all of them are ECL 11.1.1. I tried it on a 64bit normal gentoo, and a 32bit hardened gentoo, same issue.
So these are the details of the 64 bit version (with my own ECL compilation after uninstalling all gentoo distributed versions) : sha256sum ecl-11.1.1.tar.gz 28acce874e264a9e7182a2424bb7a1a3f7d834a8f2e1346ec0ef7156d4ed3b07 ecl-11.1.1.tar.gz uname -a Linux ... 3.0.6-gentoo #1 SMP PREEMPT Mon Oct 24 10:30:30 MDT 2011 x86_64 Intel(R) Core(TM)2 CPU T7600 @ 2.33GHz GenuineIntel GNU/Linux gcc --version gcc (Gentoo 4.5.3-r1 p1.0, pie-0.4.5) 4.5.3 ./configure | tee config-gentoo.log make make install which ecl /usr/local/bin/ecl ldd `which ecl` linux-vdso.so.1 => (0x00007fffa674a000) libecl.so.11.1 => /usr/local/lib/libecl.so.11.1 (0x00007f9b53a48000) libdl.so.2 => /lib64/libdl.so.2 (0x00007f9b53844000) libm.so.6 => /lib64/libm.so.6 (0x00007f9b535c3000) libc.so.6 => /lib64/libc.so.6 (0x00007f9b5325d000) libffi.so.4 => /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/libffi.so.4 (0x00007f9b53055000) libgmp.so.10 => /usr/lib64/libgmp.so.10 (0x00007f9b52de5000) libgc.so.1 => /usr/lib64/libgc.so.1 (0x00007f9b52b8c000) /lib64/ld-linux-x86-64.so.2 (0x00007f9b53e3b000) libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f9b5296f000) libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f9b52759000) /usr/local/bin/ecl --version ECL 11.1.1 ecl-config --cflags -Dlinux -I/usr/local/include/ ecl-config --libs -Wl,--rpath,/usr/local/lib/ -L/usr/local/lib/ -lecl -ldl -lm ecl-config --ldflags -Wl,--rpath,/usr/local/lib/ -L/usr/local/lib/ -lecl -ldl -lm In order to remove the gentoo bias, I compiled and tested ECL on Redhat linux too. Same result, :resolve-symlinks doesn't work for me. sha256sum ecl-11.1.1.tar.gz 28acce874e264a9e7182a2424bb7a1a3f7d834a8f2e1346ec0ef7156d4ed3b07 ecl-11.1.1.tar.gz uname -a Linux ... 2.6.18-128.el5 #1 SMP Wed Jan 21 10:41:14 EST 2009 x86_64 x86_64 x86_64 GNU/Linux gcc --version gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-44) ldd bin/ecl libecl.so.11.1 => /.../workspace/ecl/lib/libecl.so.11.1 (0x00002ac27504f000) libdl.so.2 => /lib64/libdl.so.2 (0x00002ac275539000) libm.so.6 => /lib64/libm.so.6 (0x00002ac27573d000) libc.so.6 => /lib64/libc.so.6 (0x00002ac2759c1000) libgmp.so.3 => /usr/lib64/libgmp.so.3 (0x00002ac275d17000) /lib64/ld-linux-x86-64.so.2 (0x00002ac274e32000) bin/ecl --version ECL 11.1.1 bin/ecl-config --cflags -Dlinux -I/.../workspace/ecl/include/ bin/ecl-config --libs -Wl,--rpath,/.../workspace/ecl/lib/ -L/.../workspace/ecl/lib/ -lecl -ldl -lm bin/ecl-config --ldflags -Wl,--rpath,/.../workspace/ecl/lib/ -L/.../workspace/ecl/lib/ -lecl -ldl -lm I attached the logs of the configure script, config-*.log. Let me know if you need some other info for debugging... Thanks, `bg` 2011/10/29 Juan Jose Garcia-Ripoll <juanjose.garciarip...@googlemail.com> > Ok, several things. The first one, which I noticed right now, is that ECL > defaults to :RESOLVE-SYMLINKS NIL. This may be unusual and I will change it. > The second one is that I do not get your results with :RESOLVE-SYMNLINKS NIL > (See below). > > What type and version of the operating system is this? What version of ECL? > > $ ls -l > total 16 > drwxr-xr-x 3 jjgarcia jjgarcia 102 Oct 29 20:11 dir > lrwxr-xr-x 1 jjgarcia jjgarcia 3 Oct 29 20:11 dir_link -> dir > -rw-r--r-- 1 jjgarcia jjgarcia 0 Oct 29 20:11 file > lrwxr-xr-x 1 jjgarcia jjgarcia 4 Oct 29 20:11 file_link -> file > > $ ecl -norc > ECL (Embeddable Common-Lisp) 11.1.1 > Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya > Copyright (C) 1993 Giuseppe Attardi > Copyright (C) 2000 Juan J. Garcia-Ripoll > ECL is free software, and you are welcome to redistribute it > under certain conditions; see file 'Copyright' for details. > Type :h for Help. > Top level in: #<process TOP-LEVEL>. > > (directory "./*" :resolve-symlinks t) > > (#P"/Users/jjgarcia/build/ecl/tmp/file" > #P"/Users/jjgarcia/build/ecl/tmp/file") > > (directory "./*" :resolve-symlinks nil) > > (#P"/Users/jjgarcia/build/ecl/tmp/file_link" > #P"/Users/jjgarcia/build/ecl/tmp/file" > #P"/Users/jjgarcia/build/ecl/tmp/dir_link") > > (directory "./*/" :resolve-symlinks t) > > (#P"/Users/jjgarcia/build/ecl/tmp/dir/" > #P"/Users/jjgarcia/build/ecl/tmp/dir/") > > (directory "./*/" :resolve-symlinks nil) > > (#P"/Users/jjgarcia/build/ecl/tmp/dir/") > > > 2011/10/26 Gábor Balázs <gab...@gmail.com> > >> >> If it should, then maybe there is a bug: >> >> TEST> ls -l >> total 4 >> drwxr-xr-x 2 bege users 4096 Oct 25 23:25 dir >> lrwxrwxrwx 1 bege users 3 Oct 25 23:25 dir-link -> dir >> -rw-r--r-- 1 bege users 0 Oct 25 23:25 file >> lrwxrwxrwx 1 bege users 4 Oct 25 23:25 file-link -> file >> >> ECL (Embeddable Common-Lisp) 11.1.1 >> Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya >> Copyright (C) 1993 Giuseppe Attardi >> Copyright (C) 2000 Juan J. Garcia-Ripoll >> >> > (directory "./*") >> (#P"/home/bege/TEST/file" #P"/home/bege/TEST/file") >> >> > This one is due to the defaulting method I mention above. An implied > :resolve-symlinks nil is assumed. > > >> > (directory "./*" :resolve-symlinks nil) >> (#P"/home/bege/TEST/file" #P"/home/bege/TEST/file") ; no difference (file >> symlinks are resolved) > > > I do not get this one. See above. > > > (directory "./*/") >> (#P"/home/bege/TEST/dir/" #P"/home/bege/TEST/dir/") >> >> > Same as above > > >> > (directory "./*/" :resolve-symlink nil) >> (#P"/home/bege/TEST/dir/" #P"/home/bege/TEST/dir/") ; no difference >> (directory symlinks are resolved) > > > Again, I do not see this here. > > Juanjo > > -- > Instituto de Física Fundamental, CSIC > c/ Serrano, 113b, Madrid 28006 (Spain) > http://juanjose.garciaripoll.googlepages.com >
Switching to directory `build' to continue configuration. checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking how to run the C preprocessor... gcc -E checking for ranlib... ranlib checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... yes checking for ranlib... (cached) ranlib checking for ar... ar checking for etags... etags checking for ld flags when building shared libraries... -shared checking for required libraries... -ldl checking for architecture... X86_64 checking for software type... linux / checking for __thread local data... yes checking for install-info... /usr/bin/install-info checking for __gmpz_init in -lgmp... yes checking for __gmpz_init in -lgmp... (cached) yes checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E 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... yes checking for unistd.h... yes checking gmp.h usability... yes checking gmp.h presence... yes checking for gmp.h... yes checking GMP autoconf... "yes.no" checking for getpwnam in -lsun... no checking for library containing strerror... none required checking for GC_malloc in -lgc... yes checking whether we can use the existing Boehm-Weiser library ... yes checking for GC_malloc in -lgc... (cached) yes checking if we need to copy GC private headers ... checking if we use Boehm-Demers-Weiser precise garbage collector... no checking for soname flags... -Wl,-soname,libecl.so.11.1 checking for X... libraries , headers checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... 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 sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/utsname.h usability... yes checking sys/utsname.h presence... yes checking for sys/utsname.h... yes checking float.h usability... yes checking float.h presence... yes checking for float.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking link.h usability... yes checking link.h presence... yes checking for link.h... yes checking mach-o/dyld.h usability... no checking mach-o/dyld.h presence... no checking for mach-o/dyld.h... no checking ulimit.h usability... yes checking ulimit.h presence... yes checking for ulimit.h... yes checking dirent.h usability... yes checking dirent.h presence... yes checking for dirent.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking semaphore.h usability... yes checking semaphore.h presence... yes checking for semaphore.h... yes checking for an ANSI C-conforming const... yes checking for inline... inline checking for size_t... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for working volatile... yes checking for ptrdiff_t... yes checking size of long long... 64 checking whether byte ordering is bigendian... no checking appropiate type for fixnums... long int checking for stdint.h... (cached) yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking character sequence for end of line... lf checking for _longjmp... yes checking for ffi_call in -lffi... yes checking for ffi/ffi.h... no checking for ffi.h... yes checking for code to detect FP exceptions... x86_64 checking for long double... yes checking for sinl... yes checking for cosl... yes checking for tanl... yes checking for logl... yes checking for expl... yes checking whether stack growns downwards... yes checking whether closedir returns void... no checking for error_at_line... yes checking for pid_t... yes checking vfork.h usability... no checking vfork.h presence... no checking for vfork.h... no checking for fork... yes checking for vfork... yes checking for working fork... yes checking for working vfork... (cached) yes checking whether gcc needs -traditional... no checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for working memcmp... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/param.h... (cached) yes checking for getpagesize... yes checking for working mmap... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible realloc... yes checking for sys/select.h... (cached) yes checking for sys/socket.h... (cached) yes checking types of arguments for select... int,fd_set *,struct timeval * checking return type of signal handlers... void checking whether lstat correctly handles trailing slash... yes checking whether stat accepts an empty string... no checking for working strtod... yes checking for floor... yes checking for getcwd... yes checking for gethostbyaddr... yes checking for gethostbyname... yes checking for getpagesize... (cached) yes checking for memmove... yes checking for memset... yes checking for mkdir... yes checking for putenv... yes checking for socket... yes checking for sqrt... yes checking for strcasecmp... yes checking for strchr... yes checking for strerror... yes checking for strtol... yes checking for nanosleep... yes checking for alarm... yes checking for times... yes checking for select... yes checking for setenv... yes checking for putenv... (cached) yes checking for lstat... yes checking for mkstemp... yes checking for sigprocmask... yes checking for isatty... yes checking for tzset... yes checking for gettimeofday... yes checking for getrusage... yes checking for expf... yes checking for logf... yes checking for sqrtf... yes checking for cosf... yes checking for sinf... yes checking for tanf... yes checking for sinhf... yes checking for coshf... yes checking for tanhf... yes checking for floorf... yes checking for ceilf... yes checking for fabsf... yes checking for frexpf... yes checking for ldexpf... yes checking for log1p... yes checking for log1pf... yes checking for log1pl... yes checking for copysign... yes checking for sched_yield... yes checking for uname... yes checking for fseeko... yes checking for dladdr... yes checking for backtrace... yes checking for backtrace_symbols... yes checking sys/mman.h usability... yes checking sys/mman.h presence... yes checking for sys/mman.h... yes checking working environ... yes checking gc.h usability... yes checking gc.h presence... yes checking for gc.h... yes configure: creating ./config.status config.status: creating bare.lsp config.status: creating lsp/load.lsp config.status: creating clos/load.lsp config.status: creating cmp/load.lsp config.status: creating new-cmp/load.lsp config.status: creating ../Makefile config.status: creating Makefile config.status: creating c/Makefile config.status: creating doc/Makefile config.status: creating doc/ecl.man config.status: creating doc/ecl-config.man config.status: creating ecl/configpre.h config.status: creating bin/ecl-config.pre config.status: creating lsp/config.pre config.status: creating compile.pre config.status: creating cmp/cmpdefs.pre config.status: creating ecl/config.h
Switching to directory `build' to continue configuration. checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking how to run the C preprocessor... gcc -E checking for ranlib... ranlib checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... yes checking for ranlib... (cached) ranlib checking for ar... ar checking for etags... etags checking for ld flags when building shared libraries... -shared checking for required libraries... -ldl checking for architecture... X86_64 checking for software type... linux / checking for __thread local data... yes checking for install-info... /sbin/install-info checking for __gmpz_init in -lgmp... yes checking for __gmpz_init in -lgmp... (cached) yes checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E 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... yes checking for unistd.h... yes checking gmp.h usability... yes checking gmp.h presence... yes checking for gmp.h... yes checking GMP autoconf... "yes.no" checking for getpwnam in -lsun... no checking for library containing strerror... none required checking for GC_malloc in -lgc... no checking whether we can use the existing Boehm-Weiser library ... no checking if we use Boehm-Demers-Weiser precise garbage collector... no checking for soname flags... -Wl,-soname,libecl.so.11.1 checking for X... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for ANSI C header files... (cached) yes checking whether time.h and sys/time.h may both be included... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... 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 sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking fenv.h usability... yes checking fenv.h presence... yes checking for fenv.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/utsname.h usability... yes checking sys/utsname.h presence... yes checking for sys/utsname.h... yes checking float.h usability... yes checking float.h presence... yes checking for float.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking link.h usability... yes checking link.h presence... yes checking for link.h... yes checking mach-o/dyld.h usability... no checking mach-o/dyld.h presence... no checking for mach-o/dyld.h... no checking ulimit.h usability... yes checking ulimit.h presence... yes checking for ulimit.h... yes checking dirent.h usability... yes checking dirent.h presence... yes checking for dirent.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking semaphore.h usability... yes checking semaphore.h presence... yes checking for semaphore.h... yes checking for an ANSI C-conforming const... yes checking for inline... inline checking for size_t... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for working volatile... yes checking for ptrdiff_t... yes checking size of long long... 64 checking whether byte ordering is bigendian... no checking appropiate type for fixnums... long int checking for stdint.h... (cached) yes checking for int8_t... yes checking for uint8_t... yes checking for int16_t... yes checking for uint16_t... yes checking for int32_t... yes checking for uint32_t... yes checking for int64_t... yes checking for uint64_t... yes checking character sequence for end of line... lf checking for _longjmp... yes checking for ffi_call in -lffi... no checking for code to detect FP exceptions... x86_64 checking for long double... yes checking for sinl... yes checking for cosl... yes checking for tanl... yes checking for logl... yes checking for expl... yes checking whether stack growns downwards... yes checking whether closedir returns void... no checking for error_at_line... yes checking for pid_t... yes checking vfork.h usability... no checking vfork.h presence... no checking for vfork.h... no checking for fork... yes checking for vfork... yes checking for working fork... yes checking for working vfork... (cached) yes checking whether gcc needs -traditional... no checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for working memcmp... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/param.h... (cached) yes checking for getpagesize... yes checking for working mmap... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible realloc... yes checking for sys/select.h... (cached) yes checking for sys/socket.h... (cached) yes checking types of arguments for select... int,fd_set *,struct timeval * checking return type of signal handlers... void checking whether lstat correctly handles trailing slash... yes checking whether stat accepts an empty string... no checking for working strtod... yes checking for floor... yes checking for getcwd... yes checking for gethostbyaddr... yes checking for gethostbyname... yes checking for getpagesize... (cached) yes checking for memmove... yes checking for memset... yes checking for mkdir... yes checking for putenv... yes checking for socket... yes checking for sqrt... yes checking for strcasecmp... yes checking for strchr... yes checking for strerror... yes checking for strtol... yes checking for nanosleep... yes checking for alarm... yes checking for times... yes checking for select... yes checking for setenv... yes checking for putenv... (cached) yes checking for lstat... yes checking for mkstemp... yes checking for sigprocmask... yes checking for isatty... yes checking for tzset... yes checking for gettimeofday... yes checking for getrusage... yes checking for expf... yes checking for logf... yes checking for sqrtf... yes checking for cosf... yes checking for sinf... yes checking for tanf... yes checking for sinhf... yes checking for coshf... yes checking for tanhf... yes checking for floorf... yes checking for ceilf... yes checking for fabsf... yes checking for frexpf... yes checking for ldexpf... yes checking for log1p... yes checking for log1pf... yes checking for log1pl... yes checking for copysign... yes checking for sched_yield... yes checking for uname... yes checking for fseeko... yes checking for dladdr... yes checking for backtrace... yes checking for backtrace_symbols... yes checking sys/mman.h usability... yes checking sys/mman.h presence... yes checking for sys/mman.h... yes checking working environ... yes configure: Configuring included Boehm GC library: checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type... x86_64-unknown-linux-gnu checking GC version numbers... major=7 minor=1 checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for style of include used by make... GNU checking for gcc... gcc -fPIC 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... yes checking whether gcc -fPIC accepts -g... yes checking for gcc -fPIC option to accept ISO C89... none needed checking dependency style of gcc -fPIC... gcc3 checking whether gcc -fPIC and cc understand -c and -o together... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking for ar... ar checking for ranlib... ranlib checking for a BSD-compatible install... /usr/bin/install -c checking for xlc... no checking for dlopen in -ldl... yes checking whether to build shared libraries... no checking which machine-dependent code should be used... checking for a sed that does not truncate output... /bin/sed checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ld used by gcc -fPIC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking how to run the C preprocessor... gcc -fPIC -E 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... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... gfortran checking whether we are using the GNU Fortran 77 compiler... yes checking whether gfortran accepts -g... yes checking the maximum length of command line arguments... 32768 checking command to parse /usr/bin/nm -B output from gcc -fPIC object... ok checking for objdir... .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... strip checking if gcc -fPIC supports -fno-rtti -fno-exceptions... no checking for gcc -fPIC option to produce PIC... -fPIC checking if gcc -fPIC PIC flag -fPIC works... yes checking if gcc -fPIC static flag -static works... yes checking if gcc -fPIC supports -c -o file.o... yes checking whether the gcc -fPIC linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking if libtool supports shared libraries... yes checking whether to build shared libraries... no checking whether to build static libraries... yes checking for gfortran option to produce PIC... -fPIC checking if gfortran PIC flag -fPIC works... yes checking if gfortran static flag -static works... yes checking if gfortran supports -c -o file.o... yes checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking sys/dg_sys_info.h usability... no checking sys/dg_sys_info.h presence... no checking for sys/dg_sys_info.h... no checking whether Solaris gcc optimization fix is necessary... no checking atomic_ops.h usability... no checking atomic_ops.h presence... no checking for atomic_ops.h... no configure: Using internal version of libatomic_ops configure: creating ./config.status config.status: creating Makefile config.status: creating bdw-gc.pc config.status: executing depfiles commands config.status: executing default commands configure: creating ./config.status config.status: creating bare.lsp config.status: creating lsp/load.lsp config.status: creating clos/load.lsp config.status: creating cmp/load.lsp config.status: creating new-cmp/load.lsp config.status: creating ../Makefile config.status: creating Makefile config.status: creating c/Makefile config.status: creating doc/Makefile config.status: creating doc/ecl.man config.status: creating doc/ecl-config.man config.status: creating ecl/configpre.h config.status: creating bin/ecl-config.pre config.status: creating lsp/config.pre config.status: creating compile.pre config.status: creating cmp/cmpdefs.pre config.status: creating ecl/config.h config.status: ecl/config.h is unchanged
------------------------------------------------------------------------------ Get your Android app more play: Bring it to the BlackBerry PlayBook in minutes. BlackBerry App World™ now supports Android™ Apps for the BlackBerry® PlayBook™. Discover just how easy and simple it is! http://p.sf.net/sfu/android-dev2dev
_______________________________________________ Ecls-list mailing list Ecls-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ecls-list