Hi Alon, Thanks for the patch.
On Mon, 9 Jun 2008, Alon Bar-Lev wrote: > The following is a preparations for libtool-2 deployment. Will the build still work with simple libtool? There are quite many users still using very old toolchains and sometimes they need to do an ./autogen.sh which shouldn't fail. > It is the output of autoupdate + some modifications. > Most are minor. > > I was surprised to see you reverted the rootfs, it is very difficult > to sync this way. I'm sorry about it. I've sent you an email explaining it but to a different email address. Maybe you didn't get it? ---------------------------------------------------------> Date: Wed, 28 May 2008 16:04:44 +0300 (EEST) From: Szabolcs Szakacsits <[EMAIL PROTECTED]> Cc: Bernhard Kaindl <[EMAIL PROTECTED]> To: Alon Bar-Lev <[EMAIL PROTECTED]> Subject: Re: Possible NAK/Blocker for releasing current CVS as ntfs-3g-1.2528 Good Morning Alon and Bernhard! :-) I worked to almost 6:00 and got up not too long ago. My first things were to fix/commit the introduced but unreleased NTFS bugs and temporarily revert the --with-rootfs= option until it's needed and we agree on it: http://mercurial.creo.hu/repos/ntfs-3g-hg/index.cgi/rev/3f6203441770 If you would have some time then could you please check and test I didn't mess up the build and it workes as before? ... <-------------------------------------------------------- > If the name was an issue, a quick discussion could have solved it. I was leaving for a trip and if the 1.2531 release weren't made before that then probably we would still have only 1.2506 as the latest release but I always try crash, corruption, major usability bug and regression fixes to be released tested as quickly as possible. > Please also set up cvsignore so that cvs diff will not output unmanaged > files. Ok. Thanks, Szaka > Index: Makefile.am > =================================================================== > RCS file: /cvsroot/ntfs-3g/ntfs-3g/Makefile.am,v > retrieving revision 1.3 > diff -u -B -r1.3 Makefile.am > --- Makefile.am 19 May 2008 17:34:34 -0000 1.3 > +++ Makefile.am 9 Jun 2008 08:25:13 -0000 > @@ -1,12 +1,13 @@ > > AUTOMAKE_OPTIONS = gnu > +#ACLOCAL_AMFLAGS = -I m4 > > EXTRA_DIST = AUTHORS CREDITS COPYING NEWS autogen.sh > > MAINTAINERCLEANFILES=\ > $(srcdir)/configure \ > $(srcdir)/Makefile.in \ > - $(srcdir)/aclocal.m4 \ > + $(srcdir)/m4.m4 \ > $(srcdir)/compile \ > $(srcdir)/depcomp \ > $(srcdir)/install-sh \ > @@ -16,7 +17,12 @@ > $(srcdir)/config.sub \ > $(srcdir)/config.h.in \ > $(srcdir)/config.h.in~ \ > - $(srcdir)/INSTALL > + $(srcdir)/INSTALL \ > + $(srcdir)/m4/ltsugar.m4 \ > + $(srcdir)/m4/libtool.m4 \ > + $(srcdir)/m4/ltversion.m4 \ > + $(srcdir)/m4/lt~obsolete.m4 \ > + $(srcdir)/m4/ltoptions.m4 > > SUBDIRS = include libfuse-lite libntfs-3g src > > Index: configure.ac > =================================================================== > RCS file: /cvsroot/ntfs-3g/ntfs-3g/configure.ac,v > retrieving revision 1.70 > diff -u -B -r1.70 configure.ac > --- configure.ac 28 May 2008 19:04:59 -0000 1.70 > +++ configure.ac 9 Jun 2008 08:25:14 -0000 > @@ -22,7 +22,7 @@ > # Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > > # Autoconf > -AC_PREREQ([2.59]) > +AC_PREREQ(2.59) > AC_INIT([ntfs-3g],[1.2531],[EMAIL PROTECTED]) > LIBNTFS_3G_VERSION="31" > AC_CONFIG_SRCDIR([src/ntfs-3g.c]) > @@ -33,48 +33,49 @@ > > # Automake > AM_INIT_AUTOMAKE([${PACKAGE_NAME}], [${PACKAGE_VERSION}]) > -AM_CONFIG_HEADER([config.h]) > +AC_CONFIG_HEADERS([config.h]) > +AC_CONFIG_MACRO_DIR([m4]) > AM_MAINTAINER_MODE > > # Options > AC_ARG_ENABLE( > [debug], > - [AC_HELP_STRING([--enable-debug], [enable debugging code and output])], > + [AS_HELP_STRING([--enable-debug],[enable debugging code and output])], > , > [enable_debug="no"] > ) > > AC_ARG_ENABLE( > [warnings], > - [AC_HELP_STRING([--enable-warnings], [enable lots of compiler > warnings])], > + [AS_HELP_STRING([--enable-warnings],[enable lots of compiler > warnings])], > , > [enable_warnings="no"] > ) > > AC_ARG_ENABLE( > [pedantic], > - [AC_HELP_STRING([--enable-pedantic], [enable compile pedantic mode])], > + [AS_HELP_STRING([--enable-pedantic],[enable compile pedantic mode])], > , > [enable_pedantic="no"] > ) > > AC_ARG_ENABLE( > [really-static], > - [AC_HELP_STRING([--enable-really-static], [create fully static > binaries])], > + [AS_HELP_STRING([--enable-really-static],[create fully static > binaries])], > , > [enable_really_static="no"] > ) > > AC_ARG_ENABLE( > [library], > - [AC_HELP_STRING([--disable-library], [do not install libntfs-3g but > link it into ntfs-3g])], > + [AS_HELP_STRING([--disable-library],[do not install libntfs-3g but link > it into ntfs-3g])], > , > [enable_library="yes"] > ) > > AC_ARG_ENABLE( > [mount-helper], > - [AC_HELP_STRING([--enable-mount-helper], [install mount helper > @<:@default=enabled for linux@:>@])], > + [AS_HELP_STRING([--enable-mount-helper],[install mount helper > @<:@default=enabled for linux@:>@])], > , > [ > case "${target_os}" in > @@ -86,28 +87,28 @@ > > AC_ARG_ENABLE( > [ldconfig], > - [AC_HELP_STRING([--disable-ldconfig], [do not update dynamic linker > cache using ldconfig])], > + [AS_HELP_STRING([--disable-ldconfig],[do not update dynamic linker > cache using ldconfig])], > , > [enable_ldconfig="yes"] > ) > > AC_ARG_ENABLE( > [ldscript], > - [AC_HELP_STRING([--enable-ldscript], [use ldscript instead of .so > symlink])], > + [AS_HELP_STRING([--enable-ldscript],[use ldscript instead of .so > symlink])], > , > [enable_ldscript="no"] > ) > > AC_ARG_ENABLE( > [mtab], > - [AC_HELP_STRING([--disable-mtab], [disable and ignore usage of > /etc/mtab])], > + [AS_HELP_STRING([--disable-mtab],[disable and ignore usage of > /etc/mtab])], > , > [enable_mtab="yes"] > ) > > AC_ARG_ENABLE( > [device-default-io-ops], > - [AC_HELP_STRING([--disable-device-default-io-ops], [install default IO > ops])], > + [AS_HELP_STRING([--disable-device-default-io-ops],[install default IO > ops])], > , > [enable_device_default_io_ops="yes"] > ) > @@ -118,6 +119,7 @@ > # Programs > AC_PROG_CC > AC_PROG_LIBTOOL > +#LT_INIT > AC_PROG_LN_S > AM_PROG_CC_C_O > AC_PATH_PROG([MV], [mv]) > @@ -149,7 +151,7 @@ > linux*) > AC_ARG_WITH( > [fuse], > - [AC_HELP_STRING([--with-fuse=<internal|external>], [Select FUSE > library: internal or external @<:@default=internal@:>@])], > + [AS_HELP_STRING([--with-fuse=<internal|external>],[Select FUSE > library: internal or external @<:@default=internal@:>@])], > , > [with_fuse="internal"] > ) > ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ ntfs-3g-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ntfs-3g-devel
