Menu

#895 Interpreter does not provide STDIN in pipeline

v4.1
closed
Classes (182)
5
2012-08-14
2010-03-23
No

The old IBM oRexx interpreter could be used as stage in a pipeline (OS/2, Windows 2000/XP, Linux)
The ooRexx interpreter seems not to work as stage command, example below (Windows XP, Linux SUSE 11.2)
I don't find in the reference/programmer guide whether it is supposed to work.


OK as first stage in the pipeline:

uli@ulmo:~> rexx test.rex <temp.dat | more
HELLO
aaa
bbb
ccc
GOODBYE


As second stage in the pipeline, STDIN does not receive input:

uli@ulmo:~> more <temp.dat | rexx test.rex
HELLO
GOODBYE


test.rex:

say hello

do while lines()
line = linein()
call lineout , line
-- say line
end

say goodbye

temp.dat:

aaa
bbb
ccc


uli@ulmo:~> rpm -q ooRexx
ooRexx-4.1.0-5678.x86_64

uli@ulmo:~> uname -a
Linux ulmo 2.6.31.12-0.1-desktop #1 SMP PREEMPT 2010-01-27 08:20:11 +0100 x86_64 x86_64 x86_64 GNU/Linux

uli@ulmo:~> rexx -v
Open Object Rexx Version 4.1.0
Build date: Mar 9 2010
Addressing Mode: 64

Discussion

  • jfaucher

    jfaucher - 2010-03-24

    Same problem under windows

    I can have a good result from lines() by changing that, but not sure it's the good solution (windows only) :

    Assume that a FIFO is a transient stream :

    SysFile::getStreamTypeInfo
    if ((fileInfo.st_mode & _S_IFIFO) != 0)
    {
    transient = true;
    }

    I had to change that :
    SysFile::hasData
    return !atEof();

    I think that this change should be done as well :
    MSDN doc :
    st_size : If fd refers to a device, the st_atime, st_ctime, st_mtime, and st_size fields are not meaningful.
    st_dev : If a device, fd; otherwise 0.

    SysFile::getSize
    //if ((fileInfo.st_mode & _S_IFREG) != 0)
    if (fileInfo.st_dev == 0)
    {
    size = fileInfo.st_size;

     
  • U. Zinngrebe

    U. Zinngrebe - 2010-03-25

    chars() has same problem as lines().

    Rony gave a workaround.

    test.rex:

    say hello

    do while stream('STDIN:', 'state')="READY"
    line = linein()
    call lineout , line
    -- say line
    end

    say goodbye

    uli@ulmo:~> more <temp.dat 2="">1 | rexx test.rex
    HELLO
    aaa
    bbb
    ccc</temp.dat>

    GOODBYE

     
  • Rony G. Flatscher

    Probably the fastest logic to work on input pipes would be something like:

    signal on notready / if input pipe breaks /

      /* while STDIN: is available process input         */
    

    do forever
    say reverse(linein()) / get line from STDIN:, reverse it, write it to STDOUT: /
    end

    NOTREADY:

    ---rony

     
  • Rick McGuire

    Rick McGuire - 2010-03-25

    I'm having VMWare issues today...can somebody with access to a Linux system see if the fix I just committed fixes this problem? The Windows fix Jean-Louis suggested appears to fix the problem without introducing any test regressions.

     
  • U. Zinngrebe

    U. Zinngrebe - 2010-03-26

    rev. 5574 doesn't compile here (SUSE 11.2).
    rev. 5573 does compile.

    error message from "make rpm" :

    libtool: compile: g++ -DHAVE_CONFIG_H -I. -DORX_VER=4 -DORX_REL=1 -DORX_MOD=0 -DORX_FIX=0 -DORX_SYS_STR=\"LINUX\" -DORX_CATDIR=\"/opt/ooRexx/bin\" -DORX_SHARED_LIBRARY_EXT=\".so\" -I./lib -I./api -I./api/platform/unix -I./common -I./common/platform/unix -I./interpreter -I./interpreter/behaviour -I./interpreter/execution -I./interpreter/memory -I./interpreter/package -I./interpreter/concurrency -I./interpreter/expression -I./interpreter/instructions -I./interpreter/classes -I./interpreter/classes/support -I./interpreter/runtime -I./interpreter/parser -I./interpreter/messages -I./interpreter/streamLibrary -I./interpreter/platform/common -I./interpreter/platform/unix -g -O2 -g -O2 -Wall -funsigned-char -Wpointer-arith -Wcast-qual -Wcast-align -Wshadow -Wwrite-strings -D__cplusplus -Wredundant-decls -DNOOPT -DPTHREAD_KERNEL -D_POSIX_THREAD -D_REENTRANT -D_GNU_SOURCE -DLINUX -DOPSYS_LINUX -MT librexx_la-ArrayClass.lo -MD -MP -MF .deps/librexx_la-ArrayClass.Tpo -c ./interpreter/classes/ArrayClass.cpp -fPIC -DPIC -o .libs/librexx_la-ArrayClass.o
    In file included from ./interpreter/expression/ExpressionStack.hpp:48,
    from ./interpreter/concurrency/RexxActivity.hpp:50,
    from ./interpreter/runtime/RexxCore.h:243,
    from ./interpreter/classes/ArrayClass.cpp:70:
    ./interpreter/classes/ArrayClass.hpp:76: error: ‘boolean’ does not name a type
    ./interpreter/classes/ArrayClass.cpp: In member function ‘void RexxArray::quickSort(BaseSortComparator&, size_t, size_t)’:
    ./interpreter/classes/ArrayClass.cpp:2325: error: ‘class PartitionBounds’ has no member named ‘isSmall’
    make[1]: *** [librexx_la-ArrayClass.lo] Error 1


    ulmo:~ # uname -a
    Linux ulmo 2.6.31.12-0.1-desktop #1 SMP PREEMPT 2010-01-27 08:20:11 +0100 x86_64 x86_64 x86_64 GNU/Linux

    ulmo:~ # automake --version
    automake (GNU automake) 1.11

    ulmo:~/ooRexx/main/trunk # autoconf --version
    autoconf (GNU Autoconf) 2.63

    ulmo:~ # libtool --version
    ltmain.sh (GNU libtool) 2.2.6

    ulmo:~/ooRexx/main/trunk # g++ --version
    g++ (SUSE Linux) 4.4.1 [gcc-4_4-branch revision 150839]

    ulmo:~/ooRexx/main/trunk # gcc -v
    Using built-in specs.
    Target: x86_64-suse-linux
    Configured with: ../configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64 --enable-languages=c,c++,objc,fortran,obj-c++,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.4 --enable-ssp --disable-libssp --with-bugurl=http://bugs.opensuse.org/ --with-pkgversion='SUSE Linux' --disable-libgcj --disable-libmudflap --with-slibdir=/lib64 --with-system-zlib --enable-__cxa_atexit --enable-libstdcxx-allocator=new --disable-libstdcxx-pch --enable-version-specific-runtime-libs --program-suffix=-4.4 --enable-linux-futex --without-system-libunwind --with-arch-32=i586 --with-tune=generic --build=x86_64-suse-linux
    Thread model: posix
    gcc version 4.4.1 [gcc-4_4-branch revision 150839] (SUSE Linux)

    svn co https://oorexx.svn.sourceforge.net/svnroot/oorexx/main/trunk ~/ooRexx/main/trunk

    ulmo:~/ooRexx/main/trunk # ./bootstrap
    ++ uname -s
    + OS=Linux
    + '[' Linux = Darwin ']'
    + libtoolize --copy --force --automake
    + aclocal
    + autoheader
    + automake --add-missing --copy --foreign
    configure.ac:50: installing ./config.guess' configure.ac:50: installing./config.sub'
    configure.ac:52: installing ./install-sh' configure.ac:52: installing./missing'
    samples/unix/api/callrexx/Makefile.am: installing `./depcomp'
    + autoconf

    ulmo:~/ooRexx/main/trunk # ./configure --disable-static
    checking build system type... x86_64-suse-linux-gnu
    checking host system type... x86_64-suse-linux-gnu
    checking target system type... x86_64-suse-linux-gnu
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    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 accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking how to run the C preprocessor... gcc -E
    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 a BSD-compatible install... /usr/bin/install -c
    checking whether make sets $(MAKE)... (cached) yes
    checking for ranlib... ranlib
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/x86_64-suse-linux/bin/ld
    checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking for /usr/x86_64-suse-linux/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for ar... ar
    checking for strip... strip
    checking for ranlib... (cached) ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    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 for dlfcn.h... yes
    checking whether we are using the GNU C++ compiler... (cached) yes
    checking whether g++ accepts -g... (cached) yes
    checking dependency style of g++... (cached) gcc3
    checking how to run the C++ preprocessor... g++ -E
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for shl_load... no
    checking for shl_load in -ldld... no
    checking for dlopen... no
    checking for dlopen in -ldl... yes
    checking whether a program can dlopen itself... yes
    checking whether a statically linked program can dlopen itself... no
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for ld used by g++... /usr/x86_64-suse-linux/bin/ld -m elf_x86_64
    checking if the linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/x86_64-suse-linux/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 byte ordering is bigendian... no
    checking for ANSI C header files... (cached) yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking features.h usability... yes
    checking features.h presence... yes
    checking for features.h... yes
    checking filehdr.h usability... no
    checking filehdr.h presence... no
    checking for filehdr.h... no
    checking limits.h usability... yes
    checking limits.h presence... yes
    checking for limits.h... yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking mesg.h usability... no
    checking mesg.h presence... no
    checking for mesg.h... no
    checking malloc.h usability... yes
    checking malloc.h presence... yes
    checking for malloc.h... yes
    checking for mesg.h... (cached) no
    checking netinet/in.h usability... yes
    checking netinet/in.h presence... yes
    checking for netinet/in.h... yes
    checking nl_types.h usability... yes
    checking nl_types.h presence... yes
    checking for nl_types.h... yes
    checking pthread.h usability... yes
    checking pthread.h presence... yes
    checking for pthread.h... yes
    checking pwd.h usability... yes
    checking pwd.h presence... yes
    checking for pwd.h... yes
    checking sched.h usability... yes
    checking sched.h presence... yes
    checking for sched.h... yes
    checking signal.h usability... yes
    checking signal.h presence... yes
    checking for signal.h... yes
    checking stdarg.h usability... yes
    checking stdarg.h presence... yes
    checking for stdarg.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking stropts.h usability... yes
    checking stropts.h presence... yes
    checking for stropts.h... yes
    checking sys/filio.h usability... no
    checking sys/filio.h presence... no
    checking for sys/filio.h... no
    checking sys/ldr.h usability... no
    checking sys/ldr.h presence... no
    checking for sys/ldr.h... no
    checking sys/resource.h usability... yes
    checking sys/resource.h presence... yes
    checking for sys/resource.h... yes
    checking sys/select.h usability... yes
    checking sys/select.h presence... yes
    checking for sys/select.h... yes
    checking sys/sem.h usability... yes
    checking sys/sem.h presence... yes
    checking for sys/sem.h... yes
    checking sys/signal.h usability... yes
    checking sys/signal.h presence... yes
    checking for sys/signal.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 sys/utsname.h usability... yes
    checking sys/utsname.h presence... yes
    checking for sys/utsname.h... yes
    checking sys/wait.h usability... yes
    checking sys/wait.h presence... yes
    checking for sys/wait.h... yes
    checking time.h usability... yes
    checking time.h presence... yes
    checking for time.h... yes
    checking for unistd.h... (cached) yes
    checking usersec.h usability... no
    checking usersec.h presence... no
    checking for usersec.h... no
    checking for error_at_line... yes
    checking for vprintf... yes
    checking for _doprnt... no
    checking whether time.h and sys/time.h may both be included... yes
    checking for IDtouser... no
    checking for getuserattr... no
    checking for catopen... yes
    checking for fstat... yes
    checking for gcvt... yes
    checking for geteuid... yes
    checking for getpgrp... yes
    checking for getpwuid... yes
    checking for gettimeofday... yes
    checking for memset... yes
    checking for nsleep... no
    checking for setlocale... yes
    checking for strdup... yes
    checking for sighold... yes
    checking for sigprocmask... yes
    checking for nanosleep... yes
    checking for pthread_mutexattr_settype... no
    checking for pthread_mutexattr_settype in -lpthread... yes
    checking if union semun is incorrectly defined... no
    checking which values are valid for pthread_mutexattr_settype arg 2 are valid... found
    checking if FILE struct contains _cnt member... no
    checking if FILE struct contains _IO_read_ptr member... yes
    checking for rpmbuild... /usr/bin/rpmbuild
    checking for gencat... /usr/bin/gencat
    checking for Xalan... no
    checking for xalan... no
    configure: WARNING: cannot find xalan, Xalan
    Subversion revision: 5744
    ooRexx major number: 4
    ooRexx minor number: 1
    ooRexx mod level number: 0
    ooRexx current number: 4
    ooRexx revision number: 2
    ooRexx age number: 0
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating platform/unix/oorexx.spec
    config.status: creating platform/unix/debian/changelog
    config.status: creating platform/unix/debian/postinst
    config.status: creating rexxapi/server/platform/unix/rxapid
    config.status: creating samples/Makefile
    config.status: creating samples/unix/Makefile
    config.status: creating samples/unix/api/Makefile
    config.status: creating samples/unix/api/callrexx/Makefile
    config.status: creating samples/unix/api/wpipe1/Makefile
    config.status: creating samples/unix/api/wpipe2/Makefile
    config.status: creating samples/unix/api/wpipe3/Makefile
    config.status: creating samples/windows/Makefile
    config.status: creating samples/windows/api/Makefile
    config.status: creating samples/windows/api/callrxnt/Makefile
    config.status: creating samples/windows/api/callrxwn/Makefile
    config.status: creating samples/windows/api/rexxexit/Makefile
    config.status: creating samples/windows/api/wpipe/Makefile
    config.status: creating samples/windows/api/wpipe/wpipe1/Makefile
    config.status: creating samples/windows/api/wpipe/wpipe2/Makefile
    config.status: creating samples/windows/api/wpipe/wpipe3/Makefile
    config.status: creating samples/windows/misc/Makefile
    config.status: creating samples/windows/ole/Makefile
    config.status: creating samples/windows/ole/adsi/Makefile
    config.status: creating samples/windows/ole/apps/Makefile
    config.status: creating samples/windows/ole/methinfo/Makefile
    config.status: creating samples/windows/ole/oleinfo/Makefile
    config.status: creating samples/windows/ole/wmi/Makefile
    config.status: creating samples/windows/ole/wmi/sysinfo/Makefile
    config.status: creating samples/windows/oodialog/Makefile
    config.status: creating samples/windows/oodialog/bmp/Makefile
    config.status: creating samples/windows/oodialog/controls/Makefile
    config.status: creating samples/windows/oodialog/examples/Makefile
    config.status: creating samples/windows/oodialog/examples/resources/Makefile
    config.status: creating samples/windows/oodialog/ooRexxTry/Makefile
    config.status: creating samples/windows/oodialog/ooRexxTry/doc/Makefile
    config.status: creating samples/windows/oodialog/rc/Makefile
    config.status: creating samples/windows/oodialog/res/Makefile
    config.status: creating samples/windows/oodialog/simple/Makefile
    config.status: creating samples/windows/oodialog/tutorial/Makefile
    config.status: creating samples/windows/oodialog/wav/Makefile
    config.status: creating samples/windows/rexutils/Makefile
    config.status: creating samples/windows/winsystem/Makefile
    config.status: creating samples/windows/wsh/Makefile
    config.status: creating xsl.sh
    config.status: creating platform/unix/oorexx-config
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands

    ulmo:~/ooRexx/main/trunk # make rpm
    sh ./xsl.sh interpreter/behaviour/PrimitiveBehaviours.cpp ./interpreter/behaviour/PrimitiveClasses.xml ./interpreter/behaviour/PrimitiveBehaviours.xsl
    sh ./xsl.sh interpreter/behaviour/VirtualFunctionTable.cpp ./interpreter/behaviour/PrimitiveClasses.xml ./interpreter/behaviour/VirtualFunctionTable.xsl
    sh ./xsl.sh interpreter/messages/DocErrorMessages.sgml ./interpreter/messages/rexxmsg.xml ./interpreter/messages/DocBookErrors.xsl
    sh ./xsl.sh interpreter/messages/RexxErrorCodes.h ./interpreter/messages/rexxmsg.xml ./interpreter/messages/RexxErrorCodes.xsl
    sh ./xsl.sh interpreter/messages/RexxMessageTable.h ./interpreter/messages/rexxmsg.xml ./interpreter/messages/RexxMessageTable.xsl
    sh ./xsl.sh interpreter/messages/gencat.inp ./interpreter/messages/rexxmsg.xml ./interpreter/platform/unix/UnixGencat.xsl
    { test ! -d "ooRexx-4.1.0" || { find "ooRexx-4.1.0" -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr "ooRexx-4.1.0"; }; }
    test -d "ooRexx-4.1.0" || mkdir "ooRexx-4.1.0"
    (cd samples && make top_distdir=../ooRexx-4.1.0 distdir=../ooRexx-4.1.0/samples \
    amremove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[1]: Entering directory /root/ooRexx/main/trunk/samples' (cd unix && make top_distdir=../../ooRexx-4.1.0 distdir=../../ooRexx-4.1.0/samples/unix \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[2]: Entering directory/root/ooRexx/main/trunk/samples/unix'
    (cd api && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/unix/api \
    am
    remove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/unix/api' (cd callrexx && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/unix/api/callrexx \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/unix/api/callrexx'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/unix/api/callrexx' (cd wpipe1 && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/unix/api/wpipe1 \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/unix/api/wpipe1'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/unix/api/wpipe1' (cd wpipe2 && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/unix/api/wpipe2 \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/unix/api/wpipe2'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/unix/api/wpipe2' (cd wpipe3 && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/unix/api/wpipe3 \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/unix/api/wpipe3'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/unix/api/wpipe3' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/unix/api'
    make[2]: Leaving directory /root/ooRexx/main/trunk/samples/unix' (cd windows && make top_distdir=../../ooRexx-4.1.0 distdir=../../ooRexx-4.1.0/samples/windows \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[2]: Entering directory/root/ooRexx/main/trunk/samples/windows'
    (cd api && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/windows/api \
    amremove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/windows/api' (cd callrxnt && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/api/callrxnt \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/api/callrxnt'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/api/callrxnt' (cd callrxwn && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/api/callrxwn \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/api/callrxwn'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/api/callrxwn' (cd rexxexit && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/api/rexxexit \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/api/rexxexit'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/api/rexxexit' (cd wpipe && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/api/wpipe \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/api/wpipe'
    (cd wpipe1 && make top_distdir=../../../../../ooRexx-4.1.0 distdir=../../../../../ooRexx-4.1.0/samples/windows/api/wpipe/wpipe1 \
    am
    remove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[5]: Entering directory /root/ooRexx/main/trunk/samples/windows/api/wpipe/wpipe1' make[5]: Leaving directory/root/ooRexx/main/trunk/samples/windows/api/wpipe/wpipe1'
    (cd wpipe2 && make top_distdir=../../../../../ooRexx-4.1.0 distdir=../../../../../ooRexx-4.1.0/samples/windows/api/wpipe/wpipe2 \
    amremove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[5]: Entering directory /root/ooRexx/main/trunk/samples/windows/api/wpipe/wpipe2' make[5]: Leaving directory/root/ooRexx/main/trunk/samples/windows/api/wpipe/wpipe2'
    (cd wpipe3 && make top_distdir=../../../../../ooRexx-4.1.0 distdir=../../../../../ooRexx-4.1.0/samples/windows/api/wpipe/wpipe3 \
    am
    remove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[5]: Entering directory /root/ooRexx/main/trunk/samples/windows/api/wpipe/wpipe3' make[5]: Leaving directory/root/ooRexx/main/trunk/samples/windows/api/wpipe/wpipe3'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/api/wpipe' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/windows/api'
    (cd misc && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/windows/misc \
    amremove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/windows/misc' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/windows/misc'
    (cd ole && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/windows/ole \
    am
    remove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/windows/ole' (cd adsi && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/ole/adsi \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/ole/adsi'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/ole/adsi' (cd apps && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/ole/apps \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/ole/apps'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/ole/apps' (cd methinfo && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/ole/methinfo \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/ole/methinfo'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/ole/methinfo' (cd oleinfo && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/ole/oleinfo \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/ole/oleinfo'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/ole/oleinfo' (cd wmi && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/ole/wmi \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/ole/wmi'
    (cd sysinfo && make top_distdir=../../../../../ooRexx-4.1.0 distdir=../../../../../ooRexx-4.1.0/samples/windows/ole/wmi/sysinfo \
    amremove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[5]: Entering directory /root/ooRexx/main/trunk/samples/windows/ole/wmi/sysinfo' make[5]: Leaving directory/root/ooRexx/main/trunk/samples/windows/ole/wmi/sysinfo'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/ole/wmi' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/windows/ole'
    (cd oodialog && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/windows/oodialog \
    am
    remove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/windows/oodialog' (cd bmp && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/bmp \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/bmp'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/bmp' (cd controls && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/controls \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/controls'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/controls' (cd examples && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/examples \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/examples'
    (cd resources && make top_distdir=../../../../../ooRexx-4.1.0 distdir=../../../../../ooRexx-4.1.0/samples/windows/oodialog/examples/resources \
    amremove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[5]: Entering directory /root/ooRexx/main/trunk/samples/windows/oodialog/examples/resources' make[5]: Leaving directory/root/ooRexx/main/trunk/samples/windows/oodialog/examples/resources'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/examples' (cd ooRexxTry && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/ooRexxTry \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/ooRexxTry'
    (cd doc && make top_distdir=../../../../../ooRexx-4.1.0 distdir=../../../../../ooRexx-4.1.0/samples/windows/oodialog/ooRexxTry/doc \
    am
    remove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[5]: Entering directory /root/ooRexx/main/trunk/samples/windows/oodialog/ooRexxTry/doc' make[5]: Leaving directory/root/ooRexx/main/trunk/samples/windows/oodialog/ooRexxTry/doc'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/ooRexxTry' (cd rc && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/rc \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/rc'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/rc' (cd res && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/res \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/res'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/res' (cd simple && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/simple \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/simple'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/simple' (cd tutorial && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/tutorial \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/tutorial'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/tutorial' (cd wav && make top_distdir=../../../../ooRexx-4.1.0 distdir=../../../../ooRexx-4.1.0/samples/windows/oodialog/wav \ am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir) make[4]: Entering directory/root/ooRexx/main/trunk/samples/windows/oodialog/wav'
    make[4]: Leaving directory /root/ooRexx/main/trunk/samples/windows/oodialog/wav' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/windows/oodialog'
    (cd rexutils && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/windows/rexutils \
    amremove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/windows/rexutils' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/windows/rexutils'
    (cd winsystem && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/windows/winsystem \
    am
    remove_distdir=: amskip_length_check=: amskip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/windows/winsystem' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/windows/winsystem'
    (cd wsh && make top_distdir=../../../ooRexx-4.1.0 distdir=../../../ooRexx-4.1.0/samples/windows/wsh \
    amremove_distdir=: amskip_length_check=: am__skip_mode_fix=: distdir)
    make[3]: Entering directory /root/ooRexx/main/trunk/samples/windows/wsh' make[3]: Leaving directory/root/ooRexx/main/trunk/samples/windows/wsh'
    make[2]: Leaving directory /root/ooRexx/main/trunk/samples/windows' make[1]: Leaving directory/root/ooRexx/main/trunk/samples'
    make \
    top_distdir="ooRexx-4.1.0" distdir="ooRexx-4.1.0" \
    dist-hook
    make[1]: Entering directory /root/ooRexx/main/trunk' rm -frfind ooRexx-4.1.0 -name .svnrm -frfind ooRexx-4.1.0 -name ".bak"rm -frfind ooRexx-4.1.0 -name ".o"rm -frfind ooRexx-4.1.0 -name "*.lo"touch ooRexx-4.1.0/interpreter/messages/*.h touch ooRexx-4.1.0/api/oorexxerrors.h touch ooRexx-4.1.0/interpreter/messages/DocErrorMessages.sgml touch ooRexx-4.1.0/interpreter/messages/gencat.inp sed -e '/ORX_BLD_LVL/s/1$/5744/;/ORX_VER_STR/s/\.1\"$/.5744\"/' oorexx.ver > oorexx.ver.incl echo 'SVN_REVSION=5744' >> oorexx.ver.incl cp ./oorexx.ver.incl ooRexx-4.1.0 rm -f oorexx.ver.incl make[1]: Leaving directory/root/ooRexx/main/trunk'
    test -n "" \
    || find "ooRexx-4.1.0" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
    ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
    ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
    ! -type d ! -perm -444 -exec /bin/sh /root/ooRexx/main/trunk/install-sh -c -m a+r {} {} \; \
    || chmod -R a+r "ooRexx-4.1.0"
    tardir=ooRexx-4.1.0 && /bin/sh /root/ooRexx/main/trunk/missing --run tar chof - "$tardir" | GZIP=--best gzip -c >ooRexx-4.1.0.tar.gz
    rm -f ooRexx-4.1.0.zip
    zip -rq ooRexx-4.1.0.zip ooRexx-4.1.0
    { test ! -d "ooRexx-4.1.0" || { find "ooRexx-4.1.0" -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr "ooRexx-4.1.0"; }; }
    rm -fr ./rpm
    mkdir rpm
    mkdir rpm/BUILD
    mkdir rpm/RPMS
    mkdir rpm/SOURCES
    mkdir rpm/SPECS
    mkdir rpm/SRPMS
    rpmbuild -ba ./platform/unix/oorexx.spec < /dev/null;
    Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.13DFEE
    + umask 022
    + cd /root/ooRexx/main/trunk/rpm/BUILD
    + cd /root/ooRexx/main/trunk/rpm/BUILD
    + rm -rf ooRexx-4.1.0
    + /usr/bin/gzip -dc /root/ooRexx/main/trunk/ooRexx-4.1.0.tar.gz
    + /bin/tar -xf -
    + STATUS=0
    + '[' 0 -ne 0 ']'
    + cd ooRexx-4.1.0
    + /bin/chmod -Rf a+rX,u+w,g-w,o-w .
    + exit 0
    Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.iHKSa1
    + umask 022
    + cd /root/ooRexx/main/trunk/rpm/BUILD
    + /bin/rm -rf /usr/src/packages/BUILDROOT/ooRexx-4.1.0-5744.x86_64
    ++ dirname /usr/src/packages/BUILDROOT/ooRexx-4.1.0-5744.x86_64
    + /bin/mkdir -p /usr/src/packages/BUILDROOT
    + /bin/mkdir /usr/src/packages/BUILDROOT/ooRexx-4.1.0-5744.x86_64
    + cd ooRexx-4.1.0
    + ./configure --disable-static --prefix=/opt/ooRexx
    checking build system type... x86_64-suse-linux-gnu
    checking host system type... x86_64-suse-linux-gnu
    checking target system type... x86_64-suse-linux-gnu
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    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 accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking how to run the C preprocessor... gcc -E
    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 a BSD-compatible install... /usr/bin/install -c
    checking whether make sets $(MAKE)... (cached) yes
    checking for ranlib... ranlib
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/x86_64-suse-linux/bin/ld
    checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 3458764513820540925
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking for /usr/x86_64-suse-linux/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for ar... ar
    checking for strip... strip
    checking for ranlib... (cached) ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    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 for dlfcn.h... yes
    checking whether we are using the GNU C++ compiler... (cached) yes
    checking whether g++ accepts -g... (cached) yes
    checking dependency style of g++... (cached) gcc3
    checking how to run the C++ preprocessor... g++ -E
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for shl_load... no
    checking for shl_load in -ldld... no
    checking for dlopen... no
    checking for dlopen in -ldl... yes
    checking whether a program can dlopen itself... yes
    checking whether a statically linked program can dlopen itself... no
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for ld used by g++... /usr/x86_64-suse-linux/bin/ld -m elf_x86_64
    checking if the linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/x86_64-suse-linux/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 byte ordering is bigendian... no
    checking for ANSI C header files... (cached) yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking features.h usability... yes
    checking features.h presence... yes
    checking for features.h... yes
    checking filehdr.h usability... no
    checking filehdr.h presence... no
    checking for filehdr.h... no
    checking limits.h usability... yes
    checking limits.h presence... yes
    checking for limits.h... yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking mesg.h usability... no
    checking mesg.h presence... no
    checking for mesg.h... no
    checking malloc.h usability... yes
    checking malloc.h presence... yes
    checking for malloc.h... yes
    checking for mesg.h... (cached) no
    checking netinet/in.h usability... yes
    checking netinet/in.h presence... yes
    checking for netinet/in.h... yes
    checking nl_types.h usability... yes
    checking nl_types.h presence... yes
    checking for nl_types.h... yes
    checking pthread.h usability... yes
    checking pthread.h presence... yes
    checking for pthread.h... yes
    checking pwd.h usability... yes
    checking pwd.h presence... yes
    checking for pwd.h... yes
    checking sched.h usability... yes
    checking sched.h presence... yes
    checking for sched.h... yes
    checking signal.h usability... yes
    checking signal.h presence... yes
    checking for signal.h... yes
    checking stdarg.h usability... yes
    checking stdarg.h presence... yes
    checking for stdarg.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking stropts.h usability... yes
    checking stropts.h presence... yes
    checking for stropts.h... yes
    checking sys/filio.h usability... no
    checking sys/filio.h presence... no
    checking for sys/filio.h... no
    checking sys/ldr.h usability... no
    checking sys/ldr.h presence... no
    checking for sys/ldr.h... no
    checking sys/resource.h usability... yes
    checking sys/resource.h presence... yes
    checking for sys/resource.h... yes
    checking sys/select.h usability... yes
    checking sys/select.h presence... yes
    checking for sys/select.h... yes
    checking sys/sem.h usability... yes
    checking sys/sem.h presence... yes
    checking for sys/sem.h... yes
    checking sys/signal.h usability... yes
    checking sys/signal.h presence... yes
    checking for sys/signal.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 sys/utsname.h usability... yes
    checking sys/utsname.h presence... yes
    checking for sys/utsname.h... yes
    checking sys/wait.h usability... yes
    checking sys/wait.h presence... yes
    checking for sys/wait.h... yes
    checking time.h usability... yes
    checking time.h presence... yes
    checking for time.h... yes
    checking for unistd.h... (cached) yes
    checking usersec.h usability... no
    checking usersec.h presence... no
    checking for usersec.h... no
    checking for error_at_line... yes
    checking for vprintf... yes
    checking for _doprnt... no
    checking whether time.h and sys/time.h may both be included... yes
    checking for IDtouser... no
    checking for getuserattr... no
    checking for catopen... yes
    checking for fstat... yes
    checking for gcvt... yes
    checking for geteuid... yes
    checking for getpgrp... yes
    checking for getpwuid... yes
    checking for gettimeofday... yes
    checking for memset... yes
    checking for nsleep... no
    checking for setlocale... yes
    checking for strdup... yes
    checking for sighold... yes
    checking for sigprocmask... yes
    checking for nanosleep... yes
    checking for pthread_mutexattr_settype... no
    checking for pthread_mutexattr_settype in -lpthread... yes
    checking if union semun is incorrectly defined... no
    checking which values are valid for pthread_mutexattr_settype arg 2 are valid... found
    checking if FILE struct contains _cnt member... no
    checking if FILE struct contains _IO_read_ptr member... yes
    checking for rpmbuild... /usr/bin/rpmbuild
    checking for gencat... /usr/bin/gencat
    checking for Xalan... no
    checking for xalan... no
    configure: WARNING: cannot find xalan, Xalan
    configure: WARNING: setting Subversion Revision to 0
    Subversion revision: 0
    ooRexx major number: 4
    ooRexx minor number: 1
    ooRexx mod level number: 0
    ooRexx current number: 4
    ooRexx revision number: 2
    ooRexx age number: 0
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating platform/unix/oorexx.spec
    config.status: creating platform/unix/debian/changelog
    config.status: creating platform/unix/debian/postinst
    config.status: creating rexxapi/server/platform/unix/rxapid
    config.status: creating samples/Makefile
    config.status: creating samples/unix/Makefile
    config.status: creating samples/unix/api/Makefile
    config.status: creating samples/unix/api/callrexx/Makefile
    config.status: creating samples/unix/api/wpipe1/Makefile
    config.status: creating samples/unix/api/wpipe2/Makefile
    config.status: creating samples/unix/api/wpipe3/Makefile
    config.status: creating samples/windows/Makefile
    config.status: creating samples/windows/api/Makefile
    config.status: creating samples/windows/api/callrxnt/Makefile
    config.status: creating samples/windows/api/callrxwn/Makefile
    config.status: creating samples/windows/api/rexxexit/Makefile
    config.status: creating samples/windows/api/wpipe/Makefile
    config.status: creating samples/windows/api/wpipe/wpipe1/Makefile
    config.status: creating samples/windows/api/wpipe/wpipe2/Makefile
    config.status: creating samples/windows/api/wpipe/wpipe3/Makefile
    config.status: creating samples/windows/misc/Makefile
    config.status: creating samples/windows/ole/Makefile
    config.status: creating samples/windows/ole/adsi/Makefile
    config.status: creating samples/windows/ole/apps/Makefile
    config.status: creating samples/windows/ole/methinfo/Makefile
    config.status: creating samples/windows/ole/oleinfo/Makefile
    config.status: creating samples/windows/ole/wmi/Makefile
    config.status: creating samples/windows/ole/wmi/sysinfo/Makefile
    config.status: creating samples/windows/oodialog/Makefile
    config.status: creating samples/windows/oodialog/bmp/Makefile
    config.status: creating samples/windows/oodialog/controls/Makefile
    config.status: creating samples/windows/oodialog/examples/Makefile
    config.status: creating samples/windows/oodialog/examples/resources/Makefile
    config.status: creating samples/windows/oodialog/ooRexxTry/Makefile
    config.status: creating samples/windows/oodialog/ooRexxTry/doc/Makefile
    config.status: creating samples/windows/oodialog/rc/Makefile
    config.status: creating samples/windows/oodialog/res/Makefile
    config.status: creating samples/windows/oodialog/simple/Makefile
    config.status: creating samples/windows/oodialog/tutorial/Makefile
    config.status: creating samples/windows/oodialog/wav/Makefile
    config.status: creating samples/windows/rexutils/Makefile
    config.status: creating samples/windows/winsystem/Makefile
    config.status: creating samples/windows/wsh/Makefile
    config.status: creating xsl.sh
    config.status: creating platform/unix/oorexx-config
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    + make
    make[1]: Entering directory /root/ooRexx/main/trunk/rpm/BUILD/ooRexx-4.1.0' g++ -DHAVE_CONFIG_H -I. -DORX_VER=4 -DORX_REL=1 -DORX_MOD=0 -DORX_FIX=0 -DORX_SYS_STR=\"LINUX\" -DORX_CATDIR=\"/opt/ooRexx/bin\" -DORX_SHARED_LIBRARY_EXT=\".so\" -I./lib -I./api -I./api/platform/unix -g -O2 -g -O2 -Wall -funsigned-char -Wpointer-arith -Wcast-qual -Wcast-align -Wshadow -Wwrite-strings -D__cplusplus -Wredundant-decls -DNOOPT -DPTHREAD_KERNEL -D_POSIX_THREAD -D_REENTRANT -D_GNU_SOURCE -DLINUX -DOPSYS_LINUX -MT rexximage-rexximage.o -MD -MP -MF .deps/rexximage-rexximage.Tpo -c -o rexximage-rexximage.otest -f './utilities/rexximage/rexximage.cpp' || echo './'./utilities/rexximage/rexximage.cpp mv -f .deps/rexximage-rexximage.Tpo .deps/rexximage-rexximage.Po /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -DORX_VER=4 -DORX_REL=1 -DORX_MOD=0 -DORX_FIX=0 -DORX_SYS_STR=\"LINUX\" -DORX_CATDIR=\"/opt/ooRexx/bin\" -DORX_SHARED_LIBRARY_EXT=\".so\" -I./lib -I./api -I./api/platform/unix -I./common -I./common/platform/unix -I./interpreter -I./interpreter/behaviour -I./interpreter/execution -I./interpreter/memory -I./interpreter/package -I./interpreter/concurrency -I./interpreter/expression -I./interpreter/instructions -I./interpreter/classes -I./interpreter/classes/support -I./interpreter/runtime -I./interpreter/parser -I./interpreter/messages -I./interpreter/streamLibrary -I./interpreter/platform/common -I./interpreter/platform/unix -g -O2 -g -O2 -Wall -funsigned-char -Wpointer-arith -Wcast-qual -Wcast-align -Wshadow -Wwrite-strings -D__cplusplus -Wredundant-decls -DNOOPT -DPTHREAD_KERNEL -D_POSIX_THREAD -D_REENTRANT -D_GNU_SOURCE -DLINUX -DOPSYS_LINUX -MT librexx_la-ArrayClass.lo -MD -MP -MF .deps/librexx_la-ArrayClass.Tpo -c -o librexx_la-ArrayClass.lotest -f './interpreter/classes/ArrayClass.cpp' || echo './'./interpreter/classes/ArrayClass.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -DORX_VER=4 -DORX_REL=1 -DORX_MOD=0 -DORX_FIX=0 -DORX_SYS_STR=\"LINUX\" -DORX_CATDIR=\"/opt/ooRexx/bin\" -DORX_SHARED_LIBRARY_EXT=\".so\" -I./lib -I./api -I./api/platform/unix -I./common -I./common/platform/unix -I./interpreter -I./interpreter/behaviour -I./interpreter/execution -I./interpreter/memory -I./interpreter/package -I./interpreter/concurrency -I./interpreter/expression -I./interpreter/instructions -I./interpreter/classes -I./interpreter/classes/support -I./interpreter/runtime -I./interpreter/parser -I./interpreter/messages -I./interpreter/streamLibrary -I./interpreter/platform/common -I./interpreter/platform/unix -g -O2 -g -O2 -Wall -funsigned-char -Wpointer-arith -Wcast-qual -Wcast-align -Wshadow -Wwrite-strings -D__cplusplus -Wredundant-decls -DNOOPT -DPTHREAD_KERNEL -D_POSIX_THREAD -D_REENTRANT -D_GNU_SOURCE -DLINUX -DOPSYS_LINUX -MT librexx_la-ArrayClass.lo -MD -MP -MF .deps/librexx_la-ArrayClass.Tpo -c ./interpreter/classes/ArrayClass.cpp -fPIC -DPIC -o .libs/librexx_la-ArrayClass.o In file included from ./interpreter/expression/ExpressionStack.hpp:48, from ./interpreter/concurrency/RexxActivity.hpp:50, from ./interpreter/runtime/RexxCore.h:243, from ./interpreter/classes/ArrayClass.cpp:70: ./interpreter/classes/ArrayClass.hpp:76: error: ‘boolean’ does not name a type ./interpreter/classes/ArrayClass.cpp: In member function ‘void RexxArray::quickSort(BaseSortComparator&, size_t, size_t)’: ./interpreter/classes/ArrayClass.cpp:2325: error: ‘class PartitionBounds’ has no member named ‘isSmall’ make[1]: *** [librexx_la-ArrayClass.lo] Error 1 make[1]: Leaving directory/root/ooRexx/main/trunk/rpm/BUILD/ooRexx-4.1.0'
    error: Bad exit status from /var/tmp/rpm-tmp.iHKSa1 (%build)

    RPM build errors:
    Bad exit status from /var/tmp/rpm-tmp.iHKSa1 (%build)
    make: *** [rpm] Error 1
    ulmo:~/ooRexx/main/trunk #

     
  • Rick McGuire

    Rick McGuire - 2010-03-27

    This bug is not a canidate for the 4.0.1 bug fix release.

     
  • Mark Miesfeld

    Mark Miesfeld - 2010-09-11

    Rick,

    I tested this a couple of weeks agon on several Linux systems and Windows. It seems a good fix to me. It also fixed at least one other bug, maybe a couple of others.

    I think you didn't want to include it in 4.0.1 because it hadn't been tested on Linux (you had VM ware problems.)

    Take a look and see if it's okay to include in 4.1.0

     
  • Mark Miesfeld

    Mark Miesfeld - 2010-10-09

    Committed revision 6253. 4.1.0

     
  • Mark Miesfeld

    Mark Miesfeld - 2010-12-05

    The fix for this item was in the 4.1.0 release.

     

Anonymous
Anonymous

Add attachments
Cancel