aont
aont
@lzlarryli thanks for the reply. > #!/usr/bin/env python This may work on MacOS12.3 as you say, but on some of Linux distros not. It's because they do not provide `python`...
@wizardforcel thanks for the reply. You mean `__bytes__` is appropriate rather than `get_bytes` ?
@HinTak thanks for the reply. > it would also be useful not to include unnecessary white-space changes ( in line 140-150-ish) - this makes reviewing easier. Oh, you are right....
Thank you for the patch. I believe this is better. ### configure.ac before ``` AC_CHECK_LIB(ws2_32, _head_libws2_32_a,, echo "Error! zlib not detected." exit -1) ``` ### configure.ac after ``` AC_CHECK_LIB(ws2_32, WSAStartup,,...
I tried to build without ws2_32 by commenting out ws2_32 like this. ``` # AC_CHECK_LIB(ws2_32, WSAStartup,, # echo "Error! zlib not detected." # exit -1) # LIBS="$LIBS -lws2_32" ``` It...
Just FYI. I was also facing this issue and gave up using sparseVhd. To me, it seemed using docker made corruption frequently. Docker may not be the direct cause, but...