diff options
author | nakai <nakai@FreeBSD.org> | 1999-12-02 12:29:31 +0800 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 1999-12-02 12:29:31 +0800 |
commit | 97236c8bd2ad7348c91188ccc4f1658e661a9c7d (patch) | |
tree | 5067326c67b80ab4f5dafd86ac326cf8c1bc349b /games/gnome-games | |
parent | 6e1bf7d750aa44318fba2d78897f384d04e5e7e0 (diff) | |
download | freebsd-ports-gnome-97236c8bd2ad7348c91188ccc4f1658e661a9c7d.tar.gz freebsd-ports-gnome-97236c8bd2ad7348c91188ccc4f1658e661a9c7d.tar.zst freebsd-ports-gnome-97236c8bd2ad7348c91188ccc4f1658e661a9c7d.zip |
Add a patch for 4.0-CURRENT.
PR: ports/15110
Submitted by: "Alex D. Chen" <dhchen@ilh.dorm9.nccu.edu.tw>
Diffstat (limited to 'games/gnome-games')
-rw-r--r-- | games/gnome-games/files/patch-ah | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/games/gnome-games/files/patch-ah b/games/gnome-games/files/patch-ah new file mode 100644 index 000000000000..31769eb0372b --- /dev/null +++ b/games/gnome-games/files/patch-ah @@ -0,0 +1,20 @@ +--- xbill/MCursor.cc.orig Thu Dec 2 13:15:03 1999 ++++ xbill/MCursor.cc Thu Dec 2 13:15:49 1999 +@@ -9,7 +9,7 @@ + + sprintf (file, "%s/%s.xpm", dir, name); + pixmap = gdk_pixmap_colormap_create_from_xpm(ui.display, ui.colormap, +- &bitmap, NULL, file); ++ &bitmap, (GdkColor *)NULL, file); + if (pixmap == NULL) { + printf ("cannot open %s\n", file); + exit(1); +@@ -18,7 +18,7 @@ + if (masked == SEP_MASK) { + sprintf(file, "%s/%s_mask.xpm", dir, name); + pixmap = gdk_pixmap_colormap_create_from_xpm(ui.display, ui.colormap, +- &mask, NULL, file); ++ &mask, (GdkColor *)NULL, file); + if (pixmap == NULL) { + printf("cannot open %s\n", file); + exit(1); |