version changed to 1.1.4 and -lXrender for transparency added

This commit is contained in:
mrdotx 2021-07-28 13:45:52 +02:00
parent 29bb97ea85
commit d048c52b04
No known key found for this signature in database
GPG Key ID: 433F70E636E6EB87
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Pinentry settings
DATE = $$(date +'%B %Y')
VERSION = 0.1.3
VERSION = 0.1.4
BUGREPORT = https:\/\/github.com\/mrdotx\/pinentry-dmenu
# Paths
@ -22,10 +22,10 @@ FREETYPEINC = /usr/include/freetype2
# Includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXrender
# Flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -DPACKAGE_VERSION=\"${VERSION}\" -DPACKAGE_BUGREPORT=\"${BUGREPORT}\"
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -DPACKAGE_VERSION=\"${VERSION}\" -DPACKAGE_BUGREPORT=\"${BUGREPORT}\"
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}