blob: f8bcb66287422bca121c42b6cc7b5fcd21ffafa5 [file] [log] [blame]
Steve Kondikae271bc2015-11-15 02:50:53 +01001/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020 Thomas E. Dickey *
3 * Copyright 2005-2017,2018 Free Software Foundation, Inc. *
Steve Kondikae271bc2015-11-15 02:50:53 +01004 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Thomas E. Dickey <dickey@clark.net> 1997 *
32 ****************************************************************************/
33/*
micky3879b9f5e72025-07-08 18:04:53 -040034 * $Id: ncurses_cfg.hin,v 1.11 2020/02/02 23:34:34 tom Exp $
Steve Kondikae271bc2015-11-15 02:50:53 +010035 *
36 * This is a template-file used to generate the "ncurses_cfg.h" file.
37 *
38 * Rather than list every definition, the configuration script substitutes the
39 * definitions that it finds using 'sed'. You need a patch (original date
40 * 971222) to autoconf 2.12 or 2.13 to do this.
41 *
42 * See:
micky3879b9f5e72025-07-08 18:04:53 -040043 * https://invisible-island.net/autoconf/
44 * ftp://ftp.invisible-island.net/autoconf/
Steve Kondikae271bc2015-11-15 02:50:53 +010045 */
46#ifndef NC_CONFIG_H
47#define NC_CONFIG_H
48@DEFS@
49
50#include <ncurses_def.h>
51
52 /* The C compiler may not treat these properly but C++ has to */
53#ifdef __cplusplus
54#undef const
55#undef inline
56#else
57#if defined(lint) || defined(TRACE)
58#undef inline
59#define inline /* nothing */
60#endif
61#endif
62
63 /* On HP-UX, the C compiler doesn't grok mbstate_t without
64 -D_XOPEN_SOURCE=500. However, this causes problems on
65 IRIX. So, we #define mbstate_t to int in configure.in
66 only for the C compiler if needed. */
67#ifndef __cplusplus
68#ifdef NEED_MBSTATE_T_DEF
69#define mbstate_t int
70#endif
71#endif
72
73#endif /* NC_CONFIG_H */