egl: Fix non-dri SCons builds re #87657
authorAlexander von Gluck IV <kallisti5@unixzen.com>
Wed, 24 Dec 2014 13:44:25 +0000 (07:44 -0600)
committerAlexander von Gluck IV <kallisti5@unixzen.com>
Thu, 25 Dec 2014 15:34:49 +0000 (10:34 -0500)
* Revert change to egl main producing Shared Libraries
* Check for dri before including dri code

src/SConscript
src/egl/main/SConscript

index eb4cd3c7c9f1d3de94dc45fe78fcded598f2644c..c25adc7280f97cfdd1c1c8d9a879c17610f2ee4d 100644 (file)
@@ -33,7 +33,8 @@ if not env['embedded']:
     if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'windows'):
         SConscript('glx/SConscript')
     if env['platform'] not in ['darwin', 'haiku', 'sunos']:
-        SConscript('egl/drivers/dri2/SConscript')
+        if env['dri']:
+            SConscript('egl/drivers/dri2/SConscript')
         SConscript('egl/main/SConscript')
     if env['platform'] == 'haiku':
         SConscript('egl/drivers/haiku/SConscript')
index 2ea2261cc13c1244da5aa96e559286f57b20efa9..5d0073e14e04d818c2a4c6a259339dbd5e08576c 100644 (file)
@@ -33,10 +33,11 @@ else:
         '_EGL_NATIVE_PLATFORM=_EGL_PLATFORM_X11',
         '_EGL_OS_UNIX',
     ])
-    env.Prepend(LIBS = [
-        egl_dri2,
-        libloader,
-    ])
+    if env['dri']:
+        env.Prepend(LIBS = [
+            egl_dri2,
+            libloader,
+        ])
 
 env.Append(CPPPATH = [
     '#/include',
@@ -46,12 +47,8 @@ env.Append(CPPPATH = [
 # parse Makefile.sources
 egl_sources = env.ParseSourceList('Makefile.sources', 'LIBEGL_C_FILES')
 
-# libEGL.dll
-env['LIBPREFIX'] = 'lib'
-env['SHLIBPREFIX'] = 'lib'
-
-egl = env.SharedLibrary(
-    target = 'EGL',
+egl = env.ConvenienceLibrary(
+    target = 'egl',
     source = egl_sources,
 )