On Sat, Mar 16, 2002 at 03:16:15AM -0800, Karri Kivela <[EMAIL PROTECTED]> wrote:
> Could someone who knows Linux better than a newbie like me help me a
> bit? Here's my problem: I've done "./configure", "make" and "make
> install" but I'm stuck with this: "4. Go to plugins/qt-gui and follow
> the directions there (doc/README) to install
>    the Qt interface plugin (necessary)."
> 
> I have RedHat 7.1 and licq 1.0.4.
> 
> I didn't find any qt-gui plugins in my computer, only an autoreply
> plugin. What should I do? Thanks!

In the licq-1.0.4.tar.bz2 file you can download from the licq website,
you can find the qt-gui plugin in plugins/qt-gui-1.0.4. To compile and
install licq from that, you'd probably be typing something like:

# unpack source
tar xjvf licq-1.0.4.tar.bz2

# switch to licq directory
cd licq-1.0.4

# compile and install licq daemon
./configure
make
make install

# switch to qt-gui directory
cd plugins/qt-gui-1.0.4

# compile and install qt-gui plugin
./configure
make
make install

# Done.

Note that the lines starting with a '#' are comments. You don't have to
type them in.

By the way, next time you can't find a file or directory you can search
for it using 'find'. In this case you could have searched for the
qt-gui plugin in all subdirectories of the current directory by typing:

find -name 'qt-gui*'

Note the single quotes. They are important. See 'man find' for details
on using the find command.

-- 
        Tim van Erven <[EMAIL PROTECTED]>

_______________________________________________
Licq-main mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/licq-main

Reply via email to