Mercurial > email
diff configure.ac @ 0:33bf7ee17644
Initial import from some old code
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 03 Mar 2012 14:59:04 -0500 |
parents | |
children | db4d025f7bd3 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/configure.ac Sat Mar 03 14:59:04 2012 -0500 @@ -0,0 +1,33 @@ +AC_INIT([email], [1.0]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_PROG_CC() +AC_PROG_LIBTOOL() +AC_CONFIG_MACRO_DIR([m4]) + +if test [$prefix = "NONE"]; then + prefix=/usr/local +fi + +if test [-z $URWEB_LIB]; then + URWEB_LIB=$prefix/lib/urweb +fi + +if test [-z $URWEB_INC]; then + URWEB_INC=$prefix/include/urweb +fi + +AC_SUBST(URWEB_LIB) +AC_SUBST(URWEB_INC) + +AC_CONFIG_FILES([ + Makefile +]) + +AC_OUTPUT() + +cat <<EOF + +Ur/Web e-mail library configuration: + Ur/Web lib: URWEB_LIB $URWEB_LIB + Ur/Web include: URWEB_INC $URWEB_INC +EOF