opnsense-ports/sysutils/syslinux/files/patch-libinstaller-bin2c.pl
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

18 lines
487 B
Raku

--- libinstaller/bin2c.pl.orig 2010-10-20 21:25:38.000000000 +0200
+++ libinstaller/bin2c.pl 2010-11-16 14:24:32.427122941 +0100
@@ -27,7 +27,7 @@
$pad = 1 if ($pad < 1);
-printf "unsigned char %s[] = {\n", $table_name;
+printf "static unsigned char _%s[] = {\n", $table_name;
$pos = 0;
$linelen = 8;
@@ -74,5 +74,6 @@
@st = stat STDIN;
printf "\nconst int %s_mtime = %d;\n", $table_name, $st[9];
+printf "\nunsigned char *%s = _%s;\n", $table_name, $table_name;
exit 0;