diff options
author | Sergiu Ivanov <unlimitedscolobb@gmail.com> | 2009-10-27 20:33:07 +0000 |
---|---|---|
committer | Sergiu Ivanov <unlimitedscolobb@gmail.com> | 2009-10-27 20:33:07 +0000 |
commit | a85ac8c0d182245d75eed1136503a57ac1c3a8fa (patch) | |
tree | 5bab9dbccfafa73132b335fe70d6d28dc994583f /filter.c | |
parent | 9401ed47c6d00cca32b581e096502f9534998bcd (diff) |
Add an autotools-based build system.
* configure.ac: New file.
* package.m4: Likewise.
* Makefile.am: Likewise.
* build: Remove file.
* filter.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 'filter.c')
-rw-r--r-- | filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,10 +43,10 @@ /*---------------------------------------------------------------------------*/ /*--------Global Variables---------------------------------------------------*/ /*The name of the server*/ -char *netfs_server_name = "filter"; +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; |