summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2021-03-08 20:39:55 -0800
committerEryu Guan <guaneryu@gmail.com>2021-03-14 22:25:46 +0800
commit49a59dbfed38f4a67793aa79bcb87bedc6629a67 (patch)
treec7bb37d6e3a49fab7d4329a16da5c80e4b8c7ee4 /m4
parent6497ede7ad4e9fc8e5a5a121bd600df896b7d9c6 (diff)
fstests: remove DMAPI support from build system
Since we've axed all the DMAPI tests, get rid of the build system support too. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Acked-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
Diffstat (limited to 'm4')
-rw-r--r--m4/Makefile1
-rw-r--r--m4/package_dmapidev.m427
2 files changed, 0 insertions, 28 deletions
diff --git a/m4/Makefile b/m4/Makefile
index 5d9c5896..f3f195c5 100644
--- a/m4/Makefile
+++ b/m4/Makefile
@@ -10,7 +10,6 @@ LSRCFILES = \
package_acldev.m4 \
package_aiodev.m4 \
package_gdbmdev.m4 \
- package_dmapidev.m4 \
package_globals.m4 \
package_libcdev.m4 \
package_liburing.m4 \
diff --git a/m4/package_dmapidev.m4 b/m4/package_dmapidev.m4
deleted file mode 100644
index 6a7257ee..00000000
--- a/m4/package_dmapidev.m4
+++ /dev/null
@@ -1,27 +0,0 @@
-AC_DEFUN([AC_PACKAGE_NEED_XFS_DMAPI_H],
- [ AC_CHECK_HEADERS([xfs/dmapi.h])
- if test "$ac_cv_header_xfs_dmapi_h" != yes; then
- echo
- echo 'FATAL ERROR: could not find a valid DMAPI library header.'
- echo 'Install the data migration API (dmapi) development package.'
- echo 'Alternatively, run "make install-dev" from the dmapi source.'
- exit 1
- fi
- ])
-
-AC_DEFUN([AC_PACKAGE_WANT_DMAPI],
- [ AC_CHECK_LIB(dm, dm_make_handle, [ have_dmapi=true ], [
- have_dmapi=false
- echo
- echo 'WARNING: could not find a valid DMAPI base library.'
- echo 'If you want DMAPI support please install the data migration'
- echo 'API (dmapi) library package. Alternatively, run "make install"'
- echo 'from the dmapi source.'
- echo
- ])
- libdm="-ldm"
- test -f ${libexecdir}${libdirsuffix}/libdm.la && \
- libdm="${libexecdir}${libdirsuffix}/libdm.la"
- AC_SUBST(libdm)
- AC_SUBST(have_dmapi)
- ])