remove some out of date autotools pieces from dmapi tests

ood
This commit is contained in:
Dean Roehrich
2004-12-10 21:19:26 +00:00
parent dc905650bd
commit 908e57261a
3 changed files with 0 additions and 3199 deletions
-45
View File
@@ -1,45 +0,0 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/common/cmd/read_invis.c)
AM_INIT_AUTOMAKE(dmapi_tests, 1.1)
dnl support for cross-compiling
AC_ARG_PROGRAM
AC_PROG_CC
AM_PROG_LIBTOOL
AC_PREFIX_DEFAULT(/usr/local/dmapi_tests)
dnl Checks for programs.
dnl Checks for libraries.
AC_CHECK_LIB(dm,dm_init_service)
dnl Checks for header files.
AC_CHECK_HEADERS(xfs/dmapi.h,have_xfs_dmapi_h=1)
AC_CHECK_HEADERS(sys/dmi.h)
CPPFLAGS="-I\$(top_srcdir)/src/common"
if test "$have_xfs_dmapi_h" = 1; then
CPPFLAGS="$CPPFLAGS -I/usr/include/xfs"
CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE"
fi
AC_SUBST(CPPFLAGS)
AC_OUTPUT( \
Makefile \
src/Makefile \
src/common/Makefile \
src/common/cmd/Makefile \
src/common/lib/Makefile \
src/suite1/Makefile \
src/suite1/cmd/Makefile \
src/sample_hsm/Makefile \
src/simple/Makefile \
src/suite2/Makefile \
src/suite2/src/Makefile \
)
-3114
View File
File diff suppressed because it is too large Load Diff
-40
View File
@@ -1,40 +0,0 @@
#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain
# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $
errstatus=0
for file
do
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
shift
pathcomp=
for d
do
pathcomp="$pathcomp$d"
case "$pathcomp" in
-* ) pathcomp=./$pathcomp ;;
esac
if test ! -d "$pathcomp"; then
echo "mkdir $pathcomp"
mkdir "$pathcomp" || lasterr=$?
if test ! -d "$pathcomp"; then
errstatus=$lasterr
fi
fi
pathcomp="$pathcomp/"
done
done
exit $errstatus
# mkinstalldirs ends here