1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-26 07:00:31 -04:00
ports/sysutils/syslinux/files/patch-libinstaller_syslinux.h
Luigi Rizzo 5a3e648d5e Update to 3.83
This is basically PR ports/141166 by Boris Samorodov, which
updates the code to version 3.83 and splits the patches
into smaller chunks to ease future updates.

I have only touched the indentation in one function in patch-mtools_syslinux.c

Submitted-by:	Boris Samorodov
PR:	141166
2009-12-08 10:09:02 +00:00

21 lines
708 B
C

--- libinstaller/syslinux.h.orig 2009-10-06 02:06:06.000000000 +0400
+++ libinstaller/syslinux.h 2009-12-04 10:09:04.000000000 +0300
@@ -17,15 +17,15 @@
#include "advconst.h"
/* The standard boot sector and ldlinux image */
-extern unsigned char syslinux_bootsect[];
+extern unsigned char *syslinux_bootsect;
extern unsigned int syslinux_bootsect_len;
extern int syslinux_bootsect_mtime;
-extern unsigned char syslinux_ldlinux[];
+extern unsigned char *syslinux_ldlinux;
extern unsigned int syslinux_ldlinux_len;
extern int syslinux_ldlinux_mtime;
-extern unsigned char syslinux_mbr[];
+extern unsigned char *syslinux_mbr;
extern unsigned int syslinux_mbr_len;
extern int syslinux_mbr_mtime;