diff mbox

[Branch,~glmark2-dev/glmark2/trunk] Rev 68: Explicitly link against needed libraries.

Message ID 20110721123634.17019.59992.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

alexandros.frantzis@linaro.org July 21, 2011, 12:36 p.m. UTC
------------------------------------------------------------
revno: 68
committer: Alexandros Frantzis <alexandros.frantzis@linaro.org>
timestamp: Tue 2011-01-25 02:36:40 +0200
message:
  Explicitly link against needed libraries.
modified:
  src/wscript_build


--
lp:glmark2
https://code.launchpad.net/~glmark2-dev/glmark2/trunk

You are subscribed to branch lp:glmark2.
To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'src/wscript_build'
--- src/wscript_build	2010-07-12 13:37:04 +0000
+++ src/wscript_build	2011-01-25 00:36:40 +0000
@@ -18,8 +18,7 @@ 
 		features     = ['cc', 'cstaticlib'],
 		source       = bld.path.ant_glob('sdlgles/*.c'),
 		target       = 'sdlgles',
-		uselib       = ['sdl', 'glesv2', 'egl'],
-		lib          = ['m'],
+		uselib       = ['sdl', 'glesv2', 'egl']
 		)
 	bld(
 		features     = ['cxx', 'cprogram'],
@@ -27,6 +26,6 @@ 
 		target       = 'glmark2-es2',
 		uselib       = ['sdl', 'glesv2'],
 		uselib_local = ['sdlgles'],
-		lib          = ['m'],
+		lib          = ['m', 'dl'],
 		defines      = ['USE_GLESv2']
 		)