xref: /freebsd/contrib/ncurses/include/ncurses_cfg.hin (revision aae38d10b4eebf81c0942947e8b83a9bb8651d88)
10e3d5408SPeter Wemm/****************************************************************************
2*aae38d10SBaptiste Daroussin * Copyright (c) 1998-2016,2017 Free Software Foundation, Inc.              *
30e3d5408SPeter Wemm *                                                                          *
40e3d5408SPeter Wemm * Permission is hereby granted, free of charge, to any person obtaining a  *
50e3d5408SPeter Wemm * copy of this software and associated documentation files (the            *
60e3d5408SPeter Wemm * "Software"), to deal in the Software without restriction, including      *
70e3d5408SPeter Wemm * without limitation the rights to use, copy, modify, merge, publish,      *
80e3d5408SPeter Wemm * distribute, distribute with modifications, sublicense, and/or sell       *
90e3d5408SPeter Wemm * copies of the Software, and to permit persons to whom the Software is    *
100e3d5408SPeter Wemm * furnished to do so, subject to the following conditions:                 *
110e3d5408SPeter Wemm *                                                                          *
120e3d5408SPeter Wemm * The above copyright notice and this permission notice shall be included  *
130e3d5408SPeter Wemm * in all copies or substantial portions of the Software.                   *
140e3d5408SPeter Wemm *                                                                          *
150e3d5408SPeter Wemm * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
160e3d5408SPeter Wemm * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
170e3d5408SPeter Wemm * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
180e3d5408SPeter Wemm * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
190e3d5408SPeter Wemm * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
200e3d5408SPeter Wemm * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
210e3d5408SPeter Wemm * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
220e3d5408SPeter Wemm *                                                                          *
230e3d5408SPeter Wemm * Except as contained in this notice, the name(s) of the above copyright   *
240e3d5408SPeter Wemm * holders shall not be used in advertising or otherwise to promote the     *
250e3d5408SPeter Wemm * sale, use or other dealings in this Software without prior written       *
260e3d5408SPeter Wemm * authorization.                                                           *
270e3d5408SPeter Wemm ****************************************************************************/
280e3d5408SPeter Wemm
290e3d5408SPeter Wemm/****************************************************************************
30*aae38d10SBaptiste Daroussin *  Author: Thomas E. Dickey      1997-on                                   *
310e3d5408SPeter Wemm ****************************************************************************/
320e3d5408SPeter Wemm/*
33*aae38d10SBaptiste Daroussin * $Id: ncurses_cfg.hin,v 1.11 2017/12/09 20:41:54 tom Exp $
34*aae38d10SBaptiste Daroussin *
35*aae38d10SBaptiste Daroussin * Both ncurses_cfg.h and ncurses_def.h are internal header-files used when
36*aae38d10SBaptiste Daroussin * building ncurses.
370e3d5408SPeter Wemm *
380e3d5408SPeter Wemm * This is a template-file used to generate the "ncurses_cfg.h" file.
390e3d5408SPeter Wemm *
4018259542SPeter Wemm * Rather than list every definition, the configuration script substitutes the
4118259542SPeter Wemm * definitions that it finds using 'sed'.  You need a patch (original date
4218259542SPeter Wemm * 971222) to autoconf 2.12 or 2.13 to do this.
4318259542SPeter Wemm *
4418259542SPeter Wemm * See:
454a1a9510SRong-En Fan *	http://invisible-island.net/autoconf/
46*aae38d10SBaptiste Daroussin *	ftp://ftp.invisible-island.net/autoconf/
470e3d5408SPeter Wemm */
480e3d5408SPeter Wemm#ifndef NC_CONFIG_H
490e3d5408SPeter Wemm#define NC_CONFIG_H
500e3d5408SPeter Wemm@DEFS@
510e3d5408SPeter Wemm
5218259542SPeter Wemm#include <ncurses_def.h>
5318259542SPeter Wemm
540e3d5408SPeter Wemm	/* The C compiler may not treat these properly but C++ has to */
550e3d5408SPeter Wemm#ifdef __cplusplus
560e3d5408SPeter Wemm#undef const
570e3d5408SPeter Wemm#undef inline
580e3d5408SPeter Wemm#endif
590e3d5408SPeter Wemm
604a1a9510SRong-En Fan	/* On HP-UX, the C compiler doesn't grok mbstate_t without
614a1a9510SRong-En Fan	   -D_XOPEN_SOURCE=500. However, this causes problems on
624a1a9510SRong-En Fan	   IRIX. So, we #define mbstate_t to int in configure.in
634a1a9510SRong-En Fan	   only for the C compiler if needed. */
644a1a9510SRong-En Fan#ifndef __cplusplus
654a1a9510SRong-En Fan#ifdef NEED_MBSTATE_T_DEF
664a1a9510SRong-En Fan#define mbstate_t int
674a1a9510SRong-En Fan#endif
684a1a9510SRong-En Fan#endif
694a1a9510SRong-En Fan
70*aae38d10SBaptiste Daroussin/*
71*aae38d10SBaptiste Daroussin * vile:cmode
72*aae38d10SBaptiste Daroussin */
730e3d5408SPeter Wemm#endif /* NC_CONFIG_H */
74