source: projects/vine-desktop-guide/trunk/configure.ac @ 2919

Revision 2919, 1.1 KB checked in by yasumichi, 13 years ago (diff)

omf のリンク先を修正

Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([vine-desktop-guide], [5.9.2], [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.]))
10PKG_CHECK_EXISTS([vine-manual-build], , AC_MSG_ERROR([Cannot find vine-manual-build.]))
11
12# Checks for libraries.
13
14# Checks for header files.
15
16# Checks for typedefs, structures, and compiler characteristics.
17
18# Checks for library functions.
19# Define variables
20if test "x${prefix}" = "xNONE"; then
21        prefix=${ac_default_prefix}
22fi
23OMFDIR=`eval echo ${datadir}/omf/vine-desktop-guide`
24AC_SUBST(OMFDIR)
25
26VMDIR=`pkg-config --variable=manualdir vine-manual-base`
27AC_SUBST(VMDIR)
28
29
30AC_CONFIG_FILES([Makefile
31                 vine-desktop-guide.spec
32                 help/Makefile
33                 help/vine-desktop-guide-ja.omf
34                 help/figures/Makefile
35                 help/figures/update-watch/Makefile])
36AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.