[quote="kevingpo"]Sorry for being new. But what do we do with these 4 tools in windows? We can't find the other thread.
At least instructions for setup should be on the homepage..[/quote]
Right, when randy stores stuff on the Holy Online Drive (afaik he's still
on 56k *too*) and well. A .diff file is,as it says only the difference between
two files or directories.
/zdoom$ diff -Ndru 2.0.46 2.0.47 >46-to-47.diff
that's usually the way they get created. Now, suppose there is only 46.cab
and 46-to-47.diff, what you do is uncompress 46.cab so that you have the
2.0.46 directory and then call
/zdoom$ patch -p0 <46-to-47.diff
Will patch something (depends on what 's in 46-to-47.diff
In our case it would transform the 2.0.46 directory in a 2.0.47 one.
Hope that helps.
EDIT: That makes two tools, "diff" (in package diffutils.zip) and "patch"
(in patch.zip). The other two are libraries and are required by patch/diff.