parent
f9a71ac4d4
commit
980387655f
|
@ -1,16 +1,9 @@
|
|||
|
||||
# Need this to enable 64-bit (device) file access functions and parameters.
|
||||
if DEBUG
|
||||
AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -g -DDEBUG -Wall
|
||||
else
|
||||
AM_CFLAGS = -D_FILE_OFFSET_BITS=64
|
||||
endif
|
||||
|
||||
SUBDIRS = doc include libntfs ntfsprogs
|
||||
|
||||
EXTRA_DIST = AUTHORS CREDITS COPYING TODO.include TODO.libntfs ChangeLog \
|
||||
INSTALL NEWS README autogen.sh ntfsprogs.spec.in \
|
||||
TODO.ntfsprogs
|
||||
TODO.ntfsprogs getgccver
|
||||
|
||||
AUTOMAKE_OPTIONS = gnu
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ fi
|
|||
DIE=1
|
||||
}
|
||||
|
||||
(grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && {
|
||||
(grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && {
|
||||
(libtool --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "**Error**: You must have \`libtool' installed to compile Linux-NTFS."
|
||||
|
@ -60,7 +60,7 @@ xlc )
|
|||
am_opt=--include-deps;;
|
||||
esac
|
||||
|
||||
for coin in `find $srcdir -name configure.in -print`
|
||||
for coin in `find $srcdir -name configure.ac -print`
|
||||
do
|
||||
dr=`dirname $coin`
|
||||
if test -f $dr/NO-AUTO-GEN; then
|
||||
|
@ -76,7 +76,7 @@ do
|
|||
aclocalinclude="$aclocalinclude -I $k"
|
||||
fi
|
||||
done
|
||||
if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then
|
||||
if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then
|
||||
if test -z "$NO_LIBTOOLIZE" ; then
|
||||
echo "Running libtoolize..."
|
||||
libtoolize --force --copy
|
||||
|
@ -93,7 +93,7 @@ do
|
|||
exit 1
|
||||
}
|
||||
|
||||
if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then
|
||||
if grep "^AM_CONFIG_HEADER" configure.ac >/dev/null; then
|
||||
echo "Running autoheader..."
|
||||
autoheader || { echo "**Error**: autoheader failed."; exit 1; }
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue