source: projects/install-guide/branches/6.x/configure.ac @ 2759

Revision 2759, 1021 bytes checked in by yasumichi, 13 years ago (diff)

ファイル名変更

Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([vine-install-guide], [5.9], [http://vinelinux.org/bts.html])
6AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar])
7
8# Checks for programs.
9PKG_CHECK_EXISTS([vine-manual-base], , AC_MSG_ERROR([Cannot find vine-manual-base.]))
10
11# Checks for libraries.
12
13# Checks for header files.
14
15# Checks for typedefs, structures, and compiler characteristics.
16
17# Checks for library functions.
18
19# Define variables
20if test "x${prefix}" = "xNONE"; then
21        prefix=${ac_default_prefix}
22fi
23OMFDIR=`eval echo ${datadir}/omf/vine-install-guide`
24AC_SUBST(OMFDIR)
25
26VMDIR=`pkg-config --variable=manualdir vine-manual-base`
27AC_SUBST(VMDIR)
28
29CSSFILE=`pkg-config --variable=cssfile vine-manual-base`
30AC_SUBST(CSSFILE)
31
32AC_CONFIG_FILES([
33        Makefile
34        vine-install-guide.spec
35        help/Makefile
36        help/vine-install-guide-ja.omf
37        help/figures/Makefile
38        help/figures/textmode/Makefile
39])
40
41AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.