]> git.lyx.org Git - lyx.git/blob - lib/configure.m4
Fix xforms home page URL; small bug in lib/configure when layout files are not readable
[lyx.git] / lib / configure.m4
1 #! /bin/sh
2 dnl Use 'make' to create configure from this m4 script.
3 # This script is a hand-made configure script. It contains a lot of
4 # code stolen from GNU autoconf. I removed all the code that was not
5 # useful for configuring a LyX installation.
6
7
8 dnl ######### Begin M4 macros #########################################
9 dnl This is a template for my stripped-down configure script.
10 dnl First, a few convenient macros.
11 changequote([,])dnl
12 dnl
13 dnl
14 dnl MSG_CHECKING(FEATURE-DESCRIPTION,PREFIX)
15 dnl
16 define(MSG_CHECKING,
17 [echo $ac_n "$2checking $1""... $ac_c"])dnl
18 dnl
19 dnl
20 dnl MSG_RESULT(RESULT-DESCRIPTION)
21 dnl
22 define(MSG_RESULT,
23 [echo "$ac_t""$1"])dnl
24 dnl
25 dnl
26 dnl SEARCH_PROG(FEATURE-DESCRIPTION,VARIABLE-NAME,PROGRAMS-LIST,
27 dnl             ACTION-IF-FOUND,ACTION-IF-NOT-FOUND)
28 dnl
29 define(SEARCH_PROG,[dnl
30 changequote([,])dnl
31 MSG_CHECKING($1)
32 MSG_RESULT(($3))
33 $2=
34 for ac_prog in $3
35 do
36 # Extract the first word of "$ac_prog", so it can be a program name with args.
37 set dummy $ac_prog ; ac_word=$[2]
38 if test -n "$ac_word"; then
39   MSG_CHECKING([for \"$ac_word\"],[+])
40   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
41   for ac_dir in $PATH; do
42     test -z "$ac_dir" && ac_dir=.
43     if test -x [$ac_dir/$ac_word]; then
44       $2="$ac_prog"
45       break
46     fi
47   done
48   IFS="$ac_save_ifs"
49
50   if test -n "[$]$2"; then
51     ac_result=yes
52   else
53     ac_result=no
54   fi
55   ifelse($4,,,[$4])
56   MSG_RESULT($ac_result)
57   test -n "[$]$2" && break
58 fi
59 done
60
61 if test -z "[$]$2" ; then
62   $2=none
63 ifelse($5,,,[  $5
64 ])dnl
65 fi
66 changequote(,)dnl
67 ])dnl
68 dnl
69 dnl
70 dnl PROVIDE_DEFAULT_FILE(FILE, DEFAULT-VALUE)
71 dnl
72 define(PROVIDE_DEFAULT_FILE,[dnl
73 # if $1 does not exist (because LaTeX did not run), 
74 # then provide a standard version.
75 if test ! -f $1 ; then
76   cat >$1 <<EOF
77 $2
78 EOF
79 fi])
80 changequote(,)dnl
81 dnl ######### End M4 macros #############################################
82
83
84 ####some configuration variables
85 lyx_check_config=yes
86 lyx_keep_temps=no
87 srcdir=
88
89 #### Parse the command line
90 for ac_option do
91   case "$ac_option" in
92     -help | --help | -h)
93       cat << EOF
94 Usage: configure [options] 
95 Options: 
96   --help                   show this help lines
97   --keep-temps             keep temporary files (for debug. purposes)
98   --without-latex-config   do not run LaTeX to determine configuration
99 EOF
100       exit 0;;
101     --without-latex-config)
102       lyx_check_config=no ;;
103     --keep-temps)
104       lyx_keep_temps=yes ;;
105   esac 
106 done
107
108
109 #### Checking for some echo oddities
110 if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
111   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
112   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
113     ac_n= ac_c='
114 ' ac_t='        '
115   else
116     ac_n=-n ac_c= ac_t=
117   fi
118 else
119   ac_n= ac_c='\c' ac_t=
120 fi
121
122
123 #### I do not really know why this is useful, but we might as well keep it.
124 # NLS nuisances.
125 # Only set these to C if already set.  These must not be set unconditionally
126 # because not all systems understand e.g. LANG=C (notably SCO).
127 # Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
128 # Non-C LC_CTYPE values break the ctype check.
129 if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
130 if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
131 if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
132 if test "${LC_CTYPE+set}"    = set; then LC_CTYPE=C;    export LC_CTYPE;    fi
133
134
135 #### Guess the directory in which configure is located.
136 changequote([,])dnl
137 ac_prog=[$]0
138 changequote(,)dnl
139 srcdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'` 
140 srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
141 test "x$srcdir" = "x$ac_prog" && srcdir=.
142 if test ! -r ${srcdir}/chkconfig.ltx ; then
143   echo "configure: error: cannot find chkconfig.ltx script"
144   exit 1
145 fi
146
147
148 #### Create the build directories if necessary
149 for dir in bind doc kbd layouts templates reLyX ; do
150   test ! -d $dir && mkdir $dir
151 done
152
153
154 #### Searching some useful programs
155 define(CHECKLATEX2E,[
156 ## Check whether this is really LaTeX2e
157 rm -f chklatex.ltx
158 cat >chklatex.ltx <<EOF
159 \\nonstopmode\\makeatletter
160 \\ifx\\undefined\\documentclass\\else
161   \\message{ThisIsLaTeX2e}
162 \\fi
163 \\@@end
164 EOF
165 if eval ${LATEX} chklatex.ltx </dev/null 2>/dev/null \
166                        | grep 'ThisIsLaTeX2e' >/dev/null; then
167   :
168 else
169   LATEX=
170   ac_result="not useable"
171 fi
172 rm -f chklatex.ltx chklatex.log])dnl
173 dnl
174 # Search LaTeX2e
175 SEARCH_PROG([for a LaTeX2e program],LATEX,latex latex2e,CHECKLATEX2E,dnl
176   [lyx_check_config=no])
177 if test x$lyx_check_config != x ; then
178 SEARCH_PROG([for the pdflatex program],PDFLATEX,pdflatex,CHECKLATEX2E)
179 fi
180
181 # Search for an installed reLyX or a ready-to-install one
182 save_PATH=${PATH}
183 PATH=${PATH}:./reLyX/
184 SEARCH_PROG([for reLyX LaTeX-to-LyX translator],RELYX,reLyX)
185 PATH=${save_PATH}
186
187 # Search something to process a literate document
188 SEARCH_PROG([for a Literate programming processor],LITERATE,"noweave -delay -index")
189 if test "$LITERATE" = "none"; then LITERATE_EXT="none"; else LITERATE_EXT=".nw"; fi
190
191 # Search for a Postscript interpreter
192 SEARCH_PROG([for a Postscript interpreter],GS, gs)
193
194 # Search something to preview postscript
195 SEARCH_PROG([for a Postscript previewer],GHOSTVIEW,gv ghostview)
196
197 # Search for a program to preview pdf
198 SEARCH_PROG([for a PDF preview],PDFVIEWER,xpdf acroread gv ghostview)
199
200 # Search for a program to convert pdf to ps
201 SEARCH_PROG([for a PDF to PS converter],PDFPS,pdf2ps pdftops)
202
203 # Search for a program to convert dvi to ps
204 SEARCH_PROG([for a DVI to PS converter],DVIPS,dvips)
205
206 # Search a *roff program (used to translate tables in ASCII export)
207 SEARCH_PROG([for a *roff formatter],ROFF,groff nroff)
208 ascii_roff_command=$ROFF
209 test $ROFF = "groff" && ascii_roff_command="groff -t -Tlatin1 \$\$FName"
210 test $ROFF = "nroff" && ascii_roff_command="tbl \$\$FName | nroff"
211
212 # Search the ChkTeX program
213 SEARCH_PROG([for ChkTeX],CHKTEX,chktex)
214 chktex_command=$CHKTEX
215 test $CHKTEX = "chktex" && chktex_command="$CHKTEX -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38"
216
217 # Search for a spellchecker
218 SEARCH_PROG([for a spell-checker], SPELL,ispell)
219
220 # Search a Fax handling program
221 SEARCH_PROG([for a fax driver], FAX, sendfax faxsend fax)
222 if test $FAX = sendfax ; then
223   fax_command="sendfax -n -h '\$\$Host' -c '\$\$Comment' -x '\$\$Enterprise' -d '\$\$Name'@'\$\$Phone' '\$\$FName'"
224 elif test $FAX = faxsend ; then
225   fax_command="faxsend '\$\$Phone' '\$\$FName'"
226 elif test $FAX = fax ; then
227   fax_command="fax send '\$\$Phone' '\$\$FName'"
228 else
229   fax_command="none"
230 fi
231
232 # Search for LinuxDoc support
233 SEARCH_PROG([for SGML-tools 1.x (LinuxDoc)], LINUXDOC, sgml2lyx)
234 chk_linuxdoc=no
235 if test $LINUXDOC != none; then
236   chk_linuxdoc=yes
237   linuxdoc_cmd="\\def\\haslinuxdoc{yes}"
238 fi
239
240 # Search for DocBook support
241 SEARCH_PROG([for SGML-tools 2.x (DocBook)], DOCBOOK, sgmltools)
242 chk_docbook=no
243 if test $DOCBOOK != none; then
244   chk_docbook=yes
245   docbook_cmd="\\def\\hasdocbook{yes}"
246 fi
247
248
249 # Search for a spool command
250 SEARCH_PROG([for a spool command], LPR, lp lpr)
251 case $LPR in
252   lp) print_spool_command=lp
253       print_spool_printerprefix="-d ";;
254  lpr) print_spool_command=lpr
255       print_spool_printerprefix="-P";;
256    *) :;; # leave to empty values
257 esac
258
259 # Search for a latex to html converter
260 SEARCH_PROG([for an HTML converter], TOHTML, tth latex2html hevea)
261 case $TOHTML in
262         tth) html_command="tth -t < '\$\$FName' > '\$\$OutName'";;
263  latex2html) html_command="latex2html -no_subdir -split 0 -show_section_numbers '\$\$FName'";;
264       hevea) html_command="hevea -s '\$\$FName'";;
265 esac
266
267 #### Explore the LaTeX configuration
268 MSG_CHECKING(LaTeX configuration)
269 # First, remove the files that we want to re-create
270 rm -f textclass.lst packages.lst chkconfig.sed
271 if test ${lyx_check_config} = no ; then
272   MSG_RESULT(default values)
273 else
274   MSG_RESULT(auto)
275   rm -f wrap_chkconfig.ltx chkconfig.vars chkconfig.classes chklayouts.tex
276   cat >wrap_chkconfig.ltx <<EOF
277 \\newcommand\\srcdir{${srcdir}}
278 ${linuxdoc_cmd}
279 ${docbook_cmd}
280 \\input{${srcdir}/chkconfig.ltx}
281 EOF
282   ## Construct the list of classes to test for.
283   # build the list of available layout files and convert it to commands 
284   # for chkconfig.ltx 
285   for file in ./layouts/*.layout ${srcdir}/layouts/*.layout ; do 
286     case $file in
287       */\*.layout) ;;
288       *) test -r "$file" && echo $file ;;
289     esac
290   done | sed -e 's%^.*layouts/\(.*\)\.layout$%\\TestDocClass{\1}%'\
291              > chklayouts.tex
292 changequote([,])dnl
293   [eval] ${LATEX} wrap_chkconfig.ltx 2>/dev/null | grep '^\+'
294   [eval] `cat chkconfig.vars | sed 's/-/_/g'`
295 changequote(,)dnl
296 fi
297
298 # Do we have all the files we need? Useful if latex did not run
299 changequote([,])dnl
300 echo creating textclass.lst 
301 PROVIDE_DEFAULT_FILE(textclass.lst,dnl
302 [# This file declares layouts and their associated definition files
303 # (include dir. relative to the place where this file is).
304 # It contains only default values, since chkconfig.ltx could not be run 
305 # for some reason. Run ./configure if you need to update it after a
306 # configuration change.  
307 article article article
308 report  report  report
309 book    book    book
310 linuxdoc        linuxdoc        linuxdoc
311 letter  letter  letter])
312
313 PROVIDE_DEFAULT_FILE(chkconfig.sed,[s/@.*@/???/g])
314
315 echo creating packages.lst
316 PROVIDE_DEFAULT_FILE(packages.lst,dnl
317 [# This file should contain the list of LaTeX packages that have been
318 # recognized by LyX. Unfortunately, since configure could not find
319 # your LaTeX2e program, the tests have not been run. Run ./configure
320 # if you need to update it after a configuration change.
321 ])
322 changequote(,)dnl
323
324 echo creating doc/LaTeXConfig.lyx
325 echo "s/@chk_linuxdoc@/$chk_linuxdoc/g" >> chkconfig.sed
326 echo "s/@chk_docbook@/$chk_docbook/g" >> chkconfig.sed
327 sed -f chkconfig.sed ${srcdir}/doc/LaTeXConfig.lyx.in >doc/LaTeXConfig.lyx
328
329 echo creating lyxrc.defaults
330 rm -f lyxrc.defaults
331 cat >lyxrc.defaults <<EOF
332 # This file has been automatically generated by LyX' lib/configure
333 # script. It contains default settings that have been determined by
334 # examining your system. PLEASE DO NOT MODIFY ANYTHING HERE! If you
335 # want to customize LyX, make a copy of the file LYXDIR/lyxrc as
336 # ~/.lyx/lyxrc and edit this file instead. Any setting in lyxrc will
337 # override the values given here.
338 \\latex_command "$LATEX"
339 \\pdflatex_command "$PDFLATEX"
340 \\view_pdf_command "$PDFVIEWER"
341 \\pdf_to_ps_command "$PDFPS"
342 \\dvi_to_ps_command "$DVIPS"
343 \\relyx_command "$RELYX"
344 \\literate_command "$LITERATE"
345 \\literate_extension "$LITERATE_EXT"
346 \\ps_command "$GS"
347 \\view_ps_command "$GHOSTVIEW -swap"
348 \\view_pspic_command "$GHOSTVIEW"
349 \\ascii_roff_command "$ascii_roff_command"
350 \\chktex_command "$chktex_command"
351 \\spell_command "$SPELL"
352 \\fax_command "$fax_command"
353 \\html_command "$html_command"
354 \\print_spool_command "$print_spool_command"
355 \\print_spool_printerprefix "$print_spool_printerprefix"
356 \\font_encoding "$chk_fontenc"
357 EOF
358
359 # Remove superfluous files if we are not writing in the main lib
360 # directory 
361 for file in lyxrc.defaults textclass.lst packages.lst \
362             doc/LaTeXConfig.lyx ; do
363   # we rename the file first, so that we avoid comparing a file with itself
364   mv $file $file.new
365   if test -r $srcdir/$file && diff $file.new $srcdir/$file >/dev/null 2>/dev/null ; 
366   then 
367     echo "removing $file, which is identical to the system global version"
368     rm -f $file.new
369   else
370     mv $file.new $file
371   fi
372 done
373
374
375 # Final clean-up
376 if test $lyx_keep_temps = no ; then
377 rm -f chkconfig.sed chkconfig.vars wrap_chkconfig.* chklayouts.tex \
378       missfont.log
379 fi