Mailing List Archive

MythWeather compile Errors
As a linux newbie, I have suprised myself by getting
this far without help. I am getting a compile error
on all the Myth modules (mythtv is installed and
appears to work fine).

Thanks in advance,

Below is the error:

[root@localhost mythweather-0.8]# make
cd mythweather && (gunzip -c accid.dat.gz > accid.dat)
&& make -f Makefile
make[1]: Entering directory
`/root/mythweather-0.8/mythweather'
g++ -o mythweather main.o weather.o weathercomms.o
moc_weather.o moc_weathercomms.o
-L/usr/lib/qt-3.1/lib -L/usr/X11R6/lib
-L/usr/local/lib -lmyth-0.8 -lqt-mt -lXext -lX11 -lm
-lpthread
/usr/bin/ld: cannot find -lmyth-0.8
collect2: ld returned 1 exit status
make[1]: *** [mythweather] Error 1
make[1]: Leaving directory
`/root/mythweather-0.8/mythweather'
make: *** [sub-mythweather] Error 2
Re: MythWeather compile Errors [ In reply to ]
> As a linux newbie, I have suprised myself by getting
> this far without help. I am getting a compile error
> on all the Myth modules (mythtv is installed and
> appears to work fine).
>
> Thanks in advance,
>
> Below is the error:
>
> [root@localhost mythweather-0.8]# make
> cd mythweather && (gunzip -c accid.dat.gz > accid.dat)
> && make -f Makefile
> make[1]: Entering directory
> `/root/mythweather-0.8/mythweather'
> g++ -o mythweather main.o weather.o weathercomms.o
> moc_weather.o moc_weathercomms.o
> -L/usr/lib/qt-3.1/lib -L/usr/X11R6/lib
> -L/usr/local/lib -lmyth-0.8 -lqt-mt -lXext -lX11 -lm
> -lpthread
> /usr/bin/ld: cannot find -lmyth-0.8

It can't find libmyth-0.8.so -- make sure that's in /usr/lib or
/usr/local/lib and run ldconfig as root (and verify that
/usr/local/lib is in your /etc/ld.so.conf)

-jim