Search Criteria
Package Details: blt25 2.5.3-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/blt25.git (read-only, click to copy) |
---|---|
Package Base: | blt25 |
Description: | Adds new commands and widgets to the Tcl interpreter. |
Upstream URL: | https://sourceforge.net/projects/wize/ |
Licenses: | custom |
Conflicts: | blt, tkblt |
Submitter: | srtlg |
Maintainer: | srtlg |
Last Packager: | srtlg |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2023-05-12 14:48 (UTC) |
Last Updated: | 2023-05-12 14:48 (UTC) |
Latest Comments
Tweety commented on 2025-01-03 16:09 (UTC) (edited on 2025-01-03 16:10 (UTC) by Tweety)
Hi qoppzvrbcqjqqlbn,
I assume that the compiler error is just because of an missing "int" declaration in line 978 of the configure file. >> int main(){return(0);}
But seems like adjusting that is not enough. I get stuck with some errors in bltNsUtil.c afterwards and don't know how to solve that.
sry.
qoppzvrbcqjqqlbn commented on 2024-09-17 13:20 (UTC)
"configure: error: installation or configuration problem: C compiler cannot create executables"
Potomac commented on 2023-09-01 21:47 (UTC) (edited on 2023-09-01 21:52 (UTC) by Potomac)
It doesn't compile, I have a build error :
bltBgexec.c:851:17: error: 'errno' undeclared (first use in this function)
851 | if (errno == BLOCKED) {
| ^~~~~
bltBgexec.c:43:1: note: 'errno' is defined in header '<errno.h>'; did you forget to '#include <errno.h>'?
42 | #include "bltSwitch.h"
+++ |+#include <errno.h>
43 |
bltBgexec.c:851:17: note: each undeclared identifier is reported only once for each function it appears in
851 | if (errno == BLOCKED) {
| ^~~~~
bltBgexec.c:845:25: error: 'EAGAIN' undeclared (first use in this function)
845 | #define BLOCKED EAGAIN
| ^~~~~~