Changes between Version 9 and Version 10 of BuildingEpiarOnWindows


Ignore:
Timestamp:
12/29/09 21:29:11 (3 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingEpiarOnWindows

    v9 v10  
    3636cd .. 
    3737}}} 
     38 
     39==== Ensure Your Environment Is Set Correctly ==== 
     40At this stage we need to create a file called /home/Administrator/.profile , or in Windows, C:\msys\1.0\home\Administrator\.profile . Note there is a purposeful period before the word profile. This .profile file will be read and executed before the MSYS shell opens, so it is a good place to put start-up material. Create that file (it likely will not already exist) and place just this one line in it: 
     41 
     42{{{ 
     43export PATH=$PATH:/home/Administrator/bin 
     44}}} 
     45 
     46(where Administrator is the name of your user). Then, close your MSYS program and re-open it. This will ensure that any programs installed to ~/bin will be available to all programs, e.g. you should be able to type 'sdl-config' (without the quotes) and receive a message other than "Command not found." 
     47 
     48==== Install libz, libpng, libjpeg, libtiff, & libSDL_image ====