diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-05-24 12:01:03 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-05-24 12:01:03 +0000 |
commit | 787ddab31fb8cd2b68c60b607de36897160f571e (patch) | |
tree | 51f00e6b726552983d41529e9a812307ad7e335f /x11-wm/wmanager/files/patch-aa | |
parent | 11299cca118ccdf50e0fb1d8616dc3ce7e655513 (diff) |
Add back wmanager, which was prematurely deleted by will. In fact, this
port doesn't even use qt, so remove the bogus dependency on it.
Notes
Notes:
svn path=/head/; revision=59888
Diffstat (limited to 'x11-wm/wmanager/files/patch-aa')
-rw-r--r-- | x11-wm/wmanager/files/patch-aa | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/x11-wm/wmanager/files/patch-aa b/x11-wm/wmanager/files/patch-aa new file mode 100644 index 000000000000..29b21dff5349 --- /dev/null +++ b/x11-wm/wmanager/files/patch-aa @@ -0,0 +1,61 @@ + +$FreeBSD$ + +--- Makefile.orig Sun Nov 14 17:29:24 1999 ++++ Makefile Tue Aug 14 13:08:36 2001 +@@ -29,17 +29,21 @@ + SHELL = /bin/sh + MAKEFLAGS = --print-directory + ++# base settings ++bindir = $(PREFIX)/bin ++incdir = ./inc ++srcdir = ./src ++fltkinc = $(X11BASE)/include ++x11lib = $(X11BASE)/lib + + # compiler settings +-CXX = g++ +-CXXFLAGS = -I$(incdir) -O2 -Wall -pedantic #-DDEBUG=1 -g3 +- ++CXX = g++ ++CXXFLAGS+= -I$(fltkinc) -I$(incdir) -Wall -pedantic $(PTHREAD_CFLAGS) #-DDEBUG=1 -g3 + + # linker settings + LD = g++ +-LDFLAGS = -lfltk -lXext -lX11 -lm +-LDDIRS = -L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib +- ++LDFLAGS = -lMesaGL -lfltk -lXext -lX11 -lm $(PTHREAD_LIBS) ++LDDIRS = -L$(x11lib) -L/usr/lib -L/usr/local/lib + + # install settings + INSTALL = /usr/bin/install +@@ -50,17 +54,6 @@ + DOCTOOL = perceps + DOCTOOL_FLAGS = -a -b -f -h -m -r + +-# base locations +-prefix = /usr/local +-exec_prefix = $(prefix) +-bindir = $(exec_prefix)/bin +- +- +-# include files and sources +-incdir = ./inc +-srcdir = ./src +- +- + # documentational files for developer + docdir = ./doc + templates = $(docdir)/templates +@@ -82,8 +75,7 @@ + # project version + VERSION = 0.1.1 + +- +-all: wmanager TAGS ++all: wmanager + + wmanager: $(OBJ) + $(LD) -o $@ $^ $(LDDIRS) $(LDFLAGS) |