Browse Source

egl: Fix gallium build when EGL is not installed on system

tags/mesa-7.9-rc1
Jakob Bornecrantz 15 years ago
parent
commit
006d02a911
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/gallium/targets/egl/Makefile

+ 2
- 1
src/gallium/targets/egl/Makefile View File

@@ -20,6 +20,7 @@ ST_PREFIX := st_
PIPE_PREFIX := pipe_

common_CPPFLAGS := \
-I$(TOP)/include \
-I$(TOP)/src/gallium/auxiliary \
-I$(TOP)/src/gallium/drivers \
-I$(TOP)/src/gallium/include \
@@ -36,7 +37,7 @@ egl_CPPFLAGS := \
-I$(TOP)/src/gallium/state_trackers/egl \
-I$(TOP)/src/egl/main \
-DPIPE_PREFIX=\"$(PIPE_PREFIX)\" -DST_PREFIX=\"$(ST_PREFIX)\"
egl_SYS := -lm -ldl -lEGL
egl_SYS := -lm -ldl -L$(TOP)/$(LIB_DIR) -lEGL
egl_LIBS := $(TOP)/src/gallium/state_trackers/egl/libegl.a

ifneq ($(findstring x11, $(EGL_PLATFORMS)),)

Loading…
Cancel
Save