summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAleksey Sanin <aleksey@src.gnome.org>2003-04-07 17:05:01 +0000
committerAleksey Sanin <aleksey@src.gnome.org>2003-04-07 17:05:01 +0000
commit956cbc0d5d9443c06a9ff461d2db9fc64b834d19 (patch)
treee4b6d623bdda6b3ab12ee564655dcfdecf6df06d /apps
parent12393a550213385a5cc45aa0cc0e0bfee5a5af1a (diff)
downloadxmlsec1-956cbc0d5d9443c06a9ff461d2db9fc64b834d19.tar.gz
xmlsec1-956cbc0d5d9443c06a9ff461d2db9fc64b834d19.tar.bz2
xmlsec1-956cbc0d5d9443c06a9ff461d2db9fc64b834d19.zip
use XMLSEC_VERSION and XMLSEC_PACKAGE instead of VERSION and PACKAGE
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile.am2
-rw-r--r--apps/xmlsec.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/apps/Makefile.am b/apps/Makefile.am
index 08dcfc9d..9b4c9aab 100644
--- a/apps/Makefile.am
+++ b/apps/Makefile.am
@@ -3,8 +3,6 @@ NULL =
bin_PROGRAMS = xmlsec1
INCLUDES = \
- -DPACKAGE=\"@PACKAGE@\" \
- -DVERSION=\"@VERSION@\" \
-DXMLSEC_CRYPTO=\"@XMLSEC_CRYPTO@\" \
-I$(top_srcdir)/include \
$(XMLSEC_DEFINES) \
diff --git a/apps/xmlsec.c b/apps/xmlsec.c
index 4f065ec7..a4afd3e5 100644
--- a/apps/xmlsec.c
+++ b/apps/xmlsec.c
@@ -726,7 +726,7 @@ int main(int argc, const char **argv) {
xmlSecAppPrintHelp(subCommand, cmdLineTopics);
goto success;
} else if(command == xmlSecAppCommandVersion) {
- fprintf(stdout, "%s %s (%s)\n", PACKAGE, VERSION, XMLSEC_CRYPTO);
+ fprintf(stdout, "%s %s (%s)\n", XMLSEC_PACKAGE, XMLSEC_VERSION, XMLSEC_CRYPTO);
goto success;
}