Compiling
--------
Q: "curl-config" doesn't seem to exist on my system, what do I do?

A: Edit the Makefile and replace the calls of curl-config with the following:
   -in line 5, replace it with  -I/usr/include or whatever your curl-directory
    with the .h files is; i.e. if those files are in /usr/local/include/curl,
    add -I/usr/local/include to CFLAGS
   -in line 6, replace it with -L/usr/lib -lcurl -ldl
    Again, if you installed libcurl to /usr/local, use -L/usr/local/lib


Q: gcc wants to link to libssl - WTF?

A: This is because your libcurl was built with ssl support. As the newsticker
   doesn't use ssl, you could try to replace the curl-config calls as described
   above, or you install the OpenSSL devel packages/files, too.

