aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-undelfs.m4
diff options
context:
space:
mode:
authorJP Rosevear <jpr@src.gnome.org>2004-10-02 00:50:41 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-10-02 00:50:41 +0800
commitacb88c209ef296564123666cdc18c787a0f91082 (patch)
treee14476f6aad71d7fd4365f557704f84e1f56c7bd /macros/gnome-undelfs.m4
parent8820b3da918a837632cc44dbd589aa3eae2d74e4 (diff)
downloadgsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.gz
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.bz2
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.lz
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.xz
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.zst
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.zip
Remove macros dir, we haven't needed it in ages.
svn path=/trunk/; revision=27448
Diffstat (limited to 'macros/gnome-undelfs.m4')
-rw-r--r--macros/gnome-undelfs.m422
1 files changed, 0 insertions, 22 deletions
diff --git a/macros/gnome-undelfs.m4 b/macros/gnome-undelfs.m4
deleted file mode 100644
index fe031cd6fc..0000000000
--- a/macros/gnome-undelfs.m4
+++ /dev/null
@@ -1,22 +0,0 @@
-dnl GNOME_UNDELFS_CHECKS
-dnl Check for ext2fs undel support.
-dnl Set shell variable ext2fs_undel to "yes" if we have it,
-dnl "no" otherwise. May define USE_EXT2FSLIB for cpp.
-dnl Will set EXT2FS_UNDEL_LIBS to required libraries.
-
-AC_DEFUN([GNOME_UNDELFS_CHECKS], [
- ext2fs_undel=no
- EXT2FS_UNDEL_LIBS=
- AC_CHECK_HEADERS(linux/ext2_fs.h)
- if test x$ac_cv_header_linux_ext2_fs_h = xyes
- then
- AC_CHECK_HEADERS(ext2fs/ext2fs.h, , , [#include <stdio.h>
-#include <linux/ext2_fs.h>])
- if test x$ac_cv_header_ext2fs_ext2fs_h = xyes
- then
- AC_DEFINE(USE_EXT2FSLIB)
- ext2fs_undel=yes
- EXT2FS_UNDEL_LIBS="-lext2fs -lcom_err"
- fi
- fi
-])