diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2009-10-06 11:44:11 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-10-06 12:52:06 +0200 |
commit | 7993b3db57070ec6b37bdac13f9edf9362861f16 (patch) | |
tree | 9966f152ed07e2c4d7e5c0a2060bd1f275947e08 /options.c | |
parent | dea12e2529ecdcab3a382fc71e7430326b74d6a6 (diff) |
Build system.
* configure.ac: New file.
* package.m4: Likewise.
* Makefile.am: Likewise.
* build: Remove file.
* nsmux.c (netfs_server_name, netfs_server_version): Set from the Autoconf
variables.
* options.c (argp_program_version): Likewise.
(argp_program_bug_address): New.
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -107,7 +107,8 @@ static const struct argp_child argp_children_startup[] = { /*---------------------------------------------------------------------------*/ /*The version of the server for argp*/ -const char *argp_program_version = "0.0"; +const char *argp_program_version = PACKAGE_VERSION; +const char *argp_program_bug_address = PACKAGE_BUGREPORT; /*---------------------------------------------------------------------------*/ /*The arpg parser for runtime arguments*/ struct argp argp_runtime = { 0, 0, 0, 0, argp_children_runtime }; |