18 lines
408 B
Plaintext
18 lines
408 B
Plaintext
AC_INIT(orion, 0.2)
|
|
AC_CONFIG_SRCDIR(configure.in)
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_ARG_WITH(scsh,
|
|
AC_HELP_STRING([--with-scsh=FILE],
|
|
[the scsh binary to use @<:@scsh from PATH@:>@]),
|
|
SCSH=$withval)
|
|
|
|
AC_PATH_PROG([SCSH], [scsh], AC_MSG_ERROR([Cannot find scsh executable]))
|
|
|
|
schemedir='${libdir}'"/orion/scheme"
|
|
AC_SUBST(schemedir)
|
|
|
|
AC_CONFIG_FILES(Makefile)
|
|
AC_OUTPUT
|