mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-01-03 18:40:14 +01:00
And there was much rejoicing. Signed-off-by: Josh Triplett <josh@joshtriplett.org> Reviewed-by: Jamey Sharp <jamey@minilop.net> Consensus on #xorg-devel agrees with removing --without-xcb; in particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg, Julien Cristau, and Rémi Cardona.
32 lines
634 B
Makefile
32 lines
634 B
Makefile
AM_CPPFLAGS= \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/include/X11 \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_builddir)/include/X11 \
|
|
-I$(top_srcdir)/src/xcms \
|
|
-I$(top_srcdir)/src/xkb \
|
|
-I$(top_srcdir)/src/xlibi18n \
|
|
-D_BSD_SOURCE
|
|
|
|
AM_CFLAGS= \
|
|
$(X11_CFLAGS) \
|
|
$(BIGFONT_CFLAGS) \
|
|
$(CWARNFLAGS)
|
|
|
|
if XLIB_LOADABLE_I18N
|
|
|
|
commonlibdir = $(X11_LOCALELIBDIR)/common
|
|
commonlib_LTLIBRARIES=xlibi18n.la
|
|
xlibi18n_la_LDFLAGS = -module -version-number 2:0:0
|
|
xlibi18n_la_LIBADD = $(I18N_MODULE_LIBS)
|
|
|
|
else
|
|
|
|
noinst_LTLIBRARIES = libxlibi18n.la
|
|
|
|
endif
|
|
|
|
xlibi18n_la_SOURCES = \
|
|
lcGenConv.c
|
|
|
|
libxlibi18n_la_SOURCES = $(xlibi18n_la_SOURCES)
|