[Libsysio-commit] RedStorm: libsysio README configure.in
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2003-05-19 14:37:09
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv4131 Modified Files: Tag: RedStorm README configure.in Log Message: Finish redstorm port to the point of compilation. This is very hard to get setup to build. Definately see the README. Index: README =================================================================== RCS file: /cvsroot/libsysio/libsysio/README,v retrieving revision 1.2 retrieving revision 1.2.12.1 diff -u -w -b -B -p -r1.2 -r1.2.12.1 --- README 7 Mar 2003 03:31:35 -0000 1.2 +++ README 19 May 2003 13:51:20 -0000 1.2.12.1 @@ -53,3 +53,18 @@ is required. They are not on a timer, un one for them. They just disappear as resource is needed elsewhere. As they were automatically mounted to begin with, they should re-establish as needed, transparently. + +REDSTORM +-------- + +The following works for me: + +#!/bin/sh + +export CFLAGS="-DREDSTORM -nostdinc -isystem /home/lee/REDSTORM/catamount/computeincs/i386 -isystem /home/lee/REDSTORM/catamount/include -g -W -Wall -ansi" + +# No tests until the compute libraries include support for getopt! +sh configure --with-autmount=".mount" --with-native=yes --with-incore-yes --with-stdfd=yes --with-tests=no + +Support for getopt is supposed to be coming soon. The tests can be reenabled +when that happens, I hope. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.5.6.1 retrieving revision 1.5.6.2 diff -u -w -b -B -p -r1.5.6.1 -r1.5.6.2 --- configure.in 12 May 2003 11:48:45 -0000 1.5.6.1 +++ configure.in 19 May 2003 13:51:20 -0000 1.5.6.2 @@ -19,7 +19,7 @@ AC_HEADER_STDC AC_HEADER_STAT AC_HEADER_TIME -AC_ARG_WITH(with_native_driver, +AC_ARG_WITH(native_driver, [ --with-native-driver build native test driver], [ with_native_driver=${withval} case "${withval}" in @@ -30,7 +30,7 @@ AC_ARG_WITH(with_native_driver, [with_native_driver=yes]) AM_CONDITIONAL(WITH_NATIVE_DRIVER, test x$with_native_driver = xyes) -AC_ARG_WITH(with_incore_driver, +AC_ARG_WITH(incore_driver, [ --with-incore-driver build incore test driver], [ with_incore_driver=${withval} case "${withval}" in @@ -41,7 +41,7 @@ AC_ARG_WITH(with_incore_driver, [with_incore_driver=yes]) AM_CONDITIONAL(WITH_INCORE_DRIVER, test x$with_incore_driver = xyes) -AC_ARG_WITH(with_tests, +AC_ARG_WITH(tests, [ --with-tests build tests], [ with_tests=${withval} case "${withval}" in @@ -61,7 +61,7 @@ if test x$with_automount != x; then fi AC_SUBST(AUTOMOUNT) -AC_ARG_WITH(with_stdfd_dev, +AC_ARG_WITH(stdfd_dev, [ --with-stdfd-dev build standard file descriptors pseudo-driver], [ with_stdfd_dev=${withval} case "${withval}" in |