diff options
author | asami <asami@FreeBSD.org> | 1996-08-19 18:56:49 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-08-19 18:56:49 +0800 |
commit | 7e3c8671f0e34e96faa7ea3c403cca591bb46c84 (patch) | |
tree | 4f733407783f08e736f4f459eac422f9c0cb8b1c /games | |
parent | 4e56441d6ebb73616ddde916eef7a736d3d30c06 (diff) | |
download | freebsd-ports-gnome-7e3c8671f0e34e96faa7ea3c403cca591bb46c84.tar.gz freebsd-ports-gnome-7e3c8671f0e34e96faa7ea3c403cca591bb46c84.tar.zst freebsd-ports-gnome-7e3c8671f0e34e96faa7ea3c403cca591bb46c84.zip |
Change -lXm to ${MOTIFLIB}. Use #include <Xm/*.h> instead of
<X11/Xm/*.h> (this port had both ;)!
Diffstat (limited to 'games')
-rw-r--r-- | games/xblackjack/files/patch-aa | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/games/xblackjack/files/patch-aa b/games/xblackjack/files/patch-aa index f0bf6a4edf4a..66d3d24179a5 100644 --- a/games/xblackjack/files/patch-aa +++ b/games/xblackjack/files/patch-aa @@ -5,7 +5,7 @@ * You may need to remove -lbsd. */ - EXTRA_LIBRARIES = -lXm $(DEPLIBS) -lbsd -+ EXTRA_LIBRARIES = -lXm -lXt -lXmu -lXext -lX11 ++ EXTRA_LIBRARIES = ${MOTIFLIB} -lXt -lXmu -lXext -lX11 #endif /* @@ -33,3 +33,27 @@ #include <Xm/BulletinBP.h> /* +--- ./Draw.c.org Fri Jun 18 10:17:44 1993 ++++ ./Draw.c Mon Aug 19 03:45:59 1996 +@@ -84,7 +84,7 @@ + #include <Xol/OpenLook.h> + #else + #include <X11/Xutil.h> +-#include <X11/Xm/Xm.h> ++#include <Xm/Xm.h> + #endif + #include "Assert.h" + #include "Bitmaps.h" +--- ./Strategy.c.org Fri Jun 18 10:17:44 1993 ++++ ./Strategy.c Mon Aug 19 03:48:21 1996 +@@ -95,8 +95,8 @@ + #include <Xol/OpenLook.h> + #include <Xol/StaticText.h> + #else +-#include <X11/Xm/Xm.h> +-#include <X11/Xm/Label.h> ++#include <Xm/Xm.h> ++#include <Xm/Label.h> + #include "Table.h" + #endif + #include "Assert.h" |