1
2
   Quax Installation
3
 =====================
4
5
    Please keep in mind that you must:
6
  1) have Qt libraries installed
7
  2) have Qt development binaries and headers installed
8
  3) QTDIR environment variable point to your QT installation.
9
10
    Execute:
11
12
    ./configure
13
    make
14
    make install (as root)
15
16
   By default Quax will install under /usr/local. If you preffer other location, like /usr
17
   then install it running:
18
    
19
    PREFIX=/usr make install
20
21
22
23
  
24
   NOTE: Please check that your QTDIR variable is setup correctly.
25
   Verify like this:
26
27
     echo $QTDIR
28
 
29
   Also check that "include" and "library" directories are valid. Some Linux 
30
   distributions don't follow Trolltech directory structure.
31
   Verify like this:
32
   
33
     ls  $QTDIR/bin
34
     ls  $QTDIR/include
35
     ls  $QTDIR/lib
36
37
38
   Linux Mandrake 9.0
39
 ======================  
40
41
   The Mandrake seems to forgot to add symlinks for X related libraries.
42
 As a consequence, you cannot build Quax out of the box. You need to make
43
 symlinks by yourself. Please run as "root' user the following:
44
 
45
   cd /usr/X11R6/lib
46
   ln -s libX11.so.6.2 libX11.so
47
   ln -s libXext.so.6.4 libXext.so
48
   cd -
49
 
50
   Then ensure that QTDIR variable is properly set:
51
     
52
   export QTDIR=/usr/lib/qt3
53
54
   Also you need the QT3 development files installed. The following packages
55
 must be present on your system:  
56
57
   libqt3-3.0.5-7mdk
58
   libqt3-devel-3.0.5-7mdk
59