Changes between Version 170 and Version 171 of AndroidPort


Ignore:
Timestamp:
Jan 28, 2012, 12:08:17 AM (12 years ago)
Author:
Anders Feder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v170 v171  
    269269$ make install
    270270}}}
     271
     272Download the latest version of libpng from [http://www.libpng.org/pub/png/libpng.html this page] to the working directory and then unpack it there, e.g.:
     273
     274{{{
     275$ cd ~/android
     276$ tar -xvf libpng-1.5.7.tar.xz
     277}}}
     278
     279Now change directory to the directory that was unpacked, e.g.:
     280
     281{{{
     282$ cd ~/android/libpng-1.5.7
     283}}}
     284
     285Then execute the following commands to compile the package for the target device:
     286
     287{{{
     288$ ./configure --host=$HOSTCONF --build=i686-pc-linux-gnu  --with-sysroot=$SYSROOT --prefix=$SYSROOT/usr
     289$ make
     290$ make install
     291}}}
    271292 
    272293=== Building the game ===