Package Details: blt 2.4z-12

Git Clone URL: https://aur.archlinux.org/blt.git (read-only, click to copy)
Package Base: blt
Description: Adds new commands and widgets to the Tcl interpreter.
Upstream URL: http://blt.sourceforge.net
Licenses: custom
Conflicts: blt_tcl85
Submitter: None
Maintainer: yhfudev
Last Packager: b00rt00s
Votes: 17
Popularity: 0.000000
First Submitted: 2005-09-24 18:23 (UTC)
Last Updated: 2017-06-06 18:18 (UTC)

Dependencies (2)

Required by (3)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

renodesper commented on 2013-07-11 08:45 (UTC)

It works like a charm, thank you very much :D Well, I'm still wondering how to compile it but it's okay as long as it won't break (at least for now) :)

b00rt00s commented on 2013-07-11 06:33 (UTC)

Here you go: http://student.agh.edu.pl/~gedzior/blt-2.4z-9-x86_64.pkg.tar.xz There can be one problem: the package is compiled with -march=native (it means core2 for my computer). I hope it will work for you. Nevertheless I'll try to compile to find some fix for this package (if I'll have some time...).

renodesper commented on 2013-07-10 22:41 (UTC)

@b00rt00s: I've tried compiling blt using tck and tk from version 8.5 but it still failed, so I'll just wait 3 package you mention before

renodesper commented on 2013-07-09 10:16 (UTC)

@b00rt00s: of course I'd like to, where can I download it? thank you very much :)

b00rt00s commented on 2013-07-08 19:14 (UTC)

I tried find some patch for this, but I couldn't. My solution: I use tcl and tk from 8.5 series with blt compiled for this version. I avoid upgrading those 3 packages. If you'd like to, I could put them somewhere, so You can download it.

renodesper commented on 2013-07-07 02:32 (UTC)

there is an error when I try to compile it, any idea guys: make[1]: Entering directory `/home/renodesper/ABS/blt/src/blt2.4z/src' gcc -c -Wall -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -DUSE_INTERP_RESULT -I. -I. bltAlloc.c bltAlloc.c: In function ‘Blt_Calloc’: bltAlloc.c:71:2: warning: implicit declaration of function ‘memset’ [-Wimplicit-function-declaration] memset(ptr, 0, size); ^ bltAlloc.c:71:2: warning: incompatible implicit declaration of built-in function ‘memset’ [enabled by default] bltAlloc.c: In function ‘Blt_Strdup’: bltAlloc.c:95:5: warning: implicit declaration of function ‘strlen’ [-Wimplicit-function-declaration] size = strlen(string) + 1; ^ bltAlloc.c:95:12: warning: incompatible implicit declaration of built-in function ‘strlen’ [enabled by default] size = strlen(string) + 1; ^ bltAlloc.c:98:2: warning: implicit declaration of function ‘strcpy’ [-Wimplicit-function-declaration] strcpy(ptr, string); ^ bltAlloc.c:98:2: warning: incompatible implicit declaration of built-in function ‘strcpy’ [enabled by default] gcc -c -Wall -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -DUSE_INTERP_RESULT -I. -I. bltArrayObj.c bltArrayObj.c: In function ‘SetArrayFromAny’: bltArrayObj.c:57:31: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default] Tcl_ObjType *oldTypePtr = objPtr->typePtr; ^ bltArrayObj.c: In function ‘UpdateStringOfArray’: bltArrayObj.c:147:5: warning: implicit declaration of function ‘strlen’ [-Wimplicit-function-declaration] objPtr->length = strlen(Tcl_DStringValue(&dString)); ^ bltArrayObj.c:147:22: warning: incompatible implicit declaration of built-in function ‘strlen’ [enabled by default] objPtr->length = strlen(Tcl_DStringValue(&dString)); ^ gcc -c -Wall -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -DUSE_INTERP_RESULT -I. -I. bltBgexec.c bltBgexec.c: In function ‘StringToSignal’: bltBgexec.c:443:5: warning: implicit declaration of function ‘isdigit’ [-Wimplicit-function-declaration] if (isdigit(UCHAR(string[0]))) { ^ bltBgexec.c:459:6: warning: implicit declaration of function ‘strcmp’ [-Wimplicit-function-declaration] if (strcmp(sigPtr->name + 3, name) == 0) { ^ bltBgexec.c: In function ‘InitSink’: bltBgexec.c:648:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] sinkPtr->file = (Tcl_File)NULL; ^ bltBgexec.c: In function ‘FreeSinkBuffer’: bltBgexec.c:706:21: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] sinkPtr->file = (Tcl_File)NULL; ^ bltBgexec.c: In function ‘ReadBytes’: bltBgexec.c:816:2: warning: implicit declaration of function ‘read’ [-Wimplicit-function-declaration] nBytes = read(sinkPtr->fd, array, bytesLeft - 1); ^ bltBgexec.c:829:10: error: ‘errno’ undeclared (first use in this function) if (errno == BLOCKED) { ^ bltBgexec.c:829:10: note: each undeclared identifier is reported only once for each function it appears in bltBgexec.c:823:18: error: ‘EAGAIN’ undeclared (first use in this function) #define BLOCKED EAGAIN ^ bltBgexec.c:829:19: note: in expansion of macro ‘BLOCKED’ if (errno == BLOCKED) { ^ bltBgexec.c: In function ‘CloseSink’: bltBgexec.c:851:2: warning: implicit declaration of function ‘close’ [-Wimplicit-function-declaration] close(sinkPtr->fd); ^ bltBgexec.c:858:18: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] sinkPtr->file = (Tcl_File)NULL; ^ bltBgexec.c: In function ‘DestroyBackgroundInfo’: bltBgexec.c:1474:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] Tcl_DetachPids(1, (Tcl_Pid *)bgPtr->procArr[i]); ^ make[1]: *** [bltBgexec.o] Error 1 make[1]: Leaving directory `/home/renodesper/ABS/blt/src/blt2.4z/src' make: *** [all] Error 2

PyroDevil commented on 2013-01-21 08:24 (UTC)

I updated the package. Thanks to manuel.osdoba for the patch.

ridcully commented on 2013-01-10 10:53 (UTC)

The problem with /usr/share/man/mann/busy.n still remains.