compile.sh: do not try to compile progsreiserfs by default as this library is deprecated.

See bug report https://github.com/cgsecurity/testdisk/issues/10
This commit is contained in:
Christophe Grenier 2016-09-13 20:05:14 +02:00
parent ba35329c75
commit 0204d976c9

View file

@ -3,9 +3,9 @@
# ./compile.sh [ i586-pc-msdosdjgpp | i686-pc-cygwin | i386-pc-mingw32 | powerpc-mac-darwin ]
# Comment the version definition to not compile the library
VER_E2FSPROGS=
VER_PROGSREISERFS="0.3.1-rc8"
#VER_LIBEWF=20100226
VER_LIBEWF=20120504
#VER_PROGSREISERFS="0.3.1-rc8"
VER_PROGSREISERFS=
VER_LIBEWF=20140608
smp_mflags="-j 2"
crosscompile_target=
prefix=/usr/
@ -334,6 +334,9 @@ then
arm-none-linux-gnueabi|powerpc-linux-gnuspe)
$confdir/configure --host=$crosscompile_target --prefix=$prefix $CONFIGUREOPT --without-ntfs --disable-qt --enable-record-compilation-date
;;
*cygwin*)
$confdir/configure --host=$crosscompile_target --prefix=$prefix $CONFIGUREOPT --enable-missing-uuid-ok --enable-record-compilation-date
;;
*)
$confdir/configure --host=$crosscompile_target --prefix=$prefix $CONFIGUREOPT --enable-record-compilation-date
;;