Allow zic to compile by defining a "" value for my_exec_path. It isn't

used by zic anyway.
This commit is contained in:
Bruce Momjian 2004-05-19 01:17:42 +00:00
parent 07f2b767dc
commit 48eb73b556
1 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,12 @@ static char elsieid[] = "@(#)zic.c 7.115";
#endif
#endif
/*
* This allows zic to compile by just assigning a dummy value.
* pgtz.c references it, but no one uses it from zic.
*/
char my_exec_path[MAXPGPATH] = "";
/*
** On some ancient hosts, predicates like `isspace(C)' are defined
** only if isascii(C) || C == EOF. Modern hosts obey the C Standard,