Ticket #8558: compile.diff
File compile.diff, 1.2 KB (added by , 18 years ago) |
---|
-
maemo-sdl.cpp
21 21 */ 22 22 23 23 #include "common/stdafx.h" 24 #include "backends/ maemo/maemo-sdl.h"24 #include "backends/platform/maemo/maemo-sdl.h" 25 25 26 26 27 27 void OSystem_MAEMO::loadGFXMode() { -
main.cpp
28 28 #include <SDL/SDL.h> 29 29 #include <SDL/SDL_syswm.h> 30 30 31 #include "backends/ maemo/maemo-sdl.h"31 #include "backends/platform/maemo/maemo-sdl.h" 32 32 #include "base/main.h" 33 33 #include <hildon-widgets/hildon-app.h> 34 34 #include <gtk/gtk.h> -
Makefile
19 19 DISABLE_CINE = 1 20 20 DISABLE_AGI = 1 21 21 22 srcdir = ../.. 22 srcdir = ../../.. 23 23 VPATH = $(srcdir) 24 24 25 25 CXX := g++ 26 26 EXECUTABLE := scummvm 27 27 28 INCDIR = ../../ . $(srcdir)/engines/28 INCDIR = $(srcdir)/ . $(srcdir)/engines/ 29 29 30 30 CXXFLAGS := -g -ansi -W -Wno-unused-parameter 31 31 CXXFLAGS += `pkg-config --cflags gconf-2.0 hildon-libs gtk+-2.0 libosso gdk-2.0`