[Libsysio-commit] HEAD: libsysio Makefile.am configure.in
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2004-05-20 19:31:58
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19480 Modified Files: Makefile.am configure.in Log Message: Integrated CFS changes from Eric's patch dated 5-19-2004. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/Makefile.am,v retrieving revision 1.11 retrieving revision 1.12 diff -u -w -b -B -p -r1.11 -r1.12 --- Makefile.am 14 Feb 2004 19:42:57 -0000 1.11 +++ Makefile.am 20 May 2004 19:31:48 -0000 1.12 @@ -55,13 +55,10 @@ __LIBBUILD_DIR__libsysio_a_SOURCES = \ $(OPTIONAL_NATIVE_SRCS) \ $(OPTIONAL_YOD_SRCS) -# -# Cygwin related? Configure seems to do this for us when appropriate. Why -# was this here? -# -# Commented out by Lee; Wed Jan 21 08:21:33 EST 2004 -# -#__LIBBUILD_DIR__libsysio_a_CFLAGS = -fPIC +if WITH_LUSTRE_HACK +# it would be better that let configure script check this +__LIBBUILD_DIR__libsysio_a_CFLAGS = -fPIC +endif include $(top_srcdir)/Rules.make Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.16 retrieving revision 1.17 diff -u -w -b -B -p -r1.16 -r1.17 --- configure.in 6 Feb 2004 20:07:28 -0000 1.16 +++ configure.in 20 May 2004 19:31:48 -0000 1.17 @@ -144,6 +144,20 @@ AC_ARG_WITH(sockets, [with_sockets=no]) AM_CONDITIONAL(WITH_SOCKETS_DRIVER, test x$with_sockets = xyes) +AC_ARG_WITH(lustre-hack, + AC_HELP_STRING([--with-lustre-hack], + [have hacking code which needed to support liblustre driver (EXPERIMENTAL)]), + [ case "${withval}" in + yes) ;; + no) ;; + *) AC_MSG_ERROR(bad value ${withval} for --with-lustre-hack) ;; + esac], + [with_lustre_hack=no]) +AM_CONDITIONAL(WITH_LUSTRE_HACK, test x$with_lustre_hack = xyes) +if test x$with_lustre_hack = xyes; then + AC_DEFINE(HAVE_LUSTRE_HACK) +fi + # We keep the original values in `$config_*' and never modify them, so we # can write them unchanged into config.make. Everything else uses # $machine, $vendor, and $os, and changes them whenever convenient. |