[Ocfs2-tools-commits] manish commits r916 - in tags: . ocfs2-tools-0.99.9-BETA10

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Tue May 24 21:21:02 CDT 2005


Author: manish
Date: 2005-05-24 21:20:59 -0500 (Tue, 24 May 2005)
New Revision: 916

Added:
   tags/ocfs2-tools-0.99.9-BETA10/
   tags/ocfs2-tools-0.99.9-BETA10/configure.in
Removed:
   tags/ocfs2-tools-0.99.9-BETA10/configure.in
Log:
Tagging 0.99.9


Copied: tags/ocfs2-tools-0.99.9-BETA10 (from rev 914, trunk)

Deleted: tags/ocfs2-tools-0.99.9-BETA10/configure.in
===================================================================
--- trunk/configure.in	2005-05-24 01:19:16 UTC (rev 914)
+++ tags/ocfs2-tools-0.99.9-BETA10/configure.in	2005-05-25 02:20:59 UTC (rev 916)
@@ -1,187 +0,0 @@
-AC_PREREQ(2.54)
-
-AC_INIT(libocfs2/bitmap.c)
-
-PACKAGE=ocfs2-tools
-
-AC_SUBST(PACKAGE)
-
-# Adjust these for the software version.
-MAJOR_VERSION=0
-MINOR_VERSION=99
-MICRO_VERSION=8
-EXTRA_VERSION=BETA9
-
-# Adjust this only to bump the RPM packaging version
-RPM_VERSION=1
-
-DIST_VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
-VERSION=$DIST_VERSION-$EXTRA_VERSION
-
-AC_SUBST(MAJOR_VERSION)
-AC_SUBST(MINOR_VERSION)
-AC_SUBST(MICRO_VERSION)
-AC_SUBST(EXTRA_VERSION)
-
-AC_SUBST(DIST_VERSION)
-AC_SUBST(VERSION)
-AC_SUBST(RPM_VERSION)
-
-AC_CANONICAL_HOST
-
-case "$host" in
-  *-*-linux*)
-    ;;
-  *)
-    AC_MSG_ERROR([This filesystem will only work on Linux])
-    ;;
-esac
-
-AC_PROG_CC
-AC_PROG_CPP
-
-AC_PROG_INSTALL
-AC_PROG_LN_S
-AC_PROG_RANLIB
-
-AC_PATH_PROG(AR, ar)
-
-AC_HEADER_STDC
-AC_C_CONST
-
-if test "x$GCC" != "xyes"; then
-  AC_MSG_ERROR(GCC is required)
-fi
-
-AC_ARG_WITH([root-prefix], [  --with-root-prefix=PREFIX override prefix variable for files to be placed in the root], root_prefix=$withval, root_prefix="")
-
-root_bindir='${root_prefix}/bin'
-root_sbindir='${root_prefix}/sbin'
-root_sysconfdir='${root_prefix}/etc'
-
-AC_SUBST(root_prefix)
-AC_SUBST(root_bindir)
-AC_SUBST(root_sbindir)
-AC_SUBST(root_sysconfdir)
-
-AC_MSG_CHECKING(for debugging)
-AC_ARG_ENABLE(debug, [  --enable-debug=[yes/no]         Turn on debugging [default=yes]],,enable_debug=yes)
-OCFS_DEBUG=
-if test "x$enable_debug" = "xyes"; then
-  OCFS_DEBUG=yes
-fi
-AC_SUBST(OCFS_DEBUG)
-AC_MSG_RESULT($enable_debug)
-
-COM_ERR_LIBS=
-AC_CHECK_LIB(com_err, com_err, COM_ERR_LIBS=-lcom_err)
-if test "x$COM_ERR_LIBS" = "x"; then
-  AC_MSG_ERROR([Unable to find com_err library])
-fi
-AC_CHECK_HEADER(et/com_err.h, :,
-  AC_MSG_ERROR([Unable to find com_err headers]))
-AC_SUBST(COM_ERR_LIBS)
-
-UUID_LIBS=
-AC_CHECK_LIB(uuid, uuid_unparse, UUID_LIBS=-luuid)
-if test "x$COM_ERR_LIBS" = "x"; then
-  AC_MSG_ERROR([Unable to find uuid library])
-fi
-AC_CHECK_HEADER(uuid/uuid.h, :,
-  AC_MSG_ERROR([Unable to find uuid headers]))
-AC_SUBST(UUID_LIBS)
-
-AC_C_BIGENDIAN()
-
-B0RKEN_ENDIAN=
-case "$host_cpu" in
-  s390x)
-    B0RKEN_ENDIAN=-DCONFIG_ARCH_S390=1
-    ;;
-esac
-AC_SUBST(B0RKEN_ENDIAN)
-
-AC_MSG_CHECKING(for debug executables)
-AC_ARG_ENABLE(debugexe, [  --enable-debugexe=[yes/no]     Enable debug executables for library source files [default=no]],,enable_debugexe=no)
-OCFS2_DEBUG_EXE=
-if test "x$enable_debugexe" = "xyes"; then
-    OCFS2_DEBUG_EXE=yes
-fi
-AC_SUBST(OCFS2_DEBUG_EXE)
-AC_MSG_RESULT($enable_debugexe)
-
-GLIB_REQUIRED_VERSION=2.2.3
-GTK_REQUIRED_VERSION=2.2.4
-PYGTK_REQUIRED_VERSION=1.99.16
-
-AM_PATH_GLIB_2_0($GLIB_REQUIRED_VERSION, have_glib=yes, have_glib=no)
-
-if test "x$have_glib" != "xyes"; then
-  AC_MSG_WARN([Glib $GLIB_REQUIRED_VERSION or better not found, some tools won't be built])
-fi
-
-BUILD_OCFS2CDSL=
-BUILD_DEBUGOCFS2=
-
-if test "x$have_glib" = "xyes"; then
-  BUILD_OCFS2CDSL=yes
-  
-  ocfs_tools_save_LIBS=$LIBS
-  LIBS="$LIBS -lncurses"
-  AC_CHECK_LIB(readline, readline,
-    [AC_CHECK_HEADER(readline/readline.h,
-      BUILD_DEBUGOCFS2=yes,
-      [AC_MSG_WARN([readline not found, debugfs.ocfs2 will not be built])])],
-    [AC_MSG_WARN([readline not found, debugfs.ocfs2 will not be built])])
-  LIBS=$ocfs_tools_save_LIBS
-fi
-
-AC_SUBST(BUILD_OCFS2CDSL)
-AC_SUBST(BUILD_DEBUGOCFS2)
-
-BUILD_OCFS2CONSOLE=
-AC_ARG_ENABLE(ocfs2console, [  --enable-ocfs2console=[yes/no]    Build GUI frontend [default=yes]],,enable_ocfs2console=yes)
-
-if test "x$have_glib" != "xyes"; then
-  enable_ocfs2console=no
-fi
-
-if test "x$enable_ocfs2console" = "xyes"; then
-  dnl check for Python
-  AM_PATH_PYTHON(2.3, have_python=yes, have_python=no)
-
-  if test "x$have_python" = "xyes"; then
-    AM_CHECK_PYTHON_HEADERS(have_pythondev=yes, have_pythondev=no)
-
-    if test "x$have_pythondev" = "xyes"; then
-      if $PYTHON -c 'import pygtk' >/dev/null 2>&1; then
-        BUILD_OCFS2CONSOLE=yes
-        OCFS2_BLKID
-      else
-        AC_MSG_WARN([could not find PyGTK, ocfs2console will not be built])
-      fi 
-    else
-      AC_MSG_WARN([could not find Python headers, ocfs2console will not be built])
-    fi
-  else
-    AC_MSG_WARN([could not find Python 2.2 or higher, ocfs2console will not be built])
-  fi
-fi
-
-AC_SUBST(BUILD_OCFS2CONSOLE)
-
-AC_CONFIG_FILES([
-Config.make
-debugfs.ocfs2/debugfs.ocfs2.8
-mkfs.ocfs2/mkfs.ocfs2.8
-mounted.ocfs2/mounted.ocfs2.8
-fsck.ocfs2/fsck.ocfs2.8
-fsck.ocfs2/fsck.ocfs2.checks.8
-o2cb_ctl/o2cb_ctl.8
-ocfs2cdsl/ocfs2cdsl.8
-ocfs2console/ocfs2console.8
-tunefs.ocfs2/tunefs.ocfs2.8
-vendor/common/ocfs2-tools.spec
-])
-
-AC_OUTPUT

Copied: tags/ocfs2-tools-0.99.9-BETA10/configure.in (from rev 915, trunk/configure.in)



More information about the Ocfs2-tools-commits mailing list