# configure.ac -- process this file with autoconf to produce a configure script AC_INIT([stdhome], m4_esyscmd(cat VERSION|tr -d '\n'), [tim@ed.am], ,[http://ed.am/dev/stdhome]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign dist-lzip]) # checks for programs AM_PATH_PYTHON([3.9]) # checks for libraries # checks for header files # checks for types # checks for structures # checks for compiler characteristics # checks for library functions # checks for system services # determine bzr info (if any) bzr_info= if test -d .bzr then bzr=$( command -v bzr ) if test -n "$bzr" then bzr_info=" (bzr r"$( "$bzr" revno --tree )")" fi fi AC_SUBST([bzr_info]) AC_CONFIG_FILES([Makefile src/Makefile lib/stdhome/Makefile]) AC_CONFIG_FILES([src/stdhome], [chmod +x src/stdhome]) AC_OUTPUT