libflac-dev, libfreetype6-dev, liblzma-dev, libncurses5-dev,
libpng-dev, libtool, libusb-1.0-0-dev, libva-dev, libvdpau-dev,
libxft-dev, libxinerama-dev, libxml2-utils, libxv-dev,
- libz-dev, linux-firmware, nasm, texinfo, ttf-bitstream-vera,
+ libz-dev, nasm, texinfo, ttf-bitstream-vera,
udftools, xfonts-100dpi, xfonts-75dpi, yasm, libpulse-dev
Package: cin
--- /dev/null
+--- djbfft-0.76~/auto-str.c 2025-06-09 20:43:27.521080716 +0200
++++ djbfft-0.76~/auto-str.c 2025-06-09 20:42:54.783164144 +0200
+@@ -5,13 +5,14 @@
+ char buf1[256];
+ substdio ss1 = SUBSTDIO_FDBUF(write,1,buf1,sizeof(buf1));
+
++#define puts puts_
+ void puts(s)
+ char *s;
+ {
+ if (substdio_puts(&ss1,s) == -1) _exit(111);
+ }
+
+-main(argc,argv)
++void main(argc,argv)
+ int argc;
+ char **argv;
+ {
+--- djbfft-0.76~/fftc4.h 2025-06-09 20:43:27.521184679 +0200
++++ djbfft-0.76~/fftc4.h 2025-06-09 20:42:54.783362290 +0200
+@@ -33,6 +33,7 @@
+ extern void fftc4_un4096(complex4 *);
+ extern void fftc4_un8192(complex4 *);
+
++extern void fftc4_mul(complex4 *,complex4 *, unsigned int);
+ extern void fftc4_mul2(complex4 *,complex4 *);
+ extern void fftc4_mul4(complex4 *,complex4 *);
+ extern void fftc4_mul8(complex4 *,complex4 *);
+--- djbfft-0.76~/fftc8.h 2025-06-09 20:43:27.521255985 +0200
++++ djbfft-0.76~/fftc8.h 2025-06-09 20:42:54.783533701 +0200
+@@ -33,6 +33,7 @@
+ extern void fftc8_un4096(complex8 *);
+ extern void fftc8_un8192(complex8 *);
+
++extern void fftc8_mul(complex8 *,complex8 *, unsigned int);
+ extern void fftc8_mul2(complex8 *,complex8 *);
+ extern void fftc8_mul4(complex8 *,complex8 *);
+ extern void fftc8_mul8(complex8 *,complex8 *);
+--- djbfft-0.76~/hier.c 2025-06-09 20:43:27.521332704 +0200
++++ djbfft-0.76~/hier.c 2025-06-09 20:42:54.783699883 +0200
+@@ -1,5 +1,9 @@
+ #include "auto_home.h"
+
++extern void h(char *, int, int, int);
++extern void d(char *, char *, int, int, int);
++extern void c(char *, char *, char *, int, int, int);
++
+ void hier()
+ {
+ h(auto_home,-1,-1,0755);
+--- djbfft-0.76~/readwrite.h 1999-09-30 22:25:58.000000000 +0200
++++ djbfft-0.76~/readwrite.h 2025-06-09 20:44:05.224886356 +0200
+@@ -1,7 +1,6 @@
+ #ifndef READWRITE_H
+ #define READWRITE_H
+
+-extern int read();
+-extern int write();
++#include <unistd.h>
+
+ #endif
+--- djbfft-0.76~/substdio.c 1999-09-30 22:25:58.000000000 +0200
++++ djbfft-0.76~/substdio.c 2025-06-09 20:44:34.408570321 +0200
+@@ -2,7 +2,7 @@
+
+ void substdio_fdbuf(s,op,fd,buf,len)
+ register substdio *s;
+-register int (*op)();
++register int (*op)();
+ register int fd;
+ register char *buf;
+ register int len;