Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22159
Modified Files:
ChangeLog configure.ac
Removed Files:
getgccver
Log Message:
Remove getgccver script and just use -dumpversion option to get the version
directly inside configure.ac.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.299
retrieving revision 1.300
diff -u -p -r1.299 -r1.300
--- ChangeLog 13 Oct 2005 08:26:02 -0000 1.299
+++ ChangeLog 15 Oct 2005 09:53:36 -0000 1.300
@@ -3,6 +3,9 @@ xx/xx/2005 - 1.12.2-WIP
- Temporarily disable use of the legal ansi character checking in
libntfs/unistr.c::ntfs_names_collate() pending a proper fix at some
point. (Anton)
+ - Remove getgccver script and just get the version with the simple gcc
+ option -dumpversion. I wish I had known about it earlier! Tested on
+ various architectures and versions from 2.95 to 4.0.1. (Anton)
10/10/2005 - 1.12.1 - Minor fix to location of mount.ntfs-fuse and mkfs.ntfs.
Index: configure.ac
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/configure.ac,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -p -r1.84 -r1.85
--- configure.ac 13 Oct 2005 08:26:02 -0000 1.84
+++ configure.ac 15 Oct 2005 09:53:36 -0000 1.85
@@ -209,7 +209,7 @@ if test "$enable_crypto" != "no"; then
fi
])
have_libgnutls=false
- AM_PATH_LIBGNUTLS(1.2.3, [ have_libgnutls=true ],
+ AM_PATH_LIBGNUTLS(1.2.8, [ have_libgnutls=true ],
[
if test "$enable_crypto" = "yes"; then
AC_MSG_ERROR([Linux-NTFS crypto code requires the gnutls library.])
@@ -240,7 +240,7 @@ fi
# Check for gcc version being >= 2.96.
AC_MSG_CHECKING(version of $_cc)
-cc_version=`$srcdir/getgccver $_cc`
+cc_version=`$_cc -dumpversion`
cc_major=`echo $cc_version | cut -d'.' -f1`
cc_minor=`echo $cc_version | cut -d'.' -f2`
if test -z "$cc_version"; then
--- getgccver DELETED ---
|