Changes by: flatcap
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21510
Modified Files:
configure.ac
Log Message:
ntfsrm has been split up and merged into libntfs.
currently it's #ifdef'd out.
tree.c - code for handling directory trees
rich.c - a few helpers without a home (this file will go away soon)
Note: ntfsrm isn't in the build any more (you need to ./configure --enable-rich; make extras). When rm is less intrusive, again, I'll put it back in the build.
Index: configure.ac
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -p -r1.90 -r1.91
--- configure.ac 16 Oct 2005 21:57:00 -0000 1.90
+++ configure.ac 16 Oct 2005 23:33:04 -0000 1.91
@@ -149,6 +149,15 @@ AC_ARG_ENABLE(debug-logging,
fi,
)
+AC_ARG_ENABLE(rich,
+ AS_HELP_STRING(--enable-rich,enable Rich's "rm" test code), ,
+ enable_rich=no
+)
+AM_CONDITIONAL(ENABLE_RICH, test "$enable_rich" = yes)
+if test "$enable_rich" = "yes"; then
+ CFLAGS="$CFLAGS -DNTFS_RICH"
+fi
+
# Use GNU extensions if available.
AC_GNU_SOURCE
|