[BACK]Return to paricfg.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / pari-2.2 / Odos

Annotation of OpenXM_contrib/pari-2.2/Odos/paricfg.h, Revision 1.1.1.1

1.1       noro        1: /* This file extracted by Configure. */
                      2: #ifndef __CONFIG_H__
                      3: #define __CONFIG_H__
                      4: 
                      5: #ifdef _MSC_VER /* Bill Daly: avoid spurious Warnings from MSVC */
                      6: #  pragma warning(disable: 4013 4018 4146 4244 4761)
                      7: #endif
                      8: 
                      9: #define GPDATADIR "/pari/data"
                     10: #define GPMISCDIR "/pari/"
                     11: #define SHELL_Q '"'
                     12: #define DL_DFLT_NAME "libpari.dll"
                     13: 
                     14: #define PARIVERSION "GP/PARI CALCULATOR Version 2.2.1 (alpha)"
                     15: #ifdef __cplusplus
                     16: #  define PARIINFO_PRE "C++"
                     17: #else
                     18: #  define PARIINFO_PRE ""
                     19: #endif
                     20: #if defined(__EMX__)
                     21: #  define PARIINFO_POST "ix86 running EMX (ix86 kernel) 32-bit version"
                     22: #endif
                     23: #if defined(WINCE)
                     24: #  define PARIINFO_POST "Windows CE 32-bit version"
                     25: #endif
                     26: #if !defined(PARIINFO_POST)
                     27: #  define PARIINFO_POST "ix86 running Windows 3.2 (ix86 kernel) 32-bit version"
                     28: #endif
                     29: #define PARIINFO PARIINFO_PRE/**/PARIINFO_POST
                     30: 
                     31: #define PARI_BYTE_ORDER    1234
                     32: #ifdef _MSC_VER /* MSVC inline directive */
                     33: #  define INLINE __inline
                     34: #endif
                     35: 
                     36: /*  Location of GNU gzip program, enables reading of .Z and .gz files. */
                     37: #ifndef WINCE
                     38: #  define GNUZCAT
                     39: #  define ZCAT "gzip -d -c"
                     40: #endif
                     41: 
                     42: #ifdef __EMX__
                     43: #  define READLINE
                     44: #  define READLINE_LIBRARY
                     45: #  define HAS_RL_MESSAGE
                     46: #  define CPPFunction_defined
                     47: /* in readline 1, no arguments for rl_refresh_line() */
                     48: #  define RL_REFRESH_LINE_OLDPROTO
                     49: #endif
                     50: #ifdef __MINGW32__
                     51: #  define READLINE "4.0"
                     52: #  define HAS_COMPLETION_APPEND_CHAR
                     53: #  define HAS_RL_SAVE_PROMPT
                     54: #  define HAS_RL_MESSAGE
                     55: #  define CPPFunction_defined
                     56: #endif
                     57: 
                     58: /* No exp2, log2 in libc */
                     59: #define NOEXP2
                     60: 
                     61: /* Headers are clean - ulong not defined */
                     62: #define ULONG_NOT_DEFINED
                     63: 
                     64: #ifndef WINCE
                     65: /* Timings: Don't use times because of the HZ / CLK_TCK confusion. */
                     66: #  define USE_FTIME 1
                     67: #  define HAS_STRFTIME
 /* comment this one if not on NT ??? */
                     68: #  define HAS_OPENDIR
                     69: #endif
                     70: 
                     71: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>