From 2ad11955a2a52809db64f3e31d4bbeb1b00c4045 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 7 Jan 2004 07:47:55 +0000 Subject: [PATCH] Remove krufty files This commit was SVN r33. --- config/cmpi_functions.m4 | 49 -------------------- config/cmpi_get_version.m4 | 39 ---------------- config/cmpi_get_version.sh | 94 -------------------------------------- 3 files changed, 182 deletions(-) delete mode 100644 config/cmpi_functions.m4 delete mode 100644 config/cmpi_get_version.m4 delete mode 100755 config/cmpi_get_version.sh diff --git a/config/cmpi_functions.m4 b/config/cmpi_functions.m4 deleted file mode 100644 index abcf0d198d..0000000000 --- a/config/cmpi_functions.m4 +++ /dev/null @@ -1,49 +0,0 @@ -dnl -*- shell-script -*- -dnl -dnl Copyright (c) 2003 The Trustees of Indiana University. -dnl All rights reserved. -dnl -dnl This file is part of the CMPI software package. For license -dnl information, see the LICENSE file in the top level directory of the -dnl CMPI source distribution. -dnl -dnl $Id: cmpi_functions.m4,v 1.1 2003/11/22 16:36:20 jsquyres Exp $ -dnl - -AC_DEFUN(CMPI_CONFIGURE_SETUP,[ - -# Some helper script functions. Unfortunately, we cannot use $1 kinds -# of arugments here because of the m4 substitution. So we have to set -# special variable names before invoking the function. :-\ - -cmpi_show_title() { - cat < 0`" = "1"; then - CMPI_VERSION="${CMPI_VERSION}a$CMPI_ALPHA_VERSION" - elif test "`expr $CMPI_BETA_VERSION \> 0`" = "1"; then - CMPI_VERSION="${CMPI_VERSION}b$CMPI_BETA_VERSION" - fi - - if test "$CMPI_CVS_VERSION" = "1"; then - CMPI_VERSION="${CMPI_VERSION}cvs" - elif test "`expr $CMPI_CVS_VERSION \> 0`" = "1"; then - CMPI_VERSION="${CMPI_VERSION}cvs$CMPI_CVS_VERSION" - fi - - if test "$option" = ""; then - option="--full" - fi -fi - -case "$option" in - --full|-v|--version) - echo $CMPI_VERSION - ;; - --major) - echo $CMPI_MAJOR_VERSION - ;; - --minor) - echo $CMPI_MINOR_VERSION - ;; - --release) - echo $CMPI_RELEASE_VERSION - ;; - --alpha) - echo $CMPI_ALPHA_VERSION - ;; - --beta) - echo $CMPI_BETA_VERSION - ;; - --cvs) - echo $CMPI_CVS_VERSION - ;; - -h|--help) - cat < [