Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | * Copyright (c) 1998-2009,2014 Free Software Foundation, Inc. * |
| 3 | * * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a * |
| 5 | * copy of this software and associated documentation files (the * |
| 6 | * "Software"), to deal in the Software without restriction, including * |
| 7 | * without limitation the rights to use, copy, modify, merge, publish, * |
| 8 | * distribute, distribute with modifications, sublicense, and/or sell * |
| 9 | * copies of the Software, and to permit persons to whom the Software is * |
| 10 | * furnished to do so, subject to the following conditions: * |
| 11 | * * |
| 12 | * The above copyright notice and this permission notice shall be included * |
| 13 | * in all copies or substantial portions of the Software. * |
| 14 | * * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * |
| 16 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * |
| 17 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * |
| 18 | * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * |
| 19 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * |
| 20 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * |
| 21 | * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * |
| 22 | * * |
| 23 | * Except as contained in this notice, the name(s) of the above copyright * |
| 24 | * holders shall not be used in advertising or otherwise to promote the * |
| 25 | * sale, use or other dealings in this Software without prior written * |
| 26 | * authorization. * |
| 27 | ****************************************************************************/ |
| 28 | /* $Id: ncurses_dll.h.in,v 1.9 2014/08/02 21:30:20 tom Exp $ */ |
| 29 | |
| 30 | #ifndef NCURSES_DLL_H_incl |
| 31 | #define NCURSES_DLL_H_incl 1 |
| 32 | |
| 33 | /* 2014-08-02 workaround for broken MinGW compiler. |
| 34 | * Oddly, only TRACE is mapped to trace - the other -D's are okay. |
| 35 | * suggest TDM as an alternative. |
| 36 | */ |
| 37 | #if defined(__MINGW64__) |
| 38 | #elif defined(__MINGW32__) |
| 39 | #if (__GNUC__ == 4) && (__GNUC_MINOR__ == 8) |
| 40 | |
| 41 | #ifdef trace |
| 42 | #undef trace |
| 43 | #define TRACE |
| 44 | #endif |
| 45 | |
| 46 | #endif /* broken compiler */ |
| 47 | #endif /* MingW */ |
| 48 | |
| 49 | /* |
| 50 | * For reentrant code, we map the various global variables into SCREEN by |
| 51 | * using functions to access them. |
| 52 | */ |
| 53 | #define NCURSES_PUBLIC_VAR(name) @NCURSES_WRAP_PREFIX@##name |
| 54 | #define NCURSES_WRAPPED_VAR(type,name) extern type NCURSES_PUBLIC_VAR(name)(void) |
| 55 | |
| 56 | /* no longer needed on cygwin or mingw, thanks to auto-import */ |
| 57 | /* but this structure may be useful at some point for an MSVC build */ |
| 58 | /* so, for now unconditionally define the important flags */ |
| 59 | /* "the right way" for proper static and dll+auto-import behavior */ |
| 60 | #undef NCURSES_DLL |
| 61 | #define NCURSES_STATIC |
| 62 | |
| 63 | #if defined(__CYGWIN__) || defined(__MINGW32__) |
| 64 | # if defined(NCURSES_DLL) |
| 65 | # if defined(NCURSES_STATIC) |
| 66 | # undef NCURSES_STATIC |
| 67 | # endif |
| 68 | # endif |
| 69 | # undef NCURSES_IMPEXP |
| 70 | # undef NCURSES_API |
| 71 | # undef NCURSES_EXPORT |
| 72 | # undef NCURSES_EXPORT_VAR |
| 73 | # if defined(NCURSES_DLL) |
| 74 | /* building a DLL */ |
| 75 | # define NCURSES_IMPEXP __declspec(dllexport) |
| 76 | # elif defined(NCURSES_STATIC) |
| 77 | /* building or linking to a static library */ |
| 78 | # define NCURSES_IMPEXP /* nothing */ |
| 79 | # else |
| 80 | /* linking to the DLL */ |
| 81 | # define NCURSES_IMPEXP __declspec(dllimport) |
| 82 | # endif |
| 83 | # define NCURSES_API __cdecl |
| 84 | # define NCURSES_EXPORT(type) NCURSES_IMPEXP type NCURSES_API |
| 85 | # define NCURSES_EXPORT_VAR(type) NCURSES_IMPEXP type |
| 86 | #endif |
| 87 | |
| 88 | /* Take care of non-cygwin platforms */ |
| 89 | #if !defined(NCURSES_IMPEXP) |
| 90 | # define NCURSES_IMPEXP /* nothing */ |
| 91 | #endif |
| 92 | #if !defined(NCURSES_API) |
| 93 | # define NCURSES_API /* nothing */ |
| 94 | #endif |
| 95 | #if !defined(NCURSES_EXPORT) |
| 96 | # define NCURSES_EXPORT(type) NCURSES_IMPEXP type NCURSES_API |
| 97 | #endif |
| 98 | #if !defined(NCURSES_EXPORT_VAR) |
| 99 | # define NCURSES_EXPORT_VAR(type) NCURSES_IMPEXP type |
| 100 | #endif |
| 101 | |
| 102 | #endif /* NCURSES_DLL_H_incl */ |