comparison configure.in @ 5934:8702f00329bf

[project @ 2006-08-17 20:29:51 by jwe]
author jwe
date Thu, 17 Aug 2006 20:31:14 +0000
parents e915287e3ef9
children d90d089a9d32
comparison
equal deleted inserted replaced
5933:1bcd9dd629c3 5934:8702f00329bf
27 27
28 EXTERN_CFLAGS="$CFLAGS" 28 EXTERN_CFLAGS="$CFLAGS"
29 EXTERN_CXXFLAGS="$CXXFLAGS" 29 EXTERN_CXXFLAGS="$CXXFLAGS"
30 30
31 AC_INIT 31 AC_INIT
32 AC_REVISION($Revision: 1.518 $) 32 AC_REVISION($Revision: 1.519 $)
33 AC_PREREQ(2.57) 33 AC_PREREQ(2.57)
34 AC_CONFIG_SRCDIR([src/octave.cc]) 34 AC_CONFIG_SRCDIR([src/octave.cc])
35 AC_CONFIG_HEADER(config.h) 35 AC_CONFIG_HEADER(config.h)
36 36
37 OCTAVE_HOST_TYPE 37 OCTAVE_HOST_TYPE
1529 1529
1530 OCTAVE_PROG_GNUPLOT 1530 OCTAVE_PROG_GNUPLOT
1531 OCTAVE_PROG_PAGER 1531 OCTAVE_PROG_PAGER
1532 OCTAVE_PROG_GPERF 1532 OCTAVE_PROG_GPERF
1533 1533
1534 OCTAVE_PROG_GHOSTSCRIPT
1535 OCTAVE_PROG_MAKEINFO
1536 OCTAVE_PROG_TEXI2DVI
1537 OCTAVE_PROG_TEXI2PDF
1538
1534 ### Even though we include config.h, we need to have the preprocessor 1539 ### Even though we include config.h, we need to have the preprocessor
1535 ### defines available in a variable for the octave-bug script. Use 1540 ### defines available in a variable for the octave-bug script. Use
1536 ### UGLY_DEFS for that. 1541 ### UGLY_DEFS for that.
1537 1542
1538 AC_OUTPUT_MAKE_DEFS 1543 AC_OUTPUT_MAKE_DEFS
1896 if test -n "$warn_zlib"; then 1901 if test -n "$warn_zlib"; then
1897 AC_MSG_WARN($warn_zlib) 1902 AC_MSG_WARN($warn_zlib)
1898 warn_msg_printed=true 1903 warn_msg_printed=true
1899 fi 1904 fi
1900 1905
1906 if test -n "$warn_ghostscript"; then
1907 AC_MSG_WARN($warn_ghostscript)
1908 warn_msg_printed=true
1909 fi
1910
1911 if test -n "$warn_makeinfo"; then
1912 AC_MSG_WARN($warn_makeinfo)
1913 warn_msg_printed=true
1914 fi
1915
1916 if test -n "$warn_texi2dvi"; then
1917 AC_MSG_WARN($warn_texi2dvi)
1918 warn_msg_printed=true
1919 fi
1920
1921 if test -n "$warn_texi2pdf"; then
1922 AC_MSG_WARN($warn_texi2pdf)
1923 warn_msg_printed=true
1924 fi
1925
1901 if test -n "$warn_64_bit"; then 1926 if test -n "$warn_64_bit"; then
1902 AC_MSG_WARN($warn_64_bit) 1927 AC_MSG_WARN($warn_64_bit)
1903 warn_msg_printed=true 1928 warn_msg_printed=true
1904 fi 1929 fi
1905 1930