diff options
author | basisbit <basisbit@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2015-10-11 23:47:26 +0000 |
---|---|---|
committer | basisbit <basisbit@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2015-10-11 23:47:26 +0000 |
commit | 42c3f6d5404e3cfa42db1b942561a280fabca418 (patch) | |
tree | 5f7f10f84ea8e8ce6b417701f69d254ea5ea524c /src/lib | |
parent | 086642246da49e0ad2de8857004e083081a14867 (diff) | |
download | usdx-42c3f6d5404e3cfa42db1b942561a280fabca418.tar.gz usdx-42c3f6d5404e3cfa42db1b942561a280fabca418.tar.xz usdx-42c3f6d5404e3cfa42db1b942561a280fabca418.zip |
* fix running with SDL-image 1.2.15 for windows
* update windows-build to ffmpeg 2.8.0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3142 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/lib/libpng/png.pas | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libpng/png.pas b/src/lib/libpng/png.pas index 0092dde3..b5ea49e8 100644 --- a/src/lib/libpng/png.pas +++ b/src/lib/libpng/png.pas @@ -30,10 +30,10 @@ uses const {$IFDEF MSWINDOWS} - // use libpng12-0 (Version 1.2.18), delivered wih SDL_Image - LibPng = 'libpng12-0'; // 'libpng13'; - // matching lib version for libpng13.dll, needed for initialization - PNG_LIBPNG_VER_STRING='1.2.12'; + // use libpng15-15 (Version 1.2.15), delivered wih SDL_Image + LibPng = 'libpng15-15'; + // matching lib version for libpngxx.dll, needed for initialization + PNG_LIBPNG_VER_STRING='1.2.15'; // define the compiler that was used to built the DLL (necessary for jmp_buf) // SDL_Image was compiled with GCC //{$define MSVC_DLL} // MS Visual C++ |