summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rw-r--r--configure.ac105
2 files changed, 1 insertions, 107 deletions
diff --git a/Makefile.am b/Makefile.am
index 1b20e0030..b4f0587ca 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
EXTRA_DIST = autogen.sh COPYING INSTALL README AUTHORS THANKS NEWS glusterfs.spec
-SUBDIRS = argp-standalone libglusterfs $(LIBGLUSTERFSCLIENT_SUBDIR) xlators scheduler transport auth glusterfsd $(MOD_GLUSTERFS_SUBDIR) $(GF_BOOSTER_SUBDIR) doc extras
+SUBDIRS = argp-standalone libglusterfs $(LIBGLUSTERFSCLIENT_SUBDIR) xlators scheduler transport auth glusterfsd $(GF_BOOSTER_SUBDIR) doc extras
CLEANFILES =
@@ -12,4 +12,3 @@ gitclean: distclean
rm -f missing aclocal.m4 config.h.in config.guess config.sub ltmain.sh install-sh configure depcomp
rm -fr argp-standalone/autom4te.cache
rm -f argp-standalone/aclocal.m4 argp-standalone/config.h.in argp-standalone/configure argp-standalone/depcomp argp-standalone/install-sh argp-standalone/missing
- rm -fr mod_glusterfs/apache-1.3/src/.deps transport/ib-verbs/src/.deps
diff --git a/configure.ac b/configure.ac
index 630ace3ac..c4230e4c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,15 +25,6 @@ AC_CONFIG_FILES([Makefile
libglusterfs/src/Makefile
libglusterfsclient/Makefile
libglusterfsclient/src/Makefile
- mod_glusterfs/Makefile
- mod_glusterfs/apache/Makefile
- mod_glusterfs/apache/1.3/Makefile
- mod_glusterfs/apache/1.3/src/Makefile
- mod_glusterfs/apache/2.2/Makefile
- mod_glusterfs/apache/2.2/src/Makefile
- mod_glusterfs/lighttpd/Makefile
- mod_glusterfs/lighttpd/1.4/Makefile
- mod_glusterfs/lighttpd/1.5/Makefile
glusterfsd/Makefile
glusterfsd/src/Makefile
booster/Makefile
@@ -208,97 +199,6 @@ AC_SUBST(LIBGLUSTERFSCLIENT_SUBDIR)
# end LIBGLUSTERFSCLIENT section
-# MOD_GLUSTERFS section
-AC_ARG_ENABLE([mod_glusterfs],
- AC_HELP_STRING([--disable-mod_glusterfs],
- [Do not build glusterfs module for webserver. Currently supported module is for apache/1.3.x]))
-
-if test "x$enable_mod_glusterfs" != "xno"; then
- AC_ARG_WITH([apxs],
- AC_HELP_STRING([--with-apxs],
- [directory containing apxs binary]))
- if test "x$with_apxs" != "x"; then
- APXS_BIN=$with_apxs
- else
- APXS_BIN="$PATH"
- fi
- AC_CHECK_TOOL([APXS],[apxs], ["no"], [$APXS_BIN])
- if test "X$APXS" = "Xno"; then
- HAVE_APXS="no";
- else
- if test "x$with_apxs" != "x"; then
- APXS="$with_apxs/apxs";
- fi
- HAVE_APXS="yes";
- fi
-
- HAVE_LIBGLUSTERFSCLIENT="no";
- if test "x$BUILD_LIBGLUSTERFSCLIENT" = "xyes"; then
- HAVE_LIBGLUSTERFSCLIENT="yes";
- fi
-
- AC_ARG_WITH([apxspath],
- AC_HELP_STRING([--with-apxspath],
- [Path to apxs binary]))
-
- AC_ARG_WITH([apachepath],
- AC_HELP_STRING([--with-apachepath],
- [Path to apache binary]))
-fi
-
-if test "x$enable_mod_glusterfs" = "xyes" -a "x$HAVE_APXS" = "xno"; then
- echo "apxs is required to build mod_glusterfs. Use --with-apxs to specify path to apxs. If mod_glusterfs is not required, do not pass --enable-mod_glusterfs option to configure "
- exit 1
-fi
-
-if test "x$enable_mod_glusterfs" = "xyes" -a "x$HAVE_LIBGLUSTERFSCLIENT" = "xno"; then
- echo "libglusterfsclient is required to build mod_glusterfs. Do not specify --disable-libglusterfsclient to configure script. If mod_glusterfs is not required, do not pass --enable-mod_glusterfs option to configure "
- exit 1
-fi
-
-BUILD_MOD_GLUSTERFS=no
-MOD_GLUSTERFS_HTTPD_VERSION=""
-
-if test "x$enable_mod_glusterfs" != "xno" -a "x$HAVE_APXS" = "xyes" -a "x$HAVE_LIBGLUSTERFSCLIENT" = "xyes"; then
- BUILD_MOD_GLUSTERFS="yes";
- MOD_GLUSTERFS_SUBDIR="mod_glusterfs";
-fi
-
-if test "x$BUILD_MOD_GLUSTERFS" = "xyes"; then
- HTTPD_BIN_DIR=`$APXS -q SBINDIR 2>/dev/null`
- RET=$?
- if test "x$RET" = "x0"; then
- MOD_GLUSTERFS_HTTPD_VERSION=`$HTTPD_BIN_DIR/httpd -V | head -1 | awk "{print $3}" | sed 's/[[^0-9\.]]//g' | sed 's/\(.*\..*\)\..*/\1/'`
- fi
-fi
-
-if test "x$with_apxspath" != "x"; then
- APXS_MANUAL=$with_apxspath
-fi
-
-if test "x$with_apachepath" != "x"; then
- HTTPD_MANUAL=$with_apachepath
-fi
-
-if test "x$enable_mod_glusterfs" != "xno" -a "x$with_apxspath" != "x" -a "x$with_apachepath" != "x"; then
- BUILD_MOD_GLUSTERFS="yes";
- MOD_GLUSTERFS_SUBDIR="mod_glusterfs";
- APACHE_MANUAL=yes
-fi
-
-if test "x$APACHE_MANUAL" = "xyes"; then
- HTTPD_BIN_DIR=`$APXS_MANUAL -q SBINDIR 2>/dev/null`
- RET=$?
- if test "x$RET" = "x0"; then
- MOD_GLUSTERFS_HTTPD_VERSION=`$HTTPD_MANUAL -V | head -1 | awk "{print $3}" | sed 's/[[^0-9\.]]//g' | sed 's/\(.*\..*\)\..*/\1/'`
- fi
- APXS=$APXS_MANUAL
-fi
-
-AC_SUBST(MOD_GLUSTERFS_SUBDIR)
-AC_SUBST(APXS)
-AC_SUBST(MOD_GLUSTERFS_HTTPD_VERSION)
-# end MOD_GLUSTERFS section
# FUSE section
@@ -567,8 +467,6 @@ case $host_os in
GF_GLUSTERFS_LDFLAGS="-lexecinfo"
fi
GF_FUSE_LDADD="-liconv -lfuse"
- BUILD_MOD_GLUSTERFS=no
- MOD_GLUSTERFS_SUBDIR=""
BUILD_LIBGLUSTERFSCLIENT=no
LIBGLUSTERFSCLIENT_SUBDIR=""
GF_BOOSTER_SUBDIR=""
@@ -580,8 +478,6 @@ case $host_os in
GF_GLUSTERFS_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -D__DARWIN_64_BIT_INO_T -undefined suppress -flat_namespace"
GF_LDADD="${ARGP_STANDALONE_LDADD}"
GF_FUSE_LDADD="-liconv -lfuse_ino64"
- BUILD_MOD_GLUSTERFS=no
- MOD_GLUSTERFS_SUBDIR=""
BUILD_LIBGLUSTERFSCLIENT=no
LIBGLUSTERFSCLIENT_SUBDIR=""
GF_BOOSTER_SUBDIR=""
@@ -609,6 +505,5 @@ echo "Infiniband verbs : $BUILD_IBVERBS"
echo "epoll IO multiplex : $BUILD_EPOLL"
echo "Berkeley-DB : $BUILD_BDB"
echo "libglusterfsclient : $BUILD_LIBGLUSTERFSCLIENT"
-echo "mod_glusterfs : $BUILD_MOD_GLUSTERFS ($MOD_GLUSTERFS_HTTPD_VERSION)"
echo "argp-standalone : $BUILD_ARGP_STANDALONE"
echo