summaryrefslogtreecommitdiffstats
path: root/Doc/copyright.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/copyright.rst')
0 files changed, 0 insertions, 0 deletions
n value='bug_3024359'>bug_3024359 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-04-01 14:52:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-04-01 14:52:08 (GMT)
commit81999e05543a471cc0a666354120aa83c2bcc7f4 (patch)
tree1581863b5eab6e0aa91f63f0d115883579fd3664
parent0726ae90dbb3936ca4f841850bf791bc9a9b07ab (diff)
downloadtcl-81999e05543a471cc0a666354120aa83c2bcc7f4.zip
tcl-81999e05543a471cc0a666354120aa83c2bcc7f4.tar.gz
tcl-81999e05543a471cc0a666354120aa83c2bcc7f4.tar.bz2
Add -Wall -Wextra -Wc++-compat -Wconversion -Werror to CFLAGS in unix/dltest/Makefile.in, and minimal changes to make it work warning-free. Fix indenting
Diffstat
-rw-r--r--unix/dltest/Makefile.in2
-rw-r--r--unix/dltest/pkga.c2
-rw-r--r--unix/dltest/pkgb.c2
-rw-r--r--unix/dltest/pkgooa.c9
-rw-r--r--unix/dltest/pkgt.c12
-rw-r--r--unix/dltest/pkgua.c2
6 files changed, 23 insertions, 6 deletions
diff --git a/unix/dltest/Makefile.in b/unix/dltest/Makefile.in
index a99fd0b..b1b483b 100644
--- a/unix/dltest/Makefile.in
+++ b/unix/dltest/Makefile.in
@@ -17,7 +17,7 @@ TCL_VERSION= @TCL_VERSION@
CFLAGS_DEBUG = @CFLAGS_DEBUG@
CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
-CFLAGS = @CFLAGS_DEFAULT@ @CFLAGS@ -DTCL_NO_DEPRECATED=1
+CFLAGS = @CFLAGS_DEFAULT@ @CFLAGS@ -DTCL_NO_DEPRECATED=1 -Wall -Wextra -Wc++-compat -Wconversion -Werror
LDFLAGS_DEBUG = @LDFLAGS_DEBUG@
LDFLAGS_OPTIMIZE = @LDFLAGS_OPTIMIZE@
LDFLAGS = @LDFLAGS_DEFAULT@ @LDFLAGS@
diff --git a/unix/dltest/pkga.c b/unix/dltest/pkga.c