
Finished configuring the init/shell commands Updated readme Fixed issue with missing /boot/efi directory Added new config module for setting/retrieving vm configs Updated machine setup Fixed issue with missing files added config to docs section added x86_64 support fixed issue with x86_64 update and updated README Added some content to README Added markdown export of org file Updated readme to reflect the need for guile-next Removed guile from install example exported changes to md Updated README fixed issue with sed compatibility (bsd/gnu) regenerated readme markdown Removed readme markdown file for org alternative Updated project license updated autocompile to include for now updated script updated script updated script updated msg script updated license updated to test testing testing testing testing testing testing testing testing testing testing testing
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
dnl -*- Autoconf -*-
|
|
|
|
AC_INIT(msg, 0.1)
|
|
AC_SUBST(HVERSION, "\"0.1\"")
|
|
AC_SUBST(AUTHOR, "\"Chad Nelson\"")
|
|
AC_SUBST(COPYRIGHT, "'(2023)")
|
|
AC_SUBST(LICENSE, agpl3+)
|
|
AC_CONFIG_SRCDIR(scripts)
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects color-tests parallel-tests -Woverride -Wno-portability])
|
|
AM_SILENT_RULES([yes])
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
|
|
AC_CONFIG_FILES([scripts/msg],[chmod +x scripts/msg])
|
|
dnl Search for 'guile' and 'guild'. This macro defines
|
|
dnl 'GUILE_EFFECTIVE_VERSION'.
|
|
GUILE_PKG([3.0 2.2 2.0])
|
|
GUILE_PROGS
|
|
GUILE_SITE_DIR
|
|
if test "x$GUILD" = "x"; then
|
|
AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x installation.])
|
|
fi
|
|
|
|
if test "$cross_compiling" != no; then
|
|
GUILE_TARGET="--target=$host_alias"
|
|
AC_SUBST([GUILE_TARGET])
|
|
fi
|
|
|
|
dnl Hall auto-generated guile-module dependencies
|
|
|
|
|
|
dnl Installation directories for .scm and .go files.
|
|
guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION"
|
|
guileobjectdir="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"
|
|
AC_SUBST([guilemoduledir])
|
|
AC_SUBST([guileobjectdir])
|
|
|
|
AC_OUTPUT
|