summaryrefslogtreecommitdiff
path: root/nsmux.c
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2009-10-06 11:44:11 +0200
committerThomas Schwinge <tschwinge@gnu.org>2009-10-06 12:52:06 +0200
commit7993b3db57070ec6b37bdac13f9edf9362861f16 (patch)
tree9966f152ed07e2c4d7e5c0a2060bd1f275947e08 /nsmux.c
parentdea12e2529ecdcab3a382fc71e7430326b74d6a6 (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 'nsmux.c')
-rw-r--r--nsmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nsmux.c b/nsmux.c
index 112dd5f31..2424a2e91 100644
--- a/nsmux.c
+++ b/nsmux.c
@@ -45,10 +45,10 @@
/*---------------------------------------------------------------------------*/
/*--------Global Variables---------------------------------------------------*/
/*The name of the server*/
-char *netfs_server_name = "nsmux";
+char *netfs_server_name = PACKAGE_NAME;
/*---------------------------------------------------------------------------*/
/*The version of the server*/
-char *netfs_server_version = "0.0";
+char *netfs_server_version = PACKAGE_VERSION;
/*---------------------------------------------------------------------------*/
/*The maximal length of a chain of symbolic links*/
int netfs_maxsymlinks = 12;