summaryrefslogtreecommitdiff
path: root/development/opencomal/patches/README
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2017-12-11 20:03:09 +0000
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2017-12-16 07:32:03 +0700
commitc21cc4e428899d1db364beaff51fb26ae65d6708 (patch)
treef6997cc54b715657040594d11e56b1e114c0260c /development/opencomal/patches/README
parent2f57a1d6a53e01675e43d0583001bf414b96c5a7 (diff)
downloadslackbuilds-c21cc4e428899d1db364beaff51fb26ae65d6708.tar.gz
development/opencomal: Added (interpreter for Comal).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/opencomal/patches/README')
-rw-r--r--development/opencomal/patches/README23
1 files changed, 23 insertions, 0 deletions
diff --git a/development/opencomal/patches/README b/development/opencomal/patches/README
new file mode 100644
index 0000000000..834168aa38
--- /dev/null
+++ b/development/opencomal/patches/README
@@ -0,0 +1,23 @@
+opencomal needed a lot of patching to get it building & running on modern
+Slackware. All these patches are by the SlackBuild author.
+
+01-missing_includes.diff
+ #include <string.h>
+
+02-vsprintf.diff
+ bizarre non-standards-compliant handling of vsprintf() causes immediate
+ segfault on startup, when it tries to print the banner.
+
+03-fix_auto_segfault.diff
+ missing NULL check, causes segfault in 'auto' mode when a syntax error
+ is entered, followed by ^C.
+
+04-mkdir.diff
+ fix the mkdir command so it actually reports errors.
+
+05-sys_errlist.diff
+ fix deprecation warning.
+
+06-noreturn.diff
+ squelch a bunch of spurious 'might be used uninitialized' warnings.
+ there are still a couple left, caveat emptor...