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 = RFXCODECDIR =
endif endif
if XRDP_ULALACA
ULALACADIR = ulalaca
else
ULALACADIR =
endif
SUBDIRS = \ SUBDIRS = \
common \ common \
vnc \ vnc \
@ -58,6 +64,7 @@ SUBDIRS = \
xrdpapi \ xrdpapi \
pkgconfig \ pkgconfig \
$(XRDPVRDIR) \ $(XRDPVRDIR) \
$(ULALACADIR) \
tests \ tests \
tools tools

View File

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