[Libsysio-commit] HEAD: libsysio configure.in
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2004-01-12 18:10:35
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv5172 Modified Files: configure.in Log Message: tweak for compatibility with alpha RH6 env Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.12 retrieving revision 1.13 diff -u -w -b -B -p -r1.12 -r1.13 --- configure.in 16 Dec 2003 15:43:14 -0000 1.12 +++ configure.in 12 Jan 2004 18:10:32 -0000 1.13 @@ -32,7 +32,7 @@ AC_ARG_WITH(lib-dir, esac;], [ LIBBUILD_DIR=`pwd`/lib; test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} || have_lib_dir=no;]) -if test x${have_lib_dir} == xyes; then +if test x${have_lib_dir} = xyes; then echo "Using sysio library directory ${LIBBUILD_DIR}" else AC_MSG_ERROR(Need writeable path to sysio library directory ${LIBBUILD_DIR}) @@ -224,7 +224,7 @@ fi # Check for fdatasync syscall # AC_MSG_CHECKING(for fdatasync system call) -if test x$alpha_linux_env == xyes; then +if test x$alpha_linux_env = xyes; then _syscallnum=SYS_osf_fdatasync else _syscallnum=SYS_fdatasync |