]> git.pld-linux.org Git - projects/rc-scripts.git/blame - configure.in
Synced with latest from old repo
[projects/rc-scripts.git] / configure.in
CommitLineData
7e04fe0e 1AC_INIT()
2
3PACKAGE=rc-scripts
4VERSION=0.0.5
5
6AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
7
8dnl Checks for programs.
9AC_PROG_CC
10AC_ISC_POSIX
11AC_PROG_INSTALL
12AC_PROG_LN_S
13AC_PROG_MAKE_SET
14
15pppdir='${sysconfdir}/ppp'
16networkscriptsdir='${sbindir}/network-scripts'
17sysconfigdir='${sysconfdir}/sysconfig'
18rcdir='${sysconfdir}/rc.d'
19docdir="${prefix}/doc/$PACKAGE-$VERSION"
20libdir="${prefix}/lib"
21
22AC_SUBST(pppdir)
23AC_SUBST(networkscriptsdir)
24AC_SUBST(sysconfigdir)
25AC_SUBST(rcdir)
26AC_SUBST(docdir)
27AC_SUBST(libdir)
28
29AC_OUTPUT(Makefile src/Makefile doc/Makefile \
30 ppp/Makefile ppp/ip-up.d/Makefile ppp/ip-down.d/Makefile \
31 sysconfig/Makefile \
32 sysconfig/network-scripts/Makefile \
33 rc.d/Makefile rc.d/init.d/Makefile
34 rc-scripts.spec)
This page took 0.032673 seconds and 4 git commands to generate.