Hi.
After the last x11/dmenu commit, dual-head support is gone. It's a "problem" in the Makefile, I fixed it, but my question is if I should report someone or is there a reason for the change in the Makefile, which is the following:
Before the last commit (you can see it here), in the
section of the Makefile, there was this (among other things):
Actually I don't know what it does, but I understand that whatever it is, it's only executed if Xinerama (used for multi-monitor support) option of dmenu is not checked (if I'm right).
Well, that's ok, but now the
is gone, and that code is executed always. Here it is:
What I've done is comment these two lines, and now dmenu works well with two monitors. I tried to put the
, but it throws me an error of Malformed conditional.
What do you think? Is there a reason to remove the
?
Thanks and regards.
After the last x11/dmenu commit, dual-head support is gone. It's a "problem" in the Makefile, I fixed it, but my question is if I should report someone or is there a reason for the change in the Makefile, which is the following:
Before the last commit (you can see it here), in the
Code:
post-patch
Code:
.if ! ${PORT_OPTIONS:MXINERAMA}
@${REINPLACE_CMD} -e 's,$${XINERAMALIBS},,g' \
-e 's,$${XINERAMAFLAGS},,g' ${WRKSRC}/config.mk
.endif
Well, that's ok, but now the
Code:
.if
Code:
@${REINPLACE_CMD} -e 's,$${XINERAMALIBS},,g' \
-e 's,$${XINERAMAFLAGS},,g' ${WRKSRC}/config.mk
Code:
.if
What do you think? Is there a reason to remove the
Code:
.if
Thanks and regards.