comparison configure.in @ 3888:70ebd3d672a1

[project @ 2002-04-04 01:05:53 by jwe]
author jwe
date Thu, 04 Apr 2002 01:05:53 +0000
parents 7da18459c08b
children 56db014d8980
comparison
equal deleted inserted replaced
3887:7da18459c08b 3888:70ebd3d672a1
20 ### along with Octave; see the file COPYING. If not, write to the Free 20 ### along with Octave; see the file COPYING. If not, write to the Free
21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 ### 02111-1307, USA. 22 ### 02111-1307, USA.
23 23
24 AC_INIT 24 AC_INIT
25 AC_REVISION($Revision: 1.353 $) 25 AC_REVISION($Revision: 1.354 $)
26 AC_PREREQ(2.52) 26 AC_PREREQ(2.52)
27 AC_CONFIG_SRCDIR([src/octave.cc]) 27 AC_CONFIG_SRCDIR([src/octave.cc])
28 AC_CONFIG_HEADER(config.h) 28 AC_CONFIG_HEADER(config.h)
29 29
30 AC_DEFINE(OCTAVE_SOURCE, 1, [Define if this is Octave.]) 30 AC_DEFINE(OCTAVE_SOURCE, 1, [Define if this is Octave.])
760 AC_CHECK_FUNCS(getpwnam, [], [AC_CHECK_LIB(sun, getpwnam)]) 760 AC_CHECK_FUNCS(getpwnam, [], [AC_CHECK_LIB(sun, getpwnam)])
761 761
762 ### How big are ints and how are they oriented? These could probably 762 ### How big are ints and how are they oriented? These could probably
763 ### be eliminated in favor of run-time checks. 763 ### be eliminated in favor of run-time checks.
764 764
765 AC_CHECK_SIZEOF(short, 2) 765 AC_CHECK_SIZEOF(short)
766 AC_CHECK_SIZEOF(int, 4) 766 AC_CHECK_SIZEOF(int)
767 AC_CHECK_SIZEOF(long, 4) 767 AC_CHECK_SIZEOF(long)
768 AC_CHECK_SIZEOF(long long, 8) 768 AC_CHECK_SIZEOF(long long)
769 769
770 ### Does the C compiler handle alloca() and const correctly? 770 ### Does the C compiler handle alloca() and const correctly?
771 771
772 AC_FUNC_ALLOCA([]) 772 AC_FUNC_ALLOCA([])
773 AC_C_CONST 773 AC_C_CONST