diff options
author | smace <smace@FreeBSD.org> | 1994-10-23 07:11:36 +0800 |
---|---|---|
committer | smace <smace@FreeBSD.org> | 1994-10-23 07:11:36 +0800 |
commit | 021f5f703f27a3cbc91f81cb3fd17725d69aa5ea (patch) | |
tree | 3bc7ba6e7ba55fbbefbc201c1eaa420cfb14357f /x11-wm/olvwm | |
parent | 25bef7ad40210688b8c12f8952fd9ed4deb78132 (diff) | |
download | freebsd-ports-gnome-021f5f703f27a3cbc91f81cb3fd17725d69aa5ea.tar.gz freebsd-ports-gnome-021f5f703f27a3cbc91f81cb3fd17725d69aa5ea.tar.zst freebsd-ports-gnome-021f5f703f27a3cbc91f81cb3fd17725d69aa5ea.zip |
Clean up the port a bit.
Diffstat (limited to 'x11-wm/olvwm')
-rw-r--r-- | x11-wm/olvwm/files/patch-aa | 54 |
1 files changed, 24 insertions, 30 deletions
diff --git a/x11-wm/olvwm/files/patch-aa b/x11-wm/olvwm/files/patch-aa index 6dec7339b826..11a3034cacdd 100644 --- a/x11-wm/olvwm/files/patch-aa +++ b/x11-wm/olvwm/files/patch-aa @@ -55,24 +55,21 @@ (void) strcat(filename, hostname); fileDB = XrmGetFileDatabase(filename); *** error.c.orig Thu Jan 13 14:36:04 1994 ---- error.c Sat Oct 22 00:59:24 1994 +--- error.c Sat Oct 22 16:44:32 1994 *************** -*** 233,239 **** - FPRINTF(stderr, GetString(" serial number of failed request: %d\n"), - err->serial); - FPRINTF(stderr, GetString(" current request serial number: %d\n"), -! dpy->request); - } - - ---- 234,240 ---- - FPRINTF(stderr, GetString(" serial number of failed request: %d\n"), - err->serial); - FPRINTF(stderr, GetString(" current request serial number: %d\n"), -! ((_XPrivDisplay)dpy)->request); - } +*** 13,19 **** +--- 13,23 ---- + #include <stdio.h> + #include <stdlib.h> ++ #ifdef __FreeBSD__ ++ #include <X11/Xlibint.h> ++ #else + #include <X11/Xlib.h> ++ #endif + #include <X11/Xproto.h> + #include "i18n.h" *** gettext.h.orig Thu Jan 13 14:40:00 1994 --- gettext.h Thu Oct 20 22:01:55 1994 *************** @@ -134,23 +131,20 @@ + #include <string.h> #include <ctype.h> - + *** mem.c.orig Thu Jan 13 14:36:08 1994 ---- mem.c Thu Oct 20 23:44:01 1994 +--- mem.c Sat Oct 22 16:46:18 1994 *************** *** 18,24 **** +--- 18,28 ---- #include <sys/types.h> -! #include <malloc.h> - #include <memory.h> - #include <stdio.h> - ---- 18,24 ---- - - - #include <sys/types.h> -! /* #include <malloc.h> */ ++ #ifndef __FreeBSD__ + #include <malloc.h> ++ #else ++ #include <stdlib.h> ++ #endif #include <memory.h> #include <stdio.h> @@ -163,7 +157,7 @@ ErrorGeneral(gettext("Memory allocation failure.")); #ifdef MEMDEBUG ---- 139,145 ---- +--- 143,149 ---- { void *p; @@ -180,7 +174,7 @@ ErrorGeneral(GetString("Memory allocation failure.")); memset((char *) p, 0, (int) sz); ---- 164,170 ---- +--- 168,174 ---- { void *p; @@ -197,7 +191,7 @@ ErrorGeneral(GetString("Memory array allocation failure.")); memset((char *) p, 0, (int) sz * (int) num); ---- 191,197 ---- +--- 195,201 ---- { void *p; @@ -214,7 +208,7 @@ ErrorGeneral(GetString("Memory array allocation failure.")); #ifdef MEMDEBUG ---- 210,216 ---- +--- 214,220 ---- { void *t; |