mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
713fbb390e
Conflicts: configure.ac include/ntfs/Makefile.am include/ntfs/attrib.h include/ntfs/bitmap.h include/ntfs/collate.h include/ntfs/debug.h include/ntfs/dir.h include/ntfs/endians.h include/ntfs/index.h include/ntfs/inode.h include/ntfs/layout.h include/ntfs/logfile.h include/ntfs/logging.h include/ntfs/mft.h include/ntfs/ntfstime.h include/ntfs/runlist.h include/ntfs/support.h include/ntfs/types.h include/ntfs/unistr.h include/ntfs/volume.h libntfs/Makefile.am libntfs/attrib.c libntfs/attrlist.c libntfs/bitmap.c libntfs/bootsect.c libntfs/collate.c libntfs/compress.c libntfs/debug.c libntfs/device.c libntfs/device_io.c libntfs/dir.c libntfs/index.c libntfs/inode.c libntfs/lcnalloc.c libntfs/logfile.c libntfs/logging.c libntfs/mft.c libntfs/mst.c libntfs/runlist.c libntfs/security.c libntfs/unistr.c libntfs/unix_io.c libntfs/volume.c libntfs/win32_io.c ntfsprogs/Makefile.am ntfsprogs/mkntfs.c ntfsprogs/ntfscat.c ntfsprogs/ntfsclone.c ntfsprogs/ntfscmp.c ntfsprogs/ntfscp.c ntfsprogs/ntfsinfo.c ntfsprogs/ntfsmount.8.in ntfsprogs/ntfsmount.c ntfsprogs/ntfsundelete.c ntfsprogs/upcase.c
23 lines
866 B
Bash
Executable File
23 lines
866 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate configure, Makefile.in's, etc
|
|
|
|
(autoreconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo
|
|
echo "**Error**: You must have the GNU Build System (autoconf, automake, "
|
|
echo "libtool, etc) to update the ntfs-3g build system. Download the "
|
|
echo "appropriate packages for your distribution, or get the source "
|
|
echo "tar balls from ftp://ftp.gnu.org/pub/gnu/."
|
|
exit 1
|
|
}
|
|
echo
|
|
echo "**Error**: Your version of autoconf is too old (you need at least 2.57)"
|
|
echo "to update the ntfs-3g build system. Download the appropriate "
|
|
echo "updated package for your distribution, or get the source tar ball "
|
|
echo "from ftp://ftp.gnu.org/pub/gnu/."
|
|
exit 1
|
|
}
|
|
|
|
echo Running autoreconf --verbose --install --force
|
|
autoreconf --verbose --install --force
|