comparison configure.in @ 6122:f3322fd3c9bb

[project @ 2006-10-28 13:56:55 by jwe]
author jwe
date Sat, 28 Oct 2006 13:56:55 +0000
parents 483176585b84
children e0065af38cf4
comparison
equal deleted inserted replaced
6121:483176585b84 6122:f3322fd3c9bb
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.540 $) 32 AC_REVISION($Revision: 1.541 $)
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
1823 1823
1824 #if !defined(HAVE_SIG_ATOMIC_T) 1824 #if !defined(HAVE_SIG_ATOMIC_T)
1825 typedef int sig_atomic_t; 1825 typedef int sig_atomic_t;
1826 #endif 1826 #endif
1827 1827
1828 #if defined (_MSC_VER)
1829 #define __WIN32__
1830 /* missing parameters in macros */
1831 #pragma warning (disable: 4003)
1832 /* missing implementations in template instantiation */
1833 #pragma warning (disable: 4996)
1834 /* deprecated function names (FIXME?) */
1835 #pragma warning (disable: 4661)
1836 #endif
1837
1828 #if defined (__WIN32__) && ! defined (__CYGWIN__) 1838 #if defined (__WIN32__) && ! defined (__CYGWIN__)
1829 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1 1839 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1
1830 #elif defined (__CYGWIN__) 1840 #elif defined (__CYGWIN__)
1831 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1 1841 #define OCTAVE_HAVE_WINDOWS_FILESYSTEM 1
1832 #define OCTAVE_HAVE_POSIX_FILESYSTEM 1 1842 #define OCTAVE_HAVE_POSIX_FILESYSTEM 1
1884 1894
1885 #ifdef USE_64_BIT_IDX_T 1895 #ifdef USE_64_BIT_IDX_T
1886 #define SIZEOF_OCTAVE_IDX_TYPE 8 1896 #define SIZEOF_OCTAVE_IDX_TYPE 8
1887 #else 1897 #else
1888 #define SIZEOF_OCTAVE_IDX_TYPE SIZEOF_INT 1898 #define SIZEOF_OCTAVE_IDX_TYPE SIZEOF_INT
1889 #endif
1890
1891 #if defined (_MSC_VER)
1892 #define __WIN32__
1893 /* missing parameters in macros */
1894 #pragma warning (disable: 4003)
1895 /* missing implementations in template instantiation */
1896 #pragma warning (disable: 4996)
1897 /* deprecated function names (FIXME?) */
1898 #pragma warning (disable: 4661)
1899 #endif 1899 #endif
1900 1900
1901 #include "oct-dlldefs.h" 1901 #include "oct-dlldefs.h"
1902 #include "oct-types.h" 1902 #include "oct-types.h"
1903 ]) 1903 ])