summaryrefslogtreecommitdiff
path: root/support/dktools/wxcs.cpp
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
committerNorbert Preining <norbert@preining.info>2020-10-12 03:04:00 +0000
commit0ce40abb18ec02ec6fd6bcc5f21612c88daa7578 (patch)
tree416289fe1448873fd8ca33051f50ad85bffa8aaa /support/dktools/wxcs.cpp
parentfdb18507cd80dc17f5a5256153d34668b4f4e61c (diff)
CTAN sync 202010120303
Diffstat (limited to 'support/dktools/wxcs.cpp')
-rw-r--r--support/dktools/wxcs.cpp84
1 files changed, 0 insertions, 84 deletions
diff --git a/support/dktools/wxcs.cpp b/support/dktools/wxcs.cpp
deleted file mode 100644
index 29bc42a887..0000000000
--- a/support/dktools/wxcs.cpp
+++ /dev/null
@@ -1,84 +0,0 @@
-
-#include "dk4conf.h"
-#include <stdio.h>
-#if DK4_HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-#if DK4_HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-#if DK4_HAVE_PROCESS_H
-#include <process.h>
-#endif
-
-#if DK4_HAVE_WXWIDGETS
-
-/* wxWidgets_header_start */
-#if DK4_HAVE_WXWIDGETS
-#include <wx/wxprec.h>
-#ifdef __BORLANDC__
-#pragma hdrstop
-#endif
-#ifndef WX_PRECOMP
-#if DK4_HAVE_WX_CHARTYPE_H
-#if DK4_HAVE_WX_DEFS_H
-#ifndef WX_DEFS_H_INCLUDED
-#include <wx/defs.h>
-#define WX_DEFS_H_INCLUDED 1
-#endif
-#endif
-#ifndef WX_CHARTYPE_H_INCLUDED
-#include <wx/chartype.h>
-#define WX_CHARTYPE_H_INCLUDED 1
-#endif
-#else
-#if DK4_HAVE_WX_WXCHAR_H
-#if DK4_HAVE_WX_DEFS_H
-#ifndef WX_DEFS_H_INCLUDED
-#include <wx/defs.h>
-#define WX_DEFS_H_INCLUDED 1
-#endif
-#endif
-#ifndef WX_WXCHAR_H_INCLUDED
-#include <wx/wxchar.h>
-#define WX_WXCHAR_H_INCLUDED 1
-#endif
-#else
-#ifndef WX_WX_H_INCLUDED
-#include <wx/wx.h>
-#define WX_WX_H_INCLUDED 1
-#endif
-#endif
-#endif
-#endif
-#endif
-/* wxWidgets_header_end*/
-
-int main(void)
-{
- printf("/**\t@file\tdk4wxcs.h\tConfigure size of wide characters.\n*/\n\n");
- printf("#ifndef DK4WXCSZ_H_INCLUDED\n");
- printf("/** Protection against multiple inclusions. */\n");
- printf("#define DK4WXCSZ_H_INCLUDED 1\n\n");
- printf("/** Size of wxChar.\n*/\n");
- printf("#define DK4_SIZEOF_WXCHAR %u\n\n", (unsigned)sizeof(wxChar));
- printf("#endif\n");
- return 0;
-}
-
-#else
-
-int main(void)
-{
- printf("/**\t@file\tdk4wxcs.h\tConfigure size of wide characters.\n*/\n\n");
- printf("#ifndef DK4WXCSZ_H_INCLUDED\n");
- printf("/** Protection against multiple inclusions. */\n");
- printf("#define DK4WXCSZ_H_INCLUDED 1\n\n");
- printf("/** Size of wxChar.\n*/\n");
- printf("#define DK4_SIZEOF_WXCHAR 0\n\n");
- printf("#endif\n");
- return 0;
-}
-
-#endif
-