dockapps/wmweather+
2014-10-05 19:18:49 +01:00
..
b0rken Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
m4 Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
wmgeneral Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
animation.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
animation.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
avn.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
avn.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
bootstrap Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
ChangeLog Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
characters.xpm Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
configure.ac Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
convert.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
convert.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
COPYING Mass update GPLv2 from http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt 2012-06-05 20:45:40 +01:00
die.c Mass update FSF address 2012-06-05 20:50:13 +01:00
die.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
diff.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
diff.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
dock.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
dock.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
download.c Mass update FSF address 2012-06-05 20:50:13 +01:00
download.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
eta.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
eta.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
example.conf Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
font.c Mass update FSF address 2012-06-05 20:50:13 +01:00
font.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
forecast.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
forecast.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
getLine.c Mass update FSF address 2012-06-05 20:50:13 +01:00
getLine.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
HINTS Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
Makefile.am Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
metar.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
metar.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
moon.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
moon.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
mrf.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
mrf.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
radar.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
radar.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
README Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
subst.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
subst.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
sunzenith.c Mass update FSF address 2012-06-05 20:50:13 +01:00
sunzenith.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
warnings.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
warnings.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
wmweather+.1.in Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
wmweather+.c Remove trailing whitespace. 2014-10-05 19:18:49 +01:00
wmweather+.h Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00
wmweather_master.xpm Strip off version numbers from dir name 2012-02-12 22:50:31 +00:00

COMPILATION
===========

You will need the following libraries (with proper headers) installed
in order to compile this app. If you're using Debian, try packages like
the ones indicated.
  libwraster  libwraster2, libwraster2-dev
  libpcre     libpcre3, libpcre3-dev
  libm        libc6, libc6-dev
  libXpm      xlibs, xlibs-dev
  libX11      xlibs, xlibs-dev
  libcurl     libcurl4, libcurl4-dev

For the most part, you should just have to do "./configure && make install"
and the thing will build everything and install it.

The only really interesting compile-time parameters would be the P and X
variables in animation.c, if you don't like the 10-second cycle or
something.

If you get errors about a missing libwraster, check the following:
 1) Do you have both the library AND the header installed? If the command
    "locate wraster.h" doesn't come back with a header file in one of the
    normal places, you'll have trouble.
 2) Check for a line like the following in your ./configure output:
     checking if libwraster is wanted... yes: libraries /usr/lib  includes /usr/include
    In this case, we will look for the files /usr/lib/libwraster.so and
    /usr/include/wraster.h. If for some reason you have these files in a
    place other than ./configure looks for them, use the --with-libwraster
    option to specify the proper prefix. If you have something really dumb
    like /usr/include/wraster.h and /usr/X11R6/lib/libwraster.so, try adding
    specific -I and -L options to your CFLAGS variable.

If you get errors about a missing pcre.h, and you have your header in
/usr/include/pcre/pcre.h instead of /usr/include/pcre.h, you will have to
add "-I/usr/include/pcre" to your CFLAGS variable when running ./configure.

If you get an error about anything missing in the b0rken subdirectory, the
problem is most likely that some library function or another is broken on
your system, configure detected this fact, a replacement was requested, and
no replacement is available. You are welcome to submit a patch.

For run-time hints, please see the HINTS file.