Closed GoogleCodeExporter closed 9 years ago
Install the expat XML parser and its development libraries. This will fix the
compile
step.
During the final link step may get undefined references when trying to do this:
gcc -g -O2 -W -Wall -o clamz clamz.o options.o playlist.o download.o -lgcrypt
-ldl -
lgpg-error -lcurl
To solve that, add `-lexpat' to the end of the command and run it manually to
produce
the clamz binary:
gcc -g -O2 -W -Wall -o clamz clamz.o options.o playlist.o download.o -lgcrypt
-ldl -
lgpg-error -lcurl -lexpat
That command, the final command that `make' tries to execute, should succeed if
you
make the appropriate modification (adding -lexpat). Then in the current
directory you
have the `clamz' native binary, and you're done.
Original comment by SMc...@gmail.com
on 25 Sep 2009 at 1:39
Um... I'm guessing the problem here was issue #11.
Original comment by Benjamin...@gmail.com
on 1 Apr 2010 at 5:04
Original issue reported on code.google.com by
tuke...@googlemail.com
on 20 Aug 2009 at 11:16Attachments: