From: Peter Johnson Date: Thu, 11 Oct 2001 00:14:25 +0000 (-0000) Subject: Output "real" version and package names (from config.h). X-Git-Tag: v0.1.0~261 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=840c0f169d8732c4f03e2110e1675bf3150b4648;p=yasm Output "real" version and package names (from config.h). svn path=/trunk/yasm/; revision=269 --- diff --git a/frontends/yasm/yasm.c b/frontends/yasm/yasm.c index 2c5d9a13..8e1e6b1f 100644 --- a/frontends/yasm/yasm.c +++ b/frontends/yasm/yasm.c @@ -82,8 +82,8 @@ opt_option options[] = }; /* help messages */ -char help_head[] = "yasm version 0.1 compiled " __DATE__ "\n" - "copyright (c) 2001 Peter Johnson and Yasm developers\n" +char help_head[] = "yasm version " VERSION " compiled " __DATE__ "\n" + "copyright (c) 2001 Peter Johnson and " PACKAGE " developers\n" "mailto: asm-devel@bilogic.org\n" "\n" "usage: yasm [options|files]+\n" diff --git a/src/main.c b/src/main.c index 2c5d9a13..8e1e6b1f 100644 --- a/src/main.c +++ b/src/main.c @@ -82,8 +82,8 @@ opt_option options[] = }; /* help messages */ -char help_head[] = "yasm version 0.1 compiled " __DATE__ "\n" - "copyright (c) 2001 Peter Johnson and Yasm developers\n" +char help_head[] = "yasm version " VERSION " compiled " __DATE__ "\n" + "copyright (c) 2001 Peter Johnson and " PACKAGE " developers\n" "mailto: asm-devel@bilogic.org\n" "\n" "usage: yasm [options|files]+\n"