View | Details | Raw Unified | Return to bug 219162 | Differences between
and this patch

Collapse All | Expand All

(-)b/x11/dmenu/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	dmenu
4
PORTNAME=	dmenu
5
PORTVERSION=	4.6
5
PORTVERSION=	4.7
6
CATEGORIES=	x11
6
CATEGORIES=	x11
7
MASTER_SITES=	http://dl.suckless.org/tools/ \
7
MASTER_SITES=	http://dl.suckless.org/tools/ \
8
		http://schot.a-eskwadraat.nl/files/
8
		http://schot.a-eskwadraat.nl/files/
(-)b/x11/dmenu/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (dmenu-4.6.tar.gz) = 4a7a24008a621c3cd656155ad91ab8136db8f0d3b9ec56dafeec518cabda96b3
1
TIMESTAMP = 1494317037
2
SIZE (dmenu-4.6.tar.gz) = 15057
2
SHA256 (dmenu-4.7.tar.gz) = a75635f8dc2cbc280deecb906ad9b7594c5c31620e4a01ba30dc83984881f7b9
3
SIZE (dmenu-4.7.tar.gz) = 15597
(-)b/x11/dmenu/files/patch-config.mk (-5 / +13 lines)
Lines 1-14 Link Here
1
--- config.mk.orig	2015-11-08 22:42:21 UTC
1
--- config.mk.orig	2017-05-02 16:36:47 UTC
2
+++ config.mk
2
+++ config.mk
3
@@ -23,9 +23,9 @@ INCS = -I${X11INC} -I${FREETYPEINC}
3
@@ -16,16 +16,16 @@ XINERAMAFLAGS = -DXINERAMA
4
 FREETYPELIBS = -lfontconfig -lXft
5
 FREETYPEINC = /usr/include/freetype2
6
 # OpenBSD (uncomment)
7
-#FREETYPEINC = ${X11INC}/freetype2
8
+FREETYPEINC = ${X11INC}/freetype2
9
 
10
 # includes and libs
11
 INCS = -I${X11INC} -I${FREETYPEINC}
4
 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
12
 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
5
 
13
 
6
 # flags
14
 # flags
7
-CPPFLAGS = -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
15
-CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
8
-CFLAGS   = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
16
-CFLAGS   = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
9
-LDFLAGS  = -s ${LIBS}
17
-LDFLAGS  = -s ${LIBS}
10
+CPPFLAGS+= -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
18
+CPPFLAGS+= -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
11
+CFLAGS  += -std=c99 ${INCS} ${CPPFLAGS}
19
+CFLAGS  += -std=c99 -pedantic ${INCS} ${CPPFLAGS}
12
+LDFLAGS += ${LIBS}
20
+LDFLAGS += ${LIBS}
13
 
21
 
14
 # compiler and linker
22
 # compiler and linker

Return to bug 219162