mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 20:28:05 +02:00
Previously the pkg-config output files would contain e.g. `-lGL' and `-lGLU', even if the user modified their configuration to build libraries with different names. This modifies the pkg-config inputs, and corresponding makery, so that modifying the output library name will cause the appropriate updated name to appear in the pkg-config `-l' option. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
13 lines
329 B
PkgConfig
13 lines
329 B
PkgConfig
prefix=@INSTALL_DIR@
|
|
exec_prefix=${prefix}
|
|
libdir=@INSTALL_LIB_DIR@
|
|
includedir=@INSTALL_INC_DIR@
|
|
|
|
Name: glu
|
|
Description: Mesa OpenGL Utility library
|
|
Requires: @GLU_PC_REQ@
|
|
Requires.private: @GLU_PC_REQ_PRIV@
|
|
Version: @VERSION@
|
|
Libs: -L${libdir} -l@GLU_LIB@
|
|
Libs.private: @GLU_PC_LIB_PRIV@
|
|
Cflags: -I${includedir} @GLU_PC_CFLAGS@
|