Changes between Version 23 and Version 24 of BuildingEpiarOnWindows


Ignore:
Timestamp:
11/20/10 17:29:11 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingEpiarOnWindows

    v23 v24  
    6868Download the latest libpng from http://www.libpng.org/pub/png, unzip it and run the following commands: 
    6969{{{ 
    70 ./configure 
     70./configure --prefix=/home/administrator 
    7171make 
    7272make install 
    7373}}} 
    7474 
    75 ==== Install libjpeg, libtiff, & libSDL_image ==== 
    76 Download all the needed files to ~/src just like before:[[BR]] 
    77 http://www.ijg.org/files/jpegsrc.v7.tar.gz [[BR]] 
    78 ftp://ftp.remotesensing.org/pub/libtiff/tiff-3.9.2.zip [[BR]] 
     75==== Install libSDL_image ==== 
     76Grab SDL_image from sdl.org, and use the following commands to build it. Note, this compiles a version of SDL_image that only has png support - specifically, it lacks jpg and tiff support, which might be needed if you use these same instructions to build other games. To add jpg or tiff support (not needed for Epiar), you need to build libjpeg and libtiff before this step): 
     77 
     78{{{ 
     79./configure --prefix=/home/administrator 
     80make 
     81make install 
     82}}}