|
ncpfs |
|
Comments:
|
If you get the error:
ncpm_common.c: In function "process_connection": You will need to add the following line in sutil/ncpm_common.c #include <stddef.h> by marc at 2009-01-17 12:18:34 |
|
If you get the error:
nwpjmv.c: In function "build_command": You will need to add the following line in sutil/ncpm_common.c #include <syslog.h> by marc at 2009-01-17 12:30:30 |
|
On systems with gcc version 4, you will get the error message: ncplib.c:2424: error: invalid storage class for function get_argument You will need to remove the static declaration from the get_argument function. The function declaration should thus be: int get_argument(int arg_no, const char **target) { or use the following command: sed -i "s/static int get_argument/int get_argument/g" lib/ncplib.c by marc at 2009-01-17 13:05:08 |
|
On systems with gcc version 4, you will get the error message:
pserver.c: In function "build_command": Use the patch above or the install script to move the add_string function outside the function build_command. by marc at 2009-01-17 13:08:35 |