Package Details: optar 1-1

Git Clone URL: https://aur.archlinux.org/optar.git (read-only, click to copy)
Package Base: optar
Description: OPTical ARchiver - codec for encoding data on paper
Upstream URL: http://ronja.twibright.com/optar/
Licenses: GPL
Submitter: jose1711
Maintainer: jose1711
Last Packager: jose1711
Votes: 1
Popularity: 0.000000
First Submitted: 2019-12-14 13:58 (UTC)
Last Updated: 2019-12-14 13:58 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

Teeed commented on 2024-09-17 16:00 (UTC) (edited on 2024-09-17 16:18 (UTC) by Teeed)

Fails to build:

==> Starting build()...
gcc -c  -O3 -Wall -Wuninitialized -fomit-frame-pointer -funroll-loops -fstrength-reduce -DNODEBUG `libpng-config --I_opts` -o optar.o optar.c
gcc -c  -O3 -Wall -Wuninitialized -fomit-frame-pointer -funroll-loops -fstrength-reduce -DNODEBUG `libpng-config --I_opts` -o common.o common.c
gcc -c  -O3 -Wall -Wuninitialized -fomit-frame-pointer -funroll-loops -fstrength-reduce -DNODEBUG `libpng-config --I_opts` -o golay.o golay.c
gcc -c  -O3 -Wall -Wuninitialized -fomit-frame-pointer -funroll-loops -fstrength-reduce -DNODEBUG `libpng-config --I_opts` -o parity.o parity.c
gcc -c -I/usr/local/include/libpng  -O3 -Wall -Wuninitialized -fomit-frame-pointer -funroll-loops -fstrength-reduce -DNODEBUG `libpng-config --I_opts` -o unoptar.o unoptar.c
optar.c: In function 'cross':
optar.c:112:6: error: type of 'x' defaults to 'int' [-Wimplicit-int]
  112 | void cross(x,y)
      |      ^~~~~
optar.c:112:6: error: type of 'y' defaults to 'int' [-Wimplicit-int]
optar.c: In function 'text_block':
optar.c:135:6: error: type of 'destx' defaults to 'int' [-Wimplicit-int]
  135 | void text_block (destx, srcx, width)
      |      ^~~~~~~~~~
optar.c:135:6: error: type of 'srcx' defaults to 'int' [-Wimplicit-int]
optar.c:135:6: error: type of 'width' defaults to 'int' [-Wimplicit-int]
gcc -L/usr/local/lib -o golay golay.o parity.o -lpng -lz -lm
make: *** [Makefile:28: optar.o] Error 1
make: *** Waiting for unfinished jobs....
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: optar-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
optar - exit status 4

Here is a quick patch to fix that:

--- optar.c.orig        2024-09-17 18:01:15.797425550 +0200
+++ optar.c     2024-09-17 18:02:20.771131404 +0200
@@ -109,7 +109,7 @@
        memset(ptr,0,BORDER*WIDTH);
 }

-void cross(x,y)
+void cross(unsigned int x, unsigned int y)
 {
        unsigned char *ptr=ary+y*WIDTH+x;
        unsigned c;
@@ -132,7 +132,7 @@
 }

 /* x is in the range 0 to DATA_WIDTH-1 */
-void text_block (destx, srcx, width)
+void text_block (unsigned int destx, unsigned int srcx, unsigned int width)
 {
        int x, y;
        unsigned char *srcptr;