summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.mk17
-rw-r--r--pinentry/pinentry.c4
2 files changed, 11 insertions, 10 deletions
diff --git a/config.mk b/config.mk
index 8c28fe6..0ab077b 100644
--- a/config.mk
+++ b/config.mk
@@ -1,7 +1,8 @@
-# pinentry-dmenu version
-VERSION = 0.1
+# Pinentry settings
+VERSION = 0.1
+PACKAGE_BUGREPORT = https://github.com/ritze/pinentry-dmenu
-# paths
+# Paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
@@ -12,20 +13,20 @@ X11LIB = /usr/X11R6/lib
XINERAMALIBS = -lXinerama
XINERAMAFLAGS = -DXINERAMA
-# freetype
+# Freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
-# includes and libs
+# Includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
-# flags
-CPPFLAGS = -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
+# Flags
+CPPFLAGS = -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -DPACKAGE_VERSION=\"${VERSION}\" -DPACKAGE_BUGREPORT=\"${PACKAGE_BUGREPORT}\"
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}
-# compiler and linker
+# Compiler and linker
CC = cc
diff --git a/pinentry/pinentry.c b/pinentry/pinentry.c
index 68a7910..f305a7d 100644
--- a/pinentry/pinentry.c
+++ b/pinentry/pinentry.c
@@ -393,9 +393,9 @@ my_strusage( int level )
{
case 11: p = this_pgmname; break;
case 12: p = "pinentry"; break;
- case 13: p = "*REDACTED*"; break;
+ case 13: p = PACKAGE_VERSION; break;
case 14: p = "Copyright (C) 2015 g10 Code GmbH"; break;
- case 19: p = "Please report bugs to <" "*REDACTED*" ">.\n"; break;
+ case 19: p = "Please report bugs to <" PACKAGE_BUGREPORT ">.\n"; break;
case 1:
case 40:
{