Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30180
Modified Files:
ChangeLog configure.ac
Log Message:
- Deal with missing syslog function by making code conditional on
presence of syslog.h header file (DOS/djgpp). (Christophe)
- Avoid clash with existing constants (OSX). (Christophe)
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ChangeLog,v
retrieving revision 1.356
retrieving revision 1.357
diff -u -p -r1.356 -r1.357
--- ChangeLog 21 Feb 2006 04:40:20 -0000 1.356
+++ ChangeLog 22 Feb 2006 14:20:08 -0000 1.357
@@ -115,6 +115,9 @@
- Implement simple syslog logging handler (need more work), teach
ntfsmount to use it. (Yura)
- Fix a lot of bugs in attribute resizing code. (Yura)
+ - Deal with missing syslog function by making code conditional on
+ presence of syslog.h header file (DOS/djgpp). (Christophe)
+ - Avoid clash with existing constants (OSX). (Christophe)
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.101
retrieving revision 1.102
diff -u -p -r1.101 -r1.102
--- configure.ac 3 Feb 2006 23:40:39 -0000 1.101
+++ configure.ac 22 Feb 2006 14:20:08 -0000 1.102
@@ -332,7 +332,7 @@ AC_CHECK_HEADERS([ctype.h fcntl.h libgen
endian.h byteswap.h sys/byteorder.h sys/endian.h sys/param.h \
sys/ioctl.h sys/mount.h sys/stat.h sys/types.h sys/vfs.h \
sys/statvfs.h sys/sysmacros.h linux/major.h linux/fd.h linux/hdreg.h \
- machine/endian.h gcrypt.h windows.h gnutls/pkcs12.h])
+ machine/endian.h gcrypt.h windows.h gnutls/pkcs12.h syslog.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
|