xrdp/waitforx/Makefile.am
matt335672 56d99d8535 Add AM_CPPFLAGS to makefile.am for waitforx
Without this, the compilation of waitforx can fail on FreeBSD
with this error:-

waitforx.c:1:10: fatal error: 'X11/extensions/Xrandr.h' file not found

This PR makes the use of AM_CPPFLAGS and AM_CFLAGS the same as
that for (e.g.) chansrv which also depends on X includes
2023-03-13 20:52:00 +00:00

14 lines
224 B
Makefile

bin_PROGRAMS = \
xrdp-waitforx
AM_LDFLAGS = -lX11 -lXrandr
AM_CPPFLAGS = -I$(top_srcdir)/common
AM_CFLAGS = $(X_CFLAGS)
xrdp_waitforx_SOURCES = waitforx.c
xrdp_waitforx_LDADD = \
$(top_builddir)/common/libcommon.la