Mercurial > email
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:33bf7ee17644 |
---|---|
1 AC_INIT([email], [1.0]) | |
2 AM_INIT_AUTOMAKE([-Wall -Werror foreign]) | |
3 AC_PROG_CC() | |
4 AC_PROG_LIBTOOL() | |
5 AC_CONFIG_MACRO_DIR([m4]) | |
6 | |
7 if test [$prefix = "NONE"]; then | |
8 prefix=/usr/local | |
9 fi | |
10 | |
11 if test [-z $URWEB_LIB]; then | |
12 URWEB_LIB=$prefix/lib/urweb | |
13 fi | |
14 | |
15 if test [-z $URWEB_INC]; then | |
16 URWEB_INC=$prefix/include/urweb | |
17 fi | |
18 | |
19 AC_SUBST(URWEB_LIB) | |
20 AC_SUBST(URWEB_INC) | |
21 | |
22 AC_CONFIG_FILES([ | |
23 Makefile | |
24 ]) | |
25 | |
26 AC_OUTPUT() | |
27 | |
28 cat <<EOF | |
29 | |
30 Ur/Web e-mail library configuration: | |
31 Ur/Web lib: URWEB_LIB $URWEB_LIB | |
32 Ur/Web include: URWEB_INC $URWEB_INC | |
33 EOF |