415de7b257
[CONFIGURATION] * NEW: Update configuration files to autoconf 2.71.
21 lines
391 B
Text
21 lines
391 B
Text
dnl ---- configure.ac for Gambas development environment
|
|
|
|
dnl ---- Initialization
|
|
|
|
m4_include([../version.m4])
|
|
AC_INIT([gambas3-ide],[GB_VERSION],[GB_MAIL],[],[GB_URL])
|
|
GB_INIT_SHORT(ide)
|
|
|
|
dnl ---- Check for Portland scripts
|
|
|
|
AC_CHECK_PROGS(XDG_UTILS, [xdg-mime xdg-icon-resource], [])
|
|
|
|
dnl ---- Create makefiles
|
|
|
|
AC_CONFIG_FILES([\
|
|
Makefile \
|
|
man/Makefile \
|
|
])
|
|
AC_OUTPUT
|
|
|
|
GB_PRINT_MESSAGES
|