diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-05-12 07:19:52 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-05-12 07:19:52 +0000 |
commit | 5399cff94af23bb72572c6c34e9c6e95d2f495fd (patch) | |
tree | 9d665b3036a3dc2acfb66145ccb4b785f793435e /x11 | |
parent | d2bbc215415e47616deef5b3c14dc55ca35cbf4c (diff) | |
download | freebsd-ports-5399cff94af23bb72572c6c34e9c6e95d2f495fd.zip |
Fix building by properly using MOTIFLIB (actually just changed
"MOTIFLIB=" to "MOTIFLIB?=").
Diffstat (limited to 'x11')
-rw-r--r-- | x11/libhelp/files/patch-ab | 2 | ||||
-rw-r--r-- | x11/libhelp/files/patch-ao | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/x11/libhelp/files/patch-ab b/x11/libhelp/files/patch-ab index f244037a4ed2..4059c9b08f5b 100644 --- a/x11/libhelp/files/patch-ab +++ b/x11/libhelp/files/patch-ab @@ -5,7 +5,7 @@ HPDEFS = -D_HPUX_SOURCE HPINCS = -I/usr/include/Motif1.2 - MOTIFLIB = -L/usr/lib/Motif1.2 -lXm -+ MOTIFLIB = -L/usr/lib/Motif1.2 -lXm ${MOTIFLIB} ++ MOTIFLIB ?= -L/usr/lib/Motif1.2 -lXm #endif SYSINCS = -I/usr/local/X11R5/include $(SUNINCS) $(HPINCS) diff --git a/x11/libhelp/files/patch-ao b/x11/libhelp/files/patch-ao new file mode 100644 index 000000000000..224be6ba8cb4 --- /dev/null +++ b/x11/libhelp/files/patch-ao @@ -0,0 +1,11 @@ +--- ./xmhelp/Imakefile.org Wed Jun 28 06:01:21 1995 ++++ ./xmhelp/Imakefile Wed May 12 00:10:12 1999 +@@ -84,7 +84,7 @@ + LIBHELPLIBS = $(HELPLIB) $(HTMLWLIB) $(BUTTFACELIB) $(XPMLIB) + + LIBLIBS = -L/usr/local/lib $(LIBHELPLIBS) +- MOTIFLIB = $(MOTIFLIBDIR) -lXm ++ MOTIFLIB ?= $(MOTIFLIBDIR) -lXm + + LIBLIBS = $(LIBSDIR) $(HELPLIB) $(HTMLWLIB) $(BUTTFACELIB) $(XPMLIB) + ALLXLIBS = $(MOTIFLIB) $(XMULIB) $(XTOOLLIB) $(XLIB) |