1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/x11-wm/fvwm/files/patch-fvwm-functions.c
Tijl Coosemans d8707ba967 Remove -fPIC and fix the real problem where a variable is defined as an
array in one file and declared as a pointer in another.
2017-02-15 20:31:16 +00:00

21 lines
470 B
C

--- fvwm/functions.c.orig 1994-11-15 14:18:26 UTC
+++ fvwm/functions.c
@@ -52,7 +52,7 @@
extern XEvent Event;
extern FvwmWindow *Tmp_win;
extern int menuFromFrameOrWindowOrTitlebar;
-extern DoHandlePageing;
+extern Bool DoHandlePageing;
extern char **g_argv;
@@ -1643,7 +1643,7 @@ void MapIt(FvwmWindow *t)
void QuickRestart(void)
{
- extern char *m4_options;
+ extern char m4_options[];
extern char *display_name;
int i;
FvwmWindow *tmp,*next;