source: rtems/doc/configure.in @ 0f90482

4.104.114.84.95
Last change on this file since 0f90482 was 0f90482, checked in by Joel Sherrill <joel.sherrill@…>, on 05/08/00 at 19:44:25

Updated.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ(2.13)
4
5AC_INIT(project.am)
6
7AM_INIT_AUTOMAKE(rtemsdoc,4.5.0-beta3,no)
8
9RTEMS_VERSION="$VERSION"
10AC_SUBST(RTEMS_VERSION)
11
12RTEMS_RELEASE="4.5.0-beta3"
13AC_SUBST(RTEMS_RELEASE)
14
15RTEMS_UPDATE_DATE="May 8 2000"
16AC_SUBST(RTEMS_UPDATE_DATE)
17
18RTEMS_UPDATE_MONTH="May 2000"
19AC_SUBST(RTEMS_UPDATE_MONTH)
20
21AC_ARG_ENABLE(html,
22[  --disable-html           disable html support ],
23[case $enableval in
24yes) ;;
25no) ;;
26*) AC_MSG_ERROR("invalid value");;
27esac],
28[enable_html="yes"]
29)
30
31AC_ARG_ENABLE(dvi,
32[  --disable-dvi           disable dvi support ],
33[case $enableval in
34yes) ;;
35no) ;;
36*) AC_MSG_ERROR("invalid value");;
37esac],
38[enable_dvi="yes"]
39)
40
41AC_ARG_ENABLE(pdf,
42[  --disable-pdf           disable pdf support ],
43[case $enableval in
44yes) ;;
45no) ;;
46*) AC_MSG_ERROR("invalid value");;
47esac],
48[enable_pdf="yes"]
49)
50
51AC_ARG_ENABLE(ps,
52[  --disable-ps            disable ps support ],
53[case $enableval in
54yes) ;;
55no) ;;
56*) AC_MSG_ERROR("invalid value");;
57esac],
58[enable_ps="yes"]
59)
60
61htmldir='$(pkgdatadir)/html'
62AC_SUBST(htmldir)
63
64dnl Checks for programs.
65AC_PROG_LN_S
66
67AC_CHECK_PROGS(PERL,perl)
68
69TEXI2WWW='$(PERL) $(top_srcdir)/tools/texi2www/texi2www'
70AC_SUBST(TEXI2WWW)
71
72AC_CHECK_PROGS(GS,gs)
73AM_CONDITIONAL(GS,test x"$GS" != x"")
74
75# TEXI2DVI='$(PERL) $(top_srcdir)/tools/texi2www/texi2dvi'
76AC_CHECK_PROGS(TEXI2DVI,texi2dvi)
77AM_CONDITIONAL(TEXI2DVI,test x"$TEXI2DVI" != x"")
78
79if test "$enable_pdf" = "yes"; then
80  AC_CHECK_PROGS(EPSTOPDF,epstopdf)
81  AM_CONDITIONAL(EPSTOPDF,test x"$EPSTOPDF" != x"")
82
83  AC_CHECK_PROGS(TEXI2PDF,texi2pdf)
84  AM_CONDITIONAL(TEXI2PDF,test x"$TEXI2PDF" != x"")
85fi
86
87AM_CONDITIONAL(USE_HTML,
88  test "$enable_html" = "yes"  \
89     && test x"PERL" != x"" )
90
91AM_CONDITIONAL(USE_DVI,
92  test "$enable_dvi" = "yes" \
93    && test x"$TEXI2DVI" != x"" )
94
95AM_CONDITIONAL(USE_PS,
96  test "$enable_ps" = "yes" \
97    && test x"$TEXI2DVI" != x"" )
98
99AM_CONDITIONAL(USE_PDF,
100  test "$enable_pdf" = "yes" \
101    && test x"$TEXI2DVI" != x"" \
102    && test x"$TEXI2PDF" != x"" )
103
104AM_CONDITIONAL(USE_EXP, test x=y )
105
106BMENU='$(top_builddir)/tools/bmenu/bmenu'
107AC_SUBST(BMENU)
108BMENU2='$(top_builddir)/tools/bmenu/bmenu2'
109AC_SUBST(BMENU2)
110
111dnl Checks for libraries.
112
113dnl Checks for header files.
114
115dnl Checks for typedefs, structures, and compiler characteristics.
116
117dnl Checks for library functions.
118
119AC_CONFIG_SUBDIRS(tools)
120
121AC_OUTPUT(
122Makefile
123rtems_header.html
124rtems_footer.html
125rtems_support.html
126index.html
127images/Makefile
128common/Makefile
129common/setup.texi
130FAQ/Makefile
131develenv/Makefile
132user/Makefile
133bsp_howto/Makefile
134started/Makefile
135started/pictures/Makefile
136porting/Makefile
137networking/Makefile
138posix_users/Makefile
139posix1003.1/Makefile
140filesystem/Makefile
141itron3.0/Makefile
142ada_user/Makefile
143started_ada/Makefile
144rtems_gdb/Makefile
145rgdb_specs/Makefile
146relnotes/Makefile
147new_chapters/Makefile
148supplements/Makefile
149supplements/hppa1_1/Makefile
150supplements/i386/Makefile
151supplements/i960/Makefile
152supplements/m68k/Makefile
153supplements/mips64orion/Makefile
154supplements/powerpc/Makefile
155supplements/sh/Makefile
156supplements/sparc/Makefile
157supplements/template/Makefile
158gnu_docs/Makefile
159src2html/Makefile
160)
Note: See TracBrowser for help on using the repository browser.