Merge branch 'master' into autotools-conversion

This commit is contained in:
Jon Trulson
2020-11-24 16:53:24 -07:00
56 changed files with 307 additions and 186 deletions

View File

@@ -89,7 +89,7 @@ static int print_load_stats(
ABProfiledInterval configTime
);
char Buf[MAXPATHLEN]; /* Work buffer */
extern char Buf[MAXPATHLEN]; /* Work buffer */
/*
* Loads in a new project, replacing the current project.

View File

@@ -109,7 +109,7 @@ typedef enum
} CG_STATUS;
CGenOptions CodeGenOptions;
extern CGenOptions CodeGenOptions;
StringList user_env_vars = NULL;
StringList module_list = NULL;
static CG_GOAL user_goal = CG_GOAL_UNDEF;

View File

@@ -229,7 +229,7 @@ static XtTranslations proj_transtbl = NULL;
static XRectangle *rband_rect = NULL;
static Boolean mselect_adjust = False;
char Buf[MAXPATHLEN]; /* Work buffer */
extern char Buf[MAXPATHLEN]; /* Work buffer */
/*************************************************************************
**

View File

@@ -94,7 +94,7 @@ static void mult_module_selected(
** **
**************************************************************************/
char Buf[MAXPATHLEN]; /* Work buffer */
extern char Buf[MAXPATHLEN]; /* Work buffer */
/*************************************************************************
** **

View File

@@ -80,7 +80,7 @@
const char mod_path[] = "*proj_mod_path";
const char proj_path[] = "*proj_proj_path";
char Buf[MAXPATHLEN]; /* Work buffer */
extern char Buf[MAXPATHLEN]; /* Work buffer */
/* Whether we are to export a module as BIL (default) or UIL */
static BOOL ExportAsUIL = FALSE;

View File

@@ -60,7 +60,7 @@
#include "bilP.h"
BIL_LOAD_INFO bilP_load;
char Buf[MAXPATHLEN];
static char Buf[MAXPATHLEN];
/*
* Read a BIL file into memory. Returns a project node.