From 0ceb7b4ccd89150e46f92545bf4bdbb070cede12 Mon Sep 17 00:00:00 2001 From: Doron Rosenberg Date: Thu, 4 Aug 2011 10:44:06 -0700 Subject: WebOS: touchpad virtual keyboard --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index d5e2345acb..e330722c9d 100755 --- a/configure +++ b/configure @@ -2395,7 +2395,7 @@ case $_backend in ;; webos) # There is no sdl-config in the WebOS PDK so we don't use find_sdlconfig here. - LIBS="$LIBS -lSDL" + LIBS="$LIBS -lSDL -lpdl" DEFINES="$DEFINES -DWEBOS" DEFINES="$DEFINES -DSDL_BACKEND" add_line_to_config_mk "SDL_BACKEND = 1" -- cgit v1.2.3 From c619c241dec00e5693e8ec83e6278a9978dc1ac5 Mon Sep 17 00:00:00 2001 From: TomFrost Date: Sat, 24 Sep 2011 15:12:27 -0400 Subject: WebOS: Enable scalers and Darwin compatibility. On Mac OS X (Darwin), there are minor differences in the 'sed' and 'install' tools that require slightly different usage. This distinction has been made in webos.mk, made possible by an additional flag in ./configure. --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 9a824b97ed..914690512b 100755 --- a/configure +++ b/configure @@ -2355,12 +2355,14 @@ if test -n "$_host"; then webos) _backend="webos" _port_mk="backends/platform/webos/webos.mk" - _build_scalers=no + _build_scalers=yes + _build_hq_scalers=no _timidity=no _mt32emu=no _seq_midi=no _vkeybd=no _keymapper=yes + add_line_to_config_mk "HOST_COMPILER = `uname`" ;; wii) _backend="wii" -- cgit v1.2.3 From dbd391bdfe9790aab8f6ae3dc7762ff2662cfbb4 Mon Sep 17 00:00:00 2001 From: TomFrost Date: Sat, 1 Oct 2011 23:03:15 -0400 Subject: WebOS: Add improvements suggested in pull req. 89. The improvements in this commit are mostly code formatting, variable abstraction, and in one case, a performance enhancement as calculations were made a one-time fire rather than being run with every mouse move event. --- configure | 1 + 1 file changed, 1 insertion(+) (limited to 'configure') diff --git a/configure b/configure index 914690512b..9a757960d9 100755 --- a/configure +++ b/configure @@ -2506,6 +2506,7 @@ case $_backend in ;; webos) # There is no sdl-config in the WebOS PDK so we don't use find_sdlconfig here. + # The PDL library acts as the WebOS device toolchain, and is required to control the virtual keyboard among other OS-level events. LIBS="$LIBS -lSDL -lpdl" DEFINES="$DEFINES -DWEBOS" DEFINES="$DEFINES -DSDL_BACKEND" -- cgit v1.2.3