Changes by: aia21
Update of /cvs/linux-ntfs/ntfsprogs
In directory delta357:/tmp/cvs-serv11385
Modified Files:
ChangeLog README autogen.sh configure.ac ntfsprogs.spec.in
Log Message:
Minor updates for OSX compatibility, i.e. glibtoolize not libtoolize, and
automake 1.10 fix, etc.
Index: ChangeLog
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.439
retrieving revision 1.440
diff -u -p -r1.439 -r1.440
--- ChangeLog 13 Mar 2007 18:52:02 -0000 1.439
+++ ChangeLog 19 Mar 2007 14:39:44 -0000 1.440
@@ -1,4 +1,4 @@
-xx/01/2007 - 2.0.0 - ntfsmount sports full r/w and ntfsresize supports Vista.
+xx/03/2007 - 2.0.0 - ntfsmount sports full r/w and ntfsresize supports Vista.
- ntfsmount now creates files and directories with security descriptor
that grant full access to everyone. (Yura)
Index: README
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/README,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -p -r1.21 -r1.22
--- README 2 Feb 2006 14:40:53 -0000 1.21
+++ README 19 Mar 2007 14:39:44 -0000 1.22
@@ -5,7 +5,7 @@ Linux-NTFS
The Linux-NTFS project aims to bring full support for the NTFS filesystem to
the Linux operating system.
-Linux-NTFS is copyright (c) 2000-2006 Anton Altaparmakov.
+Linux-NTFS is copyright (c) 2000-2007 Anton Altaparmakov.
All of the contents of the Linux-NTFS project are free software, released under
the GNU General Public License and you are welcome to redistribute them under
Index: autogen.sh
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/autogen.sh,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -p -r1.12 -r1.13
--- autogen.sh 18 Dec 2006 13:39:23 -0000 1.12
+++ autogen.sh 19 Mar 2007 14:39:44 -0000 1.13
@@ -24,6 +24,17 @@ fi
exit 1
}
+UNAME=`which uname`
+if [ $? -eq 0 -a -n ${UNAME} -a -x ${UNAME} ]; then
+ OS=`${UNAME} -s`
+ if [ $? -eq 0 -a -n ${OS} -a "${OS}" == "Darwin" ]; then
+ echo ""
+ echo "Running on Mac OS X / Darwin. Setting LIBTOOLIZE=glibtoolize..."
+ echo ""
+ export LIBTOOLIZE="glibtoolize"
+ fi
+fi
+
echo Running autoreconf --verbose --install
autoreconf --force --verbose --install
Index: configure.ac
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -p -r1.117 -r1.118
--- configure.ac 13 Dec 2006 10:46:49 -0000 1.117
+++ configure.ac 19 Mar 2007 14:39:44 -0000 1.118
@@ -166,6 +166,7 @@ esac
# Checks for programs.
AC_PROG_CC
AC_PROG_GCC_TRADITIONAL
+AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PATH_PROG(RM, rm, rm)
AC_PROG_LN_S
Index: ntfsprogs.spec.in
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/ntfsprogs.spec.in,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -p -r1.19 -r1.20
--- ntfsprogs.spec.in 1 Dec 2005 20:44:18 -0000 1.19
+++ ntfsprogs.spec.in 19 Mar 2007 14:39:44 -0000 1.20
@@ -41,7 +41,7 @@ allows GNOME VFS clients to seamlessly u
Summary : NTFS FUSE module (ntfsmount)
Group : System Environment/Base
Requires : ntfsprogs = %{ver}-%{rel}
-Requires : fuse >= 2.3.0
+Requires : fuse >= 2.6.1
%description fuse
This package contains the ntfsmount utility which is an NTFS filesystem in
userspace (FUSE) module allowing users to mount an ntfs filesystem from
|