gambas-source-code/gb.compress.zstd/configure.ac
Laurent Carlier c3811e003d
fix building on Ubuntu Bionic (18.04LTS)
[GB.COMPRESS.ZSTD]
* NEW: Fix building with Ubuntu Bionic (18.04LTS) (zstd > 1.3.2)
2021-04-09 18:52:49 +02:00

23 lines
398 B
Text

dnl ---- Initialization
m4_include([../version.m4])
AC_INIT(gambas3-gb-compress-zstd, GB_VERSION, GB_MAIL, [], GB_URL)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(gb.compress.zstd)
AC_PROG_LIBTOOL
dnl ---- zstd compression driver
GB_COMPONENT_PKG_CONFIG(
zstd, ZSTD, gb.compress.zstd, [src],
'libzstd >= 1.3.3')
dnl ---- Create makefiles
AC_OUTPUT( \
Makefile \
src/Makefile \
)
GB_PRINT_MESSAGES