diff options
author | Jose Fonseca <[email protected]> | 2015-03-24 20:26:21 +0000 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2015-03-25 10:42:35 +0000 |
commit | 47870d658b777722d48d6b9084d66e270a04e52e (patch) | |
tree | 47cc9ab736b848e36d0d2b7ac22cfc8c05461f81 /src | |
parent | f9b8c9299d10542c9806927018a488f84adcb036 (diff) |
scons: Don't build loader on Windows.
EGL was the last user.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/SConscript | 3 | ||||
-rw-r--r-- | src/loader/Makefile.am | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/SConscript b/src/SConscript index 40b7fc151de..b0578e89258 100644 --- a/src/SConscript +++ b/src/SConscript @@ -12,7 +12,8 @@ if env['hostonly']: # compilation Return() -SConscript('loader/SConscript') +if env['platform'] != 'windows': + SConscript('loader/SConscript') # When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not # used. libgl-xlib and libgl-gdi adapt themselves to use the targets defined diff --git a/src/loader/Makefile.am b/src/loader/Makefile.am index 3d32279ea26..36ddba82bd3 100644 --- a/src/loader/Makefile.am +++ b/src/loader/Makefile.am @@ -30,7 +30,6 @@ libloader_la_CPPFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src \ $(VISIBILITY_CFLAGS) \ - $(MSVC2013_COMPAT_CFLAGS) \ $(LIBUDEV_CFLAGS) libloader_la_SOURCES = $(LOADER_C_FILES) |