jmacd / xdelta

open-source binary diff, delta/differential compression tools, VCDIFF/RFC 3284 delta compression
http://xdelta.org
1.12k stars 187 forks source link

Fails to compile when VCDIFF_TOOLS is not defined (svn r263) #77

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Remove the define for "VCDIFF_TOOLS"
2. Try to compile and watch it fail due to recent changes to xdelta-main.h

What is the expected output? What do you see instead?

To get it to compile again make the following changes to around line 3297
in xdelta-main.h:

#if VCDIFF_TOOLS
  if ((cmd == CMD_MERGE || cmd == CMD_MERGE_ARG) && 
      (ret = xd3_whole_state_init (& stream)))
    {
      XPR(NT XD3_LIB_ERRMSG (& stream, ret));
      return EXIT_FAILURE;
    }
#endif

What version of the product are you using? On what operating system?

Latest subversion revision (r263). MS VC++ 9.0 (aka 2008). MS Vista.

Original issue reported on code.google.com by wyatto...@gmail.com on 9 Aug 2008 at 9:44

GoogleCodeExporter commented 9 years ago
SVN 265 Thanks.

Original comment by josh.mac...@gmail.com on 16 Aug 2008 at 3:55