Whamcloud - gitweb
LU-3953 build: configure output improvments
[fs/lustre-release.git] / config / lustre-build.m4
index bdc0737..4cea28b 100644 (file)
@@ -24,7 +24,8 @@ AC_DEFUN([LB_CANONICAL_SYSTEM],
                ;;
        solaris*)
                lb_target_os="SunOS"
-               ;;esac
+               ;;
+esac
 AC_SUBST(lb_target_os)
 ])
 
@@ -89,8 +90,7 @@ if git branch >/dev/null 2>&1; then
                ver=${ver//_/.}
        fi
 
-       # only do this test for lustre (not ldiskfs)
-       if test "$PACKAGE" = "lustre" -a "$ver" != "$VERSION"; then
+       if test "$ver" != "$VERSION"; then
                AC_MSG_WARN([most recent tag found: $ver does not match current version $VERSION.])
        fi
 
@@ -106,7 +106,12 @@ elif test -f META; then
        msg="$BUILDID (from META file)"
        AC_MSG_RESULT([$msg])
 else
-       AC_MSG_WARN([FIXME: I don't know how to deal with source trees outside of git that don't have a META file.  Not setting a buildid.])
+       AC_MSG_RESULT([none])
+       AC_MSG_WARN([
+
+FIXME: I don't know how to deal with source trees outside of git that
+don't have a META file. Not setting a buildid.
+])
 fi
 AC_SUBST(BUILDID)
 ])
@@ -226,46 +231,26 @@ case x$with_sysio in
 esac
 
 # We have to configure even if we don't build here for make dist to work
-AC_CONFIG_SUBDIRS(libsysio)
+AC_CONFIG_SUBDIRS([libsysio])
 ])
 
 #
 # LB_PATH_LUSTREIOKIT
 #
-# Handle internal/external lustre-iokit
+# We no longer handle external lustre-iokit
 #
 AC_DEFUN([LB_PATH_LUSTREIOKIT],
-[AC_ARG_WITH([lustre-iokit],
-       AC_HELP_STRING([--with-lustre-iokit=path],
-                       [set path to lustre-iokit source (default is included lustre-iokit)]),
+[AC_ARG_ENABLE([iokit],
+       AC_HELP_STRING([--disable-iokit],
+               [disable iokit (default is enable)]),
        [],[
-                       with_lustre_iokit='yes'
+               enable_iokit='yes'
        ])
-AC_MSG_CHECKING([location of lustre-iokit])
-enable_lustre_iokit="$with_lustre_iokit"
-case x$with_lustre_iokit in
-       xyes)
-               AC_MSG_RESULT([internal])
-               LB_CHECK_FILE([$srcdir/lustre-iokit/ior-survey/ior-survey],[],[
-                       AC_MSG_ERROR([A complete internal lustre-iokit was not found.])
-               ])
-               LUSTREIOKIT_SUBDIR="lustre-iokit"
-               LUSTREIOKIT="$PWD/lustre-iokit"
-               ;;
-       xno)
-               AC_MSG_RESULT([disabled])
-               ;;
-       *)
-               AC_MSG_RESULT([$with_lustre_iokit])
-               LB_CHECK_FILE([$with_lustre_iokit/ior-survey/ior_survey],[],[
-                       AC_MSG_ERROR([A complete (built) external lustre-iokit was not found.])
-               ])
-               LUSTREIOKIT="$with_lustre_iokit"
-               ;;
-esac
+AC_MSG_CHECKING([whether to build iokit])
+AC_MSG_RESULT([$enable_iokit])
+AS_IF([test "x$enable_iokit" = xyes], [LUSTREIOKIT_SUBDIR="lustre-iokit"], [LUSTREIOKIT_SUBDIR=""])[]dnl
 AC_SUBST(LUSTREIOKIT_SUBDIR)
-# We have to configure even if we don't build here for make dist to work
-AC_CONFIG_SUBDIRS(lustre-iokit)
+AM_CONDITIONAL(BUILD_LUSTREIOKIT, [test "x$enable_iokit" = xyes])
 ])
 
 # Define no libcfs by default.
@@ -321,6 +306,9 @@ if test x$enable_modules = xyes ; then
                        LB_PROG_LINUX
                        LIBCFS_PROG_LINUX
                        LN_PROG_LINUX
+                       if test x$enable_server != xno; then
+                               LB_EXT4_SRC_DIR
+                       fi
                        LC_PROG_LINUX
                        ;;
                darwin*)
@@ -468,11 +456,11 @@ AC_DEFUN([LB_PATH_DEFAULTS],
 [# directories for binaries
 AC_PREFIX_DEFAULT([/usr])
 
-sysconfdir='/etc'
+sysconfdir='$(CROSS_PATH)/etc'
 AC_SUBST(sysconfdir)
 
 # Directories for documentation and demos.
-docdir='${datadir}/doc/$(PACKAGE)'
+docdir='$(datadir)/doc/$(PACKAGE)'
 AC_SUBST(docdir)
 
 LIBCFS_PATH_DEFAULTS
@@ -538,7 +526,7 @@ AM_CONDITIONAL(LINUX, test x$lb_target_os = "xlinux")
 AM_CONDITIONAL(DARWIN, test x$lb_target_os = "xdarwin")
 AM_CONDITIONAL(SUNOS, test x$lb_target_os = "xSunOS")
 AM_CONDITIONAL(USES_DPKG, test x$uses_dpkg = "xyes")
-AM_CONDITIONAL(ARCH_x86, test x$target_cpu = "xx86_64" -o x$target_cpu = "xi686")
+AM_CONDITIONAL([USE_QUILT], [test x$use_quilt = xyes])
 
 # Sanity check for PCLMULQDQ instruction availability
 # PCLMULQDQ instruction is a new instruction available beginning with
@@ -581,13 +569,155 @@ AC_DEFUN([LB_CONFIG_FILES],
                config/Makefile
                [Rules:build/Rules.in]
                AC_PACKAGE_TARNAME[.spec]
+               AC_PACKAGE_TARNAME[-dkms.spec]
                contrib/Makefile
                contrib/lbuild/Makefile
                contrib/scripts/Makefile
+               ldiskfs/Makefile
+               ldiskfs/autoMakefile
+               lustre-iokit/Makefile
+               lustre-iokit/obdfilter-survey/Makefile
+               lustre-iokit/ost-survey/Makefile
+               lustre-iokit/sgpdd-survey/Makefile
+               lustre-iokit/mds-survey/Makefile
+               lustre-iokit/ior-survey/Makefile
+               lustre-iokit/stats-collect/Makefile
        )
 ])
 
 #
+# LB_CONFIG_SERVERS
+#
+AC_DEFUN([LB_CONFIG_SERVERS],
+[
+AC_ARG_ENABLE([server],
+       AC_HELP_STRING([--disable-server],
+                       [disable Lustre server support]),
+       [AS_IF([test x$enable_server != xyes -a x$enable_server != xno],
+               [AC_MSG_ERROR([server valid options are "yes" or "no"])])
+       AS_IF([test x$enable_server = xyes -a x$enable_dist = xyes],
+               [AC_MSG_ERROR([--enable-server cannot be used with --enable-dist])])
+       ],
+       [AS_IF([test x$enable_dist = xyes],
+                    [enable_server=no],
+                    [enable_server=maybe])
+       ]
+)
+
+# There are at least two good reasons why we should really run
+# LB_CONFIG_MODULES elsewhere before the call to LB_CONFIG_SERVERS:
+# LB_CONFIG_MODULES needs to be run for client support even when
+# servers are disabled, and because module support is actually a
+# prerequisite of server support.  However, some things under
+# LB_CONFIG_MODULES need us to already have checked for --disable-server,
+# before running, so until LB_CONFIG_MODULES can be reorganized, we
+# call it here.
+LB_CONFIG_MODULES
+AS_IF([test x$enable_modules = xno],[enable_server=no])
+LB_CONFIG_LDISKFS
+LB_CONFIG_ZFS
+
+# If no backends were configured, and the user did not explicitly
+# require servers to be enabled, we just disable servers.
+AS_IF([test x$enable_ldiskfs = xno -a x$enable_zfs = xno],
+       [AS_CASE([$enable_server],
+               [maybe], [enable_server=no],
+               [yes], [AC_MSG_ERROR([cannot enable servers, no backends were configured])])
+       ],
+       [AS_IF([test x$enable_server = xmaybe], [enable_server=yes])]
+)
+
+AC_MSG_CHECKING([whether to build Lustre server support])
+AC_MSG_RESULT([$enable_server])
+AS_IF([test x$enable_server = xyes],
+       [AC_DEFINE(HAVE_SERVER_SUPPORT, 1, [support server])]
+)
+])
+
+
+#
+# LB_CONFIG_RPMBUILD_OPTIONS
+#
+# The purpose of this function is to assemble command line options
+# for the rpmbuild command based on the options passed to the configure
+# script, and also upon the descisions that configure makes based on
+# the tests that it runs.
+# These strings can be passed to rpmbuild on the command line
+# in the Make targets named "rpms" and "srpm".
+#
+AC_DEFUN([LB_CONFIG_RPMBUILD_OPTIONS],[
+       RPMBINARGS=
+       RPMSRCARGS=
+       CONFIGURE_ARGS=
+       eval set -- $ac_configure_args
+       for arg; do
+               case $arg in
+                       --with-release=* ) ;;
+                       --with-kmp-moddir=* ) ;;
+                       --enable-tests | --disable-tests ) ;;
+                       --with-linux=* | --with-linux-obj=* ) ;;
+                       * ) CONFIGURE_ARGS="$CONFIGURE_ARGS '$arg'" ;;
+               esac
+       done
+       if test -n "$CONFIGURE_ARGS" ; then
+               RPMBINARGS="$RPMBINARGS --define \"configure_args $CONFIGURE_ARGS\""
+       fi
+       if test -n "$LINUX" ; then
+               RPMBINARGS="$RPMBINARGS --define \"kdir $LINUX\""
+               if test -n "$LINUX_OBJ" -a "$LINUX_OBJ" != x"$LINUX" ; then
+                       RPMBINARGS="$RPMBINARGS --define \"kobjdir $LINUX_OBJ\""
+               fi
+       fi
+       if test -n "$KMP_MODDIR" ; then
+               RPMBINARGS="$RPMBINARGS --define \"kmoddir $KMP_MODDIR\""
+       fi
+       if test -n "$CROSS_PATH" ; then
+               if test x$enable_server = xyes ; then
+                       echo -e "\n"
+                       "*** Don't support cross compilation for the Intel(R) Xeon Phi(TM) card.\n"
+                       exit 1
+               fi
+               CROSS_SUFFIX="-mic"
+               RPMBINARGS="$RPMBINARGS --define \"post_script build/gen_filelist.sh\""
+               RPMBINARGS="$RPMBINARGS --define \"cross_path $CROSS_PATH\""
+               RPMBINARGS="$RPMBINARGS --define \"rootdir %{cross_path}\""
+               RPMBINARGS="$RPMBINARGS --define \"_prefix %{cross_path}/usr\""
+               RPMBINARGS="$RPMBINARGS --define \"_mandir %{_prefix}/share/man\""
+               RPMBINARGS="$RPMBINARGS --define \"_sysconfdir %{cross_path}/etc\""
+               RPMBINARGS="$RPMBINARGS --define \"make_args $CROSS_VARS\""
+               if test x$CC_TARGET_ARCH = x"x86_64-k1om-linux" ; then
+                       RPMBINARGS="$RPMBINARGS --define \"cross_requires intel-mic-gpl\""
+               fi
+       fi
+       if test x$enable_tests != xyes ; then
+               RPMBINARGS="$RPMBINARGS --without lustre_tests"
+               RPMSRCARGS="$RPMSRCARGS --without lustre_tests";
+       fi
+       if test x$enable_server != xyes ; then
+               RPMBINARGS="$RPMBINARGS --without servers"
+               if test -n "$CROSS_SUFFIX" ; then
+                       RPMBINARGS="$RPMBINARGS --define \"lustre_name lustre-client$CROSS_SUFFIX\""
+               fi
+       fi
+       if test x$enable_ldiskfs != xyes ; then
+               RPMBINARGS="$RPMBINARGS --without ldiskfs"
+       fi
+       if test x$enable_zfs = xyes ; then
+               RPMBINARGS="$RPMBINARGS --with zfs"
+       fi
+       if test x$enable_iokit != xyes ; then
+               RPMBINARGS="$RPMBINARGS --without lustre_iokit"
+               RPMSRCARGS="$RPMSRCARGS --without lustre_iokit"
+       fi
+
+       RPMBUILD_BINARY_ARGS=$RPMBINARGS
+       RPMBUILD_SOURCE_ARGS=$RPMSRCARGS
+
+       AC_SUBST(RPMBUILD_BINARY_ARGS)
+       AC_SUBST(RPMBUILD_SOURCE_ARGS)
+])
+
+#
 # LB_CONFIGURE
 #
 # main configure steps
@@ -614,20 +744,19 @@ LC_OSD_ADDON
 LB_CONFIG_DOCS
 LB_CONFIG_UTILS
 LB_CONFIG_TESTS
-LC_CONFIG_CLIENT_SERVER
+LC_CONFIG_CLIENT
+LB_CONFIG_SERVERS
 
 # two macros for cmd3
 m4_ifdef([LC_CONFIG_SPLIT], [LC_CONFIG_SPLIT])
+m4_ifdef([LC_NODEMAP_PROC_DEBUG], [LC_NODEMAP_PROC_DEBUG])
 LN_CONFIG_CDEBUG
 LC_QUOTA
 
-LB_CONFIG_MODULES
 LN_CONFIG_USERSPACE
 
 LB_PATH_LIBSYSIO
 LB_PATH_SNMP
-LB_PATH_LDISKFS
-LB_PATH_ZFS
 LB_PATH_LUSTREIOKIT
 
 LB_DEFINE_E2FSPROGS_NAMES
@@ -659,6 +788,8 @@ AC_SUBST(ac_configure_args)
 MOSTLYCLEANFILES='.*.cmd .*.flags *.o *.ko *.mod.c .depend .*.1.* Modules.symvers Module.symvers'
 AC_SUBST(MOSTLYCLEANFILES)
 
+LB_CONFIG_RPMBUILD_OPTIONS
+
 AC_OUTPUT
 
 cat <<_ACEOF