From 0e714a8189d8f0586f0e9520a8ae55d09b9c32e8 Mon Sep 17 00:00:00 2001 From: f1fth_freed0m Date: Sat, 12 Apr 2008 23:00:18 +0000 Subject: started to implement the new folder structure (like suggested in the wiki) -merged Skins and Themes in Themes -moved some libs to Libraries git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1021 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/lib/JEDI-SDL/SDL/Pas/sdl.pas | 2 +- Game/Code/lib/JEDI-SDL/SDL_Image/Pas/sdl_image.pas | 2 +- Game/Code/lib/JEDI-SDL/SDL_ttf/Pas/sdl_ttf.pas | 2 +- Game/Code/lib/SQLite/SQLite3.pas | 2 +- Game/Code/lib/bass/delphi/bass.pas | 2 +- Game/Code/lib/libpng/png.pas | 2 +- Game/Code/lib/projectM/0.9/projectM.pas | 2 +- Game/Code/lib/projectM/1.0/projectM.pas | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) (limited to 'Game/Code/lib') diff --git a/Game/Code/lib/JEDI-SDL/SDL/Pas/sdl.pas b/Game/Code/lib/JEDI-SDL/SDL/Pas/sdl.pas index 29bc7123..d2e30270 100644 --- a/Game/Code/lib/JEDI-SDL/SDL/Pas/sdl.pas +++ b/Game/Code/lib/JEDI-SDL/SDL/Pas/sdl.pas @@ -357,7 +357,7 @@ uses const {$IFDEF WINDOWS} - SDLLibName = 'SDL.dll'; + SDLLibName = 'Libraries\SDL.dll'; {$ENDIF} {$IFDEF UNIX} diff --git a/Game/Code/lib/JEDI-SDL/SDL_Image/Pas/sdl_image.pas b/Game/Code/lib/JEDI-SDL/SDL_Image/Pas/sdl_image.pas index d0699761..1013e322 100644 --- a/Game/Code/lib/JEDI-SDL/SDL_Image/Pas/sdl_image.pas +++ b/Game/Code/lib/JEDI-SDL/SDL_Image/Pas/sdl_image.pas @@ -144,7 +144,7 @@ uses const {$IFDEF WINDOWS} - SDL_ImageLibName = 'SDL_Image.dll'; + SDL_ImageLibName = 'Libraries\SDL_Image.dll'; {$ENDIF} {$IFDEF UNIX} diff --git a/Game/Code/lib/JEDI-SDL/SDL_ttf/Pas/sdl_ttf.pas b/Game/Code/lib/JEDI-SDL/SDL_ttf/Pas/sdl_ttf.pas index 88966f82..73001038 100644 --- a/Game/Code/lib/JEDI-SDL/SDL_ttf/Pas/sdl_ttf.pas +++ b/Game/Code/lib/JEDI-SDL/SDL_ttf/Pas/sdl_ttf.pas @@ -179,7 +179,7 @@ uses const {$IFDEF WINDOWS} - SDLttfLibName = 'SDL_ttf.dll'; + SDLttfLibName = 'Libraries\SDL_ttf.dll'; {$ENDIF} {$IFDEF UNIX} diff --git a/Game/Code/lib/SQLite/SQLite3.pas b/Game/Code/lib/SQLite/SQLite3.pas index f1b03e08..202aa401 100644 --- a/Game/Code/lib/SQLite/SQLite3.pas +++ b/Game/Code/lib/SQLite/SQLite3.pas @@ -15,7 +15,7 @@ interface const {$IFDEF MSWINDOWS} - SQLiteDLL = 'sqlite3.dll'; + SQLiteDLL = 'Libraries\sqlite3.dll'; {$ENDIF} {$IFDEF LINUX} SQLiteDLL = 'sqlite3.so'; diff --git a/Game/Code/lib/bass/delphi/bass.pas b/Game/Code/lib/bass/delphi/bass.pas index ba661699..0339e5a3 100644 --- a/Game/Code/lib/bass/delphi/bass.pas +++ b/Game/Code/lib/bass/delphi/bass.pas @@ -771,7 +771,7 @@ type // Functions const - bassdll = 'bass.dll'; + bassdll = 'Libraries\bass.dll'; function BASS_SetConfig(option, value: DWORD): DWORD; stdcall; external bassdll; function BASS_GetConfig(option: DWORD): DWORD; stdcall; external bassdll; diff --git a/Game/Code/lib/libpng/png.pas b/Game/Code/lib/libpng/png.pas index 0d784140..3d700104 100644 --- a/Game/Code/lib/libpng/png.pas +++ b/Game/Code/lib/libpng/png.pas @@ -29,7 +29,7 @@ uses const {$ifdef MSWINDOWS} // use libpng12-0 (Version 1.2.18), delivered wih SDL_Image - LibPng = 'libpng12-0'; // 'libpng13'; + LibPng = 'Libraries\libpng12-0'; // 'libpng13'; // matching lib version for libpng13.dll, needed for initialization PNG_LIBPNG_VER_STRING='1.2.12'; // define the compiler that was used to built the DLL (necessary for jmp_buf) diff --git a/Game/Code/lib/projectM/0.9/projectM.pas b/Game/Code/lib/projectM/0.9/projectM.pas index 609448fd..cf98150e 100644 --- a/Game/Code/lib/projectM/0.9/projectM.pas +++ b/Game/Code/lib/projectM/0.9/projectM.pas @@ -16,7 +16,7 @@ uses const {$IFDEF win32} - libprojectM = 'libprojectM.dll'; + libprojectM = 'Libraries\libprojectM'; {$ELSE} libprojectM = 'libprojectM.so'; {$ENDIF} diff --git a/Game/Code/lib/projectM/1.0/projectM.pas b/Game/Code/lib/projectM/1.0/projectM.pas index 47da36cc..c16873af 100644 --- a/Game/Code/lib/projectM/1.0/projectM.pas +++ b/Game/Code/lib/projectM/1.0/projectM.pas @@ -16,7 +16,7 @@ uses const {$IFDEF win32} - libprojectM = 'projectM-cwrapper.dll'; + libprojectM = 'Libraries\projectM-cwrapper.dll'; {$ELSE} libprojectM = 'libprojectM-cwrapper.so'; {$ENDIF} -- cgit v1.2.3