File: config.h.in

package info (click to toggle)
yorick-yeti 6.3.1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,852 kB
  • ctags: 1,759
  • sloc: ansic: 16,523; makefile: 351
file content (101 lines) | stat: -rw-r--r-- 4,060 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 * config.h -
 *
 * Configuration settings for compiling Yeti and others Yorick extensions.
 *
 *-----------------------------------------------------------------------------
 *
 * Copyright (C) 1996-2010 Eric Thibaut <thiebaut@obs.univ-lyon1.fr>
 *
 * This software is governed by the CeCILL-C license under French law and
 * abiding by the rules of distribution of free software.  You can use, modify
 * and/or redistribute the software under the terms of the CeCILL-C license as
 * circulated by CEA, CNRS and INRIA at the following URL
 * "http://www.cecill.info".
 *
 * As a counterpart to the access to the source code and rights to copy,
 * modify and redistribute granted by the license, users are provided only
 * with a limited warranty and the software's author, the holder of the
 * economic rights, and the successive licensors have only limited liability.
 *
 * In this respect, the user's attention is drawn to the risks associated with
 * loading, using, modifying and/or developing or reproducing the software by
 * the user in light of its specific status of free software, that may mean
 * that it is complicated to manipulate, and that also therefore means that it
 * is reserved for developers and experienced professionals having in-depth
 * computer knowledge. Users are therefore encouraged to load and test the
 * software's suitability as regards their requirements in conditions enabling
 * the security of their systems and/or data to be ensured and, more
 * generally, to use and operate it in the same conditions as regards
 * security.
 *
 * The fact that you are presently reading this means that you have had
 * knowledge of the CeCILL-C license and that you accept its terms.
 *
 *-----------------------------------------------------------------------------
 *
 * $Id$
 * $Log$
 */

#ifndef _YETI_CONFIG_H
#define _YETI_CONFIG_H 1

/*---------------------------------------------------------------------------*/
/* Yorick version numbers: */
#define YORICK_VERSION_MAJOR x
#define YORICK_VERSION_MINOR x
#define YORICK_VERSION_MICRO x
#define YORICK_VERSION_SUFFIX ""

/* Yeti version numbers: */
#define YETI_VERSION_MAJOR x
#define YETI_VERSION_MINOR x
#define YETI_VERSION_MICRO x
#define YETI_VERSION_SUFFIX ""

/* Define the following macro to true if Yorick does not export
   the definitions of autoload_t structure: */
#define YETI_MUST_DEFINE_AUTOLOAD_TYPE x

/*---------------------------------------------------------------------------*/
/* Byte order (+1 for big endian, -1 for little endian). */
#define YETI_BYTE_ORDER x

/* Size (in bytes) of basic C-types. */
#define YETI_CHAR_SIZE x
#define YETI_SHORT_SIZE x
#define YETI_INT_SIZE x
#define YETI_LONG_SIZE x
#define YETI_FLOAT_SIZE x
#define YETI_DOUBLE_SIZE x
#define YETI_POINTER_SIZE x

/*---------------------------------------------------------------------------*/
/* Unfortunately the code interface to Yorick change with the version and
   none of the Yorick headers provide this information.  The following
   defintions attempt to provide a more uniform interface. */

#undef p_strfree
#if (YORICK_VERSION_MAJOR == 1 && YORICK_VERSION_MINOR == 4)
# include "defstr.h"
# define p_malloc   Ymalloc  /* usage: p_malloc(SIZE)        */
# define p_realloc  Yrealloc /* usage: p_realloc(ADDR, SIZE) */
# define p_free     Yfree    /* usage: p_free(ADDR)          */
# define p_strcpy   StrCpy   /* usage: p_strcpy(STR) -- also see yeti_strcpy */
# define p_strfree  StrFree  /* usage: p_strfree(STR) */
# define p_stralloc StrAlloc /* usage: p_stralloc(LEN) */
#endif /* Yorick 1.4 */

#if ((YORICK_VERSION_MAJOR == 1 && YORICK_VERSION_MINOR >= 5) || YORICK_VERSION_MAJOR >= 2)
# include "pstdlib.h"
# define p_strfree       p_free            /* usage: p_strfree(STR) */
# define p_stralloc(LEN) p_malloc((LEN)+1) /* usage: p_stralloc(LEN) */
#endif /* Yorick 1.5 and newer */

#ifndef p_stralloc
# error "unsupported Yorick version"
#endif

/*---------------------------------------------------------------------------*/
#endif /* _YETI_CONFIG_H */