Add ulalaca to build

This commit is contained in:
Koichiro IWAO 2022-05-19 12:10:05 +09:00
parent d0197b7124
commit 8d88fe7a83
2 changed files with 15 additions and 0 deletions

View File

@ -39,6 +39,12 @@ else
RFXCODECDIR =
endif
if XRDP_ULALACA
ULALACADIR = ulalaca
else
ULALACADIR =
endif
SUBDIRS = \
common \
vnc \
@ -58,6 +64,7 @@ SUBDIRS = \
xrdpapi \
pkgconfig \
$(XRDPVRDIR) \
$(ULALACADIR) \
tests \
tools

View File

@ -6,6 +6,7 @@ AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in)
AM_INIT_AUTOMAKE([1.7.2 foreign])
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_CC
AC_PROG_CXX
AC_C_CONST
AC_PROG_LIBTOOL
@ -133,6 +134,12 @@ AC_ARG_ENABLE(neutrinordp, AS_HELP_STRING([--enable-neutrinordp],
[Build neutrinordp module (default: no)]),
[], [enable_neutrinordp=no])
AM_CONDITIONAL(XRDP_NEUTRINORDP, [test x$enable_neutrinordp = xyes])
AC_ARG_ENABLE(ulalaca, AS_HELP_STRING([--enable-ulalaca],
[Build ulalaca module (default: no)]),
[], [enable_ulalaca=no])
AM_CONDITIONAL(XRDP_ULALACA, [test x$enable_ulalaca = xyes])
AC_ARG_ENABLE(jpeg, AS_HELP_STRING([--enable-jpeg],
[Build jpeg module (default: no)]),
[], [enable_jpeg=no])
@ -500,6 +507,7 @@ AC_CONFIG_FILES([
Makefile
mc/Makefile
neutrinordp/Makefile
ulalaca/Makefile
pkgconfig/Makefile
pkgconfig/xrdp.pc
pkgconfig/xrdp-uninstalled.pc