• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

b0rken/H24-Apr-2020-1,222881

m4/H24-Apr-2020-1,1831,077

wmgeneral/H24-Apr-2020-1,7811,089

COPYINGH A D07-Feb-201417.6 KiB341281

ChangeLogH A D24-Apr-202011 KiB296203

HINTSH A D07-Feb-20143.1 KiB7560

Makefile.amH A D07-Feb-2014912 2216

Makefile.inH A D24-Apr-202035.9 KiB1,058947

READMEH A D07-Feb-20142 KiB4436

aclocal.m4H A D24-Apr-202053 KiB1,4441,297

animation.cH A D07-Feb-20143.9 KiB13995

animation.hH A D07-Feb-2014745 2420

avn.cH A D07-Feb-201410.6 KiB374312

avn.hH A D07-Feb-2014110 96

bootstrapH A D07-Feb-201490 74

compileH A D12-Apr-20207.2 KiB349259

config.h.inH A D24-Apr-20207.4 KiB299202

configureH A D24-Apr-2020260.4 KiB9,3177,721

configure.acH A D24-Apr-20202.4 KiB8574

convert.cH A D07-Feb-201410.4 KiB453319

convert.hH A D07-Feb-20141.8 KiB6837

depcompH A D12-Apr-202023 KiB792502

die.cH A D07-Feb-20141.4 KiB5831

die.hH A D07-Feb-2014364 85

diff.cH A D07-Feb-20142 KiB6341

diff.hH A D07-Feb-2014185 61

dock.cH A D05-Mar-201725.3 KiB783694

dock.hH A D07-Feb-201459 32

download.cH A D05-Mar-20178.5 KiB283226

download.hH A D07-Feb-2014410 149

eta.cH A D07-Feb-201410.3 KiB366303

eta.hH A D07-Feb-2014110 96

example.confH A D07-Feb-2014298 106

font.cH A D24-Dec-20163.4 KiB148109

font.hH A D07-Feb-2014247 85

forecast.cH A D07-Feb-20147.9 KiB312250

forecast.hH A D07-Feb-20142.1 KiB4842

getLine.cH A D07-Feb-20141.7 KiB6844

getLine.hH A D07-Feb-2014130 52

install-shH A D12-Apr-202015.3 KiB530346

metar.cH A D07-Feb-201412.4 KiB437352

metar.hH A D07-Feb-20141.1 KiB2825

missingH A D12-Apr-20206.7 KiB216143

moon.cH A D07-Feb-20145.1 KiB180137

moon.hH A D07-Feb-2014104 32

mrf.cH A D07-Feb-20149.4 KiB316258

mrf.hH A D07-Feb-2014110 96

radar.cH A D07-Feb-20146.8 KiB267203

radar.hH A D07-Feb-2014223 118

subst.cH A D07-Feb-20144.7 KiB189144

subst.hH A D07-Feb-2014663 2420

sunzenith.cH A D07-Feb-20144.7 KiB13980

sunzenith.hH A D07-Feb-2014102 21

warnings.cH A D24-Apr-20209.6 KiB314240

warnings.hH A D07-Feb-2014159 75

wmweather+.1H A D03-May-202213.9 KiB419418

wmweather+.cH A D03-May-202226.5 KiB825754

wmweather+.hH A D07-Feb-2014979 4238

README

1COMPILATION
2===========
3
4You will need the following libraries (with proper headers) installed
5in order to compile this app. If you're using Debian, try packages like
6the ones indicated.
7  libwraster  libwraster2, libwraster2-dev
8  libpcre     libpcre3, libpcre3-dev
9  libm        libc6, libc6-dev
10  libXpm      xlibs, xlibs-dev
11  libX11      xlibs, xlibs-dev
12  libcurl     libcurl4, libcurl4-dev
13
14For the most part, you should just have to do "./configure && make install"
15and the thing will build everything and install it.
16
17The only really interesting compile-time parameters would be the P and X
18variables in animation.c, if you don't like the 10-second cycle or
19something.
20
21If you get errors about a missing libwraster, check the following:
22 1) Do you have both the library AND the header installed? If the command
23    "locate wraster.h" doesn't come back with a header file in one of the
24    normal places, you'll have trouble.
25 2) Check for a line like the following in your ./configure output:
26     checking if libwraster is wanted... yes: libraries /usr/lib  includes /usr/include
27    In this case, we will look for the files /usr/lib/libwraster.so and
28    /usr/include/wraster.h. If for some reason you have these files in a
29    place other than ./configure looks for them, use the --with-libwraster
30    option to specify the proper prefix. If you have something really dumb
31    like /usr/include/wraster.h and /usr/X11R6/lib/libwraster.so, try adding
32    specific -I and -L options to your CFLAGS variable.
33
34If you get errors about a missing pcre.h, and you have your header in
35/usr/include/pcre/pcre.h instead of /usr/include/pcre.h, you will have to
36add "-I/usr/include/pcre" to your CFLAGS variable when running ./configure.
37
38If you get an error about anything missing in the b0rken subdirectory, the
39problem is most likely that some library function or another is broken on
40your system, configure detected this fact, a replacement was requested, and
41no replacement is available. You are welcome to submit a patch.
42
43For run-time hints, please see the HINTS file.
44