diff options
author | Christophe Grenier <[email protected]> | 2016-09-13 20:05:14 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2016-09-13 20:05:14 +0200 |
commit | 0204d976c961a7555bf71615249afe31b92173cf (patch) | |
tree | d5cdbc0cf2060fb09f332decc241862110d5d560 | |
parent | ba35329c75db96d6f968679d091eb6559bf4095f (diff) |
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
-rwxr-xr-x | compile.sh | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 ;; |