aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-undelfs.m4
diff options
context:
space:
mode:
authorFatih Demir <kabalak@src.gnome.org>2000-02-13 18:35:30 +0800
committerFatih Demir <kabalak@src.gnome.org>2000-02-13 18:35:30 +0800
commit61657f8452b1c1b2829610af9d0efd30076c1798 (patch)
tree6ec1afa61845b6cdec2a89e30c34923ce9e3e859 /macros/gnome-undelfs.m4
parente07a05c550c1382031b7e57cf39765bb12165b85 (diff)
downloadgsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.gz
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.bz2
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.lz
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.xz
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.zst
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.zip
removed gtranslator for re-checkin
svn path=/trunk/; revision=1746
Diffstat (limited to 'macros/gnome-undelfs.m4')
-rw-r--r--macros/gnome-undelfs.m420
1 files changed, 0 insertions, 20 deletions
diff --git a/macros/gnome-undelfs.m4 b/macros/gnome-undelfs.m4
deleted file mode 100644
index c8ea6f4bac..0000000000
--- a/macros/gnome-undelfs.m4
+++ /dev/null
@@ -1,20 +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], [
- AC_CHECK_HEADERS(ext2fs/ext2fs.h linux/ext2_fs.h)
- ext2fs_undel=no
- EXT2FS_UNDEL_LIBS=
- if test x$ac_cv_header_ext2fs_ext2fs_h = xyes
- then
- if test x$ac_cv_header_linux_ext2_fs_h = xyes
- then
- AC_DEFINE(USE_EXT2FSLIB)
- ext2fs_undel=yes
- EXT2FS_UNDEL_LIBS="-lext2fs -lcom_err"
- fi
- fi
-])