diff options
author | Eric Anholt <[email protected]> | 2012-02-05 10:46:13 +0100 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-02-29 11:52:40 -0800 |
commit | 88612029f6ce9d2717220a0ef31bfe71a8c85529 (patch) | |
tree | d86254fa4af549ab8850c39d07b929ea6cb82fd2 /src/egl/main/egl.pc.in | |
parent | 28d92eff73a0821e7a73b04d3f50e715850dc5e9 (diff) |
egl/main: Convert to automake.
The drivers/ walk-through-subdirs makefile is converted as well so I
didn't need to keep EGL_DRIVERS_DIRS along with the per-driver
HAVE_EGL_DRIVER_WHATEVER.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/egl/main/egl.pc.in')
-rw-r--r-- | src/egl/main/egl.pc.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/egl/main/egl.pc.in b/src/egl/main/egl.pc.in index 2855a4980a0..fd6904bd81a 100644 --- a/src/egl/main/egl.pc.in +++ b/src/egl/main/egl.pc.in @@ -1,12 +1,12 @@ -prefix=@INSTALL_DIR@ +prefix=@prefix@ exec_prefix=${prefix} -libdir=@INSTALL_LIB_DIR@ -includedir=@INSTALL_INC_DIR@ +libdir=@libdir@ +includedir=@includedir@ Name: egl Description: Mesa EGL library -Requires.private: @EGL_PC_REQ_PRIV@ -Version: @VERSION@ -Libs: -L${libdir} -l@EGL_LIB@ -Libs.private: @EGL_PC_LIB_PRIV@ -Cflags: -I${includedir} @EGL_PC_CFLAGS@ +Requires.private: @GL_PC_REQ_PRIV@ +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -lEGL +Libs.private: @GL_PC_LIB_PRIV@ +Cflags: -I${includedir} @GL_PC_CFLAGS@ |