diff options
author | 2020-04-20 18:59:43 -0400 | |
---|---|---|
committer | 2020-04-21 14:53:44 -0700 | |
commit | e84ae9943a70dcac2434c18533327df73b471a71 (patch) | |
tree | f2c58b3783cae0c3eea9f1f85e5828583c837bcd /x11-wm/cwm/files | |
parent | sys-apps/portage: Remove old versions (diff) | |
download | gentoo-e84ae9943a70dcac2434c18533327df73b471a71.tar.gz gentoo-e84ae9943a70dcac2434c18533327df73b471a71.tar.bz2 gentoo-e84ae9943a70dcac2434c18533327df73b471a71.zip |
x11-wm/cwm: updated to latest 6.6 and new proxy-maintainer
Closes: https://bugs.gentoo.org/718682
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'x11-wm/cwm/files')
-rw-r--r-- | x11-wm/cwm/files/cwm-Makefile.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/x11-wm/cwm/files/cwm-Makefile.patch b/x11-wm/cwm/files/cwm-Makefile.patch new file mode 100644 index 000000000000..56755fe19067 --- /dev/null +++ b/x11-wm/cwm/files/cwm-Makefile.patch @@ -0,0 +1,21 @@ +diff --git a/Makefile b/Makefile +index 74d0d0d..802cd33 100644 +--- a/Makefile ++++ b/Makefile +@@ -13,12 +13,14 @@ OBJS= calmwm.o screen.o xmalloc.o client.o menu.o \ + search.o util.o xutil.o conf.o xevents.o group.o \ + kbfunc.o strlcpy.o strlcat.o y.tab.o \ + strtonum.o reallocarray.o ++ ++PKG_CONFIG?= pkg-config + +-CPPFLAGS+= `pkg-config --cflags x11 xft xrandr` ++CPPFLAGS+= `${PKG_CONFIG} --cflags x11 xft xrandr` + + CFLAGS?= -Wall -O2 -g -D_GNU_SOURCE + +-LDFLAGS+= `pkg-config --libs x11 xft xrandr` ++LDFLAGS+= `${PKG_CONFIG} --libs x11 xft xrandr` + + MANPREFIX?= ${PREFIX}/share/man + |