[Libsysio-commit] cplant: libsysio README configure.in
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2003-08-28 13:43:15
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv997 Modified Files: Tag: cplant README configure.in Log Message: merge head changes into cplant branch Index: README =================================================================== RCS file: /cvsroot/libsysio/libsysio/README,v retrieving revision 1.2 retrieving revision 1.2.16.1 diff -u -w -b -B -p -r1.2 -r1.2.16.1 --- README 7 Mar 2003 03:31:35 -0000 1.2 +++ README 28 Aug 2003 13:43:09 -0000 1.2.16.1 @@ -17,8 +17,8 @@ Option --with-tests=yes will cause the t to be enabled. This is set by default; Use "no" to disable. Option --with-automount=<automount-file-name> will cause automount support -to be included. Normally, this should be set to ".mount", matching the -documentation. +to be included. If <automount-file-name> is not supplied, a default value +of ".mount" will be used, matching the Lustre documentation. To build: Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.8.2.1 retrieving revision 1.8.2.2 diff -u -w -b -B -p -r1.8.2.1 -r1.8.2.2 --- configure.in 20 Aug 2003 21:05:49 -0000 1.8.2.1 +++ configure.in 28 Aug 2003 13:43:09 -0000 1.8.2.2 @@ -20,7 +20,7 @@ AC_HEADER_STAT AC_HEADER_TIME AC_ARG_WITH(native_driver, - [ --with-native-driver build native test driver], + AC_HELP_STRING([--with-native-driver],[build native test driver]), [ case "${withval}" in yes) ;; no) ;; @@ -30,7 +30,7 @@ AC_ARG_WITH(native_driver, AM_CONDITIONAL(WITH_NATIVE_DRIVER, test x$with_native_driver = xyes) AC_ARG_WITH(incore-driver, - [ --with-incore-driver build incore test driver], + AC_HELP_STRING([--with-incore-driver],[build incore test driver]), [ case "${withval}" in yes) ;; no) ;; @@ -40,7 +40,7 @@ AC_ARG_WITH(incore-driver, AM_CONDITIONAL(WITH_INCORE_DRIVER, test x$with_incore_driver = xyes) AC_ARG_WITH(tests, - [ --with-tests build tests], + AC_HELP_STRING([--with-tests],[build tests]), [ case "${withval}" in yes) ;; no) ;; @@ -50,14 +50,18 @@ AC_ARG_WITH(tests, AM_CONDITIONAL(WITH_TESTS, test x$with_tests = xyes) AC_ARG_WITH(automount, - [ --with-automount=[automount-file-name] with automounts], - [ if test x${withval} != x; then + AC_HELP_STRING([--with-automount@<:@=<automount-file-name>@:>@], + [with automounts @<:@<automount-file-name>=.mount@:>@]), + [ if test x${withval} = xyes; then + AUTOMOUNT=-DAUTOMOUNT_FILE_NAME="\\\".mount\\\"" + elif test x${withval} != x; then AUTOMOUNT=-DAUTOMOUNT_FILE_NAME="\\\"${withval}\\\"" fi]) AC_SUBST(AUTOMOUNT) AC_ARG_WITH(stdfd-dev, - [ --with-stdfd-dev build standard file descriptors pseudo-driver], + AC_HELP_STRING([--with-stdfd-dev], + [build standard file descriptors pseudo-driver]), [ case "${withval}" in yes) ;; no) ;; @@ -67,7 +71,7 @@ AC_ARG_WITH(stdfd-dev, AM_CONDITIONAL(WITH_STDFD_DEV, test x$with_stdfd_dev = xyes) AC_ARG_WITH(cplant_yod, - [ --with-cplant-yod build cplant yod I/O driver], + AC_HELP_STRING([--with-cplant-yod],[build cplant yod I/O driver]), [ case "${withval}" in yes) if test x${with_stdfd_dev} != xyes; then with_stdfd_dev=yes @@ -80,7 +84,8 @@ AC_ARG_WITH(cplant_yod, AM_CONDITIONAL(WITH_CPLANT_YOD, test x$with_cplant_yod = xyes) AC_ARG_WITH(cplant_tests, - [ --with-cplant-tests=[cplant build path] build libsysio tests for cplant platform], + AC_HELP_STRING([--with-cplant-tests=<cplant-build-path>], + [build libsysio tests for cplant platform]), [ case "${withval}" in yes) AC_MSG_ERROR(need path to compiler for --with-cplant-tests);; no) with_cplant_tests=no;; |