]> gitweb @ CieloNegro.org - Rakka.git/blob - configure.ac
merge branch origin/master
[Rakka.git] / configure.ac
1 AC_INIT([Rakka], [], [pho at cielonegro dot org])
2
3 AC_CONFIG_SRCDIR([Rakka.cabal])
4
5
6 # $localstatedir has a reference to ${prefix} but the ${prefix} is
7 # "NONE" at this time. AC_OUTPUT changes the value of ${prefix} from
8 # "NONE" to $ac_default_prefix but it's too late!
9 if test "x$prefix" = "xNONE"; then
10    prefix=$ac_default_prefix
11 fi
12 if test "x$exec_prefix" = "xNONE"; then
13    exec_prefix="$prefix"
14 fi
15
16 RAKKA_LOCALSTATEDIR=`eval echo "$localstatedir"`/rakka
17 AC_SUBST([RAKKA_LOCALSTATEDIR])
18
19 RAKKA_BINDIR=`eval echo "$bindir"`
20 AC_SUBST([RAKKA_BINDIR])
21
22
23 AC_CONFIG_FILES([Rakka.buildinfo])
24 AC_CONFIG_FILES([rc.d/NetBSD/rakka], [chmod +x rc.d/NetBSD/rakka])
25 AC_OUTPUT
26