Changeset 347

Show
Ignore:
Timestamp:
05/24/08 19:42:04 (5 months ago)
Author:
hsattler
Message:

update, including typo fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/INSTALL_Win32.txt

    r343 r347  
    4545  * msysDTK (1.0.1 works) 
    4646 
    47 Libtool from msysDTK in incomplete, it needs an additional file utility. You 
     47Libtool from msysDTK in incomplete, it needs an additional 'file' utility. You 
    4848can get this from http://gnuwin32.sf.net. Do NOT install it in the MSYS directory 
    49 but somewhere else that is already mounted (e.g. into the mingw directory). 
     49but somewhere else that is already mounted and in $PATH (e.g. into the mingw 
     50directory). 
    5051 
    5152Additionally, download the following packages from http://www.gtk.org/download-windows.html: 
     
    6970  $ autoreconf -v -f -i 
    7071 
    71 Now you need some environment variable for configure: 
     72Now you need some environment variables for configure: 
    7273  $ export CFLAGS="-I/libusb/include -I/glib/include -I/psdk/include" 
    7374  $ export LDFLAGS="-L/libusb/lib/gcc -L/glib/lib" 
     
    7879  $ ./configure --prefix=/mingw --disable-shared 
    7980 
    80 This will build a static library. Do to a bug in libtool, you cannot build the 
     81This will build a static library. Due to a bug in libtool, you cannot build the 
    8182static and the shared version at the same time. To build the shared version, run: 
    8283  $ ./configure --prefix=/mingw --disable-static 
    83  
    8484 
    8585 
     
    116116  af_irda.h 
    117117 
    118 You _MUST_ add the MinGW directories of the include files, libraries 
    119 and executables to the environment variables INCLUDE, LIB and PATH. 
     118Either you add MinGW bin directory to PATH, or you call the mingw32-make with 
     119full path, both variations work. 
    120120Then, at the command prompt: 
    121   > set INCLUDE=%INCLUDE%;C:\mingw\include 
    122   > set LIB=%LIB%;C:\mingw\lib 
    123121  > set PATH=%PATH%;C:\mingw\bin 
    124122  > mkdir build 
     
    128126 
    129127You can also use MSYS as environment: 
    130   > export INCLUDE=$INCLUDE;C:\mingw\include 
    131   > export LIB=$LIB;C:\mingw\lib 
    132128  > mkdir build 
    133129  > cd build