mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-09 13:29:48 -05:00
Use autoconf instead of $(shell ...) in the Makefile.
This commit is contained in:
parent
b820b82cad
commit
d4de54efe7
4 changed files with 88 additions and 66 deletions
18
configure.ac
Normal file
18
configure.ac
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
AC_INIT(wayland, 0.1)
|
||||
AC_PROG_CC
|
||||
|
||||
PKG_PROG_PKG_CONFIG()
|
||||
PKG_CHECK_MODULES(FFI, [libffi])
|
||||
PKG_CHECK_MODULES(LIBDRM, [libdrm])
|
||||
|
||||
PKG_CHECK_MODULES(EGL_COMPOSITOR, [eagle libpng cairo gdk-pixbuf-2.0])
|
||||
PKG_CHECK_MODULES(GL_COMPOSITOR, [gl x11])
|
||||
PKG_CHECK_MODULES(CLIENT, [eagle cairo glib-2.0])
|
||||
|
||||
if test $CC = gcc; then
|
||||
GCC_CFLAGS="-Wall -g -Wstrict-prototypes -Wmissing-prototypes -fvisibility=hidden"
|
||||
fi
|
||||
AC_SUBST(GCC_CFLAGS)
|
||||
|
||||
AC_CONFIG_FILES([Makefile])
|
||||
AC_OUTPUT
|
||||
Loading…
Add table
Add a link
Reference in a new issue