Hi
jaguarrh,
wikipedia
page for patch is both pretty concise and informative:
reading it should prove enough.
the link above goes to a plain html page (which i am
thinking is the 'diff' output of the old and new files. so
i cut and pasted the body of the above page and saved it as
a text file called "adesklets.patch"
Technically, the link points right to the patch, in plain
text (no html here); cutting and pasting is really bug prone:
manual mistakes, editor doing tab/whitespace transformations,
etc... Here is what the complete patching operation should
look like:
cd /path/to/adesklets-0.6.1 && \
wget 'http://url/to/patch' -O fc.diff && \ # Save patch to fc.diff
patch -p1 < fc.diff && \ # Apply it
autoreconf && \ # Regen. configure script
touch scripting/enums scripting/prototypes
Once this is done, your should be ready to perform the
installation as usual (configure, make, make install). Yours,