Index: head/devel/opencvs/files/patch-client.c =================================================================== --- head/devel/opencvs/files/patch-client.c (nonexistent) +++ head/devel/opencvs/files/patch-client.c (revision 545742) @@ -0,0 +1,11 @@ +--- client.c.orig 2016-02-06 22:25:25 UTC ++++ client.c +@@ -33,6 +33,8 @@ + #include "cvs.h" + #include "remote.h" + ++extern struct cvs_var_head cvs_variables; ++ + struct cvs_req cvs_requests[] = { + /* this is what our client will use, the server should support it */ + { "Root", 1, cvs_server_root, REQ_NEEDED }, Property changes on: head/devel/opencvs/files/patch-client.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/opencvs/files/patch-cvs.c =================================================================== --- head/devel/opencvs/files/patch-cvs.c (revision 545741) +++ head/devel/opencvs/files/patch-cvs.c (revision 545742) @@ -1,13 +1,21 @@ ---- cvs.c.orig 2016-02-06 23:39:08.240246000 +0100 -+++ cvs.c 2016-02-06 23:39:10.243855000 +0100 -@@ -187,8 +187,10 @@ main(int argc, char **argv) +--- cvs.c.orig 2016-02-06 22:25:25 UTC ++++ cvs.c +@@ -83,6 +83,7 @@ extern CVSENTRIES *current_list; + + struct hash_table created_directories; + struct hash_table created_cvs_directories; ++struct cvs_var_head cvs_variables; + + void + sighandler(int sig) +@@ -187,8 +188,10 @@ main(int argc, char **argv) struct stat st; char fpath[PATH_MAX]; +#if 0 if (pledge("stdio rpath wpath cpath fattr proc exec", NULL) == -1) err(1, "pledge"); +#endif tzset(); Index: head/devel/opencvs/files/patch-cvs.h =================================================================== --- head/devel/opencvs/files/patch-cvs.h (revision 545741) +++ head/devel/opencvs/files/patch-cvs.h (revision 545742) @@ -1,13 +1,22 @@ ---- cvs.h.orig 2015-05-04 11:15:45.000000000 +0200 -+++ cvs.h 2016-02-06 23:33:35.522379000 +0100 +--- cvs.h.orig 2015-05-04 09:15:45 UTC ++++ cvs.h @@ -29,6 +29,10 @@ #include +/* For building on FreeBSD */ +#include +#define __dead + #include "config.h" #include "file.h" #include "log.h" +@@ -189,7 +193,7 @@ struct cvs_var { + TAILQ_ENTRY(cvs_var) cv_link; + }; + +-TAILQ_HEAD(, cvs_var) cvs_variables; ++TAILQ_HEAD(cvs_var_head, cvs_var); + + #define CVS_ROOT_CONNECTED 0x01 + Index: head/devel/opencvs/files/patch-tag.c =================================================================== --- head/devel/opencvs/files/patch-tag.c (nonexistent) +++ head/devel/opencvs/files/patch-tag.c (revision 545742) @@ -0,0 +1,11 @@ +--- tag.c.orig 2016-02-06 22:25:26 UTC ++++ tag.c +@@ -34,7 +34,7 @@ void cvs_tag_local(struct cvs_file *); + static int tag_del(struct cvs_file *); + static int tag_add(struct cvs_file *); + +-struct file_info_list files_info; ++extern struct file_info_list files_info; + + static int runflags = 0; + static char *tag = NULL; Property changes on: head/devel/opencvs/files/patch-tag.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property