summaryrefslogtreecommitdiffstats
path: root/generic/tkPkgConfig.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-08 16:31:56 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-08 16:31:56 (GMT)
commitbba29232bacb6df449d528b4c7837015d66eb921 (patch)
tree196a25f82b1d4811b2422e2f8a45398307bcfd03 /generic/tkPkgConfig.c
parent95ec478b57365be2833d438a08083c164897cf9d (diff)
downloadtk-bba29232bacb6df449d528b4c7837015d66eb921.zip
tk-bba29232bacb6df449d528b4c7837015d66eb921.tar.gz
tk-bba29232bacb6df449d528b4c7837015d66eb921.tar.bz2
Remove some dead code
Diffstat (limited to 'generic/tkPkgConfig.c')
-rw-r--r--generic/tkPkgConfig.c49
1 files changed, 1 insertions, 48 deletions
diff --git a/generic/tkPkgConfig.c b/generic/tkPkgConfig.c
index 2c32a18..44c5e5e 100644
--- a/generic/tkPkgConfig.c
+++ b/generic/tkPkgConfig.c
@@ -14,20 +14,9 @@
/* Note, the definitions in this module are influenced by the following C
* preprocessor macros:
*
- * OSCMa = shortcut for "old style configuration macro activates"
- * NSCMdt = shortcut for "new style configuration macro declares that"
- *
- * - TCL_THREADS OSCMa compilation as threaded.
- * - TCL_MEM_DEBUG OSCMa memory debugging.
- *
- * - TCL_CFG_DO64BIT NSCMdt tk is compiled for a 64bit system.
- * - NDEBUG NSCMdt tk is compiled with symbol info off.
- * - TCL_CFG_OPTIMIZED NSCMdt tk is compiled with cc optimizations on
- * - TCL_CFG_PROFILED NSCMdt tk is compiled with profiling info.
- *
* - _WIN32 || __CYGWIN__ The value for the fontsytem key will be
* MAC_OSX_TK chosen based on these macros/defines.
- * HAVE_XFT NSCMdt xft font support was requested.
+ * HAVE_XFT declares that xft font support was requested.
*
* - CFG_RUNTIME_* Paths to various stuff at runtime.
* - CFG_INSTALL_* Paths to various stuff at installation time.
@@ -48,42 +37,6 @@
* configuration information.
*/
-#ifdef TCL_THREADS
-# define CFG_THREADED "1"
-#else
-# define CFG_THREADED "0"
-#endif
-
-#ifdef TCL_MEM_DEBUG
-# define CFG_MEMDEBUG "1"
-#else
-# define CFG_MEMDEBUG "0"
-#endif
-
-#ifdef TCL_CFG_DO64BIT
-# define CFG_64 "1"
-#else
-# define CFG_64 "0"
-#endif
-
-#ifndef NDEBUG
-# define CFG_DEBUG "1"
-#else
-# define CFG_DEBUG "0"
-#endif
-
-#ifdef TCL_CFG_OPTIMIZED
-# define CFG_OPTIMIZED "1"
-#else
-# define CFG_OPTIMIZED "0"
-#endif
-
-#ifdef TCL_CFG_PROFILED
-# define CFG_PROFILED "1"
-#else
-# define CFG_PROFILED "0"
-#endif
-
#if defined(_WIN32)
# define CFG_FONTSYSTEM "gdi"
#elif defined(MAC_OSX_TK)