mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
Move a variable definition from header file to source file. This fixes the build on FreeBSD 13+. Add a missing LIB_DEPENDS entry.
10 lines
245 B
C
10 lines
245 B
C
--- src/readln.c.orig 2023-04-17 14:45:25 UTC
|
|
+++ src/readln.c
|
|
@@ -27,6 +27,7 @@
|
|
#include "strfncs.h"
|
|
|
|
extern COMMAND commands[];
|
|
+COMMAND *thecommandlist;
|
|
|
|
/* Execute a command line. */
|
|
int execute_line (char *line, COMMAND *commandlist)
|