yabasic-2.78.5/0000775000175100017510000000000013260635165010244 500000000000000yabasic-2.78.5/function.c0000664000175100017510000014152013257002164012151 00000000000000/* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de function.c --- code for functions This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ /* ------------- includes ---------------- */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* all prototypes and structures */ #endif /* ------------- external references ---------------- */ extern int mylineno; /* current line number */ extern int yyparse (); /* call bison parser */ /* ------------- local functions ---------------- */ static char *fromto (char *, int, int); /* get portion of string (mid$ et al) */ static void clear_buff (); /* clear system-input buffers */ static void store_buff (char *, int); /* store system-input buffer */ static int do_glob (char *, char *); /* actually do the globbing */ static double other2dec (char *, int); /* convert hex to decimal */ static char *dec2other (double, int); /* convert decimal to hex */ static double peek (char *); /* peek into internals */ static char *peek2 (char *, struct command *); /* peek into internals */ static char *peek3 (char *, char *); /* peek into internals */ static int peekfile (int); /* read a byte from stream */ static char *do_system (char *); /* executes command via command.com */ static int do_system2 (char *); /* execute command as system */ static double myrand (); /* generate random number in given range */ /* ------------- global variables ---------------- */ struct command *lastdata = NULL; /* used to associate all data-commands with each others */ static struct buff_chain *buffroot; /* start of sys-input buffer */ static struct buff_chain **buffcurr; /* current entry in buff_chain */ static int buffcount; /* number of filled buffers */ char *last_inkey; /* last result of inkey$ */ /* ------------- subroutines ---------------- */ void token (struct command *cmd) /* extract token from variable */ { int split; struct stackentry *s; struct symbol *sym; struct array *ar; int num = 0, i; char *p, *q; char **pp; char *del, *line; int wasdel, isdel; if (cmd->type == cSPLIT2 || cmd->type == cTOKEN2) { del = pop (stSTRING)->pointer; } else { del = " \t"; } split = (cmd->type == cSPLIT || cmd->type == cSPLIT2); s = pop (stSTRINGARRAYREF); line = pop (stSTRING)->pointer; sym = get_sym (s->pointer, syARRAY, amSEARCH); if (!sym || !sym->pointer) { sprintf (string, "array '%s()' is not defined", strip (s->pointer)); error (ERROR, string); goto token_done; } ar = sym->pointer; if (ar->dimension > 1) { error (ERROR, "only one dimensional arrays allowed"); goto token_done; } /* count number of tokens */ isdel = TRUE; if (split && *line) { num = 1; } else { num = 0; } for (p = line; *p; ++p) { wasdel = isdel; isdel = (strchr (del, *p) != NULL); if (split) { if (isdel) { num++; } } else { if (isdel && isdel != wasdel) { num++; } } } if (!split && !isdel) { num++; } /* free previous array content */ for (i = 0; i < ar->bounds[0]; i++) { free (((char **) ar->pointer)[i]); } free (ar->pointer); ar->pointer = my_malloc ((num + 1) * sizeof (char *)); pp = ar->pointer; pp[0] = my_strdup (""); /* extract tokens */ i = 1; isdel = TRUE; if (*line) { for (p = q = line;; p++) { wasdel = isdel; isdel = (strchr (del, *p) != NULL) || !*p; if ((split && isdel) || (!split && (isdel && isdel != wasdel))) { while (strchr (del, *q) && q < p) { q++; } pp[i] = my_strndup (q, p - q + 1); pp[i][p - q] = '\0'; q = p + 1; i++; } if (!*p) { break; } } } ar->bounds[0] = num + 1; token_done: s = push (); s->type = stNUMBER; s->value = num; } void tokenalt (struct command *cmd) /* extract token from variable with alternate semantics */ { char *del; /* delimiter for strings */ struct stackentry *t; char *old, *new, *tok; int split; if (cmd->type == cSPLITALT2 || cmd->type == cTOKENALT2) { del = pop (stSTRING)->pointer; } else { del = " \t"; } split = (cmd->type == cSPLITALT || cmd->type == cSPLITALT2); t = pop (stSTRING); old = t->pointer; t->pointer = NULL; /* prevent push from freeing the memory */ t = push (); t->type = stSTRING; new = old; tok = NULL; while (*new) { if (!tok && (!strchr (del, *new) || split)) { tok = new; /* found start of token */ } if (tok && strchr (del, *new)) { break; /* found end of token */ } new++; } if (*new) { *new = '\0'; /* terminate token */ new++; if (!split) { while (*new) { if (!strchr (del, *new)) { break; /* found start of next token */ } new++; } } } t->pointer = my_strdup (tok ? tok : ""); /* copy token */ /* move rest of string */ while (*new) { *old = *new; old++; new++; }; *old = '\0'; } void glob (void) /* check, if pattern globs string */ { char *str, *pat; struct stackentry *stack; int res; pat = (char *) pop (stSTRING)->pointer; str = (char *) pop (stSTRING)->pointer; res = do_glob (str, pat); stack = push (); stack->value = res; stack->type = stNUMBER; } static int do_glob (char *str, char *pat) /* actually do the globbing */ { int res; if (infolevel >= DEBUG) { sprintf (string, "globbing '%s' on '%s'", str, pat); error (DEBUG, string); } if (*pat == '\0' && *str == '\0') { return TRUE; } else if (*pat == '\0') { return FALSE; } else if (*pat == '?' && *str == '\0') { return FALSE; } else if (*pat == '?') { if (*str == '\0') { return FALSE; } pat++; str++; } else if (*pat == '*') { pat++; res = FALSE; while (*str && !(res = do_glob (str, pat))) { str++; } if (res) { return TRUE; } } else if (*str == '\0') { return FALSE; } else { while (*pat && *pat != '?' && *pat != '*') { if (*pat != *str) { return FALSE; } str++; pat++; } } return do_glob (str, pat); } void concat () /* concatenates two strings from stack */ { struct stackentry *c; char *aa, *bb, *cc; aa = pop (stSTRING)->pointer; bb = pop (stSTRING)->pointer; cc = (char *) my_malloc (sizeof (char) * (strlen (aa) + strlen (bb) + 1)); strcpy (cc, bb); strcat (cc, aa); c = push (); c->type = stSTRING; c->pointer = cc; } void create_changestring (int type) /* create command 'changestring' */ { struct command *cmd; cmd = add_command (cCHANGESTRING, FALSE, NULL); cmd->args = type; } void changestring (struct command *current) /* changes a string */ { int type, a2, a3; char *newpart; char *oldstring; int i, len; struct stackentry *a1; type = current->args; newpart = pop (stSTRING)->pointer; if (type > fTWOARGS) { a3 = (int) pop (stNUMBER)->value; } if (type > fONEARGS) { a2 = (int) pop (stNUMBER)->value; } a1 = pop (stSTRING); oldstring = a1->pointer; a1->pointer = NULL; /* this prevents push from freeing the memory */ if (!oldstring || !*oldstring) { return; } switch (type) { case fMID: for (i = 1; i < a2 + a3; i++) { if (!oldstring[i - 1]) { break; } if (i >= a2) { if (!newpart[i - a2]) { break; } oldstring[i - 1] = newpart[i - a2]; } } break; case fMID2: len = strlen (oldstring); for (i = 1; i <= len; i++) { if (!oldstring[i - 1]) { break; } if (i >= a2) { if (!newpart[i - a2]) { break; } oldstring[i - 1] = newpart[i - a2]; } } break; case fLEFT: for (i = 1; i <= a2; i++) { if (!oldstring[i - 1] || !newpart[i - 1]) { break; } oldstring[i - 1] = newpart[i - 1]; } break; case fRIGHT: len = strlen (oldstring); for (i = 1; i <= len; i++) { if (i > len - a2) { if (!newpart[i - 1 - len + a2]) { break; } oldstring[i - 1] = newpart[i - 1 - len + a2]; } } break; } } void create_function (int type) /* create command 'function' */ /* type can be sin,cos,mid$ ... */ { struct command *cmd; cmd = add_command (cFUNCTION, FALSE, NULL); cmd->args = type; } void function (struct command *current) /* performs a function */ { struct stackentry *stack, *a1, *a2, *a3, *a4; char *pointer; double value; time_t datetime; int type, result, len, start, i, max; char *str, *str2; a3 = NULL; type = current->args; if (type > fTHREEARGS) { a4 = pop (stSTRING_OR_NUMBER); } if (type > fTWOARGS) { a3 = pop (stSTRING_OR_NUMBER); } if (type > fONEARGS) { a2 = pop (stSTRING_OR_NUMBER); } if (type > fZEROARGS) { a1 = pop (stSTRING_OR_NUMBER); } switch (type) { case fSIN: value = sin (a1->value); result = stNUMBER; break; case fASIN: value = asin (a1->value); result = stNUMBER; break; case fCOS: value = cos (a1->value); result = stNUMBER; break; case fACOS: value = acos (a1->value); result = stNUMBER; break; case fTAN: value = tan (a1->value); result = stNUMBER; break; case fATAN: value = atan (a1->value); result = stNUMBER; break; case fEXP: value = exp (a1->value); result = stNUMBER; break; case fLOG: value = log (a1->value); result = stNUMBER; break; case fLOG2: value = log (a1->value) / log (a2->value); result = stNUMBER; break; case fLEN: value = (double) strlen (a1->pointer); result = stNUMBER; break; case fSTR: sprintf (string, "%g", a1->value); pointer = my_strdup (string); result = stSTRING; break; case fSTR2: case fSTR3: result = stSTRING; if (!myformat (string, a1->value, a2->pointer, a3 ? a3->pointer : NULL)) { pointer = my_strdup (""); sprintf (string, "'%s' is not a valid format", (char *) a2->pointer); error (ERROR, string); break; } pointer = my_strdup (string); break; case fSQRT: value = sqrt (a1->value); result = stNUMBER; break; case fSQR: value = a1->value * a1->value; result = stNUMBER; break; case fINT: if (a1->value < 0) { value = -floor (-a1->value); } else { value = floor (a1->value); } result = stNUMBER; break; case fFRAC: if (a1->value < 0) { value = a1->value + floor (-a1->value); } else { value = a1->value - floor (a1->value); } result = stNUMBER; break; case fABS: value = fabs (a1->value); result = stNUMBER; break; case fSIG: if (a1->value < 0) { value = -1.; } else if (a1->value > 0) { value = 1.; } else { value = 0.; } result = stNUMBER; break; case fMOD: value = a1->value - a2->value * (int) (a1->value / a2->value); result = stNUMBER; break; case fRAN: value = a1->value * myrand (); result = stNUMBER; break; case fRAN2: value = myrand (); result = stNUMBER; break; case fMIN: if (a1->value > a2->value) { value = a2->value; } else { value = a1->value; } result = stNUMBER; break; case fMAX: if (a1->value > a2->value) { value = a1->value; } else { value = a2->value; } result = stNUMBER; break; case fVAL: i = sscanf ((char *) a1->pointer, "%lf", &value); if (i != 1) { value = 0; } result = stNUMBER; break; case fATAN2: value = atan2 (a1->value, a2->value); result = stNUMBER; break; case fLEFT: str = a1->pointer; len = (int) a2->value; pointer = fromto (str, 0, len - 1); result = stSTRING; break; case fRIGHT: str = a1->pointer; max = strlen (str); len = (int) a2->value; pointer = fromto (str, max - len, max - 1); result = stSTRING; break; case fMID: str = a1->pointer; start = (int) a2->value; len = (int) a3->value; pointer = fromto (str, start - 1, start + len - 2); result = stSTRING; break; case fMID2: str = a1->pointer; start = (int) a2->value; pointer = fromto (str, start - 1, strlen (str)); result = stSTRING; break; case fINKEY: pointer = inkey (a1->value); strcpy(last_inkey, pointer); result = stSTRING; break; case fAND: value = (int) a1->value & (int) a2->value; result = stNUMBER; break; case fOR: value = (int) a1->value | (int) a2->value; result = stNUMBER; break; case fEOR: value = (int) a1->value ^ (int) a2->value; result = stNUMBER; break; case fMOUSEX: getmousexybm (a1->pointer, &i, NULL, NULL, NULL); value = i; result = stNUMBER; break; case fMOUSEY: getmousexybm (a1->pointer, NULL, &i, NULL, NULL); value = i; result = stNUMBER; break; case fMOUSEB: getmousexybm (a1->pointer, NULL, NULL, &i, NULL); value = i; result = stNUMBER; break; case fMOUSEMOD: getmousexybm (a1->pointer, NULL, NULL, NULL, &i); value = i; result = stNUMBER; break; case fCHR: pointer = my_malloc (2); i = (int) floor (a1->value); if (i > 255 || i < 0) { sprintf (string, "can't convert %g to character", a1->value); error (ERROR, string); return; } pointer[1] = '\0'; pointer[0] = (unsigned char) i; result = stSTRING; break; case fASC: value = ((unsigned char *) a1->pointer)[0]; result = stNUMBER; break; case fBIN: pointer = dec2other (a1->value, 2); result = stSTRING; break; case fHEX: pointer = dec2other (a1->value, 16); result = stSTRING; break; case fDEC: value = other2dec (a1->pointer, 16); result = stNUMBER; break; case fDEC2: value = other2dec (a1->pointer, (int) (a2->value)); result = stNUMBER; break; case fUPPER: str = a1->pointer; pointer = my_malloc (strlen (str) + 1); i = -1; do { i++; pointer[i] = toupper ((int) str[i]); } while (pointer[i]); result = stSTRING; break; case fLOWER: str = a1->pointer; pointer = my_malloc (strlen (str) + 1); i = -1; do { i++; pointer[i] = tolower ((int) str[i]); } while (pointer[i]); result = stSTRING; break; case fLTRIM: str = a1->pointer; while (isspace (*str)) { str++; } pointer = my_strdup (str); result = stSTRING; break; case fRTRIM: str = a1->pointer; i = strlen (str) - 1; while (isspace (str[i]) && i >= 0) { i--; } str[i + 1] = '\0'; pointer = my_strdup (str); result = stSTRING; break; case fTRIM: str = a1->pointer; i = strlen (str) - 1; while (isspace (str[i]) && i >= 0) { i--; } str[i + 1] = '\0'; while (isspace (*str)) { str++; } pointer = my_strdup (str); result = stSTRING; break; case fINSTR: str = a1->pointer; str2 = a2->pointer; if (*str2) { pointer = strstr (str, str2); } else { pointer = NULL; } if (pointer == NULL) { value = 0; } else { value = pointer - str + 1; } result = stNUMBER; break; case fINSTR2: str = a1->pointer; str2 = a2->pointer; start = (int) a3->value; if (start > (int) strlen (str)) { value = 0; } else { if (start < 1) { start = 1; } pointer = strstr (str + start - 1, str2); if (pointer == NULL) { value = 0; } else { value = pointer - str + 1; } } result = stNUMBER; break; case fRINSTR: str = a1->pointer; str2 = a2->pointer; len = strlen (str2); for (i = strlen (str) - 1; i >= 0; i--) if (!strncmp (str + i, str2, len)) { break; } value = i + 1; result = stNUMBER; break; case fRINSTR2: str = a1->pointer; str2 = a2->pointer; len = strlen (str2); start = (int) a3->value; if (start < 1) { value = 0; } else { if (start > (int) strlen (str)) { start = strlen (str); } for (i = start - 1; i >= 0; i--) if (!strncmp (str + i, str2, len)) { break; } value = i + 1; } result = stNUMBER; break; case fDATE: pointer = my_malloc (100); time (&datetime); strftime (pointer, 100, "%w-%m-%d-%Y-%a-%b", localtime (&datetime)); result = stSTRING; break; case fTIME: pointer = my_malloc (100); time (&datetime); strftime (pointer, 100, "%H-%M-%S", localtime (&datetime)); sprintf (pointer + strlen (pointer), "-%d", (int) (time (NULL) - compilation_start)); result = stSTRING; break; case fSYSTEM: str = a1->pointer; pointer = do_system (str); result = stSTRING; break; case fSYSTEM2: str = a1->pointer; value = do_system2 (str); result = stNUMBER; break; case fPEEK: str = a1->pointer; value = peek (str); result = stNUMBER; break; case fPEEK2: str = a1->pointer; pointer = peek2 (str, current); result = stSTRING; break; case fPEEK3: str = a1->pointer; str2 = a2->pointer; pointer = peek3 (str, str2); result = stSTRING; break; case fPEEK4: value = peekfile ((int) a1->value); result = stNUMBER; break; case fGETBIT: pointer = getbit ((int) a1->value, (int) a2->value, (int) a3->value, (int) a4->value); result = stSTRING; break; case fGETCHAR: pointer = getchars ((int) a1->value, (int) a2->value, (int) a3->value, (int) a4->value); result = stSTRING; break; case fTELL: i = (int) (a1->value); if (badstream (i, 0)) { return; } if (!(stream_modes[i] & (stmREAD | stmWRITE))) { sprintf (string, "stream %d not opened", i); error (ERROR, string); value = 0; } else { value = ftell (streams[i]); } result = stNUMBER; break; default: error (ERROR, "function called but not implemented"); return; } stack = push (); /* copy result */ stack->type = result; if (result == stSTRING) { stack->pointer = pointer; } else { stack->value = value; } } static int do_system2 (char *cmd) /* hand over execution of command to system */ { #ifdef UNIX int ret; if (curinized) { reset_shell_mode (); } ret = system (cmd); if (curinized) { reset_prog_mode (); } signal(SIGTTOU, SIG_IGN); signal(SIGTTIN, SIG_IGN); tcsetpgrp(STDIN_FILENO, getpid()); return ret; #else STARTUPINFO start; PROCESS_INFORMATION proc; DWORD ec; /* exit code */ SECURITY_ATTRIBUTES prosec; SECURITY_ATTRIBUTES thrsec; char *comspec; ZeroMemory (&prosec, sizeof (prosec)); prosec.nLength = sizeof (prosec); prosec.bInheritHandle = TRUE; ZeroMemory (&thrsec, sizeof (thrsec)); thrsec.nLength = sizeof (thrsec); thrsec.bInheritHandle = TRUE; ZeroMemory (&start, sizeof (start)); start.cb = sizeof (STARTUPINFO); start.dwFlags = STARTF_USESTDHANDLES; start.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE); start.hStdError = GetStdHandle (STD_ERROR_HANDLE); start.hStdInput = GetStdHandle (STD_INPUT_HANDLE); comspec = getenv ("COMSPEC"); if (!comspec) { comspec = "command.com"; } sprintf (string, "%s /C %s", comspec, cmd); if (!CreateProcess (NULL, string, &prosec, &thrsec, TRUE, 0, NULL, NULL, &start, &proc)) { sprintf (string, "couldn't execute '%s'", cmd); error (ERROR, string); return -1; } WaitForSingleObject (proc.hProcess, INFINITE); if (!GetExitCodeProcess (proc.hProcess, &ec)) { ec = -1; } CloseHandle (proc.hProcess); CloseHandle (proc.hThread); return ec; #endif } static double myrand () { long ran; ran = (((long) rand ()) & 0x7fffL) << 15 | ((long) rand () & 0x7fffL); return ((double) ran) / ((double) 0x3fffffffL); } static void clear_buff () /* clear system-input buffers */ { buffcurr = &buffroot; buffcount = 0; } static void store_buff (char *buff, int len) /* store system-input buffer */ { *buffcurr = my_malloc (sizeof (struct buff_chain)); memcpy ((*buffcurr)->buff, buff, SYSBUFFLEN + 1); (*buffcurr)->len = len; (*buffcurr)->next = NULL; buffcurr = &((*buffcurr)->next); buffcount++; } char * recall_buff () /* recall store buffer */ { struct buff_chain *curr, *old; char *result; int done, len; result = (char *) my_malloc (buffcount * (SYSBUFFLEN + 1)); curr = buffroot; len = 0; for (done = 0; done < buffcount && curr; done++) { memcpy (result + len, curr->buff, SYSBUFFLEN); len += curr->len; old = curr; curr = curr->next; my_free (old); } return result; } static char * do_system (char *cmd) /* executes command via command.com */ { static char buff[SYSBUFFLEN + 1]; /* buffer to store command */ int len; /* number of bytes read */ #ifdef UNIX FILE *p; /* points to pipe */ int c; /* char read from pipe */ #else int ret; STARTUPINFO start; PROCESS_INFORMATION proc; HANDLE piperead, pipewrite; /* both ends of pipes */ SECURITY_ATTRIBUTES prosec; SECURITY_ATTRIBUTES thrsec; char *comspec; #endif clear_buff (); #ifdef UNIX p = popen (cmd, "r"); if (p == NULL) { sprintf (string, "couldn't execute '%s'", cmd); error (ERROR, string); return my_strdup (""); } do { len = 0; while (len < SYSBUFFLEN) { c = fgetc (p); if (c == EOF) { buff[len] = '\0'; break; } buff[len] = c; len++; } store_buff (buff, len); } while (c != EOF); pclose (p); #else ZeroMemory (&prosec, sizeof (prosec)); prosec.nLength = sizeof (prosec); prosec.bInheritHandle = TRUE; ZeroMemory (&thrsec, sizeof (thrsec)); thrsec.nLength = sizeof (thrsec); thrsec.bInheritHandle = TRUE; /* create pipe for writing */ CreatePipe (&piperead, &pipewrite, &prosec, 0); ZeroMemory (&start, sizeof (start)); start.cb = sizeof (STARTUPINFO); start.dwFlags = STARTF_USESTDHANDLES; start.hStdOutput = pipewrite; start.hStdError = pipewrite; start.hStdInput = GetStdHandle (STD_INPUT_HANDLE); comspec = getenv ("COMSPEC"); if (!comspec) { comspec = "command.com"; } sprintf (string, "%s /C %s", comspec, cmd); if (!CreateProcess (NULL, string, &prosec, &thrsec, TRUE, 0, NULL, NULL, &start, &proc)) { sprintf (string, "couldn't execute '%s'", cmd); error (ERROR, string); return my_strdup (""); } CloseHandle (pipewrite); do { /* wait for output to arrive */ if (!ReadFile (piperead, buff, SYSBUFFLEN, (LPDWORD) & len, NULL)) { ret = GetLastError (); } else { ret = 0; } buff[len] = '\0'; if (len > 0) { store_buff (buff, len); } } while (ret != ERROR_BROKEN_PIPE && ret != ERROR_HANDLE_EOF); CloseHandle (piperead); CloseHandle (proc.hProcess); CloseHandle (proc.hThread); #endif return recall_buff (); } void getmousexybm (char *s, int *px, int *py, int *pb, int *pm) /* get mouse coordinates */ { int x = 0, y = 0, b = 0, m = 0; char c; if (!*s) s=last_inkey; if (*s) { sscanf (s, "MB%d%c+%d:%04d,%04d", &b, &c, &m, &x, &y); if (px) { *px = x; } if (py) { *py = y; } if (pb) { if (c == 'd') { *pb = b; } else { *pb = -b; } } if (pm) { *pm = m; } return; } if (px) { *px = mousex; } if (py) { *py = mousey; } if (pb) { *pb = mouseb; } if (pm) { *pm = mousemod; } } static char * dec2other (double d, int base) /* convert double to hex or binary number */ { int len; double dec, dec2; char *other; int negative = FALSE; if (d < 0) { dec2 = floor (-d); negative = TRUE; } else { dec2 = floor (d); } len = negative ? 2 : 1; for (dec = dec2; dec >= base; dec /= base) { len++; } other = my_malloc (len + 1); other[len] = '\0'; dec = dec2; for (len--; len >= 0; len--) { other[len] = "0123456789abcdef"[(int) (floor (dec - base * floor (dec / base) + 0.5))]; dec = floor (dec / base); } if (negative) { other[0] = '-'; } return other; } static double other2dec (char *hex, int base) /* convert hex or binary to double number */ { double dec; static char *digits = "0123456789abcdef"; char *found; int i, len; if (base != 2 && base != 16) { sprintf (string, "Cannot convert base-%d numbers", base); error (ERROR, string); return 0.; } dec = 0; len = strlen (hex); for (i = 0; i < len; i++) { dec *= base; found = strchr (digits, tolower (hex[i])); if (!found || found - digits >= base) { sprintf (string, "Not a base-%d number: '%s'", base, hex); error (ERROR, string); return 0.; } dec += found - digits; } return dec; } int myformat (char *dest, double num, char *format, char *sep) /* format number according to string */ { int i1, i2; /* dummy */ char c1; /* dummy */ static char ctrl[6]; char *found, *form; int pre, post, len, i, digit, colons, dots; int neg = FALSE; double ip, fp, round; static char *digits = "0123456789"; form = format; if (*form == '%') { /* c-style format */ strcpy (ctrl, "+- #0"); /* allowed control chars for c-format */ form++; while ((found = strchr (ctrl, *form)) != NULL) { *found = '?'; form++; } if (sscanf (form, "%u.%u%c%n", &i1, &i2, &c1, &i) != 3 && sscanf (form, "%u.%c%n", &i2, &c1, &i) != 2 && sscanf (form, ".%u%c%n", &i2, &c1, &i) != 2 && sscanf (form, "%u%c%n", &i2, &c1, &i) != 2) { return FALSE; } if (!strchr ("feEgG", c1) || form[i]) { return FALSE; } /* seems okay, let's print */ sprintf (dest, format, num); } else { /* basic-style format */ if (num < 0) { neg = TRUE; num = -num; } colons = 0; dots = 0; pre = 0; post = 0; for (form = format; *form; form++) { if (*form == ',') { if (dots) { return FALSE; } colons++; } else if (*form == '.') { dots++; } else if (*form == '#') { if (dots) { post++; } else { pre++; } } else { return FALSE; } } if (dots > 1) { return FALSE; } len = strlen (format); dest[len] = '\0'; round = 0.5; for (i = 0; i < post; i++) { round /= 10.; } if (fabs (num) < round) { neg = FALSE; } num += round; ip = floor (num); fp = num - ip; if (fp > 1 || fp < 0) { fp = 0; } dest[pre + colons] = format[pre + colons]; if ((int) ip) { for (i = pre + colons - 1; i >= 0; i--) { if (neg && !(int) ip) { neg = 0; dest[i] = '-'; } else { if (format[i] == '#') { digit = ((int) ip) % 10; ip /= 10; if (((int) ip) || digit > 0) { dest[i] = digits[digit]; } else { dest[i] = ' '; } } else { if ((int) ip) { dest[i] = format[i]; } else { dest[i] = ' '; } } } } } else { i = pre + colons - 1; dest[i--] = '0'; } if ((neg && i < 0) || ((int) ip)) { strcpy (dest, format); return TRUE; } if (neg) { dest[i--] = '-'; } for (; i >= 0; i--) { dest[i] = ' '; } for (i = pre + colons + 1; i < len; i++) { fp *= 10; digit = (int) fp; fp -= digit; dest[i] = digits[digit]; } if (sep && sep[0] && sep[1]) { for (i = 0; i < len; i++) { if (dest[i] == ',') { dest[i++] = sep[0]; } if (dest[i] == '.') { dest[i++] = sep[1]; } } } } return TRUE; } static char * fromto (char *str, int from, int to) /* gives back portion of string */ /* from and to can be in the range 1...strlen(str) */ { int len, i; char *part; len = strlen (str); if (from > to || to < 0 || from > len - 1) { /* give back empty string */ part = my_malloc (1); part[0] = '\0'; } else { if (from <= 0) { from = 0; } if (to >= len) { to = len - 1; } part = my_malloc (sizeof (char) * (to - from + 2)); /* characters and '/0' */ for (i = from; i <= to; i++) { part[i - from] = str[i]; /* copy */ } part[i - from] = '\0'; } return part; } void mywait () /* wait given number of seconds */ { double delay; #ifdef UNIX struct timeval tv; #else MSG msg; int timerid; #endif delay = pop (stNUMBER)->value; if (delay < 0) { delay = 0.; } #ifdef UNIX tv.tv_sec = (int) delay; tv.tv_usec = (delay - (int) delay) * 1000000; select (0, NULL, NULL, NULL, &tv); #else /* WINDOWS */ timerid = SetTimer (NULL, 0, (int) (delay * 1000), (TIMERPROC) NULL); GetMessage ((LPMSG) & msg, NULL, WM_TIMER, WM_TIMER); KillTimer (NULL, timerid); #endif } void mybell () /* ring ascii bell */ { #ifdef UNIX printf ("\007"); fflush (stdout); #else /* WINDOWS */ Beep (1000, 100); #endif } void create_poke (char flag) /* create Command 'cPOKE' */ { struct command *cmd; if (flag == 'S' || flag == 'D') { cmd = add_command (cPOKEFILE, FALSE, NULL); } else { cmd = add_command (cPOKE, FALSE, NULL); } cmd->tag = flag; } void poke (struct command *cmd) /* poke into internals */ { char *dest, *s, c; char *sarg = NULL; double darg; struct stackentry *stack; int count; if (cmd->tag == 's') { sarg = pop (stSTRING)->pointer; } else { darg = pop (stNUMBER)->value; } dest = pop (stSTRING)->pointer; for (s = dest; *s; s++) { *s = tolower ((int) *s); } if (!strcmp (dest, "fontheight") && !sarg) { fontheight = (int) darg; #ifdef UNIX calc_psscale (); #endif } else if (!strcmp (dest, "font") && sarg) { fontname = my_strdup (sarg); } else if (!strcmp (dest, "dump") && sarg) { dump_commands (sarg); } else if (!strcmp (dest, "dump") && sarg && !strcmp (sarg, "symbols")) { dump_sym (); } else if (!strcmp (dest, "dump") && sarg && (!strcmp (sarg, "sub") || !strcmp (sarg, "subs") || !strcmp (sarg, "subroutine") || !strcmp (sarg, "subroutines"))) { dump_sub (0); } else if (!strcmp (dest, "textalign") && sarg) { if (!check_alignment (sarg)) { return; } strncpy (text_align, sarg, 2); } else if (!strcmp (dest, "windoworigin") && sarg) { moveorigin (sarg); } else if (!strcmp (dest, "infolevel") && sarg) { c = tolower ((int) *sarg); switch (c) { case 'd': infolevel = DEBUG; break; case 'n': infolevel = NOTE; break; case 'w': infolevel = WARNING; break; case 'e': infolevel = ERROR; break; case 'f': infolevel = FATAL; break; default: error (ERROR, "invalid infolevel"); return; } if (infolevel >= DEBUG) { sprintf (string, "switching infolevel to '%c'", c); error (DEBUG, string); } } else if (!strcmp (dest, "stdout") && sarg) { fputs (sarg, stdout); } else if (!strcmp (dest, "random_seed") && !sarg) { srand((unsigned int) darg); } else if (!strcmp (dest, "__assert_stack_size") && !sarg) { count = -1; stack = stackhead; while ( stack != stackroot) { count++; stack = stack->prev; } if (count != (int) darg) { sprintf (string, "assertion failed for number of entries on stack; expected = %d, actual = %d",(int) darg,count); error (FATAL, string); } } else if (dest[0] == '#') { error (ERROR, "don't use quotes when poking into file"); } else { sprintf(string,"invalid poke: '%s'",dest); error (ERROR, string); } return; } void pokefile (struct command *cmd) /* poke into file */ { char *sarg = NULL; double darg; int stream; if (cmd->tag == 'S') { sarg = pop (stSTRING)->pointer; } else { darg = pop (stNUMBER)->value; } stream = (int) (pop (stNUMBER)->value); if (badstream (stream, 0)) { return; } if (!(stream_modes[stream] & stmWRITE)) { sprintf (string, "Stream %d not open for writing", stream); error (ERROR, string); return; } if (sarg) { fputs (sarg, streams[stream]); } else { if (darg < 0 || darg > 255) { error (ERROR, "stream poke out of byte range (0..255)"); return; } fputc ((int) darg, streams[stream]); } } static double peek (char *dest) /* peek into internals */ { char *s; time_t now; for (s = dest; *s; s++) { *s = tolower ((int) *s); } if (!strcmp (dest, "winwidth")) { return winwidth; } else if (!strcmp (dest, "winheight")) { return winheight; } else if (!strcmp (dest, "fontheight")) { return fontheight; } else if (!strcmp (dest, "screenheight")) { return LINES; } else if (!strcmp (dest, "screenwidth")) { return COLS; } else if (!strcmp (dest, "argument") || !strcmp (dest, "arguments")) { return yabargc; } else if (!strcmp (dest, "version")) { return strtod (VERSION, NULL); } else if (!strcmp (dest, "error")) { return errorcode; } else if (!strcmp (dest, "isbound")) { return is_bound; } else if (!strcmp (dest, "secondsrunning")) { time(&now); return now-compilation_start; } else if (dest[0] == '#') { error (ERROR, "don't use quotes when peeking into a file"); return 0; } error (ERROR, "invalid peek"); return 0; } static int peekfile (int stream) /* read a byte from stream */ { if (stream && badstream (stream, 0)) { return 0; } if (stream && !(stream_modes[stream] & stmREAD)) { sprintf (string, "stream %d not open for reading", stream); error (ERROR, string); return 0; } return fgetc (stream ? streams[stream] : stdin); } static char * peek2 (char *dest, struct command *curr) /* peek into internals */ { char *s; for (s = dest; *s; s++) { *s = tolower ((int) *s); } if (!strcmp (dest, "infolevel")) { if (infolevel == DEBUG) { return my_strdup ("debug"); } else if (infolevel == NOTE) { return my_strdup ("note"); } else if (infolevel == WARNING) { return my_strdup ("warning"); } else if (infolevel == ERROR) { return my_strdup ("error"); } else if (infolevel == FATAL) { return my_strdup ("fatal"); } else { return my_strdup ("unknown"); } } else if (!strcmp (dest, "textalign")) { return my_strdup (text_align); } else if (!strcmp (dest, "windoworigin")) { return my_strdup (winorigin); } else if (!strcmp (dest, "error")) { return my_strdup (errorstring); } else if (!strcmp (dest, "program_file_name")) { return my_strdup(main_file_name); } else if (!strcmp (dest, "program_name")) { return my_strdup(progname); } else if (!strcmp (dest, "library")) { return my_strdup (curr->lib->s); } else if (!strcmp (dest, "version")) { return my_strdup (PACKAGE_VERSION); } else if (!strcmp (dest, "os")) { #ifdef UNIX return my_strdup ("unix"); #else return my_strdup ("windows"); #endif } else if (!strcmp (dest, "font")) { return my_strdup (fontname); } else if (!strcmp (dest, "argument") || !strcmp (dest, "arguments")) { if (yabargc > 0) { s = yabargv[0]; yabargc--; yabargv++; } else { s = ""; } return my_strdup (s); } else { error (ERROR, "invalid peek"); } return my_strdup (""); } static char * peek3 (char *dest, char *cont) /* peek into internals */ { char *s; for (s = dest; *s; s++) { *s = tolower ((int) *s); } if (!strcmp (dest, "env") || !strcmp (dest, "environment")) { return my_strdup (getenv (cont)); } else { error (ERROR, "invalid peek"); } return my_strdup (""); } void create_exception (int flag) /* create command 'exception' */ { struct command *cmd; cmd = add_command (cEXCEPTION, FALSE, NULL); cmd->args = flag; } void exception (struct command *cmd) /* change handling of exceptions */ { if (cmd->args) { signal (SIGINT, signal_handler); /* enable keyboard interrupt */ #ifdef SIGHUP signal (SIGHUP, signal_handler); #endif #ifdef SIGQUIT signal (SIGQUIT, signal_handler); #endif #ifdef SIGABRT signal (SIGABRT, signal_handler); #endif #ifdef SIGTERM signal (SIGTERM, signal_handler); #endif } else { signal (SIGINT, SIG_IGN); /* ignore keyboard interrupt */ #ifdef SIGHUP signal (SIGHUP, SIG_IGN); #endif #ifdef SIGQUIT signal (SIGQUIT, SIG_IGN); #endif #ifdef SIGABRT signal (SIGABRT, SIG_IGN); #endif #ifdef SIGTERM signal (SIGTERM, SIG_IGN); #endif } return; } void create_restore (char *label) /* create command 'restore' */ { struct command *c; c = add_command (cRESTORE, FALSE, label); c->pointer = my_strdup (label); } void restore (struct command *cmd) /* reset data pointer to given label */ { struct command *label; struct command **datapointer; datapointer = &(cmd->lib->datapointer); if (cmd->type == cRESTORE) { /* first time; got to search the label */ if (*((char *) cmd->pointer) == '\0') { /* no label, restore to first command */ label = cmd->lib->firstdata; } else { label = search_label (cmd->pointer, srmLABEL | srmGLOBAL); if (!label) { /* did not find label */ sprintf (string, "can't find label '%s'", (char *) cmd->pointer); error (ERROR, string); return; } } *datapointer = label; if (lastdata) { while ((*datapointer)->type != cDATA && (*datapointer) != cmdhead) { *datapointer = (*datapointer)->next; } } cmd->pointer = *datapointer; cmd->type = cQRESTORE; } else { *datapointer = cmd->pointer; } return; } void create_dbldata (double value) /* create command dbldata */ { struct command *c; c = add_command (cDATA, FALSE, NULL); c->pointer = my_malloc (sizeof (double)); if (lastdata) { lastdata->nextassoc = c; } lastdata = c; *((double *) c->pointer) = value; c->tag = 'd'; /* double value */ } void create_strdata (char *value) /* create command strdata */ { struct command *c; c = add_command (cDATA, FALSE, NULL); if (lastdata) { lastdata->nextassoc = c; } lastdata = c; c->pointer = my_strdup (value); c->tag = 's'; /* string value */ } void create_readdata (char type) /* create command readdata */ { struct command *cmd; cmd = add_command (cREADDATA, FALSE, NULL); cmd->tag = type; } void readdata (struct command *cmd) /* read data items */ { struct stackentry *read; char type; struct command **datapointer; datapointer = &(cmd->lib->datapointer); type = cmd->tag; while (*datapointer && ((*datapointer)->type != cDATA || cmd->lib != (*datapointer)->lib)) { *datapointer = (*datapointer)->nextassoc; } if (!*datapointer) { error (ERROR, "run out of data items"); return; } if (type != (*datapointer)->tag) { error (ERROR, "type of READ and DATA don't match"); return; } read = push (); if (type == 'd') { /* read a double value */ read->type = stNUMBER; read->value = *((double *) (*datapointer)->pointer); } else { read->type = stSTRING; read->pointer = my_strdup ((*datapointer)->pointer); } *datapointer = (*datapointer)->nextassoc; /* next item */ } void create_dblrelop (char c) /* create command dblrelop */ { int type; switch (c) { case '=': type = cEQ; break; case '!': type = cNE; break; case '<': type = cLT; break; case '{': type = cLE; break; case '>': type = cGT; break; case '}': type = cGE; break; } add_command (type, FALSE, NULL); } void dblrelop (struct command *type) /* compare topmost double-values */ { double a, b, c; struct stackentry *result; b = pop (stNUMBER)->value; a = pop (stNUMBER)->value; switch (current->type) { case cEQ: c = (a == b); break; case cNE: c = (a != b); break; case cLE: c = (a <= b); break; case cLT: c = (a < b); break; case cGE: c = (a >= b); break; case cGT: c = (a > b); break; } result = push (); result->value = c; result->type = stNUMBER; } void create_strrelop (char c) /* create command strrelop */ { int type; switch (c) { case '=': type = cSTREQ; break; case '!': type = cSTRNE; break; case '<': type = cSTRLT; break; case '{': type = cSTRLE; break; case '>': type = cSTRGT; break; case '}': type = cSTRGE; break; } add_command (type, FALSE, NULL); } void strrelop (struct command *type) /* compare topmost string-values */ { char *a, *b; double c; struct stackentry *result; b = pop (stSTRING)->pointer; a = pop (stSTRING)->pointer; switch (current->type) { case cSTREQ: c = (strcmp (a, b) == 0); break; case cSTRNE: c = (strcmp (a, b) != 0); break; case cSTRLT: c = (strcmp (a, b) < 0); break; case cSTRLE: c = (strcmp (a, b) <= 0); break; case cSTRGT: c = (strcmp (a, b) > 0); break; case cSTRGE: c = (strcmp (a, b) >= 0); break; } result = push (); result->value = c; result->type = stNUMBER; } void switch_compare (void) /* compare topmost values for switch statement */ { struct stackentry *result, *first, *second; double r = 0.; first = pop (stANY); second = stackhead->prev; /* stSWITCH_STRING and stSWITCH_NUMBER compare true to any string or number */ if ((second->type == stSWITCH_STRING || second->type == stSTRING) && first->type == stSTRING) { if (second->type == stSWITCH_STRING) { r = 1.; } else { r = (strcmp (first->pointer, second->pointer) == 0) ? 1. : 0.; } } else if ((second->type == stSWITCH_NUMBER || second->type == stNUMBER) && first->type == stNUMBER) { if (second->type == stSWITCH_NUMBER) { r = 1.; } else { r = (first->value == second->value) ? 1. : 0.; } } else { error (ERROR, "mixing strings and numbers in a single switch statement is not allowed"); } /* if comparison was successful once, remember this for all future comparisons */ if (r == 1.) { if (second->type == stNUMBER) second->type=stSWITCH_NUMBER; if (second->type == stSTRING) second->type=stSWITCH_STRING; } result = push (); result->type = stNUMBER; result->value = r; } void logical_shortcut (struct command *type) /* shortcut and/or if possible */ { struct stackentry *result; double is; is = stackhead->prev->value; if ((type->type == cORSHORT && is != 0) || (type->type == cANDSHORT && is == 0)) { result = push (); error (DEBUG, "logical shortcut taken"); result->type = stNUMBER; result->value = is; } else { current = current->next; } } void create_boole (char c) /* create command boole */ { int type; switch (c) { case '|': type = cOR; break; case '&': type = cAND; break; case '!': type = cNOT; break; } add_command (type, FALSE, NULL); } void boole (struct command *type) /* perform and/or/not */ { int a, b, c; struct stackentry *result; a = (int) pop (stNUMBER)->value; if (current->type == cNOT) { c = !a; } else { b = (int) pop (stNUMBER)->value; if (current->type == cAND) { c = a && b; } else { c = a || b; } } result = push (); result->value = c; result->type = stNUMBER; } yabasic-2.78.5/config.sub0000775000175100017510000010623213155232406012145 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-01-01' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: yabasic-2.78.5/config.guess0000775000175100017510000012367213155232406012511 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-01-01' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: yabasic-2.78.5/README0000775000175100017510000000067713025160552011051 00000000000000Yabasic implements the most common and simple elements of the basic language. It comes with goto/gosub, with various loops, with user defined subroutines and Libraries. Yabasic does simple graphics and printing. Yabasic runs under Unix and Windows, it is small, open source and free. To learn more about yabasic, please visit: www.yabasic.de where you may view the Manual, browse the faq or read its history or the log of changes and bugs. yabasic-2.78.5/install-sh0000775000175100017510000003452313155232406012171 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2013-12-25.23; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: yabasic-2.78.5/mkinstalldirs0000775000175100017510000000132213025160552012760 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain # $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ errstatus=0 for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case "$pathcomp" in -* ) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr fi fi pathcomp="$pathcomp/" done done exit $errstatus # mkinstalldirs ends here yabasic-2.78.5/aclocal.m40000664000175100017510000132744213260170605012032 00000000000000# generated automatically by aclocal 1.15 -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ]) # serial 58 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_PREPARE_CC_BASENAME # ----------------------- m4_defun([_LT_PREPARE_CC_BASENAME], [ # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in @S|@*""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } ])# _LT_PREPARE_CC_BASENAME # _LT_CC_BASENAME(CC) # ------------------- # It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, # but that macro is also expanded into generated libtool script, which # arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], [m4_require([_LT_PREPARE_CC_BASENAME])dnl AC_REQUIRE([_LT_DECL_SED])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl func_cc_basename $1 cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the 'libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to 'config.status' so that its # declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags='_LT_TAGS'dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into 'config.status', and then the shell code to quote escape them in # for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE _LT_PREPARE_MUNGE_PATH_LIST _LT_PREPARE_CC_BASENAME # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[[012]][[,.]]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test no = "$hard_links"; then AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_PREPARE_MUNGE_PATH_LIST # --------------------------- # Make sure func_munge_path_list() is defined correctly. m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], [[# func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x@S|@2 in x) ;; *:) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" ;; x:*) eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; *::*) eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" ;; *) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; esac } ]])# _LT_PREPARE_PATH_LIST # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown AC_ARG_VAR([LT_SYS_LIBRARY_PATH], [User-defined run-time library search path.]) case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], [Detected run-time system search path for libraries]) _LT_DECL([], [configure_time_lt_sys_library_path], [2], [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$1"; then lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS # Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option '$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the 'shared' and # 'disable-shared' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --with-aix-soname flag, and support the `aix-soname=aix' # and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT # is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_WITH([aix-soname], [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) with_aix_soname=$lt_cv_with_aix_soname]) AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) # ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 4179 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.6]) m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6' macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software # Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) # Copyright (C) 2002-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.15], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR yabasic-2.78.5/yabasic.h0000775000175100017510000007022713260455204011755 00000000000000/* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2017 more info at www.yabasic.de yabasic.h --- function prototypes and global variables This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ #define YABASIC_INCLUDED /* ------------- defines ---------------- */ /* Define one and only one of the following symbols, depending on your System: - UNIX: uses some UNIX-features and X11 - WINDOWS: uses WIN32-features */ #if defined(UNIX) && defined(WINDOWS) UNIX and WINDOWS are defined at once; check your compiler settings #endif /* ------------- includes ---------------- */ #include #include #include #include #include #include #include #include #ifdef WINDOWS #include #include #include #include #define ARCHITECTURE "windows" #define YY_NO_UNISTD_H #ifdef __LCC__ /* fix for lccwin32 */ #include #endif #endif #ifdef UNIX #define ARCHITECTURE UNIX_ARCHITECTURE #ifdef HAS_STRING_HEADER #include #elif HAS_STRINGS_HEADER #include #endif #include #include #include #include #include #include #define XK_LATIN1 #define XK_MISCELLANY #include #include #include #ifdef HAVE_NCURSES_HEADER #include #else #ifdef HAVE_CURSES_HEADER #include #endif #endif #ifndef KEY_MAX #define KEY_MAX 0777 #endif #endif #ifndef FOPEN_MAX #define FOPEN_MAX 9 #endif #include #include #ifdef UNIX #ifndef LIBRARY_PATH #define LIBRARY_PATH "/usr/lib" #endif #endif #define OPEN_HAS_STREAM 1 #define OPEN_HAS_MODE 2 #define OPEN_PRINTER 8 #define STDIO_STREAM 1234 /* -------- variables needed in all files and defined in ... -------- */ /* main.c */ extern struct command *current; /* currently executed command */ extern struct command *cmdroot; /* first command */ extern struct command *cmdhead; /* next command */ extern struct command *lastcmd; /* last command */ extern int infolevel; /* controls issuing of error messages */ extern int errorlevel; /* highest level of error message seen til now */ extern int interactive; /* true, if commands come from stdin */ extern char *progname; /* name of yabasic-program */ extern char *explanation[]; /* explanations of commands */ extern char **yabargv; /* arguments for yabasic */ extern int yabargc; /* number of arguments in yabargv */ extern time_t compilation_start, compilation_end, execution_end; extern char *string; /* for trash-strings */ extern char *errorstring; /* for error-strings */ extern int errorcode; /* error-codes */ extern char library_path[]; /* full path to search libraries */ extern int program_state; /* state of program */ extern int check_compat; /* true, if compatibility should be checked */ extern int is_bound; /* true, if this executable is bound */ extern char *progname; /* name of yabasic-program */ extern char *main_file_name; /* name of program to be executed */ extern char *interpreter_path; /* name of interpreter executing; i.e. ARGV[0] */ /* io.c */ extern FILE *streams[]; /* file streams */ extern int read_controls; /* TRUE, if input should read control characters */ extern int stream_modes[]; /* modes for streams */ extern int curinized; /* true, if curses has been initialized */ extern int badstream (int, int); /* test for valid stream id */ void myseek (struct command *); /* reposition file pointer */ void mystream (int); /* switch to specified stream */ #ifdef WINDOWS extern HANDLE gotwinkey; /* mutex to signal key reception */ extern char conkeybuff[]; /* Key received from console */ extern char winkeybuff[]; /* Key received from window */ extern HANDLE wthandle; /* handle of win thread */ extern HANDLE kthandle; /* handle of inkey thread */ extern DWORD ktid; /* id of inkey thread */ extern int LINES; /* number of lines on screen */ extern int COLS; /* number of columns on screen */ extern HANDLE ConsoleInput; /* handle for console input */ extern HANDLE ConsoleOutput; /* handle for console output */ #else extern int winpid; /* pid of process waiting for window keys */ extern int termpid; /* pid of process waiting for terminal keys */ #endif /* graphic.c */ /* printing and plotting */ extern int print_to_file; /* print to file ? */ #ifdef WINDOWS extern HFONT printerfont; /* handle of printer-font */ extern HDC printer; /* handle of printer */ #endif extern FILE *printerfile; /* file to print on */ extern double xoff; /* offset for x-mapping */ extern double xinc; /* inclination of x-mapping */ extern double yoff; /* offset for y-mapping */ extern double yinc; /* inclination for y-mapping */ /* window coordinates */ extern int winopened; /* flag if window is open already */ extern char *winorigin; /* e.g. "lt","rc"; defines origin of grafic window */ extern int winwidth, winheight; /* size of window */ /* mouse, console and keyboard */ extern int mousex, mousey, mouseb, mousemod; /* last know mouse coordinates */ extern char *ykey[]; /* keys returned by inkey */ /* text and font */ extern char *getreg (char *); /* get defaults from Registry */ extern char *text_align; /* specifies alignement of text */ extern int fontheight; /* height of font in pixel */ extern int check_alignment (char *); /* checks, if text-alignement is valid */ #ifdef WINDOWS extern HFONT myfont; /* handle of font for screen */ #endif /* general window stuff */ extern char *foreground; extern char *background; extern char *geometry; extern char *displayname; extern char *fontname; extern int drawmode; #ifdef UNIX extern Display *display; #endif #ifdef WINDOWS extern HWND window; /* handle of my window */ extern HANDLE mainthread; /* handle to main thread */ extern HANDLE this_instance; extern WNDCLASS myclass; /* window class for my program */ extern char *my_class; extern BOOL Commandline; /* true if launched from command line */ #else extern int backpid; /* pid of process waiting for redraw events */ #endif /* function.c */ extern struct command *datapointer; /* current location for read-command */ extern char *last_inkey; /* last result of inkey */ void switch_compare (void); /* compare topmost values for switch statement */ /* symbol.c */ extern struct stackentry *stackroot; /* first element of stack */ extern struct stackentry *stackhead; /* last element of stack */ extern void query_array (struct command *cmd); /* query array */ extern struct command *lastref; /* last command in UDS referencing a symbol */ extern struct command *firstref; /* first command in UDS referencing a symbol */ extern int labelcount; /* count self-generated labels */ /* flex.c */ extern int include_stack_ptr; /* Lex buffer for any imported file */ extern struct libfile_name *libfile_stack[]; /* stack for library file names */ extern struct libfile_name *currlib; /* current libfile as relevant to bison */ extern int inlib; /* true, while in library */ extern int fi_pending; /* true, if within a short if */ extern int libfile_chain_length; /* length of libfile_chain */ extern struct libfile_name *libfile_chain[]; /* list of all library file names */ /* bison.c */ extern char *current_function; /* name of currently parsed function */ extern int yydebug; extern int missing_endif; extern int missing_endif_line; /*-------------------------- defs and undefs ------------------------*/ /* undef symbols */ #undef FATAL #undef ERROR #undef WARNING #undef NOTE #undef DEBUG #undef DUMP #if !defined(TRUE) #define TRUE (1==1) #endif #ifndef FALSE #define FALSE (1!=1) #endif /* I've been told, that some symbols are missing under SunOs ... */ #ifndef RAND_MAX #define RAND_MAX 32767 #endif /* length of buffers for system() and input */ #define SYSBUFFLEN 100 #define INBUFFLEN 10000 /* ---------------------- enum types ------------------------------- */ enum error { /* error levels */ FATAL, ERROR, INFO, DUMP, WARNING, NOTE, DEBUG }; enum end_reasons { /* ways to end the program */ erNONE, erERROR, erREQUEST, erEOF }; enum stream_modes { /* ways to access a stream */ stmCLOSED = 0, stmREAD = 1, stmWRITE = 2, stmPRINT = 4 }; enum functions { /* functions in yabasic (sorted by number of arguments) */ fRAN2, fDATE, fTIME, fZEROARGS, fINKEY, fMOUSEX, fMOUSEY, fMOUSEB, fMOUSEMOD, fSIN, fASIN, fCOS, fACOS, fTAN, fATAN, fSYSTEM, fSYSTEM2, fPEEK, fPEEK2, fPEEK4, fTELL, fEXP, fLOG, fLEN, fSTR, fSQRT, fSQR, fFRAC, fABS, fSIG, fRAN, fINT, fVAL, fASC, fHEX, fBIN, fDEC, fUPPER, fLOWER, fLTRIM, fRTRIM, fTRIM, fCHR, fONEARGS, fDEC2, fATAN2, fLEFT, fAND, fOR, fEOR, fLOG2, fRIGHT, fINSTR, fRINSTR, fSTR2, fMOD, fMIN, fMAX, fPEEK3, fMID2, fTWOARGS, fMID, fINSTR2, fRINSTR2, fSTR3, fTHREEARGS, fGETBIT, fGETCHAR }; enum arraymode { /* type of array access */ CALLARRAY, ASSIGNARRAY, CALLSTRINGARRAY, ASSIGNSTRINGARRAY, GETSTRINGPOINTER }; enum drawing_modes { /* various ways to draw */ dmNORMAL = 0, dmCLEAR = 1, dmFILL = 2 }; enum cmd_type { /* type of command */ cFIRST_COMMAND, /* no command, just marks start of list */ cLABEL, cLINK_SUBR, cGOTO, cQGOTO, cGOSUB, cQGOSUB, cRETURN_FROM_GOSUB, /* flow control */ cEND, cEXIT, cBIND, cDECIDE, cSKIPPER, cNOP, cFINDNOP, cEXCEPTION, cANDSHORT, cORSHORT, cSKIPONCE, cRESETSKIPONCE, cCOMPILE, cEXECUTE, cEXECUTE2, cDIM, cFUNCTION, cDOARRAY, cARRAYLINK, cPUSHARRAYREF, cCLEARREFS, /* everything with "()" */ cARDIM, cARSIZE, cTOKEN, cTOKEN2, cTOKENALT, cTOKENALT2, cSPLIT, cSPLIT2, cSPLITALT, cSPLITALT2, cSTARTFOR, cFORCHECK, cFORINCREMENT, /* for for-loops */ cSWITCH_COMPARE, cNEXT_CASE, cNEXT_CASE_HERE, cBREAK_MULTI, /* break-continue-switch */ cCONTINUE, cBREAK_HERE, cCONTINUE_HERE, cPOP_MULTI, cBEGIN_LOOP_MARK, cEND_LOOP_MARK, cBEGIN_SWITCH_MARK, cEND_SWITCH_MARK, cDBLADD, cDBLMIN, cDBLMUL, cDBLDIV, cDBLPOW, /* double operations */ cNEGATE, cPUSHDBLSYM, cPOP, cPOPDBLSYM, cPUSHDBL, cREQUIRE, cPUSHFREE, cMAKELOCAL, cMAKESTATIC, cCOUNT_PARAMS, /* functions and procedures */ cCALL, cQCALL, cPUSHSYMLIST, cPOPSYMLIST, cRETURN_FROM_CALL, cUSER_FUNCTION, cCHECK_RETURN_VALUE, cEND_FUNCTION, cFUNCTION_OR_ARRAY, cSTRINGFUNCTION_OR_ARRAY, cPOKE, cPOKEFILE, cSWAP, cDUPLICATE, cDOCU, /* internals */ cAND, cOR, cNOT, cLT, cGT, cLE, cGE, cEQ, cNE, /* comparisons */ cSTREQ, cSTRNE, cSTRLT, cSTRLE, cSTRGT, cSTRGE, cPUSHSTRSYM, cPOPSTRSYM, cPUSHSTR, cCONCAT, /* string operations */ cPUSHSTRPTR, cCHANGESTRING, cGLOB, cPRINT, cREAD, cRESTORE, cQRESTORE, cONESTRING, /* i/o operations */ cREADDATA, cDATA, cOPEN, cCHECKOPEN, cCHECKSEEK, cCLOSE, cPUSHSTREAM, cPOPSTREAM, cSEEK, cSEEK2, cTESTEOF, cWAIT, cBELL, cMOVE, cCLEARSCR, cCOLOUR, cCHKPROMPT, cERROR, cOPENWIN, cDOT, cLINE, cCIRCLE, cTRIANGLE, cTEXT1, cTEXT2, cTEXT3, cCLOSEWIN, cCLEARWIN, /* grafics */ cOPENPRN, cCLOSEPRN, cMOVEORIGIN, cRECT, cGCOLOUR, cGCOLOUR2, cGBACKCOLOUR, cGBACKCOLOUR2, cPUTBIT, cPUTCHAR, cLAST_COMMAND /* no command, just marks end of list */ }; enum stackentries { /* different types of stackentries */ stGOTO, stSTRING, stSTRINGARRAYREF, stNUMBER, stNUMBERARRAYREF, stLABEL, stRET_ADDR, stRET_ADDR_CALL, stFREE, stROOT, stANY, stSTRING_OR_NUMBER, stSTRING_OR_NUMBER_ARRAYREF, /* these will never appear on stack but are used to check with pop */ stSWITCH_STRING, stSWITCH_NUMBER /* only used in switch statement, compares true to every string or number */ }; enum symbols { /* different types of symbols */ sySTRING, syNUMBER, syFREE, syARRAY }; enum function_type { /* different types of functions */ ftNONE, ftNUMBER, ftSTRING }; enum addmodes { /* different modes for adding symbols */ amSEARCH, amSEARCH_PRE, amADD_LOCAL, amADD_GLOBAL, amSEARCH_VERY_LOCAL }; enum states { /* current state of program */ HATCHED, INITIALIZED, COMPILING, RUNNING, FINISHED }; enum yabkeys { /* recognized special keys */ kERR, kUP, kDOWN, kLEFT, kRIGHT, kDEL, kINS, kCLEAR, kHOME, kEND, kF0, kF1, kF2, kF3, kF4, kF5, kF6, kF7, kF8, kF9, kF10, kF11, kF12, kF13, kF14, kF15, kF16, kF17, kF18, kF19, kF20, kF21, kF22, kF23, kF24, kBACKSPACE, kSCRNDOWN, kSCRNUP, kENTER, kESC, kTAB, kLASTKEY }; enum search_modes { /* modes for searching labels */ srmSUBR = 1, srmLINK = 2, srmLABEL = 4, srmGLOBAL = 8 }; /* ------------- global types ---------------- */ struct stackentry { /* one element on stack */ int type; /* contents of entry */ struct stackentry *next; struct stackentry *prev; void *pointer; /* multiuse ptr */ double value; /* double value, only one of pointer or value is used */ }; /* symbols are organized as a stack of lists: for every procedure call a new list is pushed onto the stack; all local variables of this function are chained into this list. After return from this procedure, the whole list is discarded and one element is popped from the stack. */ struct symstack { /* stack of symbol lists */ struct symbol *next_in_list; struct symstack *next_in_stack; struct symstack *prev_in_stack; }; struct symbol { /* general symbol; either variable, string */ int type; struct symbol *link; /* points to linked symbol, if any */ struct symbol *next_in_list; /* next symbol in symbollist */ char *name; /* name of symbol */ void *pointer; /* pointer to string contents (if any) */ char *args; /* used to store number of arguments for functions/array */ double value; }; struct command { /* one interpreter command */ int type; /* type of command */ int cnt; /* count of this command */ struct command *prev; /* link to previous command */ struct command *next; /* link to next command */ void *pointer; /* pointer to data */ void *symbol; /* pointer to symbol (or data within symbol) associated with command */ struct command *jump; /* pointer to jump destination */ char *symname; /* name of symbol associated with command */ struct command *nextref; /* next cmd within function referencing a symbol */ struct command *nextassoc; /* next cmd within within chain of associated commands */ int args; /* number of arguments for function/array call */ /* or stream number for open/close */ int tag; /* char/int to pass some information */ int line; /* line this command has been created for */ struct libfile_name *lib; /* associated library */ char *diag; /* optional text for diagnostics */ struct switch_state *switch_state; /* state for switch statements */ }; struct switch_state { /* records surrounding of a statement; used to check gotos into, out-of, within and between switch-statements (i.e. to err on most) */ int id; /* unique id for each switch-statment */ int nesting; /* number of nested switch-statements */ }; struct array { /* data structure for arrays */ int bounds[10]; /* index boundaries */ int dimension; /* dimension of array */ void *pointer; /* contents of array */ char type; /* decide between string- ('s') and double-Arrays ('d') */ }; struct buff_chain { /* buffer chain for system-input */ char buff[SYSBUFFLEN + 1]; /* content of buffer */ int len; /* used length of buff */ struct buff_chain *next; /* next buffer in chain */ }; struct libfile_name { /* used to store library names */ char *l; /* long version, including path */ int llen; /* length of l */ char *s; /* short version */ int slen; /* length of s */ int lineno; /* linenumber within file */ struct command *datapointer; /* data pointer of this library */ struct command *firstdata; /* first data-command in library */ struct libfile_name *next; /* next in chain */ }; /* ------------- function prototypes defined in ... ---------------- */ /* main.c */ void error (int, char *); /* reports an error and possibly exits */ void error_with_line (int, char *, int); /* reports an error and possibly exits */ void std_diag (char *, int, char *, char *); /* produce standard diagnostic */ void *my_malloc (unsigned); /* my own version of malloc */ void my_free (void *); /* free memory */ char *my_strerror (int); /* return description of error messages */ struct command *add_command (int, char *, char *); /* create new command and add some data */ struct command *add_command_with_switch_state(int); /* same as add_command, but add switch_state too */ void dump_commands (char *); /* dump commands into given file */ void signal_handler (int); /* handle various signals */ char *my_strdup (char *); /* my own version of strdup */ char *my_strndup (char *, int); /* own version of strndup */ struct libfile_name *new_file (char *, char *); /* create a new structure for library names */ char *dotify (char *, int); /* add library name, if not already present */ char *strip (char *); /* strip off to minimal name */ void do_error (struct command *); /* issue user defined error */ void create_docu (char *); /* create command 'docu' */ extern void add_variables (char *); /* add pi and e to symbol table */ void compile (void); /* create a subroutine at runtime */ void create_execute (int); /* create command 'cEXECUTE' */ void execute (struct command *); /* execute a subroutine */ int isbound (void); /* check if this interpreter is bound to a program */ /* io.c */ void checkopen (void); /* check, if open has been sucessfull */ void create_colour (int); /* create command 'colour' */ void colour (struct command *cmd); /* change colour of printed output */ void create_print (char); /* create command 'print' */ void print (struct command *); /* print on screen */ void create_myread (char, int); /* create command 'read' */ void myread (struct command *); /* read from file or stdin */ void create_onestring (char *); /* write string to file */ void onestring (char *); /* write string to file */ void chkprompt (void); /* print an intermediate prompt if necessary */ void create_myopen (int); /* create command 'myopen' */ void myopen (struct command *); /* open specified file for given name */ void testeof (struct command *); /* close the specified stream */ void myclose (); /* close the specified stream */ void create_pps (int, int); /* create command push_stream or pop_stream */ void push_stream (struct command *); /* push current stream on stack and switch to new one */ void pop_stream (void); /* pop stream from stack and switch to it */ void mymove (); /* move to specific position on screen */ void clearscreen (); /* clear entire screen */ char *inkey (double); /* gets char from keyboard, blocks and doesn´t print */ char *replace (char *); /* replace \n,\a, etc. */ /* graphic.c */ void create_openwin (int); /* create Command 'openwin' */ void openwin (struct command *); /* open a Window */ void create_openprinter (int); /* create command 'openprinter' */ void openprinter (struct command *); /* opens a printer for WIN95 */ void closeprinter (void); /* closes printer for WIN95 */ void putindrawmode (int); /* store drawmode in previous command */ void dot (struct command *); /* draw a dot */ void create_line (int); /* create Command 'line' */ void line (struct command *); /* draw a line */ void moveorigin (); /* move origin of window */ int check_alignement (char *); /* checks, if text-alignement is valid */ void circle (struct command *); /* draw a circle */ void triangle (struct command *); /* draw a triangle */ void create_text (int); /* create Command 'text' */ void text (struct command *); /* write a text */ void closewin (void); /* close the window */ void clearwin (void); /* clear the window */ void rect (struct command *); /* draw a (filled) rect */ void putbit (void); /* put rect onto window */ void putchars (void); /* put rect onto screen */ void create_marker (int); /* create command 'cMARKER' */ void marker (struct command *); /* draw a marker */ void getwinkey (char *); /* read a key from grafics window */ void gettermkey (char *); /* read a key from terminal */ char *getbit (int, int, int, int); /* get rect from window */ char *getchars (int, int, int, int); /* get rect from screen */ void change_colour (struct command *); /* change colour */ #ifdef WINDOWS LRESULT CALLBACK mywindowproc (HWND, unsigned, UINT, DWORD); #else void calc_psscale (void); /* calculate scale-factor for postscript */ #endif /* function.c */ void create_exception (int); /* create command 'exception' */ void exception (struct command *); /* change handling of exceptions */ void create_poke (char); /* create Command 'POKE' */ void poke (); /* poke in internals */ void pokefile (struct command *); /* poke into file */ void create_dblrelop (char); /* create command dblrelop */ void dblrelop (struct command *); /* compare topmost double-values */ void concat (void); /* concetenates two strings from stack */ void create_strrelop (char); /* create command strrelop */ void strrelop (struct command *); /* compare topmost string-values */ void create_changestring (int); /* create command 'changestring' */ void changestring (struct command *); /* changes a string */ void glob (void); /* check, if pattern globs string */ void create_boole (char); /* create command boole */ void boole (struct command *); /* perform and/or/not */ void create_function (int); /* create command 'function' */ void function (struct command *); /* performs a function */ int myformat (char *, double, char *, char *); /* format number */ void create_restore (char *); /* create command 'restore' */ void restore (struct command *); /* reset data pointer to given label */ void create_dbldata (double); /* create command dbldata */ void create_strdata (char *); /* create command strdata */ void create_readdata (char); /* create command readdata */ void readdata (struct command *); /* read data items */ void mywait (); /* wait given number of seconds */ void mybell (); /* ring ascii bell */ void getmousexybm (char *, int *, int *, int *, int *); /* get mouse coordinates */ void token (struct command *); /* extract token from variable */ void tokenalt (struct command *); /* extract token from variable with alternate semantics */ /* symbol.c */ struct array *create_array (int, int); /* create an array */ void clearrefs (struct command *); /* clear references for commands within function */ void duplicate (void); /* duplicate topmost element of stack */ void negate (void); /* negates top of stack */ void create_require (int); /* create command 'cREQUIRE' */ void require (struct command *); /* check item on stack has right type */ void create_makelocal (char *, int); /* create command 'cMAKELOCAL' */ void create_makestatic (char *, int); /* create command 'cMAKESTATIC' */ void create_arraylink (char *, int); /* create command 'cARRAYLINK' */ void create_pusharrayref (char *, int); /* create command 'cPUSHARRAYREF' */ void pusharrayref (struct command *); /* push an array reference onto stack */ void arraylink (struct command *); /* link a local symbol to a global array */ void makestatic (struct command *); /* makes symbol static */ void makelocal (struct command *); /* makes symbol local */ void pushdblsym (struct command *); /* push double symbol onto stack */ void popdblsym (struct command *); /* pop double from stack */ void create_pushdbl (double); /* create command 'pushdbl' */ void pushdbl (struct command *); /* push double onto stack */ void create_dblbin (char); /* create binary expression calculation */ void dblbin (struct command *); /* compute with two numbers from stack */ void pushstrsym (struct command *); /* push string symbol onto stack */ void popstrsym (struct command *); /* pop string from stack */ void create_pushstr (char *); /* creates command pushstr */ void pushstr (struct command *); /* push string onto stack */ void pushname (char *); /* push a name on stack */ void pushstrptr (struct command *); /* push string-pointer onto stack */ void logical_shortcut (struct command *type); /* shortcut and/or if possible */ void create_doarray (char *, int); /* creates array-commands */ void doarray (struct command *); /* call an array */ void create_dim (char *, char); /* create command 'dim' */ void dim (struct command *); /* get room for array */ void swap (void); /*swap topmost elements on stack */ struct stackentry *push (void); /* push element on stack and enlarge it */ struct stackentry *pop (int); /* pops element to memory */ void pop_multi (struct command *); /* pop and discard multiple values from stack */ struct symbol *get_sym (char *, int, int); /* find and/or add a symbol */ void link_symbols (struct symbol *, struct symbol *); /* link one symbol to the other */ void pushsymlist (void); /* push a new list on symbol stack */ void popsymlist (void); /* pop list of symbols and free symbol contents */ void dump_sym (); /* dump the stack of lists of symbols */ void dump_sub (int); /* dump the stack of subroutine calls */ void function_or_array (struct command *); /* decide whether to do perform function or array */ int count_args (int); /* count number of arguments on stack */ /* flow.c */ void link_label (struct command *); /* link label into list of labels */ void create_count_params (void); /* create command 'cCOUNT_PARAMS' */ void count_params (struct command *); /* count number of function parameters */ void forcheck (void); /* check, if for-loop is done */ void forincrement (void); /* increment value on stack */ void startfor (void); /* compute initial value of for-variable */ void create_goto (char *); /* creates command goto */ void create_gosub (char *); /* creates command gosub */ void create_call (char *); /* creates command function call */ void create_label (char *, int); /* creates command label */ void create_subr_link (char *); /* create link to subroutine */ struct command *add_switch_state(struct command *); /* add switch state to a newly created command */ void pushgoto (void); /* generate label and push goto on stack */ void popgoto (void); /* pops a goto and generates the matching command */ void jump (struct command *); /* jump to specific Label */ void myreturn (struct command *); /* return from gosub */ void findnop (); /* used for on_gosub, find trailing nop command */ void skipper (void); /* used for on_goto/gosub, skip commands */ void skiponce (struct command *); /* skip next command once */ void resetskiponce (struct command *); /* find and reset next skip */ void decide (void); /* skips next command, if not 0 on stack */ void pushlabel (void); /* generate goto and push label on stack */ void poplabel (void); /* pops a label and generates the matching command */ void storelabel (); /* push label on stack */ void matchgoto (); /* generate goto matching label on stack */ void create_check_return_value (int, int); /* create command 'cCHECK_RETURN_VALUE' */ void check_return_value (struct command *); /* check return value of function */ void create_endfunction (void); /* create command cEND_FUNCTION */ struct command *search_label (char *, int); /* search label */ void reorder_stack_before_call (struct stackentry *); /* reorganize stack for function call */ void reorder_stack_after_call (int); /* reorganize stack after function call: keep return value and remove switch value (if any) */ void create_mybreak(int); /* create command mybreak */ void mybreak (struct command *); /* find break_here statement */ void mycontinue (struct command *cmd); /* find continue_here statement */ void next_case (struct command *); /* go to next case in switch statement */ void check_leave_switch (struct command *, struct command *); /* check, if goto or continue enters or leaves a switch_statement */ void pop_switch_value (struct command *); /* remove switch state from stack, keeping return value */ void initialize_switch_id_stack(void); /* initialize stack of switch_ids */ void push_switch_id (void); /* generate a new switch id on top of stack */ void pop_switch_id (void); /* pop last switch_id */ /* flex.c */ void yyerror (char *); /* yyerror message */ void open_main (FILE *, char *, char *); /* switch to file */ void open_string (char *); /* open string with commands */ FILE *open_library (char *, char **, int); /* search and open a library */ void leave_lib (void); /* processing, when end of library is found; called by bison */ yabasic-2.78.5/configure.ac0000775000175100017510000000522713257075413012463 00000000000000 dnl Process this file with 'autoconf' to get a configure-script AC_INIT([yabasic], [2.78.5]) AC_CONFIG_SRCDIR([main.c]) #AC_CONFIG_LINKS AM_INIT_AUTOMAKE LT_INIT dnl --- get canonical system name --- AC_CANONICAL_HOST dnl --- find out, which c-compiler is available --- AC_PROG_CC dnl --- set options appropriate for compiler --- AC_CHECK_PROG(CCOPTIONS,gcc,-Wall,) dnl --- check for X-Window system --- AC_PATH_XTRA AS_IF([test "X$no_x" = "Xyes"],[AC_MSG_WARN([Could not find X11 header files; please install libx11-devel or similar.])]) dnl --- check for required headers --- AC_HEADER_SYS_WAIT AC_CHECK_HEADERS([fcntl.h limits.h stddef.h stdlib.h stdio.h float.h\ math.h time.h sys/time.h string.h strings.h Intrinsic.h\ unistd.h signal.h ctype.h malloc.h sys/prctl.h],,\ AC_MSG_WARN([Header file is missing (see above)])) AC_CHECK_HEADERS([string.h strings.h]) dnl --- check for typedefs, structures, and compiler characteristics --- AC_C_CONST AC_TYPE_SIZE_T AC_HEADER_TIME dnl --- check for library functions --- AC_FUNC_ERROR_AT_LINE AC_FUNC_FORK AC_FUNC_SELECT_ARGTYPES AC_TYPE_SIGNAL AC_FUNC_STRFTIME AC_FUNC_STRTOD AC_FUNC_SETPGRP AC_FUNC_STAT AC_CHECK_FUNCS([floor pow select sqrt strchr strerror strpbrk strrchr strstr mkstemp]) dnl --- check for header files --- AC_CHECK_HEADER(string.h,AC_DEFINE(HAVE_STRING_HEADER,1,[defined, if string.h is present])) AC_CHECK_HEADER(strings.h,AC_DEFINE(HAVE_STRINGS_HEADER,1,[defined, if strings.h is present])) dnl --- check for curses.h AC_CHECK_HEADER(ncurses.h,AC_DEFINE(HAVE_NCURSES_HEADER,1,[defined, if ncurses.h is present])) AC_CHECK_HEADER(curses.h,AC_DEFINE(HAVE_CURSES_HEADER,1,[defined, if ncurses.h is present])) AS_IF([test "X$ac_cv_header_curses_h" = "Xno" && test "X$ac_cv_header_curses_h" = "Xno"],[AC_MSG_WARN([Could not find curses or ncurses header files; please install ncurses-devel.])]) dnl --- check if curses library is available --- AC_CHECK_LIB(ncurses,initscr) AC_CHECK_LIB(curses,initscr) dnl --- check for specific functions within ncurses AC_CHECK_FUNCS(getnstr) dnl --- check for specific functions --- AC_CHECK_FUNCS(setitimer) AC_CHECK_FUNCS(difftime) dnl --- check for AC_FUNC_ALLOCA dnl --- architecture of build machine --- AC_DEFINE_UNQUOTED(UNIX_ARCHITECTURE,"$host",[architecture of build machine]) dnl --- build-time, that will be displayed in banner --- AC_DEFINE_UNQUOTED(BUILD_TIME,"`date -u -d @$SOURCE_DATE_EPOCH 2>/dev/null || date -u -r $SOURCE_DATE_EPOCH 2>/dev/null || date -u`",[build-time, that will be displayed in banner]) dnl --- write out results --- AC_CONFIG_HEADERS([config.h:config.h.in]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT yabasic-2.78.5/ltmain.sh0000664000175100017510000117077113155232406012014 00000000000000#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.6 package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # func_quote_for_expand ARG # ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2014-01-07.03; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do eval $_G_hook '"$@"' # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift done func_quote_for_eval ${1+"$@"} func_run_hooks_result=$func_quote_for_eval_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, remove any # options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # func_quote_for_eval ${1+"$@"} # my_options_prep_result=$func_quote_for_eval_result # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # ;; # *) set dummy "$_G_opt" "$*"; shift; break ;; # esac # done # # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # func_quote_for_eval ${1+"$@"} # my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # # You'll alse need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd func_options_prep ${1+"$@"} eval func_parse_options \ ${func_options_prep_result+"$func_options_prep_result"} eval func_validate_options \ ${func_parse_options_result+"$func_parse_options_result"} eval func_run_hooks func_options \ ${func_validate_options_result+"$func_validate_options_result"} # save modified positional parameters for caller func_options_result=$func_run_hooks_result } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propogate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} # Adjust func_parse_options positional parameters to match eval set dummy "$func_run_hooks_result"; shift # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) test $# = 0 && func_missing_arg $_G_opt && break case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname (GNU libtool) 2.4.6 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: yabasic-2.78.5/Makefile.am0000775000175100017510000000165013155232406012217 00000000000000 bin_PROGRAMS = yabasic yabasic_SOURCES = main.c function.c io.c graphic.c symbol.c flow.c flex.c bison.c yabasic.h bison.h man_MANS = yabasic.1 LDADD = @X_PRE_LIBS@ -lm @LIBS@ -lX11 @X_LIBS@ @X_EXTRA_LIBS@ AM_CPPFLAGS = -DUNIX EXTRA_DIST = runme yabasic.htm yabasic.flex yabasic.bison tests configure.ac LICENSE demo.yab $(man_MANS) AUTOMAKE_OPTIONS = check-news subdir-objects TESTS = tests/break.yab tests/bugs.yab tests/grammar.yab tests/io.yab tests/long_variable_name.yab tests/simple.yab # flags for flex (-d for debugging) flexflags = -i -I -L -s # create scanner and remove include for unistd.h (needed for windows) flex: yabasic.flex Makefile flex $(flexflags) -t yabasic.flex >flex.c # perl -i -n -e 'if (!/^\#include\s+\s+$$/) {print if $$i;$$i++}' flex.c # flags for bison (-t -v for debugging) bisonflags = -d -l -t -v bison: yabasic.bison Makefile bison $(bisonflags) --output-file bison.c yabasic.bison yabasic-2.78.5/tests/0000775000175100017510000000000013260635163011404 500000000000000yabasic-2.78.5/tests/break.yab0000775000175100017510000000133413040056606013104 00000000000000#!./yabasic do break a=1 loop if a error "1" for a=1 to 3 switch a case 1:break case 2:continue end switch next a if a<>4 error "2" poke "__assert_stack_size",0 a=0 while(a<=3) a=a+1 switch a case 1:break case 2:continue end switch wend if a<>4 error "3" poke "__assert_stack_size",0 a=0 repeat a=a+1 switch a case 1:break case 2:continue end switch until(a=4) if a<>4 error "4" poke "__assert_stack_size",0 a=0 do a=a+1 switch a case 1:break case 2:continue end switch if a=4 break loop if a<>4 error "5" poke "__assert_stack_size",0 for a=0 to 4 for b=0 to 4 if (a*b=12) break 2 next b next a if a<>3 or b<>4 error "6" poke "__assert_stack_size",0 exit 0 yabasic-2.78.5/tests/interactive/0000775000175100017510000000000013040323077013713 500000000000000yabasic-2.78.5/tests/interactive/inkey_mousex.yab0000664000175100017510000000040313040321763017044 00000000000000open window 200,200 #clear screen print "Please click anywhere in the grafics window" print inkey$ print mousex if (mousex=0) error "mousex" if (mousey=0) error "mousey" if (mouseb=0) error "mouseb" print "Okay: mousex, mousey and mouseb remember last inkey" yabasic-2.78.5/tests/error/0000775000175100017510000000000013253541430012530 500000000000000yabasic-2.78.5/tests/error/switch_goto_error.yab0000664000175100017510000000024113253541430016704 00000000000000#---Error in switch_goto_error.yab, line 8: GOTO between switch-statements switch 0 case 0: goto other end switch switch 0 case 0: label other end switch yabasic-2.78.5/tests/error/break_error.yab0000664000175100017510000000024513253541430015443 00000000000000#---Fatal in break_error.yab, line 4: break has left program (loop_nesting=-2, switch_nesting=0) for a=0 to 4 for b=0 to 4 if (a*b=12) break 3 next b next a yabasic-2.78.5/tests/error/switch_goto_error2.yab0000664000175100017510000000020213253541430016763 00000000000000#---Error in switch_goto_error2.yab, line 6: GOTO into a switch-statement goto other switch 0 case 0: label other end switch yabasic-2.78.5/tests/error/break_error2.yab0000664000175100017510000000021613253541430015523 00000000000000#---Error in break_error2.yab, line 3: invalid number of levels to break: 4; only 1,2 or 3 are allowed for a=0 to 4 if (a=2) break 4 next a yabasic-2.78.5/tests/grammar.yab.log0000664000175100017510000000005013260635163014222 00000000000000PASS tests/grammar.yab (exit status: 0) yabasic-2.78.5/tests/library5.yab0000664000175100017510000000006313260456146013553 00000000000000import library6 sub foo$() return "foo" end sub yabasic-2.78.5/tests/nested_bind_import0000755000175100017510000217644413260635161015140 00000000000000ELF>_@@hð@8 @&#@@@@@øø88@8@@@ i i °m°mc°mcôp ÈmÈmcÈmc00TT@T@DDPåtd(/(/C(/C$$QåtdRåtd°m°mc°mcPP/lib64/ld-linux-x86-64.so.2GNU GNUožŽ¡{ÐÀÅ€7)*ÕWÃF®¢ÀB@€ˆ„¢¥­(ŒBEÕì»ã’|fUa'ƒ|Ø+ŒØqX £‡ ¨d—|¸ñ9ò‹î!cëÓïú ŸmŠ"ì!1ƒŠV *NÛ¾Í__tíWÑØ˜6Þö»gNò¥´kX°f¡­iöþ¸õ—Ãû^=×^Ÿixªœ´ôŽHMJúzA=|ýv( Âæ8dÂ˼˜/1å|#4¦f‡Ð­ª2!Ÿü—ŒÇñbAÝ€är:-ìµÈPÜèß7 P/«¡’ƒ B=ÊK ¿‡®D[ HrËtI‹K– ‘AÀucr¤uc…ÀÝc§Ðucßàucäðucy¤ucëøucPˆ@Ak H+@¦vc`€c@CetáAlibSM.so.6_ITM_deregisterTMCloneTable__gmon_start___Jv_RegisterClasses_ITM_registerTMCloneTable_fini_initlibICE.so.6libm.so.6atan2acosfloorexplogasinatanpowsqrtlibX11.so.6XFillArcXGetWindowAttributesXSetForegroundXChangeGCXDrawPointXMatchVisualInfoXDrawArcXGetKeyboardMappingXNextEventXFlushXDestroyWindowXMapWindowXCreatePixmapXLoadQueryFontXSetWMNormalHintsXGetDefaultXDrawLineXGetImageXCreateWindowXFreeXDrawRectangleXLookupStringXGetGCValuesXPutImageXPendingXLookupColorXSelectInputXUnloadFontXDrawStringXCreateColormapXFreePixmapXSetBackgroundXParseGeometryXFillPolygonXStoreNameXOpenDisplayXDrawLinesXCreateGCXFillRectangleXCheckWindowEventXTextExtentslibncurses.so.6COLSstdscrLINESscrollokassume_default_colorswsetscrregwaddchset_escdelaynoechoinit_colorwgetchwscrlwaddnstrhas_colorsendwinwrefreshleaveokwinchwclearwmoveinit_pairinitscrstart_colorwgetnstrwattrsetlibtinfo.so.6reset_shell_modenocbreakreset_prog_modekeypadnotimeoutcurs_setintrflushlibc.so.6fflushstrcpy__rawmemchrexitsprintfsrandfopenstrncmpstrrchr__isoc99_sscanfftellsignalstrncpyforkputcharselectreallocstdinstrpbrkpopengetpidkillstrftimemkstempstrtodstrtokstrtolisattyfgetcfgetscallocstrlenungetcglobstrstr__errno_locationfseekclearerrstdoutfputc__isoc99_fscanffputsmemcpyfclosetcsetpgrpmallocstrcatremove__ctype_b_locgetenvstderrsystemstrncatfilenopclosefwritefreadgettimeofdaywaitpidlocaltimestrchrfprintffdopen__ctype_toupper_loc__ctype_tolower_loc_IO_getcstrcmpstrerror__libc_start_mainferrorstpcpyfree_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.7GLIBC_2.3} ui Š”‘––ii ¡ui Šii «øocSÀuc¢Ðuc¥àuc¦ðuc§øuc©vc¬pc pc(pc0pc8pc@pcHpcPpcXpc `pc hpc ppc xpc €pcˆpcpc˜pc pc¨pc°pc¸pcÀpcÈpcÐpcØpcàpcèpcðpcøpcqcqc qc!qc" qc#(qc$0qc%8qc&@qc'Hqc(Pqc)Xqc*`qc+hqc,pqc-xqc.€qc/ˆqc0qc1˜qc2 qc3¨qc4°qc5¸qc6Àqc7Èqc8Ðqc9Øqc:àqc;èqc<ðqc=øqc>rc?rc@rcArcB rcC(rcD0rcE8rcF@rcGHrcHPrcIXrcJ`rcKhrcLprcMxrcN€rcOˆrcPrcQ˜rcR rcT¨rcU°rcV¸rcWÀrcXÈrcYÐrcZØrc[àrc\èrc]ðrc^ørc_sc`scascbscc scd(sce0scf8scg@schHsciPscjXsck`sclhscmpscnxsco€scpˆscqscr˜scs sct¨scu°scv¸scwÀscxÈscyÐsczØsc{àsc|èsc}ðsc~øsctc€tctc‚tcƒ tc…(tc†0tc‡8tcˆ@tc‰HtcŠPtc‹XtcŒ`tchtcŽptcxtc‘€tc’ˆtc“tc”˜tc• tc–¨tc—°tc˜¸tc™ÀtcšÈtc›ÐtcœØtcàtcžètcŸðtc øtc¡HƒìH‹¥D#H…Àtèó HƒÄÃÿ5’D#ÿ%”D#@ÿ%’D#héàÿÿÿÿ%ŠD#héÐÿÿÿÿ%‚D#héÀÿÿÿÿ%zD#hé°ÿÿÿÿ%rD#hé ÿÿÿÿ%jD#héÿÿÿÿ%bD#hé€ÿÿÿÿ%ZD#hépÿÿÿÿ%RD#hé`ÿÿÿÿ%JD#h éPÿÿÿÿ%BD#h é@ÿÿÿÿ%:D#h é0ÿÿÿÿ%2D#h é ÿÿÿÿ%*D#h éÿÿÿÿ%"D#héÿÿÿÿ%D#héðþÿÿÿ%D#héàþÿÿÿ% D#héÐþÿÿÿ%D#héÀþÿÿÿ%úC#hé°þÿÿÿ%òC#hé þÿÿÿ%êC#héþÿÿÿ%âC#hé€þÿÿÿ%ÚC#hépþÿÿÿ%ÒC#hé`þÿÿÿ%ÊC#héPþÿÿÿ%ÂC#hé@þÿÿÿ%ºC#hé0þÿÿÿ%²C#hé þÿÿÿ%ªC#héþÿÿÿ%¢C#héþÿÿÿ%šC#héðýÿÿÿ%’C#h éàýÿÿÿ%ŠC#h!éÐýÿÿÿ%‚C#h"éÀýÿÿÿ%zC#h#é°ýÿÿÿ%rC#h$é ýÿÿÿ%jC#h%éýÿÿÿ%bC#h&é€ýÿÿÿ%ZC#h'épýÿÿÿ%RC#h(é`ýÿÿÿ%JC#h)éPýÿÿÿ%BC#h*é@ýÿÿÿ%:C#h+é0ýÿÿÿ%2C#h,é ýÿÿÿ%*C#h-éýÿÿÿ%"C#h.éýÿÿÿ%C#h/éðüÿÿÿ%C#h0éàüÿÿÿ% C#h1éÐüÿÿÿ%C#h2éÀüÿÿÿ%úB#h3é°üÿÿÿ%òB#h4é üÿÿÿ%êB#h5éüÿÿÿ%âB#h6é€üÿÿÿ%ÚB#h7épüÿÿÿ%ÒB#h8é`üÿÿÿ%ÊB#h9éPüÿÿÿ%ÂB#h:é@üÿÿÿ%ºB#h;é0üÿÿÿ%²B#h<é üÿÿÿ%ªB#h=éüÿÿÿ%¢B#h>éüÿÿÿ%šB#h?éðûÿÿÿ%’B#h@éàûÿÿÿ%ŠB#hAéÐûÿÿÿ%‚B#hBéÀûÿÿÿ%zB#hCé°ûÿÿÿ%rB#hDé ûÿÿÿ%jB#hEéûÿÿÿ%bB#hFé€ûÿÿÿ%ZB#hGépûÿÿÿ%RB#hHé`ûÿÿÿ%JB#hIéPûÿÿÿ%BB#hJé@ûÿÿÿ%:B#hKé0ûÿÿÿ%2B#hLé ûÿÿÿ%*B#hMéûÿÿÿ%"B#hNéûÿÿÿ%B#hOéðúÿÿÿ%B#hPéàúÿÿÿ% B#hQéÐúÿÿÿ%B#hRéÀúÿÿÿ%úA#hSé°úÿÿÿ%òA#hTé úÿÿÿ%êA#hUéúÿÿÿ%âA#hVé€úÿÿÿ%ÚA#hWépúÿÿÿ%ÒA#hXé`úÿÿÿ%ÊA#hYéPúÿÿÿ%ÂA#hZé@úÿÿÿ%ºA#h[é0úÿÿÿ%²A#h\é úÿÿÿ%ªA#h]éúÿÿÿ%¢A#h^éúÿÿÿ%šA#h_éðùÿÿÿ%’A#h`éàùÿÿÿ%ŠA#haéÐùÿÿÿ%‚A#hbéÀùÿÿÿ%zA#hcé°ùÿÿÿ%rA#hdé ùÿÿÿ%jA#heéùÿÿÿ%bA#hfé€ùÿÿÿ%ZA#hgépùÿÿÿ%RA#hhé`ùÿÿÿ%JA#hiéPùÿÿÿ%BA#hjé@ùÿÿÿ%:A#hké0ùÿÿÿ%2A#hlé ùÿÿÿ%*A#hméùÿÿÿ%"A#hnéùÿÿÿ%A#hoéðøÿÿÿ%A#hpéàøÿÿÿ% A#hqéÐøÿÿÿ%A#hréÀøÿÿÿ%ú@#hsé°øÿÿÿ%ò@#hté øÿÿÿ%ê@#huéøÿÿÿ%â@#hv逸ÿÿÿ%Ú@#hwépøÿÿÿ%Ò@#hxé`øÿÿÿ%Ê@#hyéPøÿÿÿ%Â@#hzé@øÿÿÿ%º@#h{é0øÿÿÿ%²@#h|é øÿÿÿ%ª@#h}éøÿÿÿ%¢@#h~éøÿÿÿ%š@#héð÷ÿÿÿ%’@#h€éà÷ÿÿÿ%Š@#héÐ÷ÿÿÿ%‚@#h‚éÀ÷ÿÿÿ%z@#hƒé°÷ÿÿÿ%r@#h„é ÷ÿÿÿ%j@#h…é÷ÿÿÿ%b@#h†é€÷ÿÿÿ%Z@#h‡ép÷ÿÿÿ%R@#hˆé`÷ÿÿÿ%J@#h‰éP÷ÿÿÿ%B@#hŠé@÷ÿÿÿ%:@#h‹é0÷ÿÿÿ%2@#hŒé ÷ÿÿÿ%*@#hé÷ÿÿÿ%"@#hŽé÷ÿÿÿ%@#héðöÿÿÿ%@#héàöÿÿÿ% @#h‘éÐöÿÿÿ%@#h’éÀöÿÿÿ%ú?#h“é°öÿÿÿ%ò?#h”é öÿÿÿ%ê?#h•éöÿÿÿ%â?#h–é€öÿÿÿ%Ú?#h—épöÿÿÿ%Ò?#h˜é`öÿÿÿ%Ê?#h™éPöÿÿÿ%Â?#hšé@öÿÿÿ%º?#h›é0öÿÿÿ%²?#hœé öÿÿÿ%¢:#fH‹ñ˜#H‹Ú˜#H‹ «˜#LcŒ˜#L¤#L‹¦˜#H‹ÐHQ‹@0˜#H‰v˜#‰1ÉM9ÐsfA¶@·„Ét @й {BëC¿„ pB=œ~@оÀzBLcÈ@¶÷C·Œ `uBñLcÙG¿œ@DBD9ØuƉÉIÿÀHƒÂ·„ ZB±‰Büë•„ÉtH‰ü—#ÃHƒìH‰úH‹=Õ?#¾ÌóA1Àè9úÿÿ¿èÏýÿÿf.„DAWAVI‰÷AUATUS‰ý¿'Hƒì8èÓúÿÿH…À„¿'H‰þœ#è¹úÿÿH…À„ H‰Áž#ÆH¸/usr/libÆõœ#H‰Î#ÆÏ#I‹?Ç®ž#Ǩž#Ç¢œ#è!GH‰B?#èåAƒý‰„œ#Ž´I‹»A¼è÷ÿÿDtB<õè€8I‰ÅI‹I‰EI‹èÝ8¾&öAH‰Çè@üÿÿH…ÀtI‰DÝø1ÿ¾&öAè*üÿÿA‰ÜHƒÃH…ÀuãƒýŽ1 IcÄILŸ„I‹ÇH‰TÁðHƒÀ9ÅïB<õE1ÿEd,þèú7ƒ=Ë›#H‰œ#ÇÊ#A•ÇAD$ÿHÇD$½‰D$ëDÇF>#ƒÅD9å¹HcÅE…ÿL4ÅI‹\Å…Ñ ºH‰Þ¿)öAè(…À…>#ºþÿÿÿH‰Þ¿2öAèu(…À…c ºH‰Þ¿8öAè[(…ÀA‰Ç…F ºH‰Þ¿OöAè>(…À…fÿÿÿ¶<-ˆD$…‡ €{-…} €{…s ƒÅA¿D9åŒGÿÿÿ‹Ú#DZœ#…Ò…!Hƒ|$„H‹5^=#H‹?=#H…ötHÇ/=# öAº öAH‹|$è*€=™š#„L¸ Óc‹HƒÀ‘ÿþþþ÷Ñ!Ê €€tè‰ÑÁé÷€€DÑHHHDÁ‰ÑÑH£ÓcƒèH˜¶ Óc€ú/„5€ú\„,¿Õcèn÷ÿÿ¿'èÄ÷ÿÿH…À„Œ¾€îA¿ÆH‰ÿ›#èâ)è-ûÿÿ¾@g@¿èžöÿÿ¾@g@¿ èöÿÿ¾@g@¿è€öÿÿ¾@g@¿èqöÿÿ¾@g@¿èböÿÿ¾@g@¿èSöÿÿÇA›#Ç“>#Ç…>#Çw>#Çi>#èÌê¿,è÷ÿÿH…À„±HÇ@HÇ@¿tH‰í#H‰î#èÑöÿÿH…À„gH|$ 1öHÇ@HÇ@H‰Ò™#èuôÿÿH‹L$(HºÏ÷Sã¥›Ä it$ èH‰ÈHÁù?H÷êHÁúH)Ê<è%õÿÿ¿÷Aè;5¿BH‰÷›#è*5H‰Û›#èñÇ H‹i™#Ç=#H‰Xš#è+1ö¿÷AºèŠìH‹x H‰ÃH…ÿtèyðÿÿ¿÷AèÏ4H‰C Ç›# Ç›#dÇm›#dèØ¯¸HÇÅ ÕcÇ… ÖcHƒÀHƒø ußH‹8:#Ç~š#HÇsŒ#H‰ì™#¸ÀÎc€HÇHƒÀH=pÓcuíHÇâ’#÷AHÇG“#"÷A»HÇ?“#*÷AHÇÄ’#®ŠBHÇÁ’#4÷AHÇž“# ŽBHÇ›“#?÷AHǘ“#'ŽBHÇ•“#F÷AHÇ’“#1ŽBHÇ“#P÷AHÇŒ“#8ŽBHlj“#W÷AHÇf’#b÷AHÇc’#a÷AHÇ`’#V4BHÇ]’#g÷AHÇJ”#o÷AHÇG”#n÷AHÇD’#t÷AHÇI”#†÷AHÇN”#—÷AHÇs”#ª÷AHÇ8’#¯÷AHÇU’#¶÷AHÇR’#¿÷AHÇ’#Ç÷AHÇD’#Ô÷AHÇA’#Ï÷AHÇ’#&÷AHÇó“#Ý÷AHÇ@’#¯ŒBHÇ=’#á÷AHÇ:’#ê÷AHÇ“#ò÷AHÇ“#ù÷AHÇ“#øAHÇ“#øAHÇ “#øAHÇ“#øAHÇ“#øAHÇ“#'øAHÇï‘#/øAHÇ<“#9øAHÇ9“#EøAHÇþ’#PøAHÇ“#ZøAHÇð’#gøAHÇ‘#røAHÇš‘#|øAHÇŸ‘#‰øAHÇœ‘#˜øAHÇñ’#¢øAHÇþ’#¶øAHÇû’#°øAHLj’#ÈøAHÇe’#ÑøAHÇR’#ÛøAHÇW’#ßøAHÇÌ’#ŽBHÇÉ’#çøAHÇÞ’#÷AHÇÛ’#è‹BHÇØ’#â‹BHÇÕ’#-ŽBHÇÒ’# ùAHÇÏ’#rŒBHÇÌ’#ùAHÇÉ’#÷‹BHÇÆ’#jŒBHÇÃ’#ðøAHÇÀ’#öøAHǽ’#üøAHǺ’#ùAHÇ·’#ùAHÇ´’#ùAHDZ’#ùAHÇ®’#ùAHÇ«’#)ùAHǨ’#1ùAHÇ¥’#8ùAHÇ¢’#CùAHÇŸ’#BŽBHÇœ’#Š‹BHÇ™’#ŒBHÇ–’#QùAHÇ“’#PùAHǘ’#YùAHÇ…’#bùAHÇŠ’#]ùAHLJ’#qùAHÇ„’#lùAHÇ’#vùAHÇ~#÷ŠBHÇ{#äŠBHÇx#€ùAHÇ]’#*ŒBHÇj’#{ùAHÇg’#‰ùAHÇD’#ùAHÇA’#›ùAHÇV’#œŒBHÇS’#¢ŒBHÇP’#¦ùAHÇÍ’#«ùAHÇÊ’#ÂŒBHÇ7’#¶ùAHÇL’#¿ùAHÇI’#cŒBHÇÆ’#ÐŒBHÇÃ’#áŒBHÇ0’#hŒBHÇ…’#ÇùAHÇ‚’#ÏùAHÇ’#ØùAHÇ|’#äùAHÇ’#nŒBHÇþ‘#vŒBHÇû‘#ñùAHÇø‘#÷ùAHÇõ‘#ýùAHÇò‘#úAHÇï‘# úAHÇì‘#úAHÇé‘#úAHÇF‘#&úAHÇc‘#ÈùAHÇø#.úAHÇõ#RŠBHÇ’#:‹BHÇ#ª‹BHÇŒ#¼ŒBHÇ1‘#ÝŠBHÇ^Ž#8úAHÇ[Ž#AúAHÇXŽ#JúAHÇ¥Ž#WúAHÇ¢Ž#iúAHÇŽ#yúAHÇ|Ž#‰úAHÇ)Ž#—úAHÇ&Ž#¦úAHÇ#Ž#°úAHÇ Ž#¿úAHÇŽ#'‹BHÇŽ#ËúAHÇŽ#ÖúAHÇŽ#äúAHÇy#îúAHÇ‘#øúAë@HƒÃHû–„ÿHƒ<ÝÀÎcuäH‹ ݸÎcH‹=‘#‰Ú¾ïA1ÀèwñÿÿH‹5ð#¿èæ ë´B<õè÷,ƒ=È#H‰™’#ÇÇ’#•ÀAƒüD¶ø…ðôÿÿéêf„Hc¡’#H‹b’#H‰ßL4Ðè-I‰ƒ„’#éáôÿÿ€ºH‰Þ¿VöA莅ÀA‰Ç„“ƒÅD9åJO‹t5L‰÷èÚêÿÿA¸Hƒø¿aöAL‰ÁL‰öH‰ÃHNÈH9Éó¦—Á’À)ÁD¾ùE…ÿ„”Hƒû¹¿göAHNËL‰öH9Éó¦—Á’À)ÁD¾ùE…ÿ…uÇÇ#é0ôÿÿfDºH‰Þ¿xöAèÞ…À…¶ºH‰Þ¿|öAèÄ…À…œºH‰Þ¿ˆöA誅À…%ºH‰Þ¿ŒöAè…ÀA‰Ç…ºH‰Þ¿˜öAès…À…ÖºH‰Þ¿¢öAèY…ÀA‰Ç„ȃÅD9årK‹|5E1ÿè•+H‰4#écóÿÿf„ƒÅD9åK‹|5èj+H‰Sƒ#é8óÿÿHƒûL‰Â¾löAHNÓL‰÷L‰D$èqçÿÿ…ÀA‰ÇL‹D$„-HƒûL‰Â¾röAHNÓL‰÷èIçÿÿ…ÀA‰Ç…ÑÇ ˜#@ÇbŽ#éËòÿÿHƒû¹¿?üAHNËL‰öH9Éó¦—Á’À)ÁD¾ùE…ÿ… Ç#Ž#éŒòÿÿf¾–ûA¿HÇ‹‘#ĉBHLj‘#…ûAHÇ…‘#|ûAHÇ‚‘#üúAHÇ‘#ûAHÇ|‘#ûAHÇy‘# ûAHÇv‘#BHÇs‘#ûAHÇp‘#,ŠBHÇm‘#ûAHÇj‘#ûAHÇg‘#ûAHÇd‘#ûAHÇa‘# ûAHÇ^‘##ûAHÇ[‘#&ûAHÇX‘#)ûAHÇU‘#,ûAHÇR‘#/ûAHÇO‘#2ûAHÇL‘#6ûAHÇI‘#:ûAHÇF‘#>ûAHÇC‘#BûAHÇ@‘#FûAHÇ=‘#JûAHÇ:‘#NûAHÇ7‘#RûAHÇ4‘#VûAHÇ1‘#ZûAHÇ.‘#^ûAHÇ+‘#bûAHÇ(‘#fûAHÇ%‘#jûAHÇ"‘#nûAHÇ‘#xûAHÇ‘#ûAHÇ‘#ˆûAHÇ‘#ŽûAHÇ‘#’ûAHÇ‘#(öAÇ6Ž#è9‹#Ž#…À…1ÀÇŽ#èºj…Àtƒ=×#~¾®ûA¿èþƒ=¿#~è°01Ò1ö¿è¢(‹ ä0#‹ö-#¾ ñAH‹=Ê‹#1ÀèCìÿÿH‹5¼‹#¿è²¿pÔcèéÿÿH‹=±0#H…ÿ„áè …ÀL‹š0#H‹ #.#H‹$.#„–H‹=o‹#¾PñA1ÀèãëÿÿH‹5\‹#¿èRè̓ÅD9åXK‹|5E1ÿèÄ'H‰¥#é’ïÿÿHƒûL‰Â¾Ä‰BHNÓL‰÷L‰D$èËãÿÿ…ÀA‰ÇL‹D$…-üÿÿÇíŠ#éVïÿÿÆ€ ÓcéÈðÿÿH‹=ÙŠ#¾€ñA1ÀèMëÿÿH‹5ÆŠ#¿è¼è7ƒ=xŒ#ŽÞ‹T-#…Û…Yƒ=‘Š#ǃŒ#¿ƒ=B-#H‹=_‹#½H‰=KŒ#…þH;=FŒ#„hƒ=U/#…[ƒ=@Š#Õ‹Aÿ=“‡Íÿ$ŰýA¾€Ôc¿ Ócèèâÿÿé ïÿÿ¿@ïAè9ãÿÿ¿èïAè/ãÿÿ¿ ðAè%ãÿÿ¿`ðAèãÿÿ¿¨ðAèãÿÿ¿ððAèãÿÿé§ýÿÿ„Ø<íèà%ƒ=±‰#H‰‚‹#ǰ‹#ÇŽ‹#„ëH‹a,#H‹=2,#H‰D$è&H‰,#éÇîÿÿÇf‰#éÏíÿÿƒÅD9å˜K‹|5èß%H‰¸}#é­íÿÿÇ1‹#‹5O.#¿¨òA1Àè'äÿÿD‹ 8.#D‹5.#¾óA‹ ..#‹,.#1ÀH‹=ÿˆ#ÇíŠ#èpéÿÿH‹5éˆ#¿èß¿pÓcè5æÿÿH‹¾‰#H‹·ˆ#¾PóAfïÀH‹=·ˆ#fïÉH)ÂH+¹Š#òH*ÊòH*À¸èéÿÿH‹5Žˆ#¿è„èÿƒ=tˆ#)H‹H‰=GŠ#H;=HŠ#„/‹7ƒþSuÔƒ=Hˆ#|H‹ƒÃèjáÿÿƒ=ó*#H‹= Š#t¸‰Ø™÷ý…Òu¯¿ÏûA1ÀèãÿÿH‹=ˆ#H‹W*#¾è}äÿÿH‹=Ö‰#ë‚¿è $I‹¿H‰èú#ƒ=ˇ#H‰œ‰#Çʉ#•À„ÀÇ£‰#…þÿÿH‹5^*#HÇD$H…ö…úìÿÿH‹Ý)#Çs‰#ºöAHÇ*#öAH‰D$éßìÿÿH‹O`H‹W0‹7¿ÅûAè¥H‹=.‰#é ýÿÿH‹O`H‹W0¿ìûAè‡H‹=‰#é¹þÿÿ…Ûu ¿õûAèMàÿÿƒ=Ö)#t$¿ðñA1ÀèâÿÿH‹Q)#H‹=ú†#¾èpãÿÿƒ=±ˆ#Ç׈#‡²ýÿÿ‹›ˆ#ÿ$ÅPBƒ=u)#dzˆ#…|ýÿÿ¾GüA¿è¦ézýÿÿ¿pH‰D$èâH‹D$é€íÿÿ¿(H‰D$èÉH‹D$é6íÿÿ¿'H‰D$è°H‹D$é[ìÿÿºH‰Þ¿¨öAèt…À…ºH‰Þ¿±öAèZ…ÀA‰Ç„‚ ƒÅD9åñK‹t5¿ ÓcE1ÿèÑÞÿÿéfêÿÿ¿'H‰D$è=H‹D$éÙèÿÿ¿'H‰D$è$H‹D$éÚèÿÿH‹O`H‹W0¿ÅûAèH‹=‘‡#éfýÿÿƒÅD9å’K‹|5è&"H‰G(#éôéÿÿ¾üA¿è{éOüÿÿ¾*üA¿ègé;üÿÿ¾`òA¿èSé'üÿÿ¾€òA1ÿèBéüÿÿèˆ'H‹=‡#H‹H‰=‡#é¼úÿÿè̇H‹=õ†#H‹H‰=ê†#é úÿÿèp’H‹=Ù†#H‹H‰=Ά#é„úÿÿè$H‹=½†#H‹H‰=²†#éhúÿÿ舂H‹=¡†#H‹H‰=–†#éLúÿÿ1Àè…H‹=ƒ†#H‹H‰=x†#é.úÿÿ1ÀèìfH‹=e†#H‹H‰=Z†#éúÿÿ1Àè®WH‹=G†#H‹H‰=<†#éòùÿÿ1Àè WH‹=)†#H‹H‰=†#éÔùÿÿè´{H‹= †#H‹H‰=†#é¸ùÿÿèØwH‹=ñ…#H‹H‰=æ…#éœùÿÿè|zH‹=Õ…#H‹H‰=Ê…#é€ùÿÿè°zH‹=¹…#H‹H‰=®…#édùÿÿ1ÀèÂvH‹=›…#H‹H‰=…#éFùÿÿèækH‹=…#H‹H‰=t…#é*ùÿÿèzrH‹=c…#H‹H‰=X…#éùÿÿè.^H‹=G…#H‹H‰=<…#éòøÿÿH‹è~H‹='…#H‹H‰=…#éÒøÿÿèb\H‹= …#H‹H‰=…#é¶øÿÿè–{H‹=ï„#H‹H‰=ä„#éšøÿÿèJnH‹=Ó„#H‹H‰=È„#é~øÿÿè®7H‹=·„#H‹H‰=¬„#ébøÿÿèr8H‹=›„#H‹H‰=„#éFøÿÿèöæH‹=„#H‹H‰=t„#é*øÿÿèª7H‹=c„#H‹H‰=X„#éøÿÿè>èH‹=G„#H‹H‰=<„#éò÷ÿÿè‚çH‹=+„#H‹H‰= „#éÖ÷ÿÿèçH‹=„#H‹H‰=„#éº÷ÿÿèê_H‹=óƒ#H‹H‰=èƒ#éž÷ÿÿè^H‹=׃#H‹H‰=̃#é‚÷ÿÿè²bH‹=»ƒ#H‹H‰=°ƒ#éf÷ÿÿèÆçH‹=Ÿƒ#H‹H‰=”ƒ#éJ÷ÿÿèÚÙH‹=ƒƒ#H‹H‰=xƒ#é.÷ÿÿèþµH‹=gƒ#H‹H‰=\ƒ#é÷ÿÿèRŸH‹=Kƒ#H‹H‰=@ƒ#éööÿÿè±H‹=/ƒ#H‹H‰=$ƒ#éÚöÿÿ1ÿ1ÀèV°H‹=ƒ#H‹H‰=ƒ#éºöÿÿè¾H‹=ó‚#H‹H‰=è‚#éžöÿÿ莿H‹=ׂ#H‹H‰=Ì‚#é‚öÿÿè2¯H‹=»‚#H‹H‰=°‚#éföÿÿ覾H‹=Ÿ‚#H‹H‰=”‚#éJöÿÿèú©H‹=ƒ‚#H‹H‰=x‚#é.öÿÿè^¥H‹=g‚#H‹H‰=\‚#éöÿÿè¡H‹=K‚#H‹H‰=@‚#éöõÿÿèvšH‹=/‚#H‹H‰=$‚#éÚõÿÿ誘H‹=‚#H‹H‰=‚#é¾õÿÿèî>H‹=÷#H‹H‰=ì#é¢õÿÿèræH‹=Û#H‹H‰=Ð#é†õÿÿè#H‹=¿#H‹H‰=´#éjõÿÿèz"H‹=£#H‹H‰=˜#éNõÿÿè~H‹=‡#H‹H‰=|#é2õÿÿè2H‹=k#H‹H‰=`#éõÿÿèv_H‹=O#H‹H‰=D#éúôÿÿèªWH‹=3#H‹H‰=(#éÞôÿÿ1ÀèÌH‹=#H‹H‰= #éÀôÿÿèPÿH‹=ù€#é¯ôÿÿè¿þH‹=è€#H‹H‰=Ý€#é“ôÿÿ¿èØH‹xèeH‹=¾€#H‹H‰=³€#éiôÿÿ¿èä×ò,@ ǹ##‰¯##H‹=ˆ€#é>ôÿÿÇ##é/ôÿÿè_óH‹=h€#H‹H‰=]€#éôÿÿèûH‹=L€#H‹H‰=A€#é÷óÿÿèwUH‹=0€#H‹H‰=%€#éÛóÿÿ1ÀèÙQH‹=€#H‹H‰=€#é½óÿÿèmùH‹=ö#é¬óÿÿèüïH‹=å#H‹H‰=Ú#éóÿÿèÀÏH‹=É#H‹H‰=¾#étóÿÿèTÏH‹=­#H‹H‰=¢#éXóÿÿèøóH‹=‘#H‹H‰=†#é<óÿÿèŒÛH‹=u#H‹H‰=j#é óÿÿè óH‹=Y#H‹H‰=N#éóÿÿèäÕH‹==#ÇH‹H‰=,#éâòÿÿèBÞH‹=#H‹H‰=#éÆòÿÿè†ÙH‹=ÿ~#H‹H‰=ô~#éªòÿÿè:ÚH‹=ã~#H‹H‰=Ø~#éŽòÿÿ¿ è ÖH‹=Â~#H‹H‰=·~#émòÿÿèMÙH‹=¦~#H‹H‰=›~#éQòÿÿèáàH‹=Š~#H‹H‰=~#é5òÿÿèEßH‹=n~#H‹H‰=c~#éòÿÿèiýH‹=R~#H‹H‰=G~#éýñÿÿèÝÿH‹=6~#H‹H‰=+~#éáñÿÿèþH‹=~#H‹H‰=~#éÅñÿÿèµH‹=þ}#H‹H‰=ó}#é©ñÿÿè)[H‹=â}#H‹H‰=×}#éñÿÿèMH‹=Æ}#H‹H‰=»}#éqñÿÿè‘H‹=ª}#H‹H‰=Ÿ}#éUñÿÿè5H‹=Ž}#H‹H‰=ƒ}#é9ñÿÿèé.H‹=r}#H‹H‰=g}#éñÿÿè+H‹=V}#H‹H‰=K}#éñÿÿèAçH‹=:}#H‹H‰=/}#éåðÿÿè%ÏH‹=}#H‹H‰=}#éÉðÿÿèÙÛH‹=}#H‹H‰=÷|#é­ðÿÿè=ÚH‹=æ|#H‹H‰=Û|#é‘ðÿÿè1èH‹=Ê|#H‹H‰=¿|#éuðÿÿH‹ S#º9¾¿PçAè_ÛÿÿH‹ 8#ºF¾¿çAèDÛÿÿH‹ #ºH¾¿ØçAè)ÛÿÿH‹ #ºI¾¿(èAèÛÿÿH‹ ç#º¾¿;öAèóÚÿÿH‹ Ì#º/¾¿xèAèØÚÿÿH‹ ±#º4¾¿¨èAè½ÚÿÿH‹ –#ºU¾¿àèAè¢ÚÿÿH‹ {#º@¾¿8éAè‡ÚÿÿH‹ `#ºF¾¿€éAèlÚÿÿH‹ E#º;¾¿ÈéAèQÚÿÿH‹ *#ºL¾¿êAè6ÚÿÿH‹ #º?¾¿XêAèÚÿÿH‹ ô#º4¾¿˜êAèÚÿÿH‹ Ù#ºF¾¿ÐêAèåÙÿÿH‹ ¾#ºF¾¿ëAèÊÙÿÿH‹ £#ºN¾¿`ëAè¯ÙÿÿH‹ ˆ#ºG¾¿°ëAè”ÙÿÿH‹=m#º€Ôc¾øëA1ÀèÌÕÿÿH‹5U#¿ è ÕÿÿèF¿¨ñA1ÀèºÓÿÿH‹#H‹=¬x#¾è"ÕÿÿéîÿÿºH‰Þ¿¾öAè»…À„‡ƒÅD9åµK‹|5èýH‰Îl#éËÜÿÿAHcÑH‹=Tx#H‹ÕÀÎc¾(òAH˜L‹ÅÀÎc1Àè¶ØÿÿH‹5/x#¿è%H‹=þy#é´íÿÿH‹=’#ºçA¾ÌóA1ÀèñÔÿÿè|ºH‰Þ¿ÇöAè…ÀA‰ÇtIƒÅD9å}-K‹|5E1ÿè^H‰'l#é,Üÿÿ¾ÈíA¿è³è.¾ðíA¿èŸèƒ=W#…ÃH‰Þ¿ÍöAè@Ôÿÿ…ÀtAºH‰Þ¿ÒöAè*Ðÿÿ…Àt+H‰Þ¿ØöAèÔÿÿ…ÀtºH‰Þ¿ÞöAèÐÿÿ…À…¯ºH‰Þ¿ÒöAÇè#èßÏÿÿ…ÀA‰Ç„õºH‰Þ¿ÞöAèÂÏÿÿ…ÀA‰Ç„¶9l$Ž˜K‹|5Çž#E1ÿèfH‰o#é4Ûÿÿƒ=»v#…æÿÿHƒ|$…æÿÿHƒ=a#…æÿÿHƒ=;#uH‰ßè!H‰*#H‹=##¾Bè9ÖÿÿH…ÀH‰D$„ŒH‹#¾\H‰ßè·ÑÿÿH…ÀH‰#tQHƒÀH‰#Hƒ=#…œÚÿÿHÇï#ýöAéŒÚÿÿ¾ íA¿è莾xíA¿èÿèz¾/H‰ßèMÑÿÿH…ÀuH‰©#ëŸèZÎÿÿ‹8è³ÖÿÿH‹l#H‹=Åu#H‰Á¾åöA1Àè6ÖÿÿH‹5¯u#¿è¥ÇŸ#Ç‘#è €|$-…·þÿÿH‰Ú¾8îAH‹=ru#1ÀèëÕÿÿH‹5du#¿èZèÕ¾îA¿èFèÁH{Çó#ƒíè»H‰Ä#é‰ÙÿÿH{ÇÑ#ƒíè™H‰¢#égÙÿÿ¾0ìA¿èîèi¾èìA¿èÚèU¾¨ìA¿èÆèA¾íA¿è²è-L‰ò¾hìAé'ÿÿÿ¾HíA¿è‘è f.„f1íI‰Ñ^H‰âHƒäðPTIÇÀpáAHÇÁáAHÇÇP6@è·ÐÿÿôfD¸¯ucUH-¨ucHƒøH‰åv¸H…Àt]¿¨ucÿàf„]Ã@f.„¾¨ucUHî¨ucHÁþH‰åH‰ðHÁè?HÆHÑþt¸H…Àt ]¿¨ucÿà]ÃfD€=Q#uUH‰åènÿÿÿ]Æ>#óÃ@¿ÀmcHƒ?u듸H…ÀtñUH‰åÿÐ]ézÿÿÿf.„Hƒì‹=Š#ƒÿ„’~&¾è±Ðÿÿ‹=o#Ht$ 1ÒèÒÿÿÇY#ÿÿÿÿ‹'#…ÀtEƒ=8#tP¿Òèi¿áAèîmH‹g#¾H‰çèŠÏÿÿƒ=ë#u‹=û#è†Óÿÿƒ=‡g#tìƒ=ê#tãë°èÝÑÿÿëÚ¿èaÓÿÿATUI‰üS‰ÓHƒì€>-t>…ÛxJH‰÷H‰t$èMÍÿÿH‹t$HcÐL‰çH‰ÅèZËÿÿ…À”Â1À9ëžÀHƒÄ[!Ð]A\À~-u¼€~HƒÞÿë²÷ÛL‰çHcÓè#Ëÿÿ…À”ÀHƒÄ[¶À]A\ÃfAUATUS‰ûHƒì9=:r#ŒˆI‰ô‹5#‰Õ…ö…õƒûw‰Øÿ$Å`üA€A½|óAH‹5ƒ#L‰ïè›Íÿÿ…íx‹és#ƒø„pƒø„¿H‹=X#1ÀL‰â¾ÊóAè¹Îÿÿƒ=ºs#uƒû ¿è1è;rs#}‰js#ƒû~-‹#…Àt;‰q#~ HƒÄ[]A\A]ÃHƒÄ[]A\A]é!ÏÿÿÇ^s#Ç`#ÇR#t³H‹ É#º3¾¿¸áAèÕÑÿÿè°ýÿÿèkÒÿÿƒû†ÿÿÿéÿÿÿD¿²óAH‹5Œ#è§Ìÿÿ…í‰ÿÿÿH‹=x#L‰â¾ÊóA1ÀèÙÍÿÿé4ÿÿÿ@ƒý#¿¡óAë¿fƒá#A½…óAé´þÿÿfDƒÍ#¿ŽóAë—f.„¿ªóAë†f„ƒ©#¿™óAélÿÿÿ€H‹az#H‹H…Ò„†þÿÿ‹ ã#…Éu;-E#tH‹=Ì#‰é¾ºóA1Àè.Íÿÿ‰-(#Dz#éJþÿÿf„H‹ùq#‹hP…íŽ/þÿÿH‹@XH‹ë—D‹òq#ƒøt-ƒøtºÿÿÿÿé–ýÿÿfDH‹¹q#‹PP…Ò~âé}ýÿÿD‹â#émýÿÿf.„AUATUSHƒìþ•L‹%™o#‡³HcöH…ÒH‰ËLl$ H‹ õÀÎc„ÿI‰ÐM‰éH‰ú¾áóAL‰ç1ÀèßÏÿÿH…Ût €;…™HcD$ H‹ t#IÄH‹t#H9H„¡¹t[AÆD$IƒÄfA‰L$þH‹ís#H‹XH9Ús#„Ž1ífƒýK…ítº,IƒÄfA‰T$ÿƒ;‡ß‹ÿ$ŘüAfDL‰ê¾`ôAL‰ç1Àè>ÏÿÿfDHcD$ IÄH‹[H;us#Et‰Åëœ@ƒø~UüL‰çL‰é¾zôA1ÀèþÎÿÿHcD$ Iĸ]bAÆD$fA‰$H‹5_n#¿èUþÿÿHƒÄ[]A\A]Ãf.„L‰ê¾PôAL‰ç1Àè®Îÿÿéqÿÿÿf„L‰ê¾IôAL‰ç1ÀèŽÎÿÿéQÿÿÿf„L‰ê¾BôAL‰ç1ÀènÎÿÿé1ÿÿÿf„L‰ê¾5ôAL‰ç1ÀèNÎÿÿéÿÿÿf„L‰ê¾,ôAL‰ç1Àè.Îÿÿéñþÿÿf„L‰ê¾$ôAL‰ç1ÀèÎÿÿéÑþÿÿf„òC L‰ê¾ôAL‰ç¸èæÍÿÿé©þÿÿH‹SH…Ò„õL‰é¾ôAL‰ç1ÀèÁÍÿÿé„þÿÿ@H‹SL‰é¾ôAL‰ç1Àè¢ÍÿÿéeþÿÿDL‰ê¾ôAL‰ç1Àè†ÍÿÿéIþÿÿL‰ê¾pôAL‰ç1ÀènÍÿÿé1þÿÿf„Ll$ ‰ñH‰ú¾ÐóAL‰ç1ÀM‰èèDÍÿÿénýÿÿ€HcD$ L‰éH‰Ú¾øóAIÄ1ÀL‰çèÍÿÿéEýÿÿfDAÇ$t[]bAÆD$éþÿÿDH‰úM‰è¾ïóAL‰ç1ÀèãÌÿÿéÿüÿÿL‰ê¾ôAL‰ç1ÀèÌÌÿÿéýÿÿ€S‰û1ö‰ßèÉÿÿƒ=%n#tmƒû wfÿ$ÝýA€¾ðáA1ÿè üÿÿ¾ âA1ÿèüÿÿ‹#…Àt8¾HâA1ÿèêûÿÿ¾pâA1ÿèÞûÿÿ¾˜âA1ÿèÒûÿÿ[¾ÀâA1ÿéÅûÿÿD[ÿèDÌÿÿ@Hƒì‰úH‹=£k#¾èâA1ÀèÌÿÿH‹5k#1ÿHƒÄé…ûÿÿDAWAVAUATUSHƒì‹\m#…À…9H‹-#H‰þI‰üH‰ïèÈÿÿ…À‰ÃH‰é„ßL‹-Û #L‰æL‰ïèðÇÿÿ…À‰Ã„À¾­ôAH‰ïèÙÊÿÿH…ÀH‰$„zH‹=¥ #¾­ôAè»ÊÿÿH…ÀH‰D$„œ¾°ôAL‰çè ÊÿÿH…ÀH‰Å„̓=Éj#~éúfDH‰î‰ÇèöÆÿÿH‹<$è½Æÿÿƒøÿuèƒ= d#ŽäA½@Úc1ÛA¾DI‹E¾­ôAH‹8è7ÊÿÿH…ÀI‰Ä„SI‹EH‹=`j#¾ÍôAH‹P1ÀèÐÊÿÿL‹=Ij#A¾?@„ÿtIƒÇH‰îƒÃèqÆÿÿA¾?@„ÿuèA¿0ãA¿ DIƒÇH‰îƒÃèIÆÿÿA¾?@„ÿuèL‰çèÆÿÿƒøÿtH‰î‰ÇƒÃè#ÆÿÿL‰çèëÅÿÿƒøÿuæA¼ãA¿ IƒÄH‰îƒÃèùÅÿÿA¾<$@„ÿuçAƒÆIƒÅD95c#ÿÿÿA¼ôA¿ €IƒÄH‰îƒÃè¹ÅÿÿA¾<$@„ÿuçA¼ôA¿ @IƒÄH‰îƒÃè‘ÅÿÿA¾<$@„ÿuçH‹|$èMÅÿÿƒøÿt$„H‰î‰ÇƒÃècÅÿÿH‹|$è)ÅÿÿƒøÿuäH‰éº¾¿ÙôAèÉÿÿS¾ßôAH‰ï1À»èÖÅÿÿH‹§ #¾éôAH‰ï1ÀèÀÅÿÿH‹=‘ #èdÃÿÿ¾ßôAH‰ÂH‰ï1Àè¢Åÿÿ‹Ør#¢h#¾ñôAH‰ï1Àè‡ÅÿÿºûôA¾éôAH‰ï1ÀèsÅÿÿH‹<$èÚÂÿÿH‹|$èÐÂÿÿH‰ïèÈÂÿÿë*L‰éH‹=\h#¾ˆãAL‰â1ÀèÍÈÿÿH‹5Fh#¿è<øÿÿHƒÄ‰Ø[]A\A]A^A_þXãA¿1ÛèøÿÿëÜè“Àÿÿ‹8Mcö1ÛèçÈÿÿJ‹õ@ÚcH‹=øg#H‰Á¾°ãA1ÀH‹èfÈÿÿH‹5ßg#¿èÕ÷ÿÿ1ÿè.ÂÿÿëH‹ e #H‹f #M‰àH‹=´g#¾³ôA1Àè(ÈÿÿH‹5¡g#¿è—÷ÿÿéÜüÿÿè Àÿÿ‹81ÛèdÈÿÿH‹% #H‹=vg#H‰Á¾°ãA1ÀèçÇÿÿH‹5`g#¿èV÷ÿÿéÿÿÿèÌ¿ÿÿ‹81Ûè#ÈÿÿH‹Ü #H‹=5g#H‰Á¾°ãA1Àè¦ÇÿÿH‹5g#¿è÷ÿÿH‹<$èlÁÿÿéËþÿÿè‚¿ÿÿ‹81ÛèÙÇÿÿH‹=òf#H‰ÁL‰â¾ØãA1Àè`ÇÿÿH‹5Ùf#¿èÏöÿÿH‹<$è&ÁÿÿH‹|$èÁÿÿé{þÿÿ1ÛéýÿÿAWAV¾OBAUATI‰ÿUSHƒìèUÆÿÿH…À„ H‹mg#E1íI‰ÆH…ÛI‰ÜuéµfƒýtdM‹d$M…ätZIc$H‹<ÅÀÎcH‰ÅèíÀÿÿA9ÅDLèý•vÎH‹=7f#‰ê¾#õA1Àè©ÆÿÿH‹5"f#¿é…„H‹[H…ÛtJH‹f#E‰è¾äAL‰÷ÆHc‹SPÿ5æe#‹KLL‹ ÅÀÎc1ÀQÿsH‹KXÿqH‰Ùè¶ÂÿÿHƒÄ ƒ;u­L‰÷èÀÿÿH‹=®e#¾õAL‰ú1ÀèÆÿÿH‹5˜e#¿HƒÄ[]A\A]A^A_é€õÿÿèû½ÿÿ‹8èTÆÿÿH‹=me#H‰ÁL‰ú¾ØãA1ÀèÛÅÿÿé-ÿÿÿfDAUATºUSHcÞH‰ÞI‰üHƒìè“Ãÿÿ…À…ÛH‹=$e#L‰â¾'‰Åè•ÁÿÿH…À„ L‹-e#L‰ïè¿ÿÿAÆDÿH‹ðd#¾päAH‹=¼f#1Àè]ÅÿÿH‹5®f#¿èÌôÿÿºH‰ÞL‰çèÃÿÿ…Àu½HƒÄ‰è[]A\A]ÃfDè½ÿÿ‹8ètÅÿÿH‹5#H‹=^f#H‰Á¾;õA1Àè÷ÄÿÿH‹5Hf#¿èfôÿÿHƒÄ‰è[]A\A]Ãf„è˼ÿÿ‹81íè"ÅÿÿH‹ã#H‹= f#H‰Á¾;õA1Àè¥ÄÿÿH‹5öe#¿èôÿÿHƒÄ‰è[]A\A]À¾@äA¿èñóÿÿé9ÿÿÿff.„S‰ÿH‰ûHƒÇHƒìèÁÿÿH…ÀtHƒÄ[Ãf‰ßH‰D$èøÿÿH‹D$HƒÄ[Ãf„ATUI‰üSHcÞ{è®ÿÿÿH‰ÚH‰ÅL‰æH‰Çè¼ÿÿÆDH‰è[]A\ÃH…ÿtSH‰ûè¾ÿÿH‰ß‰Æ[ëºf.„1ö¿(öAë§€AUATA‰ýUSH‰õI‰ÔHƒìƒ="c#H‹e#‹3#H…í‰CPH‹öl#D‰+H‰CX‹#‰Ct €}…úHÇC0ƒÀHÇCÇCLHÇC(HÇC@L‰ç‰¿#èBÿÿÿH‰C`H‹—l#Hƒx „ÌH…ítH‹xg#H‹qd#H…ÀtH‰P8H‰ag#¿tè/ÀÿÿH…ÀH‰Ã„³H‹Dd#HÇCHÇCHÇC HÇC8HÇC@H‰CHÇC0H‰ d#H‰XH‰d#HƒÄ[]A\A]ÃH‰ÑH‰ò‰þ¿YõAèFòÿÿéÑþÿÿH‰ïèxþÿÿH‰C0‹æ#H‹¿c#éðþÿÿfH‹±c#ƒ:p…$ÿÿÿH‰P H‰P(éÿÿÿ¿pèöõÿÿé>ÿÿÿHƒì1Ò1öèSþÿÿHƒÄH‰Çéڀ髹ÿÿf.„ATUI‰ôSH‹bk#H‰ýH…Ûuë@„H‹[0H…Ût/H‹;H‰îèü½ÿÿ…Àuè‹*a#…À¸HDØH‰Ø[]A\À¿<èξÿÿH…ÀH‰Ã„éH‹ã#HÇC0ÇCH…ÀtH‰X0H‰ïH‰Á#èdýÿÿH‰H‰Çèi»ÿÿM…ä‰Ct1L‰çèIýÿÿH‰ÇH‰CèM»ÿÿHÇC(‰CH‰ØHÇC []A\ÃfH‰ïè(»ÿÿ…À‰ÂLcà ë*DIƒìB¶L%ÿ€ù\t€ù/tB€|%.DƒêuÞE1ähÿ)Õ}èfüÿÿL‰æH3UH‰ÇH‰CHcíHcÒè˸ÿÿH‹CÆD(H‹{égÿÿÿ¿8è_ôÿÿéÿÿÿf.„US‰õ¾.H‰ûHƒìèÛºÿÿH…Àt>ºÈH‰Þ¿ wcèt¸ÿÿ…ít¾@H‰ß賺ÿÿH…À„ÚHƒÄ¸ wc[]ÃfDH‹‘i#ºÈ¿ wcH‹pè.¸ÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰Â¾ /BÁê©€€DÂHQ‰ÇHDÊ@ǺÇHÙ£wc¿ wcH)Êè:»ÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰ÂH‰ÞÁê©€€DÂHQ‰ÇHDÊ@ǺÇHÙ£wc¿ wcH)Êèèºÿÿéÿÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰Â¾bõA¿ wcÁê©€€DÂHQ‰ÃHDÊúÇHÙ£wcH)Êèºÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰ÂH‹5ˆY#¿ wcÁê©€€DÂHQ‰ÃHDÊúÇHÙ£wcH)Êè8ºÿÿéyþÿÿƒ=%^#H‰øCS¾.H‰ûè¹ÿÿH…Àt9Hpº,¿`vcèž¶ÿÿ¾@¿`vcè߸ÿÿH…Àt*Ƹ`vc[óÀº,H‰Þ¿`vcèf¶ÿÿëÆ@¸`vc[ëׄHƒìH‹}b#H‹nb#H9Ðuë'€H‹@H9Ðtƒ8uòH‹@‹PPH‹@X‰WPH‰GX¿膶H‹p¿HƒÄéTíÿÿ@Hƒì¿èb¶H‹xèYî1ÀèÒ;1Ò1ö¿HƒÄéàùÿÿ…ÿS@•Ç1Ò1ö@¶ÿƒÇèÉùÿÿ1ö¿(öAH‰ÃèúüÿÿH‰Çè‚ùÿÿH‰C[Ãff.„AUATUSHƒìH‹§a#€H‹@ƒ8u÷H‹h¾°äAƒ}uIL‹eH‰ûL‰çèA·ÿÿI‰Å‹C€|,ÿ$”Áƒø”Â8ÑtNƒøL‰â¾åAt,H‹=u\#1Àèî¼ÿÿH‹5g\#HƒÄ¿[]A\A]éSìÿÿH‹=I\#¾ØäA1Àè½¼ÿÿëÍH‹{èÒ¶ÿÿA|èHøÿÿH‹sH‰ÇI‰Åè©¶ÿÿL‰æH‰ÇèÞ´ÿÿH‹}è5´ÿÿ¾ÇEL‰ïèÕH…ÀH‰ÃL‰ê¾dõA„aÿÿÿèX´H‹±]#H‰ÇÇH‰PèÏÏH‰˜]#HƒÄL‰ï[]A\A]éÖ³ÿÿfD‹’e#…ÀtÃDS1ÒH‰û1ö¿Sè>øÿÿH‹Oþ"H‰XH…ÒtH‰B@H‰;þ"ƒP#[Ãf.„H‰A#ëÝ€US¾¿sHƒìè;ÌH‰Ã‹#x‰;Áçè5÷ÿÿ¿(öAH‰ÅH‰C0è”÷ÿÿH‰EH‹ñÿ"ºH…Àt €H‹pH‹K0H‹@@H‰4HƒÂH…Àu纾¿€õAèë®H‰X HƒÄ[]ÃAWAVAUATUSHƒìH‹=Cý"ÇD$ÇD$ H…ÿt€?u!¾ºõA1ÿ1íèsêÿÿHƒÄ‰è[]A\A]A^A_Ãf¾BèºÿÿH…ÀI‰Ä„ʾçÿÿÿH‰ÇE1íèêôÿÿ…À»ûôA½u"ëQf.„¾9ÐAEíHƒÃHûõAtL‰çè¶ÿÿƒøÿuÝHƒÃ1íHûõAuä…ít¾àÿÿÿL‰çèôÿÿ…Àu1íé_ÿÿÿfL‰çè(´ÿÿéPÿÿÿ1Àº|Óc¾ÇóAL‰çè²ÿÿ…À„h¾àÿÿÿL‰çèJôÿÿ…Àt½ƒ=‹Y#w‹ƒY#ÿ$ÅpýAA¾¨õAH‹=K[#L‰ò¾ëõA1Àèä¹ÿÿH‹55[#¿èSéÿÿ¾ÓÿÿÿL‰çèöóÿÿ…À„eÿÿÿHT$ 1À¾ÇóAL‰çè ²ÿÿ…À„ù‹T$ H‹=ïZ#¾°åA1À苹ÿÿH‹5ÜZ#¿èúèÿÿ‹D$ ¾ÓÿÿÿL‰çDhD)îè’óÿÿ…À„ÿÿÿ‹D$ xèîôÿÿ‹L$ L‰âH‰ÇH‰…û"qè5µÿÿH…À„™H‹mû"H‹=vZ#¾æA1À»ÆÿÿÿD)ëè ¹ÿÿH‹5[Z#¿èyèÿÿ‰ÞL‰çèóÿÿ…À„ŽþÿÿHT$1À¾ÇóAL‰çè3±ÿÿ…À„8‹T$H‹=Z#¾`æA1Àè´¸ÿÿH‹5Z#¿è#èÿÿ‹D$L‰çƒÀ)ÉÞèÀòÿÿ…À„/þÿÿƒ=ýW#þL‰%Äú"é|ýÿÿ€A¾£õAécþÿÿA¾›õAéXþÿÿA¾–õAéMþÿÿA¾‘õAéBþÿÿÇÞa#ǤW#A¾®õAé#þÿÿA¾ÝŠBéþÿÿA¾‹õAé þÿÿ€èû¯ÿÿ‹81íèR¸ÿÿH‹ú"H‹=dW#H‰Á¾HåA1ÀèÕ·ÿÿH‹5NW#¿èDçÿÿéÌüÿÿ¾ÒõA¿1íè.çÿÿé¶üÿÿ¾xåA¿1íèçÿÿé üÿÿ¾àåA¿1íèçÿÿéŠüÿÿ¾ˆæA¿èîæÿÿH‹ gù"º¾¿ÿõAès·ÿÿƒ|$~\臸ÿÿE1öI‰Çë&€ƒú t2ƒú t-Aƒý „§AƒÆD9t$~)L‰ç衲ÿÿHcÐI‹I‰ÕöDP@tÉH‹5úø"D‰ïè²²ÿÿëÂH‹5éø"¿ 蟲ÿÿ¾ÀæA¿èPæÿÿ¿èæA1ÀèD±ÿÿH‹ø"H‹=6V#¾謲ÿÿ‰ÞL‰çèÒðÿÿ…À…þÿÿ1íé ûÿÿ¾0æA¿1íèæÿÿéŠûÿÿ‹D$ƒèA9ÆIÿÿÿH‹ fø"º¾¿ÿõAèr¶ÿÿé)ÿÿÿf.„ATUSH‰û¾?@„ÿt!I‰ôH‰ÕL‰æHƒÃèܱÿÿƒE¾;@„ÿuè[]A\Ãf.„AVAU¾BATUI‰þSè+µÿÿH…ÀtH‰Ç辯ÿÿ[L‰÷]A\A]A^éÞñÿÿfD¿öAè^­ÿÿH‰ÇH‰ÅèÓ¯ÿÿL‰÷H‰Ãèȯÿÿ|è?ñÿÿH}¾:H‰Ãèþ¯ÿÿH…ÀI‰Äu éIl$¾:H‰ïèÞ¯ÿÿH…ÀI‰ÄtfM‰åH‰îH‰ßI)íL‰êèr­ÿÿB€|+ÿ/BÆ+tH‰ßè]¯ÿÿº/f‰L‰öH‰ßè µÿÿ¾BH‰ßè\´ÿÿH…Àt—H‰Çèï®ÿÿH‰Ø[]A\A]A^ÃL‰óH‰Ø[]A\A]A^ÃéKµÿÿf.„ATI¼€UH‰õSH‰ûƒ=AT#[¶E„Àu1À€;[]A\”ÀÃfDÿÿÿf.„HƒÃ€;„'ÿÿÿH‰îH‰ßèÿÿÿ…Àtä[¸]A\Ãf.„fïÉATUS‰ûHƒì f.ȇ胳ÿÿf(È¿E1ä¸fïöf(Áò*óf.Îòt$s éóD‰Øòd$Xò^Äf.ÄsëxòL$èýîÿÿòL$H‰ÅHcÃëÆDHcÛfDf(éòL$ò^l$f(Åè÷²ÿÿf(ÐòD$òL$òYÂòT$ò\Èò1‰òXÁèȲÿÿò,ÀòT$f(ÊH˜¶€žBˆDHƒëƒûÿu”E…ätÆE-HƒÄ H‰è[]A\ÀfW ‰A¼èu²ÿÿ¿f(ȸéðþÿÿ‰Ãé#ÿÿÿf.„AWAVI‰þAUATA‰õUSHƒìƒþt ƒþ…ÎL‰÷èv¬ÿÿ…ÀH‰ÅfïÀŽ fïÛM‰÷òA*Ýò\$è`³ÿÿH‹EÿIcífïÀMdë&@H-žBH9è}8fïÀIƒÇM9üòH*ÀòX$tOI¾òYD$¿žB‹4ƒò$èJ¬ÿÿH…Àu½H‹=NQ#L‰ñD‰ê¾¯B1Àè¼±ÿÿH‹55Q#¿è+áÿÿfïÀHƒÄ[]A\A]A^A_ÄH‹= Q#‰ò1À¾Bè{±ÿÿH‹5ôP#¿èêàÿÿHƒÄfïÀ[]A\A]A^A_ÀSèZ²ÿÿ‰ÃHÁãèO²ÿÿfïÀã€ÿ?%ÿH ØòH*À[ò^W‡Ã@f.„ATUA‰ôS‰ÓH‰ýè«ÿÿA9܉ÚŸÁÁêÑu`A9Ä}[E…ä¾PÿDHæ9ÃMÚ‰ßD)çƒÇèjìÿÿD9ã|GIcÌH‰ÆH)Î@¶T ˆHƒÁ9Ë}ðƒÃD)ãHcÛÆ[]A\ÃfD¿è&ìÿÿÆ[]A\Ã1ÛëÛf.„AWAVAUATUS½&öAHƒì(D‹7D‰ðƒàûƒø „‡¿èᨿI‰ÅèÔ¨I‹}1Ò¾H‹XèУH…À„L‹` M…䄃Aƒ|$(&AFݾ3ƒø‰D$†?@„ö„’E1íI‰ÞA¿ë D9ùt@€ÿAƒÝÿIƒÆA¾6A‰Ï@„öt2H‰ïèªÿÿH…À@•ǃ|$@¶ÏwÉHƒøA‰ÏAƒÝÿIƒÆA¾6@„öu΃|$AE‰Á‰D$–D$¶D$@ÇuAEÆD$A‰Í‰D$A‹$E1ÿE1ö…À~!DI‹T$0AƒÆJ‹<:IƒÇèÚ¦ÿÿE94$äI‹|$0èʦÿÿ‹D$<Åèªêÿÿ¿(öAI‰ÆI‰D$0H‰D$èëÿÿI‰D¶3E„ö„»I‰ßÇD$ÇD$A¾öH‰ïè4©ÿÿH…À„Ë€|$u ëzfL9ûvIƒÇA¾7H‰ïè ©ÿÿH…ÀuæHcD$H‹L$I‰ÞM)þL‰ÿL{AvLÁL‰D$èMêÿÿL‹D$ƒD$I‰BÆ0D¶3E„öt*ÇD$HƒÃD¶3émÿÿÿDƒ|$uŠE„öuÚ@‹D$A‰$è¦fïÀÇòA*Åò@ HƒÄ([]A\A]A^A_ÄE„ö„,ÿÿÿÇD$ë“D¾8B¿E1íèFÝÿÿë¤H‰û¿èW¦D‹3H‹hé`ýÿÿ@„öA½…¾ýÿÿÆD$ÇD$E1íé4þÿÿI‹}E1íèËîÿÿH‹=ôL#H‰Â¾ÊB1Àèe­ÿÿH‹5ÞL#¿èÔÜÿÿé/ÿÿÿÆD$ÇD$E1íéçýÿÿf.„AWAVAUATA¼&öAUSHƒìD‹7D‰ðƒàûƒø"„2¿Aƒî%蜥H‹hHÇ@èë¤ÇI‰Ç¾uH‰ë@„ötZE1íë"L‰çè8§ÿÿH‰ÚH…ÀuP¾rHƒÃ@„ö„M…íuÚAƒþA–ÅL‰çè §ÿÿH…À„©E„í… HƒÃ¾3@„öuÚA½(öAëP@€;tGÆHƒÃAƒþv.¾r@„öuë#HƒÃ¾3@„ötL‰ç謦ÿÿH…Àuç€M…í¸(öALDèL‰ïè,èÿÿI‰G¶„ÀtHƒÃˆEHƒÅ¶„ÀuîÆEHƒÄ[]A\A]A^A_ÃH‰ÚI‰ÝéÿÿÿDH‰û¿èk¤D‹3L‹`éµþÿÿDf.„S¿èE¤¿H‹Xè7¤H‹xH‰Þè«öÿÿ‰Ãè„£fïÀÇò*Ãò@ [ÃDf.„ATU¿Sèò£¿H‹hèä£L‹`H‰ïèX¥ÿÿL‰çH‰ÃèM¥ÿÿ|èÄæÿÿL‰æH‰ÇH‰Ãè&¥ÿÿH‰îH‰Çè[£ÿÿè£ÇH‰X[]A\ÀS1Ò‰û1ö¿hèçÿÿ‰XH[Ãf.„AVAUATUSD‹oH¿èZ£Aƒý1ÀHƒÄ8[]A\A]A^A_ÃfDƒÇ뺃Á벸0Çùê"+- #H^f‰òê"ë @Æ?HƒÃ¾3¿Èxcè| ÿÿH…ÀuçLL$,LD$#HL$(HT$$¾úBH‰ßèf£ÿÿƒøtqLD$,HL$#HT$(1À¾ BH‰ßèC£ÿÿƒøtNLD$,HL$#HT$(1À¾üBH‰ßè £ÿÿƒøt+LD$,HL$#HT$(1À¾ýBH‰ßèý¢ÿÿƒø… ÿÿÿ@¾t$#¿BèÑŸÿÿH…À„ñþÿÿHcD$,€<…âþÿÿòD$L‰æH‰ï¸è3¥ÿÿ¸éÄþÿÿ7L‰çHÿ‰D$Lcè‰L$è0Ÿÿÿ…ÛA‰ÀH˜ÆD‹L$„7ò"{1Àò ({„ƒÀò^Á9Øuõòl$¸‰L$D‰D$f(ÍfT 5{f.Áf(ÍòXÈDGøf(ÁòL$èf¤ÿÿòL$D‹D$f(ÐHcL$ò\Èf. ¾z†SfïÀò,úC¶,BˆD-…ÿ„Ûƒùÿ‰L$,tA¹gfffò zë(DHcñA¶4<#„¨…ÿt>E1ÿˆD5ƒéƒùÿt?E…ÿtØ…ÿ…8HcÁƒéƒùÿÆD-„!HcñA€<4#„fƒéÆD5 ƒùÿu¡E1ÿÇD$,ÿÿÿÿE…ÿ…„…ÿ…|‹T$,…ÒHcÂxfÆD Hƒè…Àyó‹t$ò ×yƒÆD9ÆHcÖ}.@òYÁfïÒò,Àò*ÐH˜¶€BˆDHƒÂA9Ðò\ÂÖM…ö„ A€>„A€~„õE…ÀŽì1ÒëHè€8.„øƒÂD9ÂÍHcÂHL€9,uÛA¶ƒÂˆHcÂëÍDòt$A¿fW5Tyòt$é$üÿÿf„HcñA¶4<#…Ÿþÿÿò^щøA÷鉸ÁøÁú)Â’À)ÇHc×ò,ú…ÿu…Òއ¶‚BˆD5éfþÿÿE1ÿ뻋D$ÆD 0ƒèE…ÿ‰D$,„˜…Àx‹|$H˜ÆD-Wýé’þÿÿ¸éÜûÿÿL‰æH‰ï膚ÿÿ¸éÇûÿÿA¶NƒÂˆéùþÿÿfïÿò_ùf(Çé ýÿÿÆD5 éåýÿÿL‰çE1íèœÿÿA‰ÀH˜¹ÿÿÿÿÆDÇD$òxéþüÿÿ‰L$,é þÿÿ‰Âé þÿÿòëwéáüÿÿfDAWAVAUATUSH‰ýHƒì(‹_HƒûA'ƒû</E1äƒû+4ƒû<ƒûC‡ÿ$ÝBD¿ èšI‰Æ¿ èù™I‰Ä¿ èì™I‰Å¿ èß™I‰ÇëµòA,N òA,T$ òA,u òA, èÜFH‰Ãf„è ™ÇH‰XHƒÄ([]A\A]A^A_ÃòA,N òA,T$ òA,u òA, è´yH‰Ãë¿I‹mH‰ïèãšÿÿòA,\$ …ÛI‰ÅŽ›M‹gL‰çèÅšÿÿ9ÃM؃ë…Û‰\$x7HcÃMcíIÄëf.„ƒëIƒìƒûÿ‰\$tL‰êH‰îL‰ç袘ÿÿ…ÀuÞfïÀƒÃò*ÃòD$ëTI‹oòA,\$ H‰ïèXšÿÿ9Ã…Û¸I‹uOÃH˜H|ÿè¡ÿÿH…À„÷ fïÀH)èHƒÀòH*ÀòD$èò—òD$Çò@ HƒÄ([]A\A]A^A_ÃI‹òA,E òA,T$ pÿTþè¥îÿÿH‰ÃéþÿÿI‹_H‰ßèÁ™ÿÿòA,u H‰ßƒî‰Âè~îÿÿH‰ÃévþÿÿM‹gM‹mI¾,$L‰ã@„ít-@¾Å€úw 艠ÿÿH‹‹¨ˆHƒÃH¾+@„íuÔA€<$e…, A€|$n… A€|$v… A€|$… L‰ïè­–ÿÿH‰ÇèÛÿÿH‰ÃéíýÿÿòAG òA_E òD$éïþÿÿM‹eI‹oL‰çèö˜ÿÿH‰ïI‰Åèë˜ÿÿXÿ…Û‰\$ˆ^þÿÿHcÃMcíHÅëƒëHƒíƒûÿ‰\$„>þÿÿL‰êL‰æH‰ïèΖÿÿ…ÀuÚé'þÿÿI‹u€>„b I‹_H‰ßèlŸÿÿH…À„M fïÀH)ØHƒÀòH*ÀòD$éQþÿÿI‹_H‰ßè\˜ÿÿòA,M ‰ÆPÿH‰ß)ÎèíÿÿH‰ÃéýÿÿòAG è„™ÿÿò$òAE èt™ÿÿò $ò^ÈòL$éùýÿÿòAW òA] f(ÊfïÀò^Ëò,Áò*ÀòYÃò\ÐòT$éÆýÿÿM…ä„Ö I‹T$I‹uH‹=$=#òAG è©öÿÿ…À…i ¿(öAè—ÙÿÿI‹UH‹=ü<#H‰Ã¾B1ÀèmÿÿH‹5æ<#¿èÜÌÿÿéGüÿÿòAE òA]G òD$éIýÿÿfïÀòA,G òA,U 1Ðò*ÀòD$é(ýÿÿfïÀòA,G òA,U Ðò*ÀòD$éýÿÿfïÀòA,G òA,U !Ðò*ÀòD$éæüÿÿI‹òA,U 1öƒêè¹ëÿÿH‰Ãé±ûÿÿòAG òAM èPšÿÿòD$é®üÿÿI‹òA,u èêÿÿòD$é”üÿÿ¿è!ØÿÿòAO H‰Ãf(Áò $è:œÿÿò,Àò $=ÿ‰D$‡” ÆC‹D$ˆé3ûÿÿI‹oH‰ïèW–ÿÿXÿ‰\$èkÿÿHcÓH‹8ë…Òx‰L$H‰ÊH¾tHJÿöDw uäÆDH‹H¾EöDB tHƒÅH¾EöDB uðH‰ïèè×ÿÿH‰ÃéÀúÿÿI‹oH‰ïèä•ÿÿXÿ‰\$èøœÿÿH‹0HcÃë …Àx‰T$H‰ÐH¾LHPÿöDN uäÆDH‰ïè—×ÿÿH‰ÃéoúÿÿI‹¾èñèÿÿòD$éoûÿÿI‹oH‰ïèz•ÿÿxèòÖÿÿH‰ÃèzœÿÿºÿÿÿÿDƒÂH‹‰T$HcÒH¾t‹ ±ˆ HcL$€< H‰ÊuÙéúÿÿI‹oH‰ïè(•ÿÿxè ÖÿÿH‰Ã舒ÿÿºÿÿÿÿƒÂH‹‰T$HcÒH¾t‹ ±ˆ HcL$€< H‰ÊuÙé´ùÿÿèÿ›ÿÿI‹_H‹ë fDHƒÃH¾öDB uñH‰ßè©ÖÿÿH‰ÃéùÿÿòAG ¿è±æÿÿH‰ÃéiùÿÿI‹GfïÀ¶ò*ÀòD$éhúÿÿòAG ¿èæÿÿH‰Ãé7ùÿÿI‹HT$1À¾8Bè²—ÿÿƒø‰D$fïÀ„*úÿÿòD$éúÿÿfïÉòAG f.ȇs èÌ™ÿÿòD$éúùÿÿòAg 1Àò$$èèÿÿòY$òD$éØùÿÿfïÀòAO f.Á‡V f.Èv•ò-õoòl$é«ùÿÿòAG fTpòD$é’ùÿÿòAG òYÀéZÿÿÿfïÒòAG f.ÐòQÈvò $謙ÿÿò $òL$éUùÿÿfïÀòAO f.Áò $f(Á‡Ýèú˜ÿÿò $ò\ÈëÈH‹=˜8#òAG ¾Î/B¸è™ÿÿH‹=|8#èÕÿÿH‰Ãéß÷ÿÿ‹QÞ"I‹…Ò…Úè(“ÿÿ‰Ã‹8Þ"…Àtè÷•ÿÿ¾¿è•ÿÿ¾¿èù”ÿÿè’ÿÿ1ÿ‰Æèk—ÿÿfïÀò*ÃòD$鑸ÿÿI‹_¾BHÇÄÝ"XycDzÝ"H‰ßèr—ÿÿH…ÀI‰Å„ðfD1Ûë@ˆƒàxcHƒÃHƒûd„L‰ïA‰Ü蹓ÿÿƒøÿ‰ÅuÚHcÃÆ€àxc¿xH‹\Ý"è§ÓÿÿH‹PÝ"H‰H‹ ÖÜ"H‹H‰H‹ ÑÜ"H‰HH‹ ÎÜ"H‰HH‹ ËÜ"H‰HH‹ ÈÜ"H‰H H‹ ÅÜ"H‰H(H‹ ÂÜ"H‰H0H‹ ¿Ü"H‰H8H‹ ¼Ü"H‰H@H‹ ¹Ü"H‰HHH‹ ¶Ü"H‰HPH‹ ³Ü"H‰HX‹ ±Ü"‰H`¶ «Ü"ˆHdH‹D‰`hHÇ@pH‹ƒ“Ü"HƒÀpƒýÿH‰Ü"…çþÿÿL‰ïèï‘ÿÿ1ÀèHîÿÿH‰ÃéöÿÿòAG èÕÿÿòD$é÷ÿÿòAG èo”ÿÿòD$éýöÿÿòAG è¹’ÿÿòD$éçöÿÿòAG 胒ÿÿòD$éÑöÿÿòAG è­–ÿÿòD$é»öÿÿòAG èg–ÿÿòD$é¥öÿÿI‹LD$1É1Ò1öèˆîÿÿfïÀò*D$éYüÿÿI‹E1ÀHL$ëÚI‹HT$E1À1É1öèVîÿÿfïÀò*D$òD$éJöÿÿI‹Ht$E1À1É1Òè,îÿÿfïÀò*D$òD$é öÿÿòAG èŒH‹=7#H‰ÆH‰ÃèJŽÿÿéåôÿÿ¿dè‹ÑÿÿH|$H‰Ãè¾’ÿÿH|$èÄÿÿºlBH‰Á¾dH‰ßè”ÿÿ1ÿ蘒ÿÿH‰ßH‰ÅèÍÿÿ‰ê+57#H<¾uB1Àè••ÿÿé€ôÿÿ¿dè&ÑÿÿH|$H‰ÃèY’ÿÿH|$è_ÿÿºZBH‰Á¾dH‰ß躓ÿÿéEôÿÿ1ÀèþãÿÿòD$éLõÿÿ1öòA, ‰|$è"#…À…)ôÿÿHcD$ö… ÖcH‰Â…ãH‹=4#¾LB1Àè•ÿÿH‹5z4#¿èpÄÿÿHÇD$éëôÿÿòA,_ …ÛH‹=£Ö"…ÜèXÿÿfïÀò*Àé›úÿÿòAG è ÿÿòD$é®ôÿÿM‹oM¾eL‰ëE„ät1@A¾Ä€úw è©•ÿÿH‹B‹ ˆHƒÃL¾#E„äuÓ¿áõA¹ L‰îó¦…]‹Ä3#ƒø„؃ø„óƒø„Øƒø„«…À…,¿löAè"ÐÿÿH‰ÃéúòÿÿM‹gI¾,$L‰ã@„ít5f„@¾Å€úw è •ÿÿH‹‹¨ˆHƒÃH¾+@„íuÔ¿B¹ L‰æó¦„›¿˜B¹ L‰æó¦„{¿¢B¹ L‰æó¦„®¿­B¹ L‰æó¦„ª¿ºB¹ L‰æó¦„¨¿ÆB¹ L‰æó¦„‚¿çB¹ L‰æó¦„m¾*öAL‰çèdÿÿ…À„W¾Ä‰BL‰çèOÿÿ…À„1¾ÖBL‰çè:ÿÿ…À„ ¾ÞBL‰çè%ÿÿ…À„ÒA€<$#„­¾íB¿èCÂÿÿfïÀéšøÿÿf.„I‹èÇŒÿÿH…ÀˆfïÀòH*ÀépøÿÿòAG 赋ÿÿòD$éƒòÿÿ¾°B¿èëÁÿÿéeñÿÿH‹=ß1#¾yBH‰Ú1ÀèP’ÿÿH‹5É1#¿è¿Áÿÿ¿(öAé+óÿÿDA¼dé úÿÿ¾`B¿è–ÁÿÿfïÀéí÷ÿÿ¿@B¹ L‰æó¦„ãòÿÿ¾íB먿B¹ L‰îó¦„\¿ B¹ L‰îó¦„[¿Ä‰B¹L‰îó¦„Ú¿B¹L‰î󦄱¿+B¹ L‰îó¦„û¿8B¹L‰îó¦„Ñ¿*öA¹L‰îó¦„AA€}o…ûA€}s…ðA€}…å¿÷AèCÍÿÿH‰ÃéðÿÿH‹=¡0#è,ÍÿÿH‰ÃéðÿÿfïÀò*Ø3#éãöÿÿH‰<$躑ÿÿH‹<$éøÿÿ1ö‰ßèØ…ÀfïÀ…¼öÿÿHcÃö… Öc„H‹<Å ÕcéñûÿÿH‹=70#f(Á¾<B¸è¤ÿÿH‹50#¿èÀÿÿéïÿÿò öffWÁ) $èIÿÿf( $fWÁòD$énðÿÿò5­fòt$é[ðÿÿfWºfèÿÿò $òXÈòL$é:ðÿÿH‹<Å Õc褌ÿÿéýÿÿfïÀò*2#éîõÿÿH‰ÂfïÀHÑêƒàH ÂòH*ÂòXÀéÐõÿÿ¿úBèöËÿÿH‰ÃéÎîÿÿ1Òé(òÿÿfïÀò*32#é¦õÿÿfïÀò*²Ñ"é•õÿÿH‹=./#‰Ú¾B1Àò$è›ÿÿH‹5/#¿è ¿ÿÿò$é`õÿÿH‹=Q2#è„ËÿÿH‰Ãé\îÿÿH‹=-2#èpËÿÿH‰ÃéHîÿÿ¿ÈöA¹L‰î󦄿ÆB¹ L‰îó¦t¾çBL‰ïèe‹ÿÿ…À…%ýÿÿ‹Ÿ0#…ÒŽÐüÿÿH‹X0#ƒêH‹8HƒÀ‰€0#H‰A0#éâïÿÿH‹=Ñ"èðÊÿÿH‰ÃéÈíÿÿH‹=)0#èÜÊÿÿH‰Ãé´íÿÿfïÀò*@0#é“ôÿÿfïÀò*‡Ð"é‚ôÿÿH‹EXH‹xè¥ÊÿÿH‰Ãé}íÿÿH‹=ÎÐ"è‘ÊÿÿH‰Ãéiíÿÿ¿Ä‰BèÊÿÿH‰ÃéWíÿÿ¿aöAèmÊÿÿH‰ÃéEíÿÿ¿?üAè[ÊÿÿH‰Ãé3íÿÿ¿göAèIÊÿÿH‰Ãé!íÿÿH‹= "#è5ÊÿÿH‰Ãé íÿÿ¿ÏBè#ÊÿÿH‰ÃéûìÿÿH|$èáŠÿÿH‹D$H+…/#fïÀòH*ÀéÇóÿÿfïÀò*S-#é¶óÿÿfïÀò*>/#é¥óÿÿ1ö¿ÏBèÙ†ÿÿé”óÿÿ@Hƒì¿èB†fïÉò@ f.ÈwCò,ÀfïÉò*ÈHcÐò\ÁòYÐcòH,ÀH‰$I‰à1É1Ò1ö1ÿH‰D$èZŠÿÿHƒÄÃD1À1Òë×f.„Hƒì¿è…ÿÿH‹=ëÎ"HƒÄérŠÿÿf1Ò1ö@€ÿSS‰ût@€ÿDt¾Û¿Oè@Éÿÿ‰XL[þۿPè+Éÿÿ‰XL[ÃfDAVAUATUSHƒìƒLs„B¿A½E1äèW…ò@ òD$¿èB…H‹hL¾uH‰ëE„öt.A¾Æ€úw è©ÿÿH‹B‹°ˆHƒÃL¾3E„öuÓ¿¢B¹ H‰îó¦u E„í…¹¿ÈöAH‰îó¦—Á’ÂM…ä•À8Ñu*„Àt&L‰çè.ÈÿÿH‰÷#HƒÄ[]A\A]A^Ãf.„¿aB¹H‰îó¦tG¿B¹ H‰îó¦uv„ÀtrL‰çèòS…Àt·H‹=Ÿ.#HƒÄL‰æ[]A\A]A^ºé΃ÿÿfDM…ät;HƒÄL‰ç[]A\A]A^é_Äÿÿ€¿è„L‹`M…äA”ÅéÂþÿÿfD¿ B¹ H‰îó¦u„ÀtHƒÄL‰ç1À[]A\A]A^éÝY¿áõA¹ H‰îó¦u)„Àt%èSŒÿÿI¾$H‹‹ƒèd<‡N¶Àÿ$Å( B¿”B¹H‰îó¦u„ÀtH‹5§Ì"HƒÄL‰ç[]A\A]A^éó…ÿÿ¿›B¹ H‰îó¦u"E„ítòH,|$HƒÄ[]A\A]A^镆ÿÿD¿§B¹H‰îó¦u E„í…Ñ€}#¾(BtH‹=ô)#¾»BH‰ê1ÀèeŠÿÿH‹5Þ)#¿HƒÄ[]A\A]A^éȹÿÿò,D$‰¤,#HƒÄ[]A\A]A^ékAH‹=¤)#¾fBºd1ÀÇŠ)#è ŠÿÿH‹5‚)#¿ë¢Çm)#éÕýÿÿÇ^)#éÆýÿÿÇO)#é·ýÿÿÇ@)#é¨ýÿÿ¾‚BéWÿÿÿH‹.#H‹÷-#¹ÿÿÿÿH9Ðt H‹@ƒÁH9Ðuôò,T$9Ê„lýÿÿH‹=ü(#¾ØB1Àèp‰ÿÿH‹5é(#1ÿé ÿÿÿfUSHƒìƒLStt¿1íèèòH òL$¿èÓò,X 1ö‰ßè…Àu1HcÃö… ÖctDH…ítoH‹4Å ÕcHƒÄH‰ï[]é„ÿÿf„HƒÄ[]Ãf„¿èvH‹hë“H‹=I(#‰Ú¾PB1À軈ÿÿH‹54(#HƒÄ¿[]é$¸ÿÿ@fïÀòT$f.Âw f.è^vHƒÄ¾pB¿[]éñ·ÿÿH‹4Å Õcò,|$HƒÄ[]é„ÿÿ€S1Ò‰û1ö¿èÄÿÿ‰XH[Ãf.„Hƒì‹GH…ÀuU¾¿èf„ÿÿ¾¿èW„ÿÿ¾¿èH„ÿÿ¾¿è9„ÿÿ¾¿HƒÄé&„ÿÿfD¾@g@¿è„ÿÿ¾@g@¿è„ÿÿ¾@g@¿èóƒÿÿ¾@g@¿èäƒÿÿ¾@g@¿HƒÄéуÿÿUSH‰úH‰û1ö¿lHƒìè¨ÃÿÿH‰ßH‰ÅèmÃÿÿH‰EHƒÄ[]ÃfUSHƒìƒ?lH‹oXtH‹GH‰E HƒÄ[]ÃfH‰ûH‹€?uLH‹E(Hƒ=ØË"H‰E t$ƒ8ptH‹n(#ë@H‹@ƒ8pH‰E tH9ÐuîH‰CÇmHƒÄ[]ÃD¾ èÞŸH…Àu©H‹SH‹=>&#¾ÎBè´†ÿÿH‹5-&#HƒÄ¿[]é¶ÿÿf.„S1Ò1ö¿pHƒìòD$è·Âÿÿ¿H‰Ãè ÂÿÿH‹#Ë"H‰CòD$H…ÒtH‰Z@H‰ Ë"òÇCLdHƒÄ[ÄUS1Ò1öH‰ý¿pHƒìèYÂÿÿH‰ÃH‹ÏÊ"H…ÀtH‰X@H‰ïH‰¼Ê"èÂÿÿÇCLsH‰CHƒÄ[]ÃDS‰û1Ò¾Û1ö¿oè Âÿÿ‰XL[ÀATUSH‹_X‹oLH‹C H…ÀuëBf.„H‹@@H…ÀH‰C t+ƒ8puîH;XXuè@¾Õ;PL¾˜Bt*[]A\¿éì´ÿÿ@[]A\¾äB¿éÕ´ÿÿDèK}@€ýdI‰Ät2ÇH‹C H‹xè?ÁÿÿI‰D$H‹C H‹@@H‰C []A\Ãf„ÇH‹C H‹PH‹@@òòAD$ H‰C []A\Ãf.„@€ÿ=‰øtX~&<{¿Yt<}t9<>¸XDø1Ò1öéöÀÿÿfD¸aDø1Ò1öé6¿ÿÿfDI¾D$¿žBIl$A‹4‡èÙsÿÿH…À„äH-žBHƒøÔAÁæIl$Dðˆé2ÿÿÿDÆ é%ÿÿÿÆ éÿÿÿ„Æ é ÿÿÿ„Æ éýþÿÿ„Æ éíþÿÿ„ÆéÝþÿÿ„ÆéÍþÿÿ„Æ\é½þÿÿ„Æ?é­þÿÿ„Æ'éþÿÿ„Æ"éþÿÿ„Æ\A¶D$HƒÃˆéqþÿÿD‰ðˆégþÿÿ1Àˆé^þÿÿf„S1Ò‰û1ö¿qè´ÿÿ‰XL[Ãf.„Hƒì¿èÒpfïÀf.@ sHƒÄÃfH‹5q#¿HƒÄé‹§ÿÿf.„S1Ò‰ó1öè4´ÿÿ‰XH[ÃDf.„‹b¹"S‰ÁÁù‰Ê1Â)ÊúÒtV…ÀHc‹… Öc~ƒã¾Bt‰Ø[Ãf.„ƒãu+¾¸ BH‹=#1ÀèˆwÿÿH‹5#¿è÷¦ÿÿ‰Ø[û‰Ø[ÀAUATUSHƒìH‹= #H;=¹"tvH‰|$è|xÿÿH‹|$H‰Åë"f‰Ö¿) Bè”qÿÿH…Àu$CƒøvH‹=È #è›rÿÿHcÐH‹EH‰ÓöPu˃û tƒûÿtHƒÄ‰Ø[]A\A]Ã@HƒÄ1Û‰Ø[]A\A]ÃL‹%Yã"M…ät I¾,$@„íuYèÕþÿÿ…À„›‹¼"Æ@ã"H‹Q #…Àt H;^¸"„„¾'¿  cèyrÿÿH¾-ã"Ç' #A¼  cèœwÿÿL‹(ë)€‰Þ¿) Bè´pÿÿH…À…@ÿÿÿ…Û„SÿÿÿI¾,$IƒÄAöDm@¾ÝL‰%©â"uÇéÿÿÿL‹%›â"I¾,$룿èjvÿÿH‹=ã·"¸ÿÿÿÿH…ÿt·º'¾  c¿Øè„uÿÿ1ÿè=vÿÿ1ö¿  cèárÿÿH…ÀtÆ Æ@‹§·"ƒè9ØH‹=‘·"¾è7vÿÿH‹=€·"èëoÿÿé ÿÿÿfDS‰ûè˜ýÿÿ…Àt6H‹5% #H;56·"t ‰ß[éìrÿÿ@H‹áá"H=  cv HƒèH‰Îá"[Ãff.„USHƒì‹_LèBýÿÿ…À„°C«ƒø ‡žÿ$ÅÈB€¿è–m¿H‰Ãè‰m¿H‰Åè|mƒ=Q¶"dH‹=N#„•H…Û„H‹SH‹uò@ è½Íÿÿ…À…UH‹UH‹=#¾B»dè‹tÿÿH‹5#¿èú£ÿÿf.„‰æµ"HƒÄ[]ÿ1Ûèôl¿H‰Åèçlƒ=¼µ"dH‹=¹#…Æ HƒÇé_ÿÿÿ€¿è¶lò@ fïÉò,Àò*Èf.ÁŠ[…Uò ÝPf.È‚Cf.ÓP‚5ƒ=Jµ"dH‹=G#¹öAº(öA¾- BHDÑHcÈ1Àèªsÿÿé0D¿è6lH‹hè­ûÿÿ…À„ÿÿÿH‰ïè]ôÿÿéÿÿÿ„‹Ò¸"…À„‚H‹µ"H9#urH‹=;µ"½ÿÿÿÿH…ÿt¿/‹0µ"ƒè9èŽu1ÒècsÿÿH‹= µ"èwmÿÿé¢þÿÿfH‹‰#Æ H‹#Æ@H‹-t#èûÿÿ…À„wþÿÿé]ÿÿÿfH‹Y#‹[´"Æ ‹R´"Áø1Â)Â;I´"H‹6#uµÆ@ H‹)#Æ@먃=´"dH‹=#¸öAº(öA¾3 BHDиèurÿÿH‹-î#è‰úÿÿ…À…Üþÿÿ»déçýÿÿ€H‹É#èdúÿÿ…ÀtßH‰ßèóÿÿëÕfD1Òénýÿÿ¾ƒíè¼rÿÿH‹=´"éãþÿÿGÿƒø vhÿÒt`S‰ó‰ú…Û¹ ¾è BtH‹=>#1Àèßqÿÿ‰M#¸[ÃfH‹=I#1ÀèÂqÿÿH‹5;#¿è1¡ÿÿ¸[Ãf.„1ÀÃf.„AWAVAUATUSHƒì‹GL‰ÃA‰ÅƒãAƒå¨…E…í…Ò¿Bèh­ÿÿH‰Å¿èëiH‹xèR­ÿÿ…ÛI‰Æ¸…ÉfD‹… Öc‰ÃE…À„ÃHƒÀHƒø uãH‹d#H¹reached Hºmaximum H‰H‰PH¹number oHºf open fH‰HÇ@ ilesH‰PÆ@$Ç4#M…ötL‰÷è³®ÿÿH…í„jHƒÄH‰ï[]A\A]A^A_é”®ÿÿ@¿OBè–¬ÿÿH‰Å¿8 B艬ÿÿ…ÛI‰Æ¸„9ÿÿÿ¿èÿhò,X èUhE…íH‰$HÇ@ Çt‹=`#…ÿ…X¾‰ßèþÿÿ…À…HcË … ÖcH‰D$…É…ÅH‹=>±"E1ÿ€?ué‰J‹<ýHucIƒÇ€?„sH‰îMcçèlÿÿ…ÀuÜE…í…“H‰îL‰÷èønÿÿH…À„°H‹L$H‰Í ÕcfïÀB‹¥ÐBH‹L$Çû#ò*É ÖcH‹$ò@ é®þÿÿfD¿èþgH‹xèe«ÿÿE…íH‰Å…Æþÿÿéïýÿÿ@HƒÄ[]A\A]A^A_þOBL‰÷è3nÿÿH…ÀH‰y´"„H‰™°"éfÿÿÿ„H‹=Q#‰Ú¾E B1ÀèënÿÿÇU# éþÿÿ@H‹)#Hºcannot oH¹pen prin¾sH‰Hºter: alrH‰HH‰PH¹eady priHºnting grH‰HH‰P Ç@(aficf‰p,Çæ#é­ýÿÿDH‹=¹#H‰ê¾^ B1ÀèRnÿÿǼ#éƒýÿÿH‹‘#Hºlready iH¹stream aH‰PºeH‰Ç@n usf‰PÇx#é?ýÿÿèúeÿÿ‹8è¹ÿÿH‹=D#H‰ÁL‰ò¾åöA1ÀèÚmÿÿÇD#é ýÿÿH‹#H¹could noH‰H¹t open lÇ@terH‰HH¹ine prinÇ#H‰HéÅüÿÿDUS¿Hƒìèfò,X ‰ÚÁú‰Ð1Ø)Ð=ÒtG1ö‰ßè@ûÿÿ…Àu:Hcë‹­ Öc…ÒtN;Ä®"t.H‹<í Õcè gÿÿHÇí ÕcÇ­ ÖcHƒÄ[]ÃH‹=a²"è¼gÿÿÇ~®"ÿÿÿÿëÇH‹=i #‰Ú¾{ BèÝlÿÿH‹5V #HƒÄ¿[]éFœÿÿfDAUATUSHƒìƒ?x„¿” B賨ÿÿI‰Å¿è6eò@ ¿òD$è!eò,h èwdHÇ@ ÇI‰ÄI¾]„Ût"èˆmÿÿL‰êDH‹HƒÂ‹ ™ˆJÿH¾„Ûuë¿” B¹L‰îó¦—Ã’À)þۅÛt-A€}e…šA€}n…A€}d…„A€}u}»L‰ïèè©ÿÿ‰êÁú‰Ð1è)Ð=ÒtN1ö‰ïè½ùÿÿ…ÀuAHcÅö… Öc„¸H‹<Å ÕcòD,l$‰ÚIcõèiÿÿ…À…Áò ×AòAL$ HƒÄ[]A\A]ÃD¿š B¹L‰î󦻗’À8„fÿÿÿH‹=§ #L‰ê¾( B1Àè@kÿÿǪ # HƒÄL‰ï[]A\A]é$©ÿÿ@¿è¶cH‹xè§ÿÿI‰ÅéeþÿÿDH‹=Q #‰ê¾Ÿ B1ÀèëjÿÿÇU # HƒÄ[]A\A]ÃH‹=' #D‰é‰ê¾X B1Àè¾jÿÿÇ( # é'ÿÿÿDf.„‰øUSÁø1ö‰ý‰ÃHƒì‰=¬"1û)Éßènøÿÿ…Àu4ûÒt:HcÛ…íHÇþ"HÇþ"H‹Ý Õc~=H‰þý"HƒÄ[]ÀH‹¬"H‰âý"H‹ã«"H‰Ìý"HƒÄ[]ÃDH‰¹ý"HƒÄ[]ÃfS¿è•bò,X ƒ=e #~&H‹=` #¾€ B‰Ú1ÀèÒiÿÿH‹5K #¿èA™ÿÿ‰ß[éÿÿÿf„USH‰ý¿Hƒìè=bò,X 1ö‰ßè÷ÿÿ…ÀuK‹UH‰Ø÷Ø…ÒDØèza‹”ª"fïÀƒ=å#Çò*Âò@ (‰rª"HƒÄ‰ß[]é¥þÿÿDHƒÄ[]Ãf„H‹=©#‰Ù¾¨ B1ÀèiÿÿH‹5”#¿芘ÿÿë°„US¿Hƒìèaò,X ûÒt31ö‰ßèÊöÿÿ…ÀuèÑ`…ÛH‰ÅÇu"HÇ@ HƒÄ[]ÃDè«`H‰ÅÇHcÛö ÖctEH‹<Ý Õcèèeÿÿƒøÿt#HÇE H‹4Ý ÕcHƒÄ[]‰ÇéöeÿÿfDò  >òM ë•ò>òE HƒÄ[]Ãff.„US‰û‰õ¾Û1ÒHƒì1ö¿kèU¤ÿÿ‰hH‰XLHƒÄ[]ÄAUATI‰üUSHƒìÆl­"D‹oHE…ítn½€yc1Û@èóïÿÿ…À…»Æƒ€ycƃ€ycAƒ|$LsuQè°_¿€ycH‰ÃÇè­£ÿÿH‰CHƒÄ[]A\A]ÃfDè#ðÿÿƒø t ƒø …èïÿÿ…ÀuäAƒ|$Lst¯è__ÇHÇ@ H‰Ã€=Ǭ"t¬HT$1À¾8B¿€ycè¯dÿÿƒøu‘òD$òC HƒÄ[]A\A]Ã@è«ïÿÿ…ÀˆES•ÁE…ít„ÉtHƒÅƒøÿt&ú'HcÚéÿÿÿE…íuƒø t ƒø t„ÉuÔHƒùvh‰Çè9ñÿÿE…íÆƒ€yc…=ÿÿÿèÄîÿÿ…À„0ÿÿÿè7ïÿÿƒø téƒø täPƒú†ÿÿÿ‰Çèúðÿÿé ÿÿÿPƒú†ýþÿÿ‰ÇèâðÿÿézþÿÿDƒøÿ…‹þÿÿHcÚéƒþÿÿ€H‹ ¨"H9êù"tÀH‹±Ò"H…Àt€8uç‹Ñù"…ÀuÝHƒìè$îÿÿ…ÀuHƒÄÿ9öAHƒÄéÊæÿÿf.„USH‰ý1Ò1ö¿nHƒìè ¢ÿÿH‰ïH‰ÃèΡÿÿH‰CHƒÄ[]ÃSH‰ûèÇíÿÿ…ÀtH‰ß[ézæÿÿf.„[Ã@f.„S1Ò‰û1ö¿~诡ÿÿ‰XH[Ãf.„USH‰ýHƒìH¾„Ût$èzfÿÿH‰ê€H‹HƒÂ‹ ™ˆJÿH¾„Ûu뿲 B¹H‰îó¦—À’Â)оÀ…Àt?¶U¸b)Ðt@¿¸ B¹H‰îó¦t{ƒúwuB€}htd¿¾ B¹H‰îó¦uk¸HƒÄ[]À€}luº€}au´€}tàë¬@ƒúru¿€}eu¹€}d„3€}du©€}u£¸ë²€}iu–€}uHƒÄ¸[]Ã…À„¹H‰î¿Ã Bó¦¸@—Æ’Á@8΄nÿÿÿƒúg…€}ru€}eu €}„Oÿÿÿ¹H‰î¿É Bó¦¸@—Æ’Á@8΄+ÿÿÿ¹H‰î¿Ð Bó¦¸@—Æ’Á@8΄ÿÿÿƒúcu€}yu€}au €}„ìþÿÿ¹H‰î¿Õ Bó¦¸@—Æ’Á@8΄Èþÿÿƒúm¸ÿÿÿÿ…ºþÿÿ€}a…°þÿÿ€}g…¦þÿÿ1À€}•À÷؃Èé“þÿÿ€}„Ïþÿÿé¾þÿÿ€}l…æþÿÿ€}u…Üþÿÿ€}„_þÿÿéÍþÿÿ¹H‰î¿É Bó¦¸@—Æ’Á@8΄;þÿÿƒúy…ÿÿÿ€}eu€}lu €}„þÿÿ¹H‰î¿Ð Bó¦¸@—Æ’Á@8΄øýÿÿéÿÿÿ‹GH…Àu‹¨"…À…ëóÃf„‹¨"…Ò„âƒø„YATUSH‰ûèm[ÿÿ„À¿„ ƒ{H„Æè[H‹hH¾]„Ût!ècÿÿH‰ê@H‹HƒÂ‹ ™ˆJÿH¾„Ûuë¿èÉZL‹`I¾$„Ût!èGcÿÿL‰â@H‹HƒÂ‹ ™ˆJÿH¾„ÛuëL‰çè“üÿÿ…À‰ÃˆÑH‰ïèüÿÿA‰ÄA4ÜÁæ[]A\H‹=¼£"é—[ÿÿ€H‹=©£"1öé‚[ÿÿf¾ B¿é!‘ÿÿè;ZH‹hH¾]„Ût#è¹bÿÿH‰êfDH‹HƒÂ‹ ™ˆJÿH¾„ÛuëH‰ïèüÿÿ…À‰Ãˆ¸s@éwÿÿÿèëYƒ{H„‘¾é`ÿÿÿ€H‹=£"¾éïZÿÿ€H‹=‘#L‰â¾Ð B1ÀèaÿÿH‹5{#¿èqÿÿH‰ïè‰ûÿÿH‹=b#A‰ÄH‰ê¾ð B1ÀèÐ`ÿÿH‹5I#¿è?ÿÿéÜþÿÿf.„¿èFYé`ÿÿÿH‹=#H‰ê¾Ð B1Àè‹`ÿÿH‹5#¿èúÿÿéÿÿÿD1À…ÿtOƒÿ¸tEƒÿt;ƒÿ¸t6ƒÿ¸t,ƒÿ¸t"ƒÿ¸t1Àƒÿ•À÷؃ÈÃD¸óÃf„AVAUD‹-m¥"ATUSE…ít$H‹=å¡"è ^ÿÿ[]A\A]A^H‹=Ñ¡"éFÿÿH‹=wÛ"H…ÿtKºnfïɾQB¸ògò$ò* –é"ò\L$òß"ò\ÃòYÂòXËòYÊèwCÿÿHƒÄ[ÃH‹©Þ"H‹5²Þ"H‹=«é"èF@ÿÿò, $òD,D$H‹ƒÞ"H‹5,é"H‹=…é"è @ÿÿH‹=yé"è”EÿÿH‹=ÍÚ"ºyH…ÿ…Rÿÿÿë–D¾;B¿è vÿÿHƒÄ[ÃS1Ò‰û1ö¿ƒè¯‚ÿÿ‰XHÇ@L[ÃUSHƒì(D‹kÚ"E…҄‹_Hƒûÿ„N…Û‹oL…ÃD‹ `Û"E…É„D‹LÛ"E…À„}ò3Û"Ç5Û"ò Û"ò$ò Û"òL$òD$òèÚ"ò øÚ"òD$òâÚ"ò $òÅÚ"ÇÛÚ"ò »Ú"Ht$H‰çèVîÿÿHt$H|$èGîÿÿƒå„®ò, $H‹"Ý"HƒìH‹5'Ý"H‹= è"ò,D$ PòD,L$ òD,D$èfFÿÿH‹ïÜ"H‹5˜ç"ò,L$H‹=ëç"ò,D$(òD,L$ òD,D$‰$è/FÿÿH‹=Èç"èãCÿÿH‹=Ù"ºyY^H…ÿtUfïɾ`B¸ò%ÒÜ"ò$ò* 9ç"f(ÙòT$ò\L$òYÄò\\$òYÔòYÌòYÜèAÿÿH‹=»Ø"èæAÿÿHƒÄ([]À¾;B¿èùsÿÿHƒÄ([]Ãf¿è=ò@ ¿òD$èñ<òH ƒûòL$… ‹=kÙ"…ÿ…_òD$ÇSÙ"ò ?Ù"Ç=Ù"ò Ù"òÙ"òÙ"éZÿÿÿÇÙ"Ç Ù"HƒÄ([]ÃDò, $H‹|Û"HƒìH‹5yÛ"H‹=ræ"ò,D$ PòD,L$ òD,D$è¸DÿÿH‹IÛ"H‹5êå"ò,L$H‹==æ"ò,D$(òD,L$ òD,D$‰$èDÿÿH‹=æ"è5BÿÿH‹=n×"XZH…ÿ„¨þÿÿºnéIþÿÿf„¿èÆ;ò@ ¿òD$è±;ò@ ‹6Ø"òL$ò$òD$…Àò Ø"òØ"…:ýÿÿéýÿÿ„òè×"‹ò×"òD$òÜ×"ò$òD$ë²€USHƒì‹¬Ö"…À„\‹H‰û-ƒàý…¹¿è;ò,@ ¿‰D$ èü:ò,@ ¿‰D$èé:ò,x ÿÿ‰|$‹L$D‹D$ ‡ËAøÿ‡¾ùÿ‡²D‰Â‰Îè8êÿÿHcè‹H‰-ÔÙ"H‰ê-ƒø†H‹5”Ù"H‹=ä"èx@ÿÿH‹5Ù"H‹=Šä"H‰êè¢BÿÿëX¿èV:H‹hLD$ HL$HT$1À¾uBH‰ïè?ÿÿƒøtH‹=á"¾¨BH‰ê1ÀèyAÿÿH‹5òà"¿èèpÿÿHƒÄ[]ÉúH‹=×à"¾`B1ÀèKAÿÿH‹5Äà"¿èºpÿÿHƒÄ[]þ;B¿è¡pÿÿHƒÄ[]Ãf.„‹|$ÿÿ‡qÿÿÿ‹L$ùÿ‡aÿÿÿD‹D$ Aøÿ†ÌþÿÿéJÿÿÿf„H‹5Ø"H‹=‚ã"è]?ÿÿH‹=vã"H‹5gØ"H‰êè‡AÿÿH‹=ÀÔ"H…ÿ„/ÿÿÿfïÀ¾~B¸ò*D$ò^Ûèæ<ÿÿfïÀH‹=‹Ô"¾B¸ò*D$ò^³è¾<ÿÿfïÀH‹=cÔ"¾œB¸ò*D$ ò^‹è–<ÿÿH‹ ?Ô"º ¾¿«Bè+@ÿÿH‹=$Ô"èO=ÿÿé’þÿÿf.„USHƒì(‹GL¿‰Åƒà‰Ãƒåès8òX ¿ò\$è^8ò@ ¿òD$èI8Ht$ò@ H|$òD$èOèÿÿ‹¡Ó"…À„…Û„I…í…!òl$H‹×"HƒìòL$ H‹5×"f(ÅH‹=â"ò\ÍòXÅòD,ÁòH,èòD$hZjò\Åò,ÈUA‰éèÈ8ÿÿHƒÄòl$òL$ H‹±Ö"òD$H‹5Tá"ò\ÍH‹=©á"hZò\ÅjUA‰éòD,Áò,Èè|8ÿÿHƒÄ H‹=á"èœ=ÿÿH‹ ÕÒ"H…É„Kº¾¿²Bè¸>ÿÿ¹nfïÀƒûH‹=¥Ò"ò uÖ"ÒòT$ƒâõò*Öà"ò\D$ƒÂyòYѾµB¸òYÁòYL$è´:ÿÿH‹=]Ò"èˆ;ÿÿHƒÄ([]Ã…í„Àòt$H‹ÓÕ"HƒìòL$ H‹5ÊÕ"f(ÆH‹=¿à"ò\ÎòXÆòD,ÁòH,èòD$hZjò\Æò,ÈUA‰éèÿ=ÿÿHƒÄòt$òL$ H‹pÕ"òD$H‹5 à"ò\ÎH‹=`à"hZò\ÆjUA‰éòD,Áò,Èè³=ÿÿHƒÄ éÓf.„¾;B¿èálÿÿHƒÄ([]Ãf.„òd$H‹óÔ"òL$H‹5öÔ"f(ÄHƒìò\ÌH‹=ãß"òXÄòD,ÁòH,èòD$hZjò\Äò,ÈUA‰éè'=ÿÿHƒÄòd$òL$ H‹Ô"òD$H‹53ß"ò\ÌH‹=ˆß"hZò\ÄjUA‰éòD,Áò,ÈèÛ<ÿÿHƒÄ H‹=`ß"è{;ÿÿH‹ ´Ð"H…É„*ÿÿÿº¾¿²Bè—<ÿÿ¹yéÚýÿÿDò|$H‹Ô"òL$H‹5Ô"f(ÇHƒìò\ÏH‹=ûÞ"òXÇòD,ÁòH,èòD$hZjò\Çò,ÈUA‰éè¿5ÿÿHƒÄò|$òL$ H‹°Ó"òD$H‹5KÞ"ò\ÏH‹= Þ"hZò\ÇjUA‰éòD,Áò,Èès5ÿÿHƒÄ éòüÿÿf.„USHƒìH‹GL¿‰Åƒà‰Ãƒåè34ò@ ¿òD$(è4ò@ ¿òD$ è 4ò@ ¿òD$èô3ò@ ¿òD$èß3ò@ ¿òD$èÊ3Ht$ò@ H‰çò$èÓãÿÿHt$H|$èÄãÿÿH|$ Ht$(èµãÿÿòH,D$(òH,T$‹=ùÎ"f‰D$:òH,D$ f‰T$2f‰D$8òH,D$f‰T$>f‰D$6òH,D$…ÿf‰D$4òH,$f‰D$0f‰D$<„ž…Û„…í…¦H‹/Ò"H‹58Ò"HL$0H‹=,Ý"E1ÉA¸è®8ÿÿH‹Ò"H‹5°Ü"HL$0H‹=Ý"E1ÉA¸è†8ÿÿH‹=ïÜ"è 9ÿÿH‹ CÎ"H…É„1º¾¿²Bè&:ÿÿ¹nfïɃûH‹=Î"ò5ãÑ"Òò$ƒâõò* EÜ"f(éƒÂyf(ÙòYÆò\l$(òd$ ò\\$òT$ò\L$òYæ¾BòYÖ¸òYîòYÞòYÎèù5ÿÿH‹=¢Í"èÍ6ÿÿHƒÄH[]ÃfD…í„(HƒìH‹Ñ"H‹5Ñ"jH‹= Ü"A¹A¸HL$@è·2ÿÿH‹èÐ"H‹5‰Û"HL$@H‹=ÝÛ"A¹A¸Ç$è…2ÿÿXZéƒfD¾;B¿èihÿÿHƒÄH[]ÃfHƒìH‹…Ð"H‹5ŽÐ"jH‹=…Û"A¹A¸HL$@è/2ÿÿH‹5Û"H‹QÐ"HL$@H‹=UÛ"A¹A¸Ç$èý1ÿÿY^H‹=4Û"èO7ÿÿH‹ ˆÌ"H…É„vÿÿÿº¾¿²Bèk8ÿÿ¹yé@þÿÿH‹ñÏ"H‹5òÏ"HL$0H‹=æÚ"E1ÉA¸èh6ÿÿH‹ÉÏ"H‹5jÚ"HL$0H‹=¾Ú"E1ÉA¸è@6ÿÿéµýÿÿf.„AUATUSHƒìH¾/@„ít}L¾gE„äts@¾ÅH‰û€úw èÙ8ÿÿH‹‹¨A¾ìA‰Åˆ…€=vM@ˆkA¾õ¿ÌBèë1ÿÿH…Àt&@¾õ¿ÐBèØ1ÿÿH…À•ÀHƒÄ[¶À]A\A]Ã@HƒÄ1À[]A\A]Ãèk8ÿÿH‹B‹, ë¥fAUATUS1íHƒìH‹=ˆ„ç-‡ƒø†E1í1ÛH…í„»H‰ïèÿÿÿ…À¸HEÅHDÝI‰ÄH‰ïèùþÿÿ…À…¡M…íL‰å„yM…ä„LH…ÛtH‰ßè¿rÿÿH‰Çè‡áÿÿ…Àtb¿è9/¿H‹Xè+/ò@ ¿òD$(è/Ht$(ò@ H|$ òD$ èßÿÿD‹mÊ"E…Òu8¾;B¿èÁeÿÿHƒÄH[]A\A]ÃfDM…í„kÿÿÿL‰ëéhÿÿÿ€H‰ßè00ÿÿHƒìH‹=õÍ"‰ÂLd$8H‰ÞI‰ÅATLL$,LD$(HL$$èr2ÿÿ¶EfïÀAXAYÿÿ…ÀŽö‰Ç¾OBèªÿÿH‰ÇH‰µ"H…ÿÇc¹"uoè\ÿÿ‹8èelÿÿH‹V¹"H‹=ÇÀ"H‰Á¾ˆB1Àè8!ÿÿH‹5±À"¿è§PÿÿH‹=@µ"ë,fDH‰Ç¾OBèK ÿÿH‰ÇH‰!µ"Ç÷¸"H…ÿt‘¾B1ÀèVÿÿH‹'c"H‹=ø´"¾B1Àè<ÿÿfïÉH‹=á´"fïÀ¾(Bò¨¸"1Àò* Ã"ò*nÃ"òYÊòYÂò,Éò,ÐèùÿÿH‹=¢´"¾DB1ÀèæÿÿH‹=´"¾bB1ÀèÓÿÿH‹=|´"¾xB1ÀèÀÿÿH‹=i´"¾ŒB1Àè­ÿÿH‹ V´"º¾¿BèB ÿÿH‹ ;´"º¾¿¤Bè' ÿÿH‹ ´"º¾¿µBè ÿÿH‹ ´"º¾¿ÆBèñÿÿH‹ ê³"º¾¿×BèÖÿÿH‹ ϳ"º¾¿èBè»ÿÿH‹ ´³"º ¾¿ùBè ÿÿH‹ ™³"º ¾¿Bè…ÿÿH‹ ~³"º ¾¿BèjÿÿH‹ c³"º ¾¿#BèOÿÿH‹ H³"º¾¿.Bè4ÿÿH‹ -³"º¾¿?BèÿÿH‹ ³"º¾¿RBèþÿÿH‹ ÷²"º¾¿cBèãÿÿH‹ ܲ"º¾¿uBèÈÿÿH‹ Á²"ºU¾¿¸Bè­ÿÿò}¶"H‹=ž²"¾B¸f(Ðf(ÈfWÔôèÏÿÿH‹ x²"º%¾¿XBèdÿÿH‹ ]²"º)¾¿€BèIÿÿH‹ B²"º¾¿†Bè.ÿÿH‹ '²"º¾¿¢BèÿÿH‹ ²"º¾¿½BèøÿÿH‹ ñ±"º¾¿ØBèÝÿÿH‹ Ö±"º¾¿óBèÂÿÿH‹ »±"º2¾¿°Bè§ÿÿH‹  ±"º9¾¿èBèŒÿÿH‹ …±"º¾¿(BèqÿÿH‹ j±"º*¾¿HBèVÿÿH‹ O±"º¾¿Bè;ÿÿH‹ 4±"º¾¿*Bè ÿÿH‹ ±"º¾¿EBèÿÿH‹ þ°"º¾¿xBèêÿÿH‹ ã°"º6¾¿˜BèÏÿÿH‹ Ȱ"º¾¿`Bè´ÿÿH‹ ­°"º¾¿|Bè™ÿÿH‹ ’°"º'¾¿ÐBè~ÿÿH‹ w°"º!¾¿øBècÿÿH‹ \°"º!¾¿ BèHÿÿH‹ A°"º¾¿’Bè-ÿÿH‹ &°"º#¾¿HBèÿÿH‹ °"º ¾¿¥Bè÷ÿÿH‹ ð¯"º)¾¿pBèÜÿÿH‹ Õ¯"º¾¿±BèÁÿÿH‹ º¯"º¾¿ÍBè¦ÿÿH‹ Ÿ¯"º¾¿éBè‹ÿÿH‹ „¯"º¾¿ BèpÿÿH‹ i¯"º¾¿! BèUÿÿH‹ N¯"º¾¿= Bè:ÿÿH‹ 3¯"º!¾¿ BèÿÿH‹ ¯"º¾¿ÈBèÿÿH‹ ý®"º¾¿èBèéÿÿH‹ â®"º¾¿BèÎÿÿH‹ Ç®"º¾¿(Bè³ÿÿH‹ ¬®"º9¾¿HBè˜ÿÿH‹ ‘®"º¾¿(Bè}ÿÿH‹ v®"º*¾¿ˆBèbÿÿH‹ [®"º¾¿T BèGÿÿH‹ @®"º¾¿p Bè,ÿÿH‹ %®"º¾¿Œ BèÿÿH‹ ®"º¾¿¨ BèöÿÿH‹ ï­"º¾¿Ä BèÛÿÿH‹ Ô­"º¾¿à BèÀÿÿH‹ ¹­"º¾¿ü Bè¥ÿÿH‹ ž­"º¾¿!BèŠÿÿH‹ ƒ­"º!¾¿¸BèoÿÿH‹ h­"º¾¿àBèTÿÿH‹ M­"º¾¿Bè9ÿÿH‹ 2­"º9¾¿ BèÿÿH‹ ­"º¾¿(BèÿÿH‹ ü¬"º¾¿/!BèèÿÿH‹=á¬"ò±°"¾@!B¸èÿÿ[H‹=¬"Ç0Z"éãÿÿHÇ¥¬"1ÿé÷ÿÿfD¿èH‹xèuTÿÿǃ¬"H‰\°"é—öÿÿDf.„USH‰ûº HƒìH‹5ë¯"H‹=äº"èÿÿ€H‹5ѯ"H‹=ʺ"¹@Ècº èûÿÿ…À„E1À¹0ÈcºdH‰Þ¿@Ècèyÿÿƒ=¬"„üH‹5…¯"H‹=~º"1Òè§ÿÿ‹ñ«"ƒø„Ѓø„oE1Àºd¹0ÈcH‰Þ¿@Ècè%ÿÿHcЃøÆ„¶5¬"H‹='º"HL$ºèˆÿÿH‹H‰ÇH‰{«"èÖÿÿH‹o«"H‚øÿÿH=÷‡èH¾‚Ø-A…ÀŽØH‹4Å×cH‰ßè\ÿÿ¾}!B¹H‰ßó¦uA¸Èc¹ ÈcºÈc¾ÈcH‰ßèÞnÿÿHƒÄ[]À¶5]«"H‹=‚¹"HL$ºèãÿÿH‰ÅH‹H‰ïH‰Óª"è.ÿÿƒ=ת"…ÅþÿÿH‹ºª"HÿÿHƒúvH-éÿHƒø‡¡þÿÿH‰ïèõÿÿéHþÿÿè›ÿÿH¾H‹öDP@„Ôþÿÿéfÿÿÿ¾w!BH‰ß1Àè5ÿÿé$ÿÿÿ‹ªª"Ht$ H|$‰D$‹šª"‰D$ èÀÿÿ‹ —ª"D‹L$ H‰ßD‹D$‹ˆª"¾d!B1ÀƒáèåÿÿHƒÄ[]ÃfD‹Rª"Ht$ H|$‰D$‹Bª"‰D$ èEÀÿÿ‹ ?ª"D‹L$ ¾Q!BD‹D$‹.ª"H‰ß1Àƒáèÿÿéªþÿÿ„USH‰ýHƒìH‹=`W"èûÿÿ‰ÃƒÀ=iwÿ$ň!B„è‹ÿÿH‹HcÓöDQ@„‚ˆ]ÆEHƒÄ[]Ã@H‹5Q¸"H…ötèHƒÄH‰ï[]é] ÿÿDH‹51¹"ë߀H‹5¹"ëÏ€H‹5¸"ë¿€H‹5é·"므H‹5É·"럀H‹5Á·"ë€H‹5á·"é|ÿÿÿ@H‹5¸"élÿÿÿ@H‹5é·"é\ÿÿÿ@H‹5a¸"éLÿÿÿ@H‹5Á·"é<ÿÿÿ@H‹5Ñ·"é,ÿÿÿ@H‹5¹·"éÿÿÿ@H‹5‰·"é ÿÿÿ@H‹5q·"éüþÿÿ@H‹5)¸"éìþÿÿ@H‹5é·"éÜþÿÿ@H‹5Ñ·"éÌþÿÿ@H‹5é·"é¼þÿÿ@H‹5Ñ·"é¬þÿÿ@H‹5¹·"éœþÿÿ@H‹5‰·"éŒþÿÿ@H‹5q·"é|þÿÿ@H‹5Y·"élþÿÿ@H‹5A·"é\þÿÿ@H‹5)·"éLþÿÿ@H‹5·"é<þÿÿ@H‹5ù¶"é,þÿÿ@H‹5á¶"éþÿÿ@H‹5ɶ"é þÿÿ@H‹5±¶"éüýÿÿ@H‹5™¶"éìýÿÿ@H‹5·"éÜýÿÿ@H‹5·"éÌýÿÿ@H‹5¶"é¼ýÿÿ@H‹5¶"é¬ýÿÿ@H‹5éµ"éœýÿÿ@ûþv ÆEétýÿÿƒû „–ýÿÿ~,ƒût9ƒûH‹5µµ"„gýÿÿHƒÄ‰ÚH‰ï[]¾w!B1Àépÿÿƒû H‹5¦¶"„@ýÿÿë×H‹5¶"é2ýÿÿfATUA‰üSH‰õ¿8èÜMÿÿH‰ïH‰ÃD‰ HÇ@è6NÿÿHÇC H‰CH‰ØHÇC(HÇC0HÇC[]A\Ãf.„ƒÿH‰ð‡Œ‰ÿÿ$ý 0BHºstring f¹hH‰H¾or switcf‰HH‰pÃHºor switcH¹number fH‰VºhH‰f‰VútoÇa goÆFf‰VÃ@H¹a stringÆFH‰ÃfDHºa refereH¹nce to aA»yH‰Hº string H‰NH‰VÇFarrafD‰^Ã@H¹a numberÆFH‰ÃfDHºa refereH¹nce to aAºayH‰Hº numericH‰NH‰VÇF arrfD‰VÆFÃH¹a labelH‰ÃfHºa returnH¹ addressA¹ubH‰Hº for gosH‰NH‰VfD‰NÆFÀH¹a returnHº addressA¸eH‰H‰VH¹ for a sHºubroutinH‰NfD‰F H‰VÃDH¹nothingH‰Ãf.„Hºthe root¿kH‰H¾ of the Ç@stacH‰pf‰xÃ@H¹anythingÆFH‰ÃfDHºa stringH‰H¾ or a nuÇ@mberH‰pÆ@ÃH¹referencHºe to a sH‰H‰VH¾tring orH‰pH¹ an arra¾yH‰Hf‰p À‰ú¾3õAH‰Ç1ÀéGÿÿ€HƒìH‹NH‹WH‹=­®"¾ô-B1Àè!ÿÿH‹5š®"¿HƒÄéŒ>ÿÿff.„Hƒì¿è’JÿÿH‹£§"H…Òt&H‰BH‰PHÇ@HÇH‰€§"HƒÄÃH‰y§"ëÕ€H‹a§"AVAUATUS1íH‹H…ÛuOéšfH‹S¾.BH‹=®"1ÀèyÿÿH‹5ò­"¿èè=ÿÿH‹{ƒÅè\LÿÿL‹cH‰ßèPLÿÿM…äL‰ãtPHƒ{u±‹…Àuƒ=°­"ŽH‹{ è%Lÿÿ뻃ø„§ƒøuªƒ=‡­"~¡H‹S¾e.Bétÿÿÿƒ=m­"~&H‹=h­"¾è0B‰ê1ÀèÚ ÿÿH‹5S­"¿èI=ÿÿH‹=z¦"H‹_è¹KÿÿHÇCH‰b¦"[]A\A]A^ÃH‹SH‹=­"¾,.Bè‹ ÿÿH‹5­"¿èú<ÿÿéGÿÿÿDƒ=å¬"OL‹k A‹U(…Ò~/ƒêL‰èIL•º¯HƒÀH9ÈuôA€}8stUI‹}0è,KÿÿL‰ïè$Kÿÿé·þÿÿ€H‹SH‹=¬"¾H.B1Àè ÿÿH‹5z¬"¿èp<ÿÿL‹k A‹U(…Ò‰ë¶f…Ò~§BÿE1äL4ÅfDI‹E0J‹< IƒÄè·JÿÿM9æuêéxÿÿÿf.„HƒìH‹G81ÒH…ÀtHÇ@ H‹@8ƒÂH…ÀuìH‹=õ«"¾1B1Àèi ÿÿH‹5â«"¿HƒÄéÔ;ÿÿ@AWAVAUATUSHƒìH…ÿ„nƒúL‹%ç¤"„H‹â¤"‰T$ A‰öH‰ýE1íÇD$H‰$I‹$ƒD$M‰çH…Ûuë^fDL{H‹[H…ÛtKAƒÅD;3uêH‹sH‰ïèÿÿ…ÀuÚL‹cM…䄳ƒ=2«"L{AHƒÄL‰à[]A\A]A^A_ÃfD‹D$ ƒø„Àƒø„¿L;$$„ïL‹$$éfÿÿÿAƒþ¸¦8B¹(öAHDÈHƒìM‹D$‹D$H‹=ɪ"H‰êE‰é¾81BP1Àè6 ÿÿXZH‹5­ª"¿è£:ÿÿM‹'ékÿÿÿI‹D$H…ÀLEàéáþÿÿƒ=ª"ŽÞD‹L$H‹=qª"Aƒþ¸¦8B¹(öAE‰èHDÈH‰ê¾ˆ1B1ÀèÍ ÿÿë—E1äéÿÿÿH‰îD‰÷èhøÿÿƒ=-ª"I‰ÄI‰ŽõþÿÿAƒþ¸¦8B¹(öAHDÈH‰ê¾‚.BëFE1äƒ|$ …ËþÿÿH‰îD‰÷è øÿÿƒ=å©"I‰ÄI‰Ž­þÿÿAƒþ¸¦8B¹(öAHDÈH‰ê¾œ.BH‹=¼©"1Àè5 ÿÿH‹5®©"¿è¤9ÿÿéoþÿÿM‹'égþÿÿ€ƒ=…©"H‰wóÃé»úÿÿf.„AWAV¾·.BAUAT¿USI¾ UNKNOWNI½ ARRAY:Hƒìè?9ÿÿH‹p¢"H…Û„=€H‹!©"I‰ßH½ NUMBER:ÆH‹H…ÀuUéô@ƒø„·ƒø…ŽL‹%ç¨"L‰çèÿÿM‰,I‹H‹=Ѩ"H‹pè( ÿÿI‹LxH‹@H…À„¤‹ƒøt-«…ÀuGL‹% ¨"L‰çè8ÿÿIH¸ STRING:H‰ÆBë¦L‹%y¨"L‰çèÿÿIH‰*ÆBë‰@H‹Y¨"º:L‰0f‰Pémÿÿÿ„L‹%9¨"L‰çèÑÿÿ¹E:LàÇ FREf‰HÆ@é;ÿÿÿfDH‹5 ¨"¿èÿ7ÿÿH‹[H…Û…ÊþÿÿHƒÄ¾Ì.B¿[]A\A]A^A_éÕ7ÿÿDH‹ ¡¬"H‹AH…Àt0H‹PH…Òt'H‹rH‰pH‹pH‰rH‰PH‰BH‰QH‹PH‰BÃf¾á.B¿é7ÿÿHƒìH‹M¬"H‹PH…ÒtLH‹xH…ÿt‹HÿƒùvƒèƒøvH‹BH‰¬"HƒÄÃè»EÿÿH‹ ¬"HÇ@H‹PëÕfD¿(è6CÿÿH‰ÂHÇ@HÇ@ ÇH‹Ϋ"HÇBH‰BH‰Pë—@AUATUS‰ûHƒìH‹¥«"H;–«"„@H‹hD‹eH‰-‰«"A9Üt&ƒû t!ƒû t2ƒû „Ƀû… Aƒü …–HƒÄH‰è[]A\A]ÄAD$óƒøvàD‰àƒàýƒøtÕƒûA”ž€Ìc‰ßèØôÿÿ¾@ÌcD‰çèËôÿÿH‹=4¦"1À¹@Ìcº€Ìc¾ /Bèžÿÿ‰Øƒà÷ƒøt\ƒûtWH‹5¦"1ÿè6ÿÿH‹-Òª"éoÿÿÿDƒûA”ÅAƒüuE„í…Tÿÿÿë„„AD$þƒàý…gÿÿÿé7ÿÿÿDè3þÿÿE„íH‰ÅuKÇ¿(öAè+BÿÿH‰EH‹5¥"¿è†5ÿÿéûþÿÿ¾ü.B1ÿèt5ÿÿH‹Eª"é¨þÿÿ„ÇHÇ@ ë¹USH‰ýHƒìèÂýÿÿH‰ïH‰ÃèÇAÿÿÇH‰CHƒÄ[]ÃfDS¿è5Aÿÿ‹¯"H‰Ã¾*/BH‰Ç1Àè}ÿÿH‰ßƒ“"è¾èiýÿÿÇH‰X[Ãf.„Hƒì¿èâýÿÿH‹x¾HƒÄé€#S¿èÅ@ÿÿ‹?"H‰ÃH‰Ç¾*/B1Àè ÿÿH‰ß¾ƒ"èI#èôüÿÿÇH‰X[ÄHƒì1ÿèuýÿÿH‹xHƒÄé„S¿èU@ÿÿ‹Ïœ"H‰ÃH‰Ç¾*/B1Àèÿÿƒ¶œ"è‘üÿÿÇH‰X[ÃDH‹Ѩ"H‹@H‹xé¼ff.„S1Ò1ö¿?HƒìòD$è‡@ÿÿ¿H‰ÃèÚ?ÿÿòD$H‰CòHƒÄ[ÃfDSH‰ûèüÿÿH‹SòÇò@ [ÃfUSH‰ûHƒìèòûÿÿHƒ{0H‰ÅtXH‹C H…Àtgƒ=T£"~,H‹S0H‹=K£"¾C/B1Àè¿ÿÿH‹58£"¿è.3ÿÿH‹C òÇEòE HƒÄ[]þ0/B¿è3ÿÿë—€H‹{0º¾è÷ÿÿHƒÀ0H‰C ë±f.„SH‰û¿HƒìèÞûÿÿò@ H‹C H…ÀtPƒ=¥¢"~8H‹S0H‹=œ¢"¾W/B1ÀòD$è ÿÿH‹5ƒ¢"¿èy2ÿÿH‹C òD$òHƒÄ[ÃDH‹{0º¾òD$èwöÿÿHƒÀ0òD$H‰C ëÈ€S1Ò‰óH‰þ¿CèÞ>ÿÿ‰XH[Ãf„ATU¾@SL‹g0H‰ûL‰çèèüþÿH…À„¯Æ‹sHºH‹{0H‰ÅèöÿÿH…Àt;H‹{0èšCÿÿH‹=á"H‰Â¾È1B1Àè4ÿÿ[]A\H‹5©¡"¿éŸ1ÿÿ€ÆE@‹sHºH‹{0è³õÿÿÆE‹sHºH‹{0I‰Äè›õÿÿÆE@ƒ=\¡"L‰` []A\ÃD[L‰æH‰Ç]A\éòÿÿ‹sHºL‰çè`õÿÿH…À…Tÿÿÿ‹sHH‹{0ºèFõÿÿ‹sHH‹{0ºI‰Äè2õÿÿë™S1Ò‰óH‰þ¿è®=ÿÿH‹œ"‰XHH‰P[Ã@f.„ATUºSH‰û‹wHH‹0èèôÿÿH…Àt;H‹{0èzBÿÿH‹=£ "H‰Â¾2B1Àèÿÿ[]A\H‹5‰ "¿é0ÿÿ€‹{HèùÿÿH‹xº¾èôÿÿH‹{0º¾H‰ÅèwôÿÿH…ÀI‰ÄtH…ít*Hƒ} t#ƒ=( "H‰h[]A\Ã[H‰îH‰Ç]A\éQñÿÿ¾k/B¿½sèü/ÿÿƒ{H¸d¿@Dèè<ÿÿHH(@ˆh8Ç@(HÇ@0H‰Â@ÇHƒÂH9Êuñƒ=®Ÿ"I‰D$ ~…H‹S0H‹= Ÿ"¾82B1Àèÿÿ[]A\H‹5‰Ÿ"¿é/ÿÿDf.„S1Ò‰óH‰þ¿è<ÿÿ‰XH[Ãf„USH‰ýHƒìèÂ÷ÿÿH‰Ã‹EHH‹}0‰èÁ;ÿÿH‰CHƒÄ[]ÃfDS1Ò‰û1ö¿@èÏ;ÿÿ‰XH[Ãf.„H‹Ñ£"‹wHH‹@‹9ð„ÖSHƒìƒø„šƒø¹4Bt%ƒø¹#4Btƒø¹€/Btƒø¹/B¸›/BHEȃþº4Bt/ƒþº#4Bt%ƒþº€/Btƒþº/Btƒþ¸›/Bº­/BHEÐH‹=kž"¾h2B1ÀèßþþÿH‹5Xž"HƒÄ¿[éI.ÿÿf„H‰|$è¶öÿÿH‹|$H‰Ã‹GHƒøt&ƒøt‰HÇCHƒÄ[óÃÇHÇC ëéÇ¿(öAè€:ÿÿH‰CëÓf.„@€ÿ-tz @€ÿ*tb@€ÿ+u<1Ò1ö¿6é~:ÿÿfD@€ÿ/t*@€ÿ^u1Ò1ö¿:é^:ÿÿfDóÃfDóÃfD1Ò1ö¿9é::ÿÿf.„1Ò1ö¿8é":ÿÿf1Ò1ö¿7é:ÿÿfUSH‰ý¿Hƒì(è]öÿÿòH ¿òL$èHöÿÿò@ òD$è˜õÿÿH‰Ã‹Eƒè6ƒøwEòD$òL$ÿ$Ř0B€fïÒf.Âz u f.у¢f.Ї€è«øþÿòD$òd$Çòc HƒÄ([]ÃDf(Ñò,ýfT”Óf.Úwnò^ÁòD$ë½fòXÈòL$ë¯@ò\ÁòD$ëŸ@òYÈòL$ë@ò,ÁfïÒò*Ðf.Êz„hÿÿÿHƒÄ(¾Ñ/B¿[]é#,ÿÿH‹=œ"ò™ü¾µ/B¸è‚üþÿH‹5û›"¿èñ+ÿÿò-qüòl$éÿÿÿ@f.„H‹¡ "H‹@ò@ fW¨Òò@ ÃfUSH‰ýHƒìè"ôÿÿH‰ÃH‹E H…Àt>H‹H…ÀH‰CtÇHƒÄ[]ÃD¿(öAèþ7ÿÿÇH‰CHƒÄ[]ÃDH‹}0º1öèxïÿÿHƒÀ H‰E ë¨@f.„USH‰ýHƒìè¢óÿÿH‰ÃH‹E H…ÀtH‹8èž7ÿÿÇH‰CHƒÄ[]ÃDH‹}0º1öèïÿÿHƒÀ H‰E ëÈ@f.„H‹G0H…ÀtAUSH‰ûHƒìH‹o H…ít5H‹}H…ÿt è'9ÿÿH‹k ¿è¹óÿÿH‹xè 7ÿÿH‰EHƒÄ[]óÃ@º1öH‰Çè¡îÿÿHh H‰k ë²€USH‰úH‰û1ö¿eHƒìè7ÿÿH‰ßH‰ÅèÍ6ÿÿH‰EHƒÄ[]ÃfUSH‰ýHƒìè¢òÿÿH‹}H‰Ãè¦6ÿÿÇH‰CHƒÄ[]ÃDHƒìH‹Íž"H‹@ò@ òD$èaòÿÿòD$Çò@ HƒÄÃf.„S‰óH‰úH‰þ¾Û¿èj6ÿÿ‰XLÇ@Hÿÿÿÿ[Ã@f.„AWAVAUATI‰ýUSH숋oL…€=‡˜èûþÿH‹HcÕD‹‘A‹UH…Òˆ1ÒD9Å•ƒÂI‹}0¾èdíÿÿI‹}0¾H‰D$è±H…À„¸I‹}0èß:ÿÿH‹=™"H‰Â¾Ð2B1ÀèyùþÿH‹5ò˜"HĈ¿[]A\A]A^A_é×(ÿÿ€‹GHA‰èº…À‰{ÿÿÿH‹Ž"H‹@H…Àt:‹ƒú„¾1É¿ÿÿÿÿë@‹ƒú„ H‹@ƒúE÷ƒÁH…ÀuãAÇEHÿÿÿÿ¾ 2BéoÿÿÿE‹uH¾í/BAƒþ [ÿÿÿH‹D$L‹` M…ä„–E‹|$(E9þt:I‹}0èø9ÿÿH‹=!˜"D‰ùH‰ÂE‰ð¾3B1ÀèŒøþÿH‹5˜"¿èû'ÿÿE‹}HHD$PHP(fDÇHƒÀH9ÐuñE…ÿŽ@E1ÿE1ö1íëfDB‰TÿÿÿAƒìé5ÿÿÿH‹I|"ƒ8 t@H‹@ƒ8 u÷H‰0|"óÃ@f.„Hƒì¿èRÓÿÿò@ ¿ò$è>Óÿÿò` ¿òd$è)Óÿÿò$òH H‹Ð~"fïÛf.ÈH‹@òP r%f.Âròl$f.ërò=“°òx HƒÄÃf.Ðrf.Árf.\$sÙòX HƒÄÃfH‹q~"H‹@H‹Pò@ òXB ò@ ÃHƒìè÷ÑÿÿH‹H~"H‹RH‹RH‹JH‹IòA ò\B Çò@ HƒÄÃfDUSHƒìH‹=ûs"H…ÿt^H‹÷s"HPÿH;ôs"v HƒÄ[]ÃHXH,ÝH‰îèŒ×þÿH…ÀH‰ºs"tSHT(À¹1ÀH‰­s"H‰×óH«HƒÄ[]þ¿èQÕþÿH…ÀH‰s"tHÇzs"HÇws"냿°9Bè0ÛþÿSH‰ûèGÿÿÿH‹Hs"H…ÀtsH‹Ls"HÐH‹H9ÚtZH…Òt"¶s"H‹ s"ˆH‹H‰JH‹ ýr"H‰J H‰H‹C H‹H‰èr"H‹CH‰q"H‰Îr"H‰·~"¶ˆÎr"[Ã@H…ÛtõH‹Ôr"HÁàëµfDH…ÿt[H‹¬r"SH…ÀtH‹¯r"HÐH;8t.‹G(H‰û…Àu H‰ß[éëÏþÿH‹èßÏþÿH‰ß[éÖÏþÿfDHÇëÉ€óÃ@f.„H…ÿtFH‹GHÇG ÆH‹GÆ@H‹%r"H‹WÇG0ÇG@H…ÀH‰Wt H‹ r"H;<ÈtóÃH‹G H‰Å}"H‰Îq"H‰Ïq"H‹H‰…p"¶ˆÄq"ÃAUATUSH‰ûH‰õHƒìèkÏþÿH‰ßI‰ÄD‹(è]ÿÿÿH‹žq"H‰+ÇC<H…Àt H‹˜q"H;ÐtÇC4ÇC81ÀH…ítH‰ïè Ôþÿ‰ÇèöÏþÿ…ÀŸÀ¶À‰C,E‰,$HƒÄ[]A\A]Ãff.„ATUI‰üS¿H‰õèÔþÿH…Àt6HcõH‰ÃH~H‰pèÔþÿH…ÀH‰CtÇC(L‰æH‰ßè*ÿÿÿH‰Ø[]A\ÿè9BèµØþÿ„H‹Ñp"ATUH‰ýSH…Àt]H‹Îp"HÐH‹;H…ÿtJH‰îèâþÿÿH‹[]H‹B A\H‰ˆp"H‹BH‹H‰rp"H‰[|"H‰,o"¶ˆkp"Ãf.„è[üÿÿL‹%\p"H‹ep"¾@H‹=ùn"IÄèÿÿÿM…äH‰ÇH‰¸HDøéwÿÿÿH…ÿ„¡SH‰ûèüÿÿH‹ p"H‹p"HÁàH…ÉtMH‹p"H4ÕH1Hƒ8t4D¶Öo"H‹=¿o"HƒÂH‰Üo"DˆH‹H‰xH‹=«o"H‰x HD1H‰H‹C H‹H‰‘o"H‹CH‰Fn"[H‰vo"H‰_{"¶ˆvo"óÃ@ATUH‹-no"SH…ítlH‹qo"LdÝI‹<$H…ÿtWè–üÿÿH…ÛIÇ$tEHƒëH‹DÝH‰Ao"H…Àt0H‹P H‰o"H‹PH‹H‰ëz"H‰ôn"H‰µm"¶ˆôn"[]A\ÃDf.„Hƒþ††ATULfþS€|7þug€|7ÿu`H‰ý¿Hè³ÑþÿH…ÀH‰Ãt^L‰`H‰hH‰ÇH‰hL‰` Ç@(HÇÇ@,Ç@0Ç@<Ç@@èûÿÿH‰Ø[]A\Ã[1À]A\Ãf„1Àÿ:Bè ÖþÿATLfUSH‰ýH‰óL‰çè*ÑþÿH…ÀtC1ÒH…ÛtfD¶Lˆ HƒÂH9ÓuïÆDÆL‰æH‰ÇèÿÿÿH…ÀtÇ@([]A\ÿH:BèµÕþÿ¿‹8Bè«Õþÿ@f.„SH‰ûè—ÍþÿH‰ßH‰Æ[ékÿÿÿf.„‹ö"Ãf„H‹Al"ÄH‹)l"ÄH‹‘|"ÄH‹9y"ĉ=¦"Ãf„H‰=ñk"ÄH‰=Ùk"Ä‹Æk"Ãf„‰=¶k"Ãf„USHƒìH‹-ûl"H…íuë)@è3úÿÿHÇègýÿÿH‹èl"H\ÅH‹;H…ÿuÛH‰ïè+ÊþÿH‹=”l"HDZl"èÊþÿHÇyl"HǦl"1ÀHÇ‘l"HÇfl"ÇXl"ÇJl"HÇ/l"Ç!l"HÇúj"HÇçj"HƒÄ[]Ãé+Ïþÿf.„éëÏþÿf.„é{Éþÿf.„USH‰ú1À¾©8BHƒìH‹=)q"HL$ èŸÑþÿH‹¸w"¶< „í„À„åHcD$ P‰T$ H‹òp"Æ"H‹-‡w"¶]„Û„³è–Òþÿ¾ë8€HcT$ J‰L$ ¶}H‰õH‹ ®p"HƒÆ@ˆ<H-?w"¶]„ÛtoH‹H¾ËöDJ@uÁHc|$ ¾Ó¾²8BH=up"1ÀèîÐþÿ‹D$ ƒÀPH˜‰T$ H‹Wp"Æ"HcD$ H‹Gp"ÆH‹5üÿÿHc—y"¾¹8BH‰ïH‰j"è3ÿÿH‰Ý€ÝcHcüh"P‰óh"Hcdy"H‹Õ€ÝcH‰Å@ÚcH‹my"Ç[y"H‰Ly"HƒÄ[]ÃD¾@èÖøÿÿHcy"H‰ï¾¹8BH‰i"è» ÿÿH‰Ý€ÝcHc„h"P‰{h"Hcìx"H‹ Õ€ÝcH‹<ÕàÍcH‰ Å@Úcè_öÿÿévÿÿÿf.„SH‰ûèwÉþÿH‰ßH‰ÆèLûÿÿ[H‰Çé3öÿÿAWAVI‰ÿAUATA‰ÖUSHìØH…ötHÇÍcL‰ûë„H…ÀtHƒÃD¾#¿Ã8BD‰æD‰åècÉþÿE„äuÞºÈH‰ÞH‰çI‰åèûÆþÿëf„@„ít*HƒÃD¾#D‰åD‰æ¿Ã8Bè#ÉþÿH…ÀtÞ@„ítL)ûÆDþ¾.L‰ïèÉþÿH…À…㿹8B¹L‰î󦄦»½¾8BºÈL‰î¿ÍcèzÆþÿ¾.¿Ícè»ÈþÿH…À„î¾B¿ÍcèsÍþÿH…ÀI‰Ä…dE…öt ƒë½(öAu¬»½¾8BºÈ¾ Óc¿ÍcèÆþÿ€=óf"t\A¼ÍcA‹$IƒÄ‚ÿþþþ÷Ò!Ð%€€€€tç‰Â¿ä8BÁê©€€DÂIT$‰ÁLDâÁIÜÍcA¾´$ÿÌcèÈþÿH…À„.¿Íc‹HƒÇ‚ÿþþþ÷Ò!Ð%€€€€té‰ÂL‰îÁê©€€DÂHW‰ÁHDúÁHßÍcHÇÍcèZÇþÿ¾.¿ÍcI‰Äè¨ÇþÿH…À„í¾B¿Ícè`ÌþÿH…ÀI‰ÄuUE…ötƒë½(öA…÷þÿÿH‹=~l"ºÍc¾ç8B1ÀèíÌþÿH‹5fl"¿è\üþÿëf.„‹Bl"E1ä…ÒtKHÄØL‰à[]A\A]A^A_ÃfDH‹=!l"L‰ê¾x:B1ÀE1äèÌþÿH‹5l"¿èþûþÿë¹@¾È8B¿èéûþÿ뤸/fA‰„$Ícé¿þÿÿH‰î¿Ícè'ÌþÿéþÿÿH‰îL‰çè‡ÄþÿéÿÿÿfD‹‰u"E…Àx:Hƒìƒ=•k"7IcÀH‹Å€ÝcH‰uu"‹@‰œ "1ÀE…ÀŸÀ‰fu"HƒÄóÄIcÀH‹=Vk"¾˜:BH‹Å€ÝcH‹HH‹.u"H‹P1Àè³ËþÿH‹5,k"¿è"ûþÿD‹ût"ë‚f„ATUH‰ýSHƒìH¾„Û„iè´ÌþÿH‹ë€HƒÅH¾]öDX uð¿9B¹H‰î󦄋 e"…Ò…å¿9B¹H‰îó¦„0¿09B¹H‰îó¦„Ë‹Íd"…Û…­HcVt"‹ "Ç^t"H‰ÁH‹Å€ÝcƒÁƒù‰ /t"‰P¯‹8j"…À„ýH‰l$H‰ïLcá1öè¶ÿÿHcÿs"J‰å€ÝcHcxc"H‹Õ€ÝcHƒùc‰ dc"H‰Å@ÚcÅH…Ò„êƒ=Úi"t»H‰¼s"HƒÄ‰Ø[]A\þà:B¿»è¬ùþÿÇîc"HƒÄ‰Ø[]A\À¿è¦ÂÿÿH‹hH¾]éþÿÿ„¾;B¿»è\ùþÿƒ-5s"è ýÿÿÇŽc"HƒÄ‰Ø[]A\ÃHt$1ÒH‰ïèlúÿÿH…ÀH‰šb"„zÿÿÿ¾@H‰ÇèŸòÿÿH‰ÇèwðÿÿH‹Èc"‹ Úr"H…À„†H‹Âc"H‹ÐLcáH‹|$J‰åàÍcé¤þÿÿHƒÄ»‰Ø[]A\þH;B¿»è¬øþÿÇêb"HƒÄ‰Ø[]A\ÃH‹=h"H‰ê¾€;B1ÀèÉþÿH‹5zh"¿èpøþÿéÉþÿÿ1Àé~ÿÿÿH‹=]h"H‰ê¾H9B1ÀèÎÈþÿH‹5Gh"¿è=øþÿHcr"H‹Å€ÝcéQþÿÿH‹="h"ºd¾°;B1Àè‘ÈþÿH‹5 h"¿èøþÿéYþÿÿH‹T$H‹=ïg"¾Ø;B1ÀècÈþÿH‹5Üg"¿èÒ÷þÿé+þÿÿf.„AWAVAUATUSHƒì(D‹5Wb"E…ö„¶[b"H‹Db"H‹-Ub"L‹%^b"‹ b"D‹ !b"…ÒÇõa"tH‰ÚH+n"Çãa"‰Ùa"ˆJ‹DåI‰ÝH‹àa"DH0HrH‰5Éa"D‰ÈD‰ D‹ ¬a"HcÈLV·” `uBD¶3¶¶ {Bë%@¿„ pB=œ~¶¶ÀzBHcÈ·” `uBòHcú¿¼?@DB9øuΉÒL‰ÖHƒÃ·Œ ZBMR·” `uBH‰È‰Nüfú› u”Icé¿” |BHƒîD‹a"H‰5a"E1Ò1ÿE1ä‰ a"ëU€HHcÉD¿Œ |BA9Ñ~>HcÊD¿Œ `BD‰ÉöÅ@uPE…ÛuKöÅ „R€åßA¼€Í@D¿ÙƒÂ¿…Òu®HcVüHƒëHƒîAºH‰Ð¿” |BëØ€E9ÙuÉ@„ÿ…ž E„Ò…‰ €å¿Çd`"D¿ÉL‰èH‰ßH‰s`"H)èH)ÇH‰Vl"H‰=—o"¶Æˆc`"Aùׇ4 D‰Èÿ$Å€=BHƒ=$`"Ç&`"„ D‹-`"E…íu Ç`"Hƒ=Î^"„£Hƒ=¸^"„‚H‹-`"H…턘L‹%`"J‹DåH…À„ƒH‹XH‹P H‹H‰«k"H‰¼_"H‰u^"¶H‰£_"ˆ­_"ébýÿÿE„ä…Ô?@„ÿ…Ú?E„Ò„ýþÿÿH‰5^_"éñþÿÿH‹ù"H‰"^"ékÿÿÿH‹ö"H‰^"éJÿÿÿèUëÿÿH‹-V_"L‹%__"¾@H‹=ó]"J\åèîÿÿH‰éLÿÿÿ¿èÂþÿH…ÀH‰õ^"…Ûþÿÿ¿X"H‹ ñH‹5 d"€|ÿ ”¶҉Q0éUùÿÿH‹9g"¸]H…Ò„@ùÿÿH‹5X"H‹ ýW"H‹ ñH‹5Êc"€|ÿ ”¶҉Q0éùÿÿƒ= ]"~/H‹÷f"H‹=]"¾_9BH‹P1Àèp½þÿH‹5é\"¿èßìþÿƒ-¸f"xjD‹%Ç\"E…äu0H‹‹W"H…Àt}H‹W"H‹<Ðè¾äÿÿHc‡f"H‹<ÅàÍcè äÿÿèåðÿÿÇÃf"ÿÿÿÿƒ-äU"¸(éwøÿÿ‹lf"…Û…H ¸)é_øÿÿ¿8=Bèõ¾þÿH‰5éV"éköÿÿ‰ÚV"éWöÿÿ1ÿëŠH‹f"H…Àt'H‹ W"H‹ëV"H‹ÊH‹ ¸b"€|ÿ ”À¶À‰B0¶ÃV"Ç1f"M‰èÇ”V"ˆHckV"HÇÀe"I)ÀL‰nb"A¶L‰sV"AƈyV"¸(é¬÷ÿÿH‹e"H‹=Ab"H…Àt €|ÿ H‹XV"H‹ aV"H‹Ê”À¶À‰B0ÇV"èý÷þÿH‰že"¸éY÷ÿÿH‹=e"H…Àt'H‹ !V"H‹ V"H‹ÊH‹ ×a"€|ÿ ”À¶À‰B0ÇÇU"¸é÷ÿÿH‹öd"H‹-ÏU"L‹%ØU"H…ÀtH‹ ”a"J‹Tå€|ÿ ”À¶À‰B0ÇU"‹]U"H‹zU"¶ƒU"éEóÿÿH‰ØH+Ta"H‹=…U"H‹ nU"ƒèLù‰D$¶TU"ˆI‹D‹J@E…É„’L‹ 3U"L‹RH‹ U"O$ I9ă0OL H‹5÷`"L9ȇD‹BàÿÿH‹5?"H‹ û>"H‹ ñH‹5ÈJ"€|ÿ ”¶҉Q0éàÿÿH‹öM"¸ŒH…Ò„ýßÿÿH‹5Ñ>"H‹ º>"H‹ ñH‹5‡J"€|ÿ ”¶҉Q0éÑßÿÿH‹µM"¸ŽH…Ò„¼ßÿÿH‹5>"H‹ y>"H‹ ñH‹5FJ"€|ÿ ”¶҉Q0éßÿÿH‹tM"¸H…Ò„{ßÿÿH‹5O>"H‹ 8>"H‹ ñH‹5J"€|ÿ ”¶҉Q0éOßÿÿH‹3M"¸†H…Ò„:ßÿÿH‹5>"H‹ ÷="H‹ ñH‹5ÄI"€|ÿ ”¶҉Q0éßÿÿH‹òL"H‹=£I"H…Àt €|ÿ H‹º="H‹ Ã="H‹Ê”À¶À‰B0èißþÿH‰ M"¸éÅÞÿÿH‹©L"H‹ZI"H…Òt €|ÿ H‹ q="H‹5z="H‹ ñ”¶҉Q0¾éŠÞÿÿH‹nL"¸=H…Ò„uÞÿÿH‹5I="H‹ 2="H‹ ñH‹5ÿH"€|ÿ ”¶҉Q0éIÞÿÿH‹-L"¸CH…Ò„4ÞÿÿH‹5="H‹ ñ<"H‹ ñH‹5¾H"€|ÿ ”¶҉Q0éÞÿÿH‹ìK"¸BH…Ò„óÝÿÿH‹5Ç<"H‹ °<"H‹ ñH‹5}H"€|ÿ ”¶҉Q0éÇÝÿÿH‹«K"¸DH…Ò„²ÝÿÿH‹5†<"H‹ o<"H‹ ñH‹5"€|ÿ ”¶҉Q0éÔÿÿH‹÷A"¸H…Ò„þÓÿÿH‹5Ò2"H‹ »2"H‹ ñH‹5ˆ>"€|ÿ ”¶҉Q0éÒÓÿÿH‹¶A"¸ H…Ò„½ÓÿÿH‹5‘2"H‹ z2"H‹ ñH‹5G>"€|ÿ ”¶҉Q0é‘ÓÿÿH‹uA"¸ H…Ò„|ÓÿÿH‹5P2"H‹ 92"H‹ ñH‹5>"€|ÿ ”¶҉Q0éPÓÿÿH‹4A"¸ H…Ò„;ÓÿÿH‹52"H‹ ø1"H‹ ñH‹5Å="€|ÿ ”¶҉Q0éÓÿÿH‹ó@"¸ H…Ò„úÒÿÿH‹5Î1"H‹ ·1"H‹ ñH‹5„="€|ÿ ”¶҉Q0éÎÒÿÿH‹²@"¸OH…Ò„¹ÒÿÿH‹51"H‹ v1"H‹ ñH‹5C="€|ÿ ”¶҉Q0éÒÿÿH‹q@"¸NH…Ò„xÒÿÿH‹5L1"H‹ 51"H‹ ñH‹5="€|ÿ ”¶҉Q0éLÒÿÿH‹0@"¸MH…Ò„7ÒÿÿH‹5 1"H‹ ô0"H‹ ñH‹5Á<"€|ÿ ”¶҉Q0é ÒÿÿH‹ï?"¸ H…Ò„öÑÿÿH‹5Ê0"H‹ ³0"H‹ ñH‹5€<"€|ÿ ”¶҉Q0éÊÑÿÿH‹®?"¸'H…Ò„µÑÿÿH‹5‰0"H‹ r0"H‹ ñH‹5?<"€|ÿ ”¶҉Q0é‰ÑÿÿH‹m?"¸&H…Ò„tÑÿÿH‹5H0"H‹ 10"H‹ ñH‹5þ;"€|ÿ ”¶҉Q0éHÑÿÿH‹,?"¸%H…Ò„3ÑÿÿH‹50"H‹ ð/"H‹ ñH‹5½;"€|ÿ ”¶҉Q0éÑÿÿH‹ë>"¸$H…Ò„òÐÿÿH‹5Æ/"H‹ ¯/"H‹ ñH‹5|;"€|ÿ ”¶҉Q0éÆÐÿÿH‹ª>"¸"H…Ò„±ÐÿÿH‹5…/"H‹ n/"H‹ ñH‹5;;"€|ÿ ”¶҉Q0é…ÐÿÿH‹i>"¸ H…Ò„pÐÿÿH‹5D/"H‹ -/"H‹ ñH‹5ú:"€|ÿ ”¶҉Q0éDÐÿÿH‹(>"¸H…Ò„/ÐÿÿH‹5/"H‹ ì."H‹ ñH‹5¹:"€|ÿ ”¶҉Q0éÐÿÿH‹ç="¸H…Ò„îÏÿÿH‹5Â."H‹ «."H‹ ñH‹5x:"€|ÿ ”¶҉Q0éÂÏÿÿH‹¦="¸H…Ò„­ÏÿÿH‹5."H‹ j."H‹ ñH‹57:"€|ÿ ”¶҉Q0éÏÿÿH‹e="¸#H…Ò„lÏÿÿH‹5@."H‹ )."H‹ ñH‹5ö9"€|ÿ ”¶҉Q0é@ÏÿÿH‹$="¸#H…Ò„+ÏÿÿH‹5ÿ-"H‹ è-"H‹ ñH‹5µ9"€|ÿ ”¶҉Q0éÿÎÿÿH‹ã<"¸#H…Ò„êÎÿÿH‹5¾-"H‹ §-"H‹ ñH‹5t9"€|ÿ ”¶҉Q0é¾ÎÿÿH‹¢<"¸#H…Ò„©ÎÿÿH‹5}-"H‹ f-"H‹ ñH‹539"€|ÿ ”¶҉Q0é}ÎÿÿH‹a<"¸\H…Ò„hÎÿÿH‹5<-"H‹ %-"H‹ ñH‹5ò8"€|ÿ ”¶҉Q0é<ÎÿÿH‹ <"¸[H…Ò„'ÎÿÿH‹5û,"H‹ ä,"H‹ ñH‹5±8"€|ÿ ”¶҉Q0éûÍÿÿH‹ß;"¸[H…Ò„æÍÿÿH‹5º,"H‹ £,"H‹ ñH‹5p8"€|ÿ ”¶҉Q0éºÍÿÿH‹ž;"¸ZH…Ò„¥ÍÿÿH‹5y,"H‹ b,"H‹ ñH‹5/8"€|ÿ ”¶҉Q0éyÍÿÿH‹];"¸ZH…Ò„dÍÿÿH‹58,"H‹ !,"H‹ ñH‹5î7"€|ÿ ”¶҉Q0é8ÍÿÿH‹;"¸ZH…Ò„#ÍÿÿH‹5÷+"H‹ à+"H‹ ñH‹5­7"€|ÿ ”¶҉Q0é÷ÌÿÿH‹Û:"¸eH…Ò„âÌÿÿH‹5¶+"H‹ Ÿ+"H‹ ñH‹5l7"€|ÿ ”¶҉Q0é¶ÌÿÿH‹š:"¸cH…Ò„¡ÌÿÿH‹5u+"H‹ ^+"H‹ ñH‹5+7"€|ÿ ”¶҉Q0éuÌÿÿH‹Y:"¸dH…Ò„`ÌÿÿH‹54+"H‹ +"H‹ ñH‹5ê6"€|ÿ ”¶҉Q0é4ÌÿÿH‹:"¸aH…Ò„ÌÿÿH‹5ó*"H‹ Ü*"H‹ ñH‹5©6"€|ÿ ”¶҉Q0éóËÿÿH‹×9"¸aH…Ò„ÞËÿÿH‹5²*"H‹ ›*"H‹ ñH‹5h6"€|ÿ ”¶҉Q0é²ËÿÿH‹–9"¸aH…Ò„ËÿÿH‹5q*"H‹ Z*"H‹ ñH‹5'6"€|ÿ ”¶҉Q0éqËÿÿH‹U9"¸bH…Ò„\ËÿÿH‹50*"H‹ *"H‹ ñH‹5æ5"€|ÿ ”¶҉Q0é0ËÿÿH‹9"¸bH…Ò„ËÿÿH‹5ï)"H‹ Ø)"H‹ ñH‹5¥5"€|ÿ ”¶҉Q0éïÊÿÿH‹Ó8"¸bH…Ò„ÚÊÿÿH‹5®)"H‹ —)"H‹ ñH‹5d5"€|ÿ ”¶҉Q0é®ÊÿÿH‹’8"¸`H…Ò„™ÊÿÿH‹5m)"H‹ V)"H‹ ñH‹5#5"€|ÿ ”¶҉Q0émÊÿÿH‹Q8"¸`H…Ò„XÊÿÿH‹5,)"H‹ )"H‹ ñH‹5â4"€|ÿ ”¶҉Q0é,ÊÿÿH‹8"¸`H…Ò„ÊÿÿH‹5ë("H‹ Ô("H‹ ñH‹5¡4"€|ÿ ”¶҉Q0éëÉÿÿH‹Ï7"¸VH…Ò„ÖÉÿÿH‹5ª("H‹ “("H‹ ñH‹5`4"€|ÿ ”¶҉Q0éªÉÿÿH‹Ž7"¸XH…Ò„•ÉÿÿH‹5i("H‹ R("H‹ ñH‹54"€|ÿ ”¶҉Q0éiÉÿÿH‹M7"¸XH…Ò„TÉÿÿH‹5(("H‹ ("H‹ ñH‹5Þ3"€|ÿ ”¶҉Q0é(ÉÿÿH‹ 7"¸WH…Ò„ÉÿÿH‹5ç'"H‹ Ð'"H‹ ñH‹53"€|ÿ ”¶҉Q0éçÈÿÿH‹Ë6"¸UH…Ò„ÒÈÿÿH‹5¦'"H‹ '"H‹ ñH‹5\3"€|ÿ ”¶҉Q0é¦ÈÿÿH‹Š6"¸TH…Ò„‘ÈÿÿH‹5e'"H‹ N'"H‹ ñH‹53"€|ÿ ”¶҉Q0éeÈÿÿH‹I6"¸fH…Ò„PÈÿÿH‹5$'"H‹ '"H‹ ñH‹5Ú2"€|ÿ ”¶҉Q0é$ÈÿÿH‹6"¸SH…Ò„ÈÿÿH‹5ã&"H‹ Ì&"H‹ ñH‹5™2"€|ÿ ”¶҉Q0éãÇÿÿH‹Ç5"¸RH…Ò„ÎÇÿÿH‹5¢&"H‹ ‹&"H‹ ñH‹5X2"€|ÿ ”¶҉Q0é¢ÇÿÿH‹†5"¸YH…Ò„ÇÿÿH‹5a&"H‹ J&"H‹ ñH‹52"€|ÿ ”¶҉Q0éaÇÿÿH‹E5"¸PH…Ò„LÇÿÿH‹5 &"H‹ &"H‹ ñH‹5Ö1"€|ÿ ”¶҉Q0é ÇÿÿH‹5"¸QH…Ò„ ÇÿÿH‹5ß%"H‹ È%"H‹ ñH‹5•1"€|ÿ ”¶҉Q0é߯ÿÿH‹Ã4"¸>H…Ò„ÊÆÿÿH‹5ž%"H‹ ‡%"H‹ ñH‹5T1"€|ÿ ”¶҉Q0éžÆÿÿH‹‚4"¸>H…Ò„‰ÆÿÿH‹5]%"H‹ F%"H‹ ñH‹51"€|ÿ ”¶҉Q0é]ÆÿÿH‹A4"¸=H…Ò„HÆÿÿH‹5%"H‹ %"H‹ ñH‹5Ò0"€|ÿ ”¶҉Q0éÆÿÿH‹4"¸<H…Ò„ÆÿÿH‹5Û$"H‹ Ä$"H‹ ñH‹5‘0"€|ÿ ”¶҉Q0éÛÅÿÿH‹¿3"¸;H…Ò„ÆÅÿÿH‹5š$"H‹ ƒ$"H‹ ñH‹5P0"€|ÿ ”¶҉Q0éšÅÿÿH‹~3"¸HH…Ò„…ÅÿÿH‹5Y$"H‹ B$"H‹ ñH‹50"€|ÿ ”¶҉Q0éYÅÿÿH‹=3"¸GH…Ò„DÅÿÿH‹5$"H‹ $"H‹ ñH‹5Î/"€|ÿ ”¶҉Q0éÅÿÿH‹ü2"¸FH…Ò„ÅÿÿH‹5×#"H‹ À#"H‹ ñH‹5/"€|ÿ ”¶҉Q0é×ÄÿÿH‹»2"¸5H…Ò„ÂÄÿÿH‹5–#"H‹ #"H‹ ñH‹5L/"€|ÿ ”¶҉Q0é–ÄÿÿH‹z2"¸4H…Ò„ÄÿÿH‹5U#"H‹ >#"H‹ ñH‹5 /"€|ÿ ”¶҉Q0éUÄÿÿH‹92"¸3H…Ò„@ÄÿÿH‹5#"H‹ ý""H‹ ñH‹5Ê."€|ÿ ”¶҉Q0éÄÿÿH‹ø1"¸3H…Ò„ÿÃÿÿH‹5Ó""H‹ ¼""H‹ ñH‹5‰."€|ÿ ”¶҉Q0éÓÃÿÿH‹·1"¸2H…Ò„¾ÃÿÿH‹5’""H‹ {""H‹ ñH‹5H."€|ÿ ”¶҉Q0é’ÃÿÿH‹v1"¸1H…Ò„}ÃÿÿH‹5Q""H‹ :""H‹ ñH‹5."€|ÿ ”¶҉Q0éQÃÿÿH‹51"¸0H…Ò„<ÃÿÿH‹5""H‹ ù!"H‹ ñH‹5Æ-"€|ÿ ”¶҉Q0éÃÿÿH‹ô0"¸:H…Ò„ûÂÿÿH‹5Ï!"H‹ ¸!"H‹ ñH‹5…-"€|ÿ ”¶҉Q0éÏÂÿÿH‹³0"¸:H…Ò„ºÂÿÿH‹5Ž!"H‹ w!"H‹ ñH‹5D-"€|ÿ ”¶҉Q0éŽÂÿÿH‹r0"¸9H…Ò„yÂÿÿH‹5M!"H‹ 6!"H‹ ñH‹5-"€|ÿ ”¶҉Q0éMÂÿÿH‹10"¸9H…Ò„8ÂÿÿH‹5 !"H‹ õ "H‹ ñH‹5Â,"€|ÿ ”¶҉Q0é ÂÿÿH‹ð/"¸8H…Ò„÷ÁÿÿH‹5Ë "H‹ ´ "H‹ ñH‹5,"€|ÿ ”¶҉Q0éËÁÿÿH‹¯/"¸/H…Ò„¶ÁÿÿH‹5Š "H‹ s "H‹ ñH‹5@,"€|ÿ ”¶҉Q0éŠÁÿÿH‹n/"¸0H…Ò„uÁÿÿH‹5I "H‹ 2 "H‹ ñH‹5ÿ+"€|ÿ ”¶҉Q0éIÁÿÿH‹-/"¸LH…Ò„4ÁÿÿH‹5 "H‹ ñ"H‹ ñH‹5¾+"€|ÿ ”¶҉Q0éÁÿÿÇ‘"éÀÿÿ‰Š"éÀÿÿH‹Ò."H‹ƒ+"H…Àt €|ÿ H‹š"H‹ £"H‹Ê”À¶À‰B0èy†þÿH¾3H‹º öDq@@¾ÆDÂé™ÀÿÿH‹}."¸+H…Ò„„ÀÿÿH‹5X"H‹ A"H‹ ñH‹5+"€|ÿ ”¶҉Q0éXÀÿÿH‹<."¸*H…Ò„CÀÿÿH‹5"H‹ "H‹ ñH‹5Í*"€|ÿ ”¶҉Q0éÀÿÿH‹û-"¸H…Ò„ÀÿÿH‹5Ö"H‹ ¿"H‹ ñH‹5Œ*"€|ÿ ”¶҉Q0éÖ¿ÿÿf„USH‰õH‰ûº ¾HƒìH‹ 3Æ!¿hˆBèI„þÿH9ëw#@¿H‹=Æ!1À¾ÆóAHƒÃèv€þÿH9ÝsáH‹5úÅ!HƒÄ¿ []éªþÿf.„HcÆþ¨SH‹ Å`!CºrˆB¸xˆBH‰ûHMо~ˆB1Àè!€þÿH‰Þ¿)[écþÿH…ÿ¸†ˆBHDø‹:-"…Àu óÄH‰úH‹=vÅ!S1À‰ó¾ˆBè×þÿH‹=`Å!‰Þèyÿÿÿ[H‹5QÅ!¿ éþÿ€‹¦"…Àu D‹Ã"E…ÛtjS‰û袲þÿH‹›""Æ‹=¦"…ÿ…Š‹5ˆ"…ö…œ‹ r"…É…΋\"…Ò…à‹F"…À…’fH‹5I""€>u4[óÃD‹="E…ÒuŠD‹ !"E…É…zÿÿÿD‹"E…À…jÿÿÿëÏf‰ß[é²þÿ„‹ "H‹=ó!"¾È‘B1Àèg‚þÿë•D‹Ú"H‹=Ó!"¾’B1ÀèG‚þÿérÿÿÿf‹¢"H‹=³!"¾°’B1Àè'‚þÿéRÿÿÿf‹’"H‹=“!"¾@’B1Àè‚þÿé2ÿÿÿf‹j"H‹=s!"¾x’B1ÀèçþÿéÿÿÿfAWAVAUATUSHì‹u+"…À…L¬$ÐHl$@1Ò1Û…ÀÇL+"ÇJ+"þÿÿÿf‰T$@I‰ìÇD$$HÇD$ÈL‰l$‰\$…P‹D$=ø„ç,HcØD¿¼€CAÿ1ýÿÿtZ‹ø*"ƒøþ„'…ÀŽ@=A¾ H˜D¶°€-C‹Æ*"…À…bC>=ªwH˜¿” ½BA9Ö„tD·´ CE…ö„âIcƶ˜ °BH‰D$¸)ØI‰ßH˜òALÅ‹f*"òL$(…À…\Aþ«wD‰óÿ$Ý`•Bf„H‹L$JýI‰îMÿI)ÅM)þ·œ à±BL‰èòT$(LhA¿6òPƒXÿÿÿH˜¿”ÀCòúªwHcÒf;´ ½B„û¿„àC‰D$·D$H‹L$InfA‰FH‰ÈHÀITþH9Õ‚äI‰íM)åIÑýIƒÅHù'‡N+H='º'HFÐH’H‰ÓH‰T$H|èü|þÿH…ÀI‰Ç„+Kl-L‰æH‰ÇH‰D$(M4_IÁåH‰êèP|þÿH‹t$HL‰êL‰÷H‰D$0è7|þÿHD$@I9ÄtL‰çèwþÿ‹ )"Il/þOl.ø…À…ÝH‹D$0IDþH9Ń +‹à("L‰t$L‹d$(…À„°ýÿÿ‹T$H‹=Á!¾ÀˆB1Àè{{þÿé”ýÿÿfDHc©("¾þÿÿÿ9ðt=¾†˜‹|$$…ÿ„¢ƒ|$$u9ƒøŽ[¿Ê‰BèûÿÿÇ`("þÿÿÿëfDH‰îL‰çèMúÿÿD¿¼€CAÿ1ýÿÿtAƒÇAÿªwMcÿfCƒ¼? ½Bt7I9ìtz·´@µB¿Ü‰BHƒíIƒíè°úÿÿ‹ ö'"H¿]…Ét¤ë—€G¿¼?€æBE…ÿ~»‹Ð'"H‹Õ'"I]…ÒI‰E…›)I‰ÝI‰îD‰|$ÇD$$éÓýÿÿDL‰å1ÛA½HcŽ'"ƒøþt=¾vu¿ü‰Bè#úÿÿ‹i'"HÝ…Àt!ééH¿E¿ŠBHƒí·´@µBèõùÿÿL9åuàHD$@I9ÄtL‰çè.uþÿHÄD‰è[]A\A]A^A_Ã…Ïþÿÿ1ÛA½¶°€-Cë‚€‹|$$Hcж²€-C…ÿ…^þÿÿ¿½‰BƒÎ&"èa«ÿÿéˆþÿÿ@‹¾&"…À…èÅ´ÿÿ…À‰­&"ÀûÿÿD‹5œ&"Ç–&"E…ö„ËûÿÿH‹ Ö¾!º¾¿åˆBE1öèß|þÿé¨ûÿÿf.„H‹=©¾!ºûˆB¾ˆB1ÀèyþÿH‹=‘¾!D‰öè©øÿÿH‹5‚¾!¿ è8xþÿéaûÿÿH‹T$H‹=d¾!¾£ˆB1ÀèÈxþÿéýÿÿH‹D$H‹=D¾!AVÿ¾è’B·Œ *C1Àèœxþÿ…Û„†CÿL‰d$0H‰l$8HƒÀH‰ÁH‰Ø»H÷ØI‰ÌHDEH‰ÝH‰Ã€H‹=é½!‰ê¾‰B1ÀèKxþÿH¿kH‹=Ͻ!HƒÅ·´@µBèÞ÷ÿÿH‹5·½!¿ èmwþÿI9ìu¸L‹d$0H‹l$8Aþ«w5D‰óÿ$ÝÀ¢B‹-"…Û… 'I‹EH‰ÇèÁ’ÿÿ1Ò1ö¿裷þÿD‹ %"E…É„ÀúÿÿH‹=I½!ºµ‰B¾ˆB1ÀI‰îè¥wþÿH‹D$H‹=)½!·œà±B‰Þè:÷ÿÿH‹5½!¿ èÉvþÿD‹®$"JýMÿM)þI)ÅE…ÀL‰è„yúÿÿL‰öL‰çL‰l$è…öÿÿH‹D$é_úÿÿH‰îL‰çèmöÿÿé#ýÿÿ„H‹ ©¼!º¾¿“ˆBèµzþÿ‹;$"éÉøÿÿf.„¿„€æB…À‰D$~N‹D$$ƒøƒÐÿ‰D$$‹$"…À…„%H‹$"Çó#"þÿÿÿIƒÅI‰îI‰Eéúÿÿ¿„€æB‰D$éúÿÿA‰ÆA÷Þé5ùÿÿL‹t$L‰d$(éÎúÿÿH‹ ¼!º¾¿ÓˆBè zþÿéÞüÿÿòAEfWJPòD$(éoþÿÿòAeòd$(é^þÿÿòA]ò\$(éMþÿÿ¿èCÿÿé>þÿÿ¿è4ÿÿé/þÿÿ¿ è%ÿÿé þÿÿ¿èÿÿéþÿÿ1ÿè ÿÿéþÿÿ¿èûÿÿéöýÿÿ1ÿ读þÿ1Ò1ö¿Qèµþÿ1Ò1ö¿=èsµþÿéÎýÿÿ1Ò1ö¿#è`µþÿé»ýÿÿ1Ò1ö¿$èMµþÿé¨ýÿÿ1Ò1ö¿è:µþÿé•ýÿÿ1Ò1ö¿ è'µþÿé‚ýÿÿ¿èØÏþÿésýÿÿ¿1èÉÏþÿédýÿÿ¿0èºÏþÿéUýÿÿ¿/è«ÏþÿéFýÿÿ¿(öAè¼}ÿÿ¿è’Ïþÿé-ýÿÿ¿(öAè£}ÿÿ¿èyÏþÿéýÿÿ¿èjÏþÿéýÿÿ¿(öAè{}ÿÿ¿èQÏþÿéìüÿÿ¿(öAèb}ÿÿ¿è8ÏþÿéÓüÿÿ¿è)ÏþÿéÄüÿÿ¿(öAè:}ÿÿ¿èÏþÿé«üÿÿ¿(öAè!}ÿÿ¿è÷Îþÿé’üÿÿ¿èèÎþÿéƒüÿÿ¿(öAèù|ÿÿ¿èÏÎþÿéjüÿÿ¿(öAèà|ÿÿ¿è¶ÎþÿéQüÿÿ¿è§ÎþÿéBüÿÿ¿è˜Îþÿé3üÿÿ¿è‰Îþÿé$üÿÿ¿èzÎþÿéüÿÿ¿?èkÎþÿéüÿÿ¿5è\Îþÿé÷ûÿÿ¿>èMÎþÿéèûÿÿ‹r¹!…À… $¿4è0ÎþÿéËûÿÿ¿,è!Îþÿé¼ûÿÿ¿$èÎþÿé­ûÿÿ¿!èÎþÿéžûÿÿ¿ èôÍþÿéûÿÿ¿èåÍþÿé€ûÿÿ¿9èÖÍþÿéqûÿÿ¿8èÇÍþÿébûÿÿ1ÿè»ÍþÿéVûÿÿ¿è¬ÍþÿéGûÿÿ¿7èÍþÿé8ûÿÿ¿èŽÍþÿé)ûÿÿ¿èÍþÿéûÿÿ¿èpÍþÿé ûÿÿ¿èaÍþÿéüúÿÿ¿èRÍþÿéíúÿÿ¿èCÍþÿéÞúÿÿ¿2è4ÍþÿéÏúÿÿ¿è%ÍþÿéÀúÿÿ¿èÍþÿé±úÿÿ¿-èÍþÿé¢úÿÿ¿èøÌþÿé“úÿÿ¿ èéÌþÿé„úÿÿ¿ èÚÌþÿéuúÿÿ¿ èËÌþÿéfúÿÿ¿ è¼ÌþÿéWúÿÿ¿ è­ÌþÿéHúÿÿI‹}ð1öèµþÿ¾H‰Çè uÿÿé+úÿÿI‹}ð1öèµþÿ¾H‰Çèƒuÿÿéúÿÿ¿}èDòþÿéÿùÿÿ¿>è5òþÿéðùÿÿ¿{è&òþÿéáùÿÿ¿<èòþÿéÒùÿÿ¿!èòþÿéÃùÿÿ¿=èùñþÿé´ùÿÿ1Ò1ö¿;èF±þÿé¡ùÿÿ¿^è—vÿÿé’ùÿÿ¿/èˆvÿÿéƒùÿÿ¿*èyvÿÿétùÿÿ¿-èjvÿÿéeùÿÿ¿+è[vÿÿéVùÿÿI‹}1öè+´þÿ1ÒH‰Æ¿<èܰþÿé7ùÿÿI‹u1Ò¿Mèǰþÿé"ùÿÿ1Ò¾(öA¿è±°þÿé ùÿÿ1Ò¾(öA¿è›°þÿéöøÿÿ1Ò¾(öA¿è…°þÿéàøÿÿ1Ò¾(öA¿èo°þÿéÊøÿÿòAEè¿oÿÿéºøÿÿ1Ò1ö¿ièL°þÿé§øÿÿ1Ò1ö¿yè9°þÿ锸ÿÿ¿}è ïþÿé…øÿÿ¿>èûîþÿévøÿÿ¿{èìîþÿégøÿÿ¿<èÝîþÿéXøÿÿ¿!èÎîþÿéIøÿÿ¿=è¿îþÿé:øÿÿ¿!è óþÿé+øÿÿè6nÿÿ¿&èŒóþÿéøÿÿ1Ò1ö¿詯þÿèÄmÿÿéÿ÷ÿÿè nÿÿ¿|è`óþÿéë÷ÿÿ1Ò1ö¿è}¯þÿè˜mÿÿéÓ÷ÿÿI‹}ð¾èÅÿÿéÀ÷ÿÿI‹}ð1ö蕲þÿ1ÒH‰Æ¿>èF¯þÿé¡÷ÿÿ¿èWµþÿ1Ò1ö¿Qè)¯þÿ1Ò1ö¿=è¯þÿév÷ÿÿ¿#èÌÉþÿég÷ÿÿ¿"è½ÉþÿéX÷ÿÿ¿Cè®ÉþÿéI÷ÿÿ¿BèŸÉþÿé:÷ÿÿ1Ò1ö¿%èÌ®þÿé'÷ÿÿ1Ò1ö¿&è¹®þÿé÷ÿÿ1Ò1ö¿!覮þÿé÷ÿÿ1Ò1ö¿"è“®þÿéîöÿÿ¿:èDÉþÿéßöÿÿ¿è5ÉþÿéÐöÿÿ¿è&ÉþÿéÁöÿÿ¿èÉþÿé²öÿÿ¿èÉþÿé£öÿÿ¿èùÈþÿé”öÿÿ¿èêÈþÿé…öÿÿ¿)èÛÈþÿévöÿÿ¿(èÌÈþÿégöÿÿ¿'è½ÈþÿéXöÿÿ¿&è®ÈþÿéIöÿÿ¿%èŸÈþÿé:öÿÿ¿*èÈþÿé+öÿÿ¿èÈþÿéöÿÿòÄGèmÿÿ¿èeÈþÿéöÿÿò¨Gèólÿÿ¿èIÈþÿéäõÿÿ¿@è:ÈþÿéÕõÿÿ¿6è+ÈþÿéÆõÿÿ¿èÈþÿé·õÿÿ¿;è Èþÿé¨õÿÿ‹¢²!ƒ "‰… "éõÿÿ1Ò1ö¿ è"­þÿ1Àèlÿÿè6kÿÿéqõÿÿ1Ò1ö¿ ƒ-5 "èü¬þÿè×kÿÿ1Ò1ö¿/èé¬þÿ1Ò1ö¿3èÛ¬þÿƒ-ø "é/õÿÿ‹ý "‹ ó "¾è”B…ÒucK?A½H÷Ûéƒòÿÿ1Ò1ö¿2ƒ¼ "蓬þÿ¿0è)®þÿ‹ã±!ƒ° "‰¦ "èkÿÿéÌôÿÿ‹¢ "‹ ˜ "¾¸”B…ÒtH‹="1Àè pþÿH‹5‚"¿èxŸþÿéyÿÿÿ1Ò1ö¿ è"¬þÿè=jÿÿéxôÿÿƒ-M "è|gÿÿèçjÿÿèrjÿÿ1Ò1ö¿/èô«þÿ1Ò1ö¿3èæ«þÿƒ- "é:ôÿÿ1Ò1ö¿2ƒî "èÅ«þÿ¿0è[­þÿ‹±!ƒê "‰à "è3jÿÿéþóÿÿƒ-à "èrjÿÿ1Ò1ö¿/è„«þÿ1Ò1ö¿3èv«þÿƒ-“ "éÊóÿÿ‹ "‹ † "¾ˆ”B…Ò„—þÿÿéõþÿÿ@1Ò1ö¿2ƒ\ "è3«þÿ¿0èɬþÿ‹ƒ°!ƒH "‰> "è¡iÿÿélóÿÿA‹E…Àx^°!1Ò1ö¿,èðªþÿéKóÿÿ1Ò1ö¿,èݪþÿé8óÿÿ1Ò1ö¿*èʪþÿ1Ò1ö¿ 輪þÿ1Ò1ö¿+讪þÿé óÿÿA‹E…Àˆýòÿÿ÷¯!éòòÿÿA‹E…Àˆæòÿÿà¯!éÛòÿÿ1Ò1ö¿/èmªþÿ1Ò1ö¿=è_ªþÿ1Ò1ö¿5èQªþÿ謆ÿÿé§òÿÿèR†ÿÿ1Ò1ö¿4è4ªþÿéòÿÿI‹}1öèd­þÿ¿H‰ÃèwfÿÿH‹xH‰Þè jþÿ…À„còÿÿ¾—‰Bé·ýÿÿf„¿èFfÿÿéAòÿÿòáCè4iÿÿé/òÿÿƒ- "é#òÿÿ‹"‹ ÷"¾X”B…Ò„ðüÿÿéNýÿÿD1Ò1ö¿/è’©þÿ1Ò1ö¿3è„©þÿƒ-¡"éØñÿÿèãdÿÿèNhÿÿèÙgÿÿéÄñÿÿ1Ò1ö¿èV©þÿèqgÿÿ1Ò1ö¿'èC©þÿI‹}Ð1öèx¬þÿ1ÒH‰Æ¿>è)©þÿè”gÿÿI‹}Ð1öèY¬þÿ1ÒH‰Æ¿<è ©þÿ1Ò1ö¿)èü¨þÿI‹}Ð1öè1¬þÿ1ÒH‰Æ¿>èâ¨þÿI‹}Ð1öè¬þÿ1ÒH‰Æ¿<èȨþÿ1Ò1ö¿(躨þÿ1Ò1ö¿ 謨þÿèÇfÿÿéñÿÿI‹}ø1öè׫þÿH‰Çèfÿÿ1Ò1ö¿è¨þÿè gÿÿ¿0èªþÿéÍðÿÿ1Ò1ö¿2ƒ"èX¨þÿ‹²­!ƒ"‰…"é ðÿÿ¿èVlÿÿI‹}ð1öèk«þÿ¾H‰Çè^jÿÿéyðÿÿ¿è/lÿÿI‹}ð1öèD«þÿ¾H‰Çè7jÿÿéRðÿÿ¿èlÿÿI‹}1öè«þÿ1öH‰Çè“€ÿÿI‹}1öè«þÿ1ÒH‰Æ¿dè¹§þÿéðÿÿ¿èÊkÿÿI‹}1öèߪþÿ¾H‰ÇèR€ÿÿI‹}1öèǪþÿ1ÒH‰Æ¿>èx§þÿéÓïÿÿI‹}è¾襪þÿ¾H‰ÇèhhÿÿI‹}è¾芪þÿ¾SH‰Çè½pÿÿé˜ïÿÿI‹}è¾èjªþÿ¾H‰Çè-hÿÿI‹}è¾èOªþÿ¾DH‰Çè‚pÿÿé]ïÿÿI‹}¾è/ªþÿ1öH‰Çèõgÿÿé@ïÿÿI‹}¾èªþÿ¾H‰ÇèÕgÿÿé ïÿÿI‹}è1öèõ©þÿ¾H‰ÇèhÿÿI‹}è1öèÝ©þÿ¾sH‰ÇèpÿÿéëîÿÿI‹}è1öèÀ©þÿ¾H‰Çè3ÿÿI‹}è1ö訩þÿ¾dH‰ÇèÛoÿÿé¶îÿÿI‹}1öè‹©þÿ1öH‰ÇèÿÿéœîÿÿI‹}1öèq©þÿ¾H‰Çèä~ÿÿéîÿÿÇm"épîÿÿÇ^"éaîÿÿÇO"éRîÿÿÇ@"éCîÿÿI‹}1öÇ;"è©þÿH‰Çè–¥þÿI‹}1öH‰"èô¨þÿH‰Çè|¥þÿH‰D$(éîÿÿI‹}1öÇú"èͨþÿH‰ÇèU¥þÿI‹}1öH‰Ø"賨þÿH‰Çè;¥þÿH‰D$(éÁíÿÿƒ-¦"éµíÿÿ‹›"‹ ‘"¾(”B…Ò„‚øÿÿéàøÿÿ€1Ò1ö¿è"¥þÿH‹; "H‹T "1ö¿HH‰P81Òè¥þÿ‹5d"1ÿèõyÿÿ1Ò1ö¿IÇJ"èݤþÿHÇú "è=}ÿÿè8cÿÿé#íÿÿ¿èÙhÿÿ1Ò1ö¿=諤þÿéíÿÿ‹ø"…À…;I‹}¾J蚆ÿÿ1Ò1ö¿Gè|¤þÿ1Ò1ö¿èn¤þÿH‹§ "H‰ˆ "H‰y "è¤}ÿÿé¯ìÿÿ‹©©!ƒŽ"‰„"èWbÿÿ¾ð“B¿è¨äÿÿ‹Š"…À„zìÿÿ¾z‰BéÎ÷ÿÿI‹}è1öèE§þÿH‰ÇèÍ£þÿH‰D$(éSìÿÿI‹}è1öè(§þÿH‰Çè°£þÿH‰D$(é6ìÿÿ1Ò1ö¿AèÈ£þÿé#ìÿÿI‹}è1öèø¦þÿ¾SH‰Çè+mÿÿéìÿÿI‹}è1öèÛ¦þÿ¾SH‰ÇèmÿÿééëÿÿI‹}è1ö辦þÿ¾DH‰ÇèñlÿÿéÌëÿÿI‹}è1ö衦þÿ¾DH‰ÇèÔlÿÿé¯ëÿÿI‹}1ö脦þÿH‰Çè £þÿH‰D$(é’ëÿÿI‹}1öèg¦þÿH‰Çèï¢þÿH‰D$(éuëÿÿI‹}1öèê_þÿòD$(é_ëÿÿòAmòl$(éNëÿÿ1ö¿vè¢îþÿé=ëÿÿ¾¿uèŽîþÿé)ëÿÿ1ö¿vè}îþÿéëÿÿI‹}1öº ècþÿfïÀò*Àèûaÿÿ¾¿uèLîþÿéçêÿÿ1ö¿vè;îþÿéÖêÿÿI‹}1öè«¥þÿ1ÒH‰Æ¿<è\¢þÿ¾¿uè îþÿé¨êÿÿ¿Uèžçþÿé™êÿÿ¿uèçþÿéŠêÿÿ¿dè€çþÿé{êÿÿ¿sèqçþÿélêÿÿ¿sèbçþÿé]êÿÿòAEè"ßþÿéMêÿÿI‹}ètßþÿé?êÿÿòAEèßþÿé/êÿÿI‹}èVßþÿé!êÿÿ¿sè—ßþÿI‹}è1öèì¤þÿ¾H‰Çèÿqÿÿéúéÿÿ¿sèpßþÿI‹}1öèŤþÿ1ÒH‰Æ¿dèv¡þÿéÑéÿÿ¿dèGßþÿI‹}è1ö蜤þÿ¾H‰Çè¯qÿÿéªéÿÿ¿dè ßþÿI‹}1öèu¤þÿ1ÒH‰Æ¿>è&¡þÿééÿÿ‹5"¿sè¡üþÿI‹}è1öèF¤þÿ¾H‰ÇèYqÿÿéTéÿÿ‹5b"¿sètüþÿI‹}1öè¤þÿ1ÒH‰Æ¿dèÊ þÿé%éÿÿ‹53"¿dèEüþÿI‹}è1öèê£þÿ¾H‰Çèýpÿÿéøèÿÿ‹5"¿dèüþÿI‹}1öè½£þÿ1ÒH‰Æ¿>èn þÿéÉèÿÿ1Ò1ö¿è[ þÿé¶èÿÿèÁ[ÿÿ1ÀèŠ_ÿÿèµ[ÿÿè°^ÿÿé›èÿÿ1Ò1ö¿ è- þÿèH^ÿÿéƒèÿÿèŽ^ÿÿéyèÿÿ1Ò1ö¿ ƒ­ü!è þÿè^ÿÿéZèÿÿƒ-Gþ!éNèÿÿ‹<þ!…Ò„&óÿÿ‹ *þ!¾•Béyóÿÿè;^ÿÿé&èÿÿè1[ÿÿ1Àèú^ÿÿè%[ÿÿè ^ÿÿé èÿÿ1ö1Ò¿|èŸþÿ¿èÓýþÿòk^èæ^ÿÿ1ö¿uè:ëþÿéÕçÿÿ1ö1Ò¿|ègŸþÿ¿èýþÿò5^è°^ÿÿ1ö¿uèëþÿéŸçÿÿ1ö1Ò¿|è1Ÿþÿò ^è„^ÿÿ1ö¿uèØêþÿésçÿÿ¿èIýþÿòá]è\^ÿÿ1ö¿uè°êþÿéKçÿÿ¿è!ýþÿò¹]è4^ÿÿ1ö¿uèˆêþÿé#çÿÿ¿èùüþÿò‘]è ^ÿÿ1ö¿uè`êþÿéûæÿÿ1ö¿uèOêþÿéêæÿÿI‹}1öº èÚ^þÿfïÀò*ÀèÍ]ÿÿ1ö¿uè!êþÿ鼿ÿÿI‹}1öè‘¡þÿ1ÒH‰Æ¿<èBžþÿ1ö¿uèöéþÿ鑿ÿÿò ]è„]ÿÿ1ö¿uèØéþÿésæÿÿI‹}èêfÿÿ¿sè`ãþÿé[æÿÿ¿9öAèÑfÿÿ¿sèGãþÿéBæÿÿ1ö¿vè–éþÿé1æÿÿò©\è$]ÿÿ¾¿uèuéþÿéæÿÿ1ö¿vèdéþÿéÿåÿÿ1ö1Ò¿|è‘þÿòi\èä\ÿÿ¾¿uè5éþÿéÐåÿÿ¿èÖØþÿéÁåÿÿ‹5Ãû!…ö…¼ I‹EH‰Çè·xÿÿé¢åÿÿ‹=¤û!…ÿ…° I‹EH‰Çè8xÿÿéƒåÿÿD‹ „û!E…É…såÿÿ¾H“B¿èDþÿé_åÿÿ€D‹Yû!E…À…Håÿÿ¾p“B¿èþÿé4åÿÿ@I‹}ègxÿÿ1Ò1ö¿=蹜þÿéåÿÿ1Ò1ö¿1覜þÿ¿.è<žþÿD‹¹ú!E…Ò…ìäÿÿ¾9‰B¿è½þÿéØäÿÿ„I‹}èxÿÿ1Ò1ö¿=èYœþÿé´äÿÿ1Ò1ö¿1èFœþÿI‹}1öº è–\þÿ‰Çè/ÿÿ‹Mú!…Û…äÿÿD‹:ú!E…Û…qäÿÿ¾‰B¿èBþÿé]äÿÿD1Ò1ö¿1èê›þÿ¿èà€ÿÿ‹þù!…À…2äÿÿD‹5ëù!E…ö…"äÿÿ¾‰B¿èóŽþÿéäÿÿfD1Ò1ö¿€èš›þÿéõãÿÿ¾“B¿èÜÿÿéáãÿÿA‹E…ÀˆÕãÿÿÏ !éÊãÿÿƒ=k"½ãÿÿéžîÿÿ„K?E1íH÷Ûéáÿÿ¿=è÷µþÿé’ãÿÿ¿3èèµþÿéƒãÿÿ¿.èÙµþÿétãÿÿ1Ò1ö¿fè›þÿéaãÿÿI‹}H…ÿ„¹ èÏcÿÿéJãÿÿI‹u1Ò¿NèÚšþÿé5ãÿÿI‹}è1öè žþÿ¾H‰ÇèkÿÿéãÿÿI‹}1öèíþÿ1ÒH‰Æ¿gèžšþÿéùâÿÿI‹}1öèÎþÿ1ÒH‰Æ¿cèšþÿéÚâÿÿ1Ò1ö¿xèlšþÿéÇâÿÿ1Ò1ö¿wèYšþÿé´âÿÿ1Ò1ö¿QèFšþÿ¿OBècÿÿ¿è’åþÿéâÿÿ1Ò1ö¿Qèšþÿ¿Bèõbÿÿ¿èkåþÿéfâÿÿ¿ è\åþÿéWâÿÿ¿èMåþÿéHâÿÿ¿è>åþÿé9âÿÿI‹}ð1öèþÿ¾H‰Çè!jÿÿéâÿÿ¿3育þÿé âÿÿ¿.ès²þÿéþáÿÿ¿;èd²þÿéïáÿÿ¿=èU²þÿéàáÿÿI‹}ð1ö赜þÿ1ÒH‰Æ¿dèf™þÿéÁáÿÿÇ3ñ!é²áÿÿÇ$ñ!é£áÿÿÇñ!é”áÿÿÇñ!é…áÿÿÇ÷ð!éváÿÿ1Ò1ö¿ è™þÿécáÿÿI‹}èš þÿéUáÿÿ1Ò1ö¿ èç˜þÿéBáÿÿfïÀè9Xÿÿ1Ò1ö¿ è˘þÿé&áÿÿ1Ò1ö¿踘þÿéáÿÿ¿DèIÏþÿéáÿÿ¿Sè:Ïþÿéõàÿÿ¿dè+Ïþÿéæàÿÿ¿sèÏþÿé×àÿÿ¿è-³þÿ1Ò1ö¿=è_˜þÿéºàÿÿ¿è³þÿ1Ò1ö¿=èB˜þÿéàÿÿòE2èWÿÿ¿èæ²þÿ1Ò1ö¿=è˜þÿésàÿÿò2èfWÿÿ¿è¼²þÿ1Ò1ö¿=èî—þÿéIàÿÿ1Ò1ö¿{èÛ—þÿé6àÿÿ1Ò1ö¿zèÈ—þÿé#àÿÿ1Ò1ö¿Œèµ—þÿéàÿÿ¿èÆ7ÿÿéàÿÿ1ÿèº7ÿÿéõßÿÿ1Ò1ö¿}臗þÿéâßÿÿ1Ò1ö¿Šèt—þÿéÏßÿÿ1Ò1ö¿‰èa—þÿé¼ßÿÿ1Ò1ö¿ŽèN—þÿ1ÿè·ÿÿé¢ßÿÿ1Ò1ö¿ˆè4—þÿéßÿÿ1Ò1ö¿‡è!—þÿé|ßÿÿ1Ò1ö¿†è—þÿéißÿÿ1Ò1ö¿…èû–þÿ1ÿèdÿÿéOßÿÿ1Ò1ö¿„èá–þÿ1ÿèJÿÿé5ßÿÿ1ÿèÿÿé)ßÿÿ¿ÿÿÿÿèÿÿÿéßÿÿ1Ò1ö¿”謖þÿéßÿÿ¿xBè}_ÿÿ1Ò1ö¿“è–þÿéêÞÿÿ1Ò1ö¿“è|–þÿé×Þÿÿ¿è­ÿÿ¿èÓÿÿé¾Þÿÿ¿è”ÿÿ¿èºÿÿé¥Þÿÿ¿è{ÿÿé–Þÿÿ¿èlÿÿé‡Þÿÿ¿è]ÿÿ¿èƒÿÿénÞÿÿ¿èDÿÿé_Þÿÿ1Ò1ö¿‚èñ•þÿ¿èWÿÿéBÞÿÿ1Ò1ö¿‚èÔ•þÿé/Þÿÿ1Ò1ö¿èÁ•þÿéÞÿÿ¿èBÿÿé Þÿÿ1ÿè6ÿÿéÞÿÿ‹ô!…À„œ1Ò1ö¿è…•þÿH‹žý!H‹·ú!1ö¿HH‰P81Òèe•þÿ‹5Çó!¿èUjÿÿ1Ò1ö¿IèG•þÿé¢Ýÿÿ‹¤ó!…À„G1Ò1ö¿è&•þÿH‹?ý!H‹Xú!1ö¿HH‰P81Òè•þÿ‹5hó!¿èöiÿÿ1Ò1ö¿Ièè”þÿéCÝÿÿ‹Eó!1Ò1ö…À„‡¿èÇ”þÿH‹àü!H‹ùù!1ö¿HH‰P81Òè§”þÿ‹5 ó!1ÿèšiÿÿ1Ò1ö¿I茔þÿéçÜÿÿ‹éò!…Ò…©I‹EH‰Çè­ÐþÿéÈÜÿÿ1Ò1ö¿rèZ”þÿéµÜÿÿ1ÿèŽòþÿ¿tè¤Ùþÿ1ö¿vèøßþÿé“Üÿÿ1ÿèlòþÿ1ö¿vèàßþÿé{Üÿÿ1ÿèTòþÿ¿nèjÙþÿ1ö¿vè¾ßþÿéYÜÿÿ¿èšþÿ1Ò1ö¿=èá“þÿ1Ò1ö¿=èÓ“þÿé.Üÿÿ1ÿèç™þÿ1Ò1ö¿=蹓þÿ1Ò1ö¿=è«“þÿéÜÿÿ1Ò1ö¿蘓þÿéóÛÿÿ1Ò1ö¿sè…“þÿéàÛÿÿ1Ò1ö¿tèr“þÿéÍÛÿÿ1Ò1ö¿è_“þÿéºÛÿÿ1Ò1ö¿èL“þÿé§ÛÿÿDZ"é˜ÛÿÿÇ¢"é‰Ûÿÿ1Ò1ö¿’è“þÿévÛÿÿ1Ò1ö¿‘è“þÿécÛÿÿ¿(öAè9ÏþÿéTÛÿÿD‹Uñ!E…Û…I‹EH‰ÇèHnÿÿ1Ò1ö¿èÊ’þÿé%ÛÿÿD‹5&ñ!E…ö…«I‹EH‰Çè¹mÿÿ1Ò1ö¿è›’þÿéöÚÿÿ¿èÌðþÿ1ö1Ò¿|è~’þÿòVQèÑQÿÿ1ö¿uè%ÞþÿéÀÚÿÿ¿è–ðþÿ1ö1Ò¿|èH’þÿò Qè›Qÿÿ1ö¿uèïÝþÿéŠÚÿÿ¿è`ðþÿòøPèsQÿÿ1ö¿uèÇÝþÿ1Ò1ö¿|èù‘þÿéTÚÿÿ1ö1Ò¿|èæ‘þÿ¿èðþÿò´Pè/Qÿÿ1ö¿uèƒÝþÿéÚÿÿ1Ò1ö¿ è°‘þÿé Úÿÿ1Ò1ö¿ è‘þÿéøÙÿÿ1ÿèÍþÿéìÙÿÿD‹íï!E…Ò…¿I‹EH‰Çèàlÿÿ1Ò1ö¿èb‘þÿé½Ùÿÿ1Ò1ö¿ èO‘þÿéªÙÿÿ‹ ¬ï!…É…’I‹E¾H‰Çè;sÿÿé†Ùÿÿ1Ò1ö¿ è‘þÿésÙÿÿH‹=É–!º ‰B¾ˆB1Àè(QþÿH‹=±–!D‰öèÉÐÿÿH‹5¢–!¿ èXPþÿé?Úÿÿ¿ë‰B1ÛA½èÁ‚ÿÿé—Öÿÿ1ÛE1íéÖÿÿH‹=k–!º ‰B¾ˆB1ÀI‰ÝI‰îèÄPþÿIcÇH‹=J–!·´@µBè]ÐÿÿH‹56–!¿ èìOþÿD‰|$ÇD$$éøÓÿÿM‰ü1ÛA½é%Öÿÿ¿è@þÿ雨ÿÿ¾d‰B¿èlƒþÿ¿(öAèYÿÿé}ØÿÿI‹}¾èO“þÿéQØÿÿI‹}¾è<“þÿéFýÿÿ¾O‰Bé«ãÿÿ¾˜“Bé¡ãÿÿI‹}¾è“þÿéðüÿÿI‹}¾è“þÿéHûÿÿI‹}¾èï’þÿé2þÿÿI‹}¾èÜ’þÿé_þÿÿI‹}¾èÉ’þÿé5òÿÿI‹}¾è¶’þÿéAòÿÿ¾È“B¿袂þÿéãÛÿÿI‹}èôlÿÿé·êÿÿf.„DAWL=§Œ!AVAUATA‰þUH-žŒ!SI‰õI‰ÔL)ýHƒìHÁýèJþÿH…ít"1Û„I‹ßHƒÃL‰âL‰îD‰÷ÿÐH9ÝuèHƒÄ[]A\A]A^A_Ãf„óÃHƒìHƒÄÃ---Program done, press RETURN--- ---Immediate exit to system, due to a fatal error. floating point exception, cannot proceed.segmentation fault, cannot proceed.keyboard interrupt, cannot proceed.received signal HANGUP, cannot proceed.received signal QUIT, cannot proceed.received signal ABORT, cannot proceed.Can't malloc %d bytes of memory import __END_OF_CURRENT_IMPORT import __IGNORE_NESTED_IMPORTS cannot bind a program when called interactivelywill not overwrite '%s' with '%s'could not open '%s' for reading: %scould not open '%s' for writing: %sLine %4d, Address %p: %-*s (lib %s, ptr %p, tag 0x%x%s) Could not read from end of embedded programNext line from end of embbeded program to be processed is: '%s'need a string as a function nameexpecting the name of a string function (not '%s')expecting the name of a numeric function (not '%s')Couldn't open '%s' to check, if it is bound: %sCould not read length of name of embedded programLength of name of embedded program is %dCould not read name of embedded programName of embedded program is '%s'Could not read length of embedded programLength of embedded program is %dDumping the embedded program, that will be executed:End of program, that will be executed---Press RETURN to continue with its parsing: yabasic 2.78.5, built on x86_64-unknown-linux-gnu Usage: yabasic [OPTIONS] [FILENAME [ARGUMENTS]] FILENAME : file, which contains the yabasic program; omit it to type in your program on the fly (terminated by a double newline) ARGUMENTS : strings, that are available from within the yabasic program --help : print this message --version : show version of yabasic -i,-infolevel [dnwefb] : set infolevel to debug,note,warning,error,fatal or bison -e,--execute COMMANDS : execute yabasic COMMANDS right away --bind BOUND : bind interpreter with FILENAME into BOUND --geometry x+y : position graphic window at x,y --fg,--bg COL : specify fore/background color of graphic window --display DISP : display, where window will show up --font FONT : font for graphic window --docu NAME : print embedded docu of program or library --check : check for possible compatibility problems -- : pass any subsequent words as arguments to yabasic --librarypath PATH : directory to search libraries not found in current dir (default %s) no infolevel specified (type 'yabasic --help' for help)there's no infolevel '%s' (type 'yabasic --help' for help)no foreground colour specified (type 'yabasic --help' for help)no background colour specified (-h for help)no geometry string specified (-h for help)name of bound program to be written is missingno commands specified (-h for help)no library path specified (-h for help)no display name specified (-h for help)no font specified (-h for help)no filename specified (-h for help)unknown or ambiguous option '%s' (type 'yabasic --help' for help)This is yabasic 2.78.5, compiled on x86_64-unknown-linux-gnu at Mon Apr 2 22:11:46 2018, configured at Sun Apr 1 14:49:49 UTC 2018command %d has no description (command after %s) This is yabasic version 2.78.5, compiled on x86_64-unknown-linux-gnu at Mon Apr 2 22:11:46 2018 Copyright 1995-2018 by Marc Ihm, according to the MIT License Enter your program and type RETURN twice when done. Your program will execute immediately and cannot be saved;create your program with an external editor, if you want to keep it.Type 'man yabasic' or see the file yabasic.htm for more information,or go to www.yabasic.de for online resources. read %d line(s) and generated %d command(s)Successfully bound '%s' and '%s' into '%s'Could not bind '%s' and '%s' into '%s'---Program parsed, press RETURN to continue with its execution: ---End of embbedded documentation, press RETURN Command %s (%d, right before '%s') not implementedProgram stopped due to an errorProgram terminated due to FATAL errorCheck for possible compatibility problems done Program will not be executed, %d possible problem(s) reported %d debug(s), %d note(s), %d warning(s), %d error(s)compilation time %g second(s), execution %g---Fatal---Error---Warning---Note---Debug---Dump---Info in %s, line %d: %s %s Illegal %d %n%s %s (%s) %n%s %s %n'%s' %ngoto%n%s()%nARRAY()%n'%s'%n%g%nlabel%nretadd%nretaddcall%nfree%nroot%nswitch_string%nswitch_number%nunknown%n;+%d%n import main import __END_OF_ALL_IMPORTS rbwbbinding %s and %s into %s import %s end rem %08d rem %s rem %02d __YaBaSiC_MaGiC_CoOkIe__Dumped to '%s'Illegal command type %dCouldn't seek within '%s': %screating@subroutine '%s' not definedmain.docu$FATALINFODUMPWARNINGNOTEDEBUGDEBUG+BISONinter_path is not set !Could not read infolevelSet infolevel to %s PATHcommand linestandard input -version-help-?Available OPTIONS: -check-infoleveldebugnotefatalbison-fg-foreground-bg-background-geometry-bind-execute-librarypath-display-font-doc-doc_-docu-docu_could not open '%s': %sYabasiclbyabos$unixFIRST_COMMANDFINDNOPEXCEPTIONcLINK_SUBRTOKEN2TOKENALT2SPLIT2SPLITALT2QGOTOQGOSUBQCALLRETURN_FROM_GOSUBRETURN_FROM_CALLCHECK_RETURN_VALUESWAPDECIDEANDSHORTORSHORTSKIPPERRESETSKIPONCEEND_FUNCTIONDOARRAYDBLADDDBLMINDBLMULDBLDIVDBLPOWNEGATEPUSHDBLSYMREQUIRECLEARREFSPUSHSYMLISTPOPSYMLISTMAKELOCALCOUNT_PARAMSMAKESTATICARRAYLINKPUSHARRAYREFARRAYDIMENSIONARRAYSIZEUSER_FUNCTIONSTRINGFUNCTION_OR_ARRAYPUSHFREEPOPDBLSYMPOPPUSHDBLPOKEFILESTREQSTRNESTRLTSTRLESTRGTSTRGEPUSHSTRSYMPOPSTRSYMPUSHSTRCONCATPUSHSTRPTRCHANGESTRINGQRESTOREREADDATAONESTRINGCHECKOPENCHECKSEEKEXECUTE$SEEK2cPUSHSTREAMcPOPSTREAMMOVEMOVEORIGINCLEARSCROPENWINGCOLOURGCOLOUR2GBACKCOLOURGBACKCOLOUR2TEXT1TEXT2TEXT3CLOSEWINCLEARWINOPENPRNCLOSEPRNTESTEOFDUPLICATESTARTFORFORCHECKFORINCREMENTBEGIN_SWITCH_MARKEND_SWITCH_MARKBEGIN_LOOP_MARKEND_LOOP_MARKSWITCH_COMPARENEXT_CASENEXT_CASE_HEREBREAK_MULTIBREAK_HERECONTINUE_HEREPOP_MULTICHKPROMPT???leftrightdelinshomef0f1f2f3f4f5f6f7f8f9f10f11f12f13f14f15f16f17f18f19f20f21f22f23f24backspacescrndownscrnupenteresctabcalling parser/compilerCouldn't parse programexecuting---Press RETURN to continue skipping---No embbeded documentationProgram ended normally.Program ended with a warningProgram not executedpa@°b@hb@àb@Èb@ðb@ b@hf@Hf@ f@f@ f@àe@Àe@ e@€e@`e@€f@€f@€f@@e@°d@Àg@–g@€g@¢g@Àg@Àg@®g@Àg@hg@Àg@Àg@tg@î{@ã{@¹{@®{@£{@˜{@z@Ä{@ON@ON@U@U@U@U@ìT@ÝT@²T@ˆT@lT@[T@ON@=T@!T@T@T@éS@ÍS@±S@•S@•S@yS@]S@ŠX@nX@RX@6X@X@X@þW@þW@âW@âW@þW@þW@âW@âW@ÆW@ªW@ŽW@rW@VW@ON@:W@W@ON@ON@W@ON@ON@ON@ON@æV@æV@æV@æV@æV@ÊV@®V@V@qV@UV@9V@V@ûU@ßU@ÃU@U@U@§U@‹U@ìT@ON@oU@ON@^U@^U@@U@$U@ÑQ@µQ@ON@™Q@™Q@™Q@}Q@}Q@}Q@}Q@}Q@}Q@aQ@aQ@aQ@aQ@aQ@aQ@EQ@)Q@ Q@ñP@ÕP@¹P@P@P@eP@IP@IP@)P@ P@ON@ñO@ÕO@ÕO@·O@›O@O@cO@cO@GO@)O@ O@íN@ÏN@³N@—N@CN@{N@AS@%S@ S@íR@ÑR@ÑR@ÑR@µR@™R@}R@aR@AR@%R@ R@ R@ R@ R@íQ@_N@2N@N@YJ@YJ@ N@öM@öM@globbing '%s' on '%s'0123456789abcdefNot a base-%d number: '%s'array '%s()' is not definedMB%d%c+%d:%04d,%04d%u.%u%c%nfeEgG%u.%c%n0123456789'%s' is not a valid format%lfcan't convert %g to character%w-%m-%d-%Y-%a-%b%H-%M-%S-%dcouldn't execute '%s'winwidthwinheightfontheightscreenheightscreenwidthargument2.78.5isboundsecondsrunninginvalid peekunknowntextalignwindoworiginprogram_file_nameprogram_namelibraryenvironmentstream %d not openeddumpswitching infolevel to '%c'invalid infolevelstdoutrandom_seed__assert_stack_sizeinvalid poke: '%s'can't find label '%s'run out of data itemslogical shortcut takenCannot convert base-%d numbersonly one dimensional arrays alloweddon't use quotes when peeking into a filestream %d not open for readingfunction called but not implementedassertion failed for number of entries on stack; expected = %d, actual = %ddon't use quotes when poking into fileStream %d not open for writingstream poke out of byte range (0..255)type of READ and DATA don't matchmixing strings and numbers in a single switch statement is not allowed«ž@pž@ ž@†¡@é@¿@•@‡@d@N@8@"@ @öœ@àœ@x›@›@öŸ@[Ÿ@Ÿ@½ž@p¡@EŸ@P¡@áš@†š@wš@´š@^š@1š@š@ë™@¹™@‡™@o™@¡™@˜@ì˜@š˜@<™@0˜@½—@u—@†¡@[—@?—@#—@—@á–@À–@á•@¸•@{•@•@C–@–@©–@•@z”@S”@†¡@.”@µ“@1“@C–@†¡@“@Æ’@Õ©@#ª@ª@Aª@Aª@Aª@Aª@Aª@Aª@Aª@ª@Aª@Aª@Aª@Aª@Aª@Aª@Aª@Aª@2ª@@°@`°@ˆ°@¨°@°@Я@²@±@@²@p²@б@ø±@à?€ÿÿÿÏA$@ð?𿀄.Aào@€ÿÿÿÿÿÿÿneed to call 'clear screen' firststream %d not open for writing or printinginvalid stream: %d (can handle only streams from 1 to %d)seek mode '%s' is none of begin,end,herecould not position stream %d to byte %dpopping %d from stack, switching to itpushing %d on stack, switching to %dunknown foreground colour: '%s'unknown background colour: '%s'waiting for input failed %s%ld%s%g/usr/bin/lprinvalid stream number %d'%s' is not a valid filemodestream %d already closedbeginherestream %d not openblackwhitebluegreenyellowcyanmagentaillegal screen string%c:%s:%s,%c:???:???,`»@p»@p»@p»@p»@P»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@@»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@0»@p»@p»@p»@p»@ »@»@p»@p»@p»@»@p»@p»@p»@p»@p»@p»@p»@ðº@p»@p»@p»@àº@p»@к@p»@Ⱥ@p»@Hº@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@à¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@À@¿@¿@¿@¿@`À@ðÀ@ ¿@{®Gáz„?àCàÃtransforming (%g,%g) into (%g,%g)could not load font '%s', trying 'fixed' insteadCould not get any TrueColor visualCreating a %d bit True Color mapwith %d, %d and %d bits for red, green and blue respectivelyCould not find foreground color '%s' Could not find background color '%s' couldn't create backing pixmaparguments to command colour must be between 0 and 255 (not %d,%d,%d)string argument to command colour must be three numbers between 0 and 255, separated by commas (not '%s')%g %g %g %g %g %g (%c) (%c) TRI Found two possible alignments: '%s' and '%s'There should be a specification for a text alignment (e.g. 'ct')The Quick Brown Fox Jumped Over The Lazy Dog 0123456789/Helvetica findfont setfont newpath 0 0 moveto (%s) false charpath flattenpath pathbbox 3 -1 roll pop pop sub abs %g exch div /Helvetica findfont exch scalefont setfont Invalid mode for bitblit: '%s', only 'solid' and 'transparent' are allowedInvalid bitmap (must start with 'rgb X,Y:', where X and Y are >0)showpage grestore %%%%Trailer /tmp/yabasic-postscript-output-XXXXXXcould not open file '%s' for printing: %s/CLYN {(y) eq {1 setgray} {rgb /r get rgb /g get rgb /b get setrgbcolor} ifelse} def /DO {CLYN N M 0 %g RL %g 0 RL 0 %g RL closepath fill (n) CLYN} def /LI {CLYN N M L stroke (n) CLYN} def /CI {mark 6 1 roll cir /fi 3 -1 roll put N cir /x get cir /y get cir /r get 0 360 arc closepath cir /fi get (y) eq {fill} {stroke} ifelse (n) CLYN cleartomark} def /AT {mark 5 1 roll txt /txt 3 -1 roll put N txt /x get txt /y get M txt /txt get false charpath flattenpath pathbbox txt /xa get (c) eq {2 div sub} if txt /xa get (l) eq {pop} if txt /xa get (r) eq {sub} if txt /txt get show cleartomark /RE {mark 7 1 roll rec /fi 3 -1 roll put N rec /x1 get rec /y1 get M rec /x1 get rec /y2 get L rec /x2 get rec /y2 get L rec /x2 get rec /y1 get L rec /x1 get rec /y1 get L closepath rec /fi get (y) eq {fill} {stroke} ifelse /TRI {mark 9 1 roll tri /fi 3 -1 roll put N tri /x1 get tri /y1 get M tri /x2 get tri /y2 get L tri /x3 get tri /y3 get L closepath tri /fi get (y) eq {fill} {stroke} ifelse fixedcould not get itCould not change font to '%s'%02x%02x%02x6x10Window already openwinheight less than 1 pixelwinwidth less than 1 pixelcould not open display: %syabasicCould not create windowcouldn't fork childGot no window to draw%g %g (%c) DO %g %g %g %g (%c) LI %d,%d,%drgb /r %g put rgb /g %g put rgb /b %g put (n) CLYN %g %g %g (%c) (%c) CI clrctbamong the last two arguments%g %g (%c) (%s) AT Got no window to clearshowpage lcrtbcinvalid window origin%g %g %g %g (%c) (%c) RE Cannot bitblit to printersolidtransparentrgb %d,%d:%nCouldn't get bits from windowInvalid bitmaprgb %d,%d:lpr %scouldn't print '%s'Got no window to close%%!PS-Adobe-1.0 %%%%Title: %s grafic %%%%BoundingBox: 0 0 %i %i %%%%DocumentFonts: Helvetica %%%%Creator: yabasic %%%%Pages: (atend) %%%%EndComments gsave /txt 4 dict def /rec 6 dict def /tri 8 dict def /cir 5 dict def /rgb 3 dict def rgb /r 0 put rgb /g 0 put rgb /b 0 put 0 setgray /M {moveto} def /RL {rlineto} def /L {lineto} def /N {newpath} def /S {stroke} def cir /cl 3 -1 roll put cir /r 3 -1 roll put cir /x 3 -1 roll put cir /y 3 -1 roll put cir /cl get (y) CLYN txt /xa 3 -1 roll put txt /y 3 -1 roll put txt /x 3 -1 roll put pop exch pop exch sub txt /x get exch txt /y get M } def rec /cl 3 -1 roll put rec /y2 3 -1 roll put rec /x2 3 -1 roll put rec /y1 3 -1 roll put rec /x1 3 -1 roll put rec /cl get CLYN tri /cl 3 -1 roll put tri /y3 3 -1 roll put tri /x3 3 -1 roll put tri /y2 3 -1 roll put tri /x2 3 -1 roll put tri /y1 3 -1 roll put tri /x1 3 -1 roll put tri /cl get CLYN 30 30 translate %g setlinewidth MB%dd+%d:%04d,%04dMB%du+%d:%04d,%04dkey%xMBÍA°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°AHA8A(AAXAèAØAÈA˜AxAhA¸A¨Aè AØ AÈ A¸ A¨ A˜ Aˆ Ax Ah AX AH A AøAˆA8 A( A Aø A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°AØA8!AØA°A!A°A°A°A°A!AA°A°A°AøA°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A(!A#(ÿÿ&ÿÿÿÿÿÿÿÿÿÿÿÿÿ'ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ%$ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ&ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ  !"ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿØ£p= —@ð…@…ëQ¸…ñ?ìQ8?linking symbol '%s' to '%s'removing linked symbol '%s'removing string symbol '%s'removing array symbol '%s()'removing numeric symbol '%s'created local symbol %s%screated global symbol %s%shead of symbol stackroot of symbol stackNothing to swap on stack !Popped too much.expected '%s' but found '%s'***%dinvalid pushdblsymreading symbol '%s'writing symbol '%s'creating dummy arraystring arraynumeric arraysomething strangenothingDivision by zero, set to %gresult is not a real numbermore than 10 indicesindex %d (=%d) out of rangex"A"A¨"Aè"A#A@#AP#A#AØ#Að#A $A8$A`$A("AP"A7A7A 7AØ6A6ADA÷CA×CA­CA+DAremoved symbol list with %d symbolsremoved references from %d symbolsfound symbol '%s%s', linked to %s after searching %d symbol(s) in %d stack(s)found symbol '%s%s' after searching %d symbol(s) in %d stack(s)static variable '%s' already defined within this subroutine'%s()' already defined within this subroutinecreating 0-dimensional dummy array '%s()'invalid subroutine call: %s expected, %s suppliedonly numerical indices allowed for arraysarray '%s()' conflicts with user subroutinecannot change dimension of '%s()' from %d to %darray index %d is less or equal zeroonly indices between 1 and %d allowed'%s()' is neither array nor subroutinearray parameter '%s()' has not been supplied%d indices supplied, %d expected for '%s()'ÿÿÿÿÿÿïa stringa numbersubroutine returns number %gRETURN without GOSUBnumparamsExecuting in:sub %s() called in %s,%dmain programno more switch ids to popduplicate subroutine '%s'converting '%s' to '%s'GOTO into a switch-statementsubroutinelabelcan't find %s '%s'duplicate %s '%s'(no command skipped)subroutine returns %s but should return %ssubroutine returns string '%s'subroutine returns something strange (%d)expecting only string or number on stackRETURN from a subroutine without CALLlocal variable '%s' already defined within this subroutinemore than 100 nested switch statementsnot in library, will not create link to subroutineGOTO out of multiple switch-statementsGOTO between switch-statementswhile trying to load pop_multi; preceding command is rather '%s'loading previous pop_multi-command with %dinvalid number of levels to break: %d; only 1,2 or 3 are allowedbreak has left program (loop_nesting=%d, switch_nesting=%d)continue has left program (loop_nesting=%d)search for next case has left program (loop_nesting=%d, switch_nesting=%d)bad buffer in yy_scan_bytes()%s at %n0x%02xmain.yab "'`invalid library name 'main'\/could not open library '%s'__END_OF_ALL_IMPORTS__END_OF_CURRENT_IMPORT__IGNORE_NESTED_IMPORTSimporting library '%s'closing file '%s' %lgflex scanner jammedinput in flex scanner failedout of dynamic memory in yyensure_buffer_stack()out of dynamic memory in yy_create_buffer()out of dynamic memory in yy_scan_buffer()out of dynamic memory in yy_scan_bytes()library name '%s' contains '.'End of library '%s', continue with '%s', include depth is now %dEncountered special import __END_OF_ALL_IMPORTSEncountered special import __END_OF_CURRENT_IMPORTEncountered special import __IGNORE_NESTED_IMPORTSCould not import '%s': nested too deep (%d)Cannot import more than %d librarieslibrary '%s' has already been importedout of dynamic memory in yylex()short-if has changed in version 2.71invalid import statement; please check documentation.fatal flex scanner internal error--end of buffer missedinput buffer overflow, can't enlarge buffer because scanner uses REJECTout of dynamic memory in yy_get_next_buffer()fatal flex scanner internal error--no action foundwAkxA$xAÑwACwA¢€A€A€AA;oA;oA~A|A­†AJ†Av…Aß„A„A3„AåƒA¤ƒAcƒA"ƒAá‚A ‚A_‚A‚AÝAœA¿ A~ A= AüŸA»ŸAzŸA9ŸAøžA·žAvžA5žAôA³ArA1AðœA¯œAnœA-œAì›A«›Aj›A)›AèšA§šAfšA%šAˆA͇AŒ‡AK‡A ‡Af¯A%¯Aä®Aä™A£™Ab™A!™Aà˜AŸ˜A^˜A˜A4®Aó­A²­Aq­A0­Aï¬A®¬Am¬A,¬Aë«Aª«Ai«A(«AçªA¦ªAeªA$ªAã©A¢©Aa©A ©AߨAž¨A]¨A¨AÛ§Aš§AY§A§AצA–¦AU¦A¦AÓ¥A’¥AQ¥A¥AϤAޤAM¤A ¤AË£AŠ£AI£A£AÇ¢A†¢AE¢A¢AáA‚¡AA¡A¡A(vAçuA¦uAXuAuAÖtA•tATtAtAÒsA‘sAPsAsAÎrArALrA rAÊqA‰qAHqAqAÆpA…pADpApAÆoAŒoA.AíA¬AkA*AéŽA¨ŽAgŽA&ŽAåA¤AcA"AáŒA ŒA_ŒAŒAÝ‹Aœ‹A[‹A‹AÙŠA˜ŠAWŠAŠAÕ‰A”‰AS‰A‰AшAˆAOˆA@”Aÿ“A¾“A}“A<“Aû’Aº’Ay’A8’A÷‘A¶‘Au‘A4‘AóA¸AoAÁ—A×–AŠ–A$—AB–A¤•A[•A”A®A€yAÂxAivAivAivAivAivAª%!¹/%?!?@/@M#"!s/M#"!s¹a!!1#"a§~1"!"/}!$Û3!a±!$#"1S"3µ"6$6S'|$$LaS6'·q1'(qµ;4$'(§N$$')S6N·()§„'C;(„'D(DC'DF)N))(3¸F¶º.(GOG(.C´O)N)G)³P<¸FRºP..R.O²QPWRGTQ<RWZ®T..Z.O=TU PVRQU« YRV[·XW^YZU[·X=^TU> © QV X¨ =V ‚W8YZ[U\‚^_5U> \ _V `X 4V &\`Y][lb&^‚\]`lb`&_c&fl&bdc\f&]]]d&‚\]e`kb`&_de&kl&bcf¹&]]]e&*¹]*gbi*edkg*im*cf*hjnme *hjn*g i*ek*hp*h*+»jpmhno+»xygior+xys+hr+hsjvmhnp++voox+zsr+tys+zsstuvp++,zutoox},srzÃys}uss,Ã,vu,Æ,zut,,Æ,,z,€,|}u,€,|u,{,u,,€{,,,~,-}ƒW-{~--ƒ||-ˆ-†€{ƒˆ†~-w…W-{--w…||-‡†-0ˆŒw{‡ƒw0~Œ”…X­w­0”0w00†­ˆ”‹wŒ‡0wÍ‹…ÐXwÒÍ0ÔÐ0wÒ00Ô­”Œ‡0;;‹;;;;;;;;;;;;;;;;;;;;ŠŽ‹•ŠŽ‘•×Y’‘ŽŠ×;‰’Š–•؉–‘؉Y‰‰ŽŠ’‰Š‰•‰‰‰–‘—“š‰‰‰™—“š˜’‰™‰“˜‰‰“‰–›Z™—šž›œ“Ÿ˜ž œŸ¢“¡ “˜›¢Z¡™—šœ£Ÿ“ž˜k£ œ¡¤¥¢¦m˜›º¤¥¦£ÅœºŸžÅk ºœ¥¡¸¢¤¼màÅæ¸¦î¼£àïæòîö÷ïºò¥ö÷¤½¼Å¸¦±±½±±±±±±±±±±±±±±±±±±±±¼½¸¾¿ÀÂÁÄÉ̾¿ÀÂÁÄÉÌÇÂıÁ½Ç¾ÈÀÊË¿ÎÈÇÏÊËÉÎÌÈÏÓÂÄÁÓ¾ÏÀÑÏ¿ÓÊÕËÇÑÉÙÌÕÎÈÚÑÙÛÖÚÏÕÖÛÏÕÊÓËÖÖÜÚÞÛÝÎÙáÜÑÞßÝäáÖøÕßåäÕÓâøáåÚãÛâÙÝÜÞãßçâÖéèãçäåêéáèñâêíÝÜÞñßùèíâëçìñùãäåëìéðóâôêðëóìôèíõçñúðûõôéüúûêóüýëþìõíÿýþðÿôúóüõþÿ ú  ü  þÿ                !" !"#$#%'¶(¶$!%'()"$&#%')+&(¶*¶!+,&)*,"$#&%'.-/0(1.*-/0&)1567,8-/&567.89:;=>*?9:0;=>@?B,C9-/@IB.CDE6FIG>?DE0FGJHKBO9DJHKCMOF6GMN>?EHPEMNOSVBQRDSVCKRQFNGQMETHEWPROUTQWZSPUKPQZXNQMY[X\]PRTY[W\]SPX_UPa^Y\b_c[a^bcTW^deXUdeY\fga[hifgcjhbi^lknjdelknofapqiocpnbqrltpdekrtfsuvwixysuvnwrxylzpsk{xz~w{y€z~vr€„~‚sƒ„{x‚†wƒ…y‡z†v…€‡„~ˆ†{‰Š‚ˆ…‹ƒ‰ŠŒŽ‹‘€Œ„Ž‘’†ˆ‚‹’…ƒ‰“”—•–Ž˜“”—•–™˜šˆœ‹™›š‰œž›ŸŽ•–ž Ÿ£™¥¢› ¤£šž¥¢¤§¨¦•–Ÿ ¢§¨¦™©£¤›š©ž¢¦ª¤«­¬Ÿª ¢«­¬¯²£³¤´»¯²¢³¦´¤»¼«½ª¬²¾¼³½¿¯À¾ÁÃÄ¿ÀÂÁÃÄūƪ¬Ç²ÅÁ³Æ¯ÈǾÊÉÌ¿ÈÍÂÃÊÉÌÍÎÐÑÅÁÒÎÏÐѾҿÏÔÂÃÉÕÖÔÏ×ÕÖÅÑØÙÐ×ÏÔØÙÜÝßÉÏÏÜÝßÏÖÕ×ÑàÞÐØÏáÔàÞáâÏÏÝÜßãâÖÕ×äåæãØÞçèäåæáçèéÝÜßêãçéìïðäêÞíìïðñòáíéèñòóãêçøôíäóùúöøôû÷üùúöéèû÷üýêþøýíôöþó÷ÿ ùý  ÿ    ø ô ö óþ÷ ùýÿ  þÿ  ! #%!&#%&!()*+%-(/)*+0-/103!21436%-204)7689?A7B189?A3CBF7-DC0)AF2DE1GH9B3DEIGHJ7KCILAJ2KGMLOEP9BMQDOIPRUQCVS\RUOMGVS\QE]^_RVLeI]^_`ea``\OMSa`SQ_dRVbcf]^dghbcfa\ghSi`Scb_ijdop]^fqjroptaqvrw`txcbviwudxrufuyjzq{u|yz€{|i‚€xyr„‚…jq|„‡…†zŠ€‡Ž†‹„xŠyŒŽ‹Œ|†z‡‹Œ€’‘Ž„’“”•‘—’“”•–†—‡˜‹Œ–™”Ž˜‘š™›–š›š—”˜‘™–š˜™žžžžžžŸŸŸŸŸŸ      ¡¡¡¡¢¢¢¢¢¢££££££¤¤¤¤¤¥¥¥¥¥¦¦¦¦¦¨¨¨©©©«««««¬¬¬¬¬­­œœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœ   !"#$%%&'()*%+,-./01%%2% !"#$%&'()*%+,-./01%%3@CA4F5GHI¡KKDK6KDLL@LA@LAK_KKi`s LaLLjtDbKkDKlKpmL¶‰L_Lni`o ˆaNOjKbÛ§kÒ±lLPpm¦QRSKn¨oFq­LNOKÛrs±Ò½DLPK¦QRSKyKLWKqLzL§Krs{KT½DLU|LV¨KKyCWW}XLLz³~³D{´CT·€U|2VDKWK}XKFKG~L:DL´L·€D´YKXDKZ[L\žL]Ÿ¸:2K^¹;K»DKLYX¼LK®LZ[\žL]Ÿ¸Y¾K^K¹;K»ºL¬LK¼LKKKÃKLÆ¿LLLYL¾ÀZcªdeºÁfĨg=ÂhKÃ®ÅÆÇ¿KLÎK¬ÀZcLdeLÁfKÄgªÂhKÈLÅKÇKKLÎÉLÐLLÑtJÏKuKá<vÓKLÈLwÊËÌLxÉÍKÐKÔÑtÏÖLuLá<vÓÕÙKwÊËÌ×x‚LÍEƒKÔK„BØÖàL…LK†ÕÙ‡KKKL>×=‚LLLƒÚœÞ„Ø;à;…ÛK†:܇KKßLâÝãKLLKKÚ=ÞLKˆLLK‰Û:LŠÜ8LßKâÝã8拌Lœœ=äåõˆKèç‰KöéŠLêëœLKðœ拌K÷LìäåõKLèçøKöéLíêëLŽðœîAK÷ïì‘’LL“”ø•K–Ký휜LŽLîK>’ÿL“”œ•K–—ýKk˜ùL™šœLûü›>KœKœÿœúLœLþ—KKk˜ùœ™šLLûü›KœKKñúLòLþLKlFó­¡œLœ¢œô£¤DKñ¥òKœLKlóKL¡KœL¢ôL£¤LDœœ¥°±°°°°°°°°°°°°°°°°°°°°KKœKKœKLLKLLKœLKmLœKLL°KLœKKLœœLLœm œœœœ œ   KKKœ KLLLKœ Lœ L  Knœ#K $KLKKLœ!LKLœLKKœL"%LnL# $&K*œ)(!}L+œ',KK-K~"%KLLœL.K&L*œ)(œL}+6'0,K-/K~K@`L1KL.LKLœKLKmœLœ6L0LL/œKœ7@51°±L°°°°°°°°°°°°°°°°°°°°785KKKK<KKKLLLLLLLLœœKœœ>?°=8L9Kœ;KK:KœLBKLLDLGœCLœL>?œ=K9Iœ;KJ:LEKFBLœDKGLHCKKœLKœPœLINKLJOEMFQLKTKUKHSKLKLKLKœLRKNLKLOMKLZœLTKULSœWVXLYœK[œRKœK]L^_KLZLœKœ\LKWVXLYKbL[KaKiL]^_LœLcKœK\KdœœLeLfLbgKaœœiKhKLœkcKLœLœdœjLKeKflgKKLœLœKhLLKkKnLKœKLjLoœLrLlKpœqKœuKLKtKLnsLKLvLyowKLrœKpœqLKœuL{tœxLsœz~v|}yKwKKœKœLœLKLƒL{œxKL€zœ~‚LKKK„†KKLLLKœƒLLKœœL€KˆL‚…‡LL‰„†KœKKKœœKLŠLLL‹ŒLKˆœœ…‡ŽKL‰KKKL‘œLLŠL‹ŒK’”K“•˜ŽLœKL™Kœ‘LK–šLœœL’œ”“—•˜KœKKK™œKL›LLL–šLœKKKœKŸ—LLLžLKKœKKK›KLL LLLKLKœK£ŸLKLžLKK¢KLK¤¥LL LœL®KK¦œK£¨LLL§LL«¢¬KK¤¥©­PªLL´KK¦¸Kœœ¨LL§¯L¹«³¬º²œ©K­ªKµ»´KLœ¸LK¼¶Lœ¯·¹LK³º²œœKKLKKµ»½LL¿LL¼¶ÀK¾·KKÁÃKLKÂLLœœLœL½œœ¿ÄKKœœÀ¾œœLLÁÃKËÅÂKœKœLLÇKLÆLÄKKKLœœÈÉLLLKÊÅKœœKÌLœÇLÏÆLœœKÎÓМÈÉÍLœLÊKKKœKÌKKLLLÏLÑLLΜKМÒÍKœÖLœKÕœLלKØLœÔKKÑLKœÜKLLÒKLÙÖLœKÕLK×KœØLÔœLÞLÝœâÜßKœäœÙKKàLãKáœLLKœKLKÞKÝLâLßLKLäKåœàçLãáLœæêKëîKKèKéLLLLLKLKåœKœçLKLœæLêKKLKèìíéLLKLKïœKKñLKLðòLLœœLœKKKìíóôöLLLïKœøùñœœðLò÷ûœKúœKKKœóLôöLLLKKøKùKœKLL÷LûLúLKýKœüþKLLKÿKKLKKKLœLLœLLLKýœüþKL LÿKLœ KKK L  LLLœœLœKKœ KLKLL œœL LK  KKœœLœKLLKKLœœLLKKKœœLLLœ"KKœLLœœœL$œ!KLKK'L KKLLLœœ#LLœœK!œK%(L,K.&L KœLLLKK#L*œ)œLLœœK%+(KK-&LK5KLLKKKLLL*)LLLKœœœ+Kœ3L-01œL/2KKKK46KKLLLL@œLLœœ3œL0K1?/72œKL496Kœ8LKKKKLAœœLLLLKœ?7KœKœL9KKL8LDKELLKAKKLBCKLKLLGKœLKLœKFLDHLEILJœKKBCKKNLKLGKLLLKLFœLœHKLIKJœKKLTœLKLOLPLMKLœKK[KœLKQLLLLSKLœœKUOKLPM\LœRLœœœœKQKKV]S_LKLLKUKœ^LK\LRLaœKLœK`KV]LK_LbLKKœL^KKKLLedaLLLf`KKKgjcKbLLLsœœLKKœtoedhLLifrœœKgjKKKpqLKKLLLœvoLLhKuixwrœœLKyKpqzKLKLL‚vœLKLKuƒKxwL{LsyLœKztK|K€KLKKLœLKLœLLœ{‚L„…œœKƒK|œ€‡‹LKLK†œœKŠLKLKŒ„L…KLœLKœœœL‡‹LK†ŽŠKLLK’ŒKKLKKLœKLL‘LLKLœŽKL“K–’L•Kœ”LK—œœL‘œœLœœœœœ›œœ“œ˜–™•œœ”œœš—œœœœœœœœœœœœ›œœœœœ™œœœœœœš777777999999<<<<<<??????MMMM©©©©©©««««««¯œ¯¯¯¯²œ²²²²µœµµµµ3334œ44°œ°°°°ÚœÚÚÚÚõõ œœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœžžŸŸœœœœœ œœœœœœœœœœœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœ¢£œœœ¤œ¥œœœ  œœœœ¦œœœœœœ§¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœ¢œ£œœœ¤œ¥¨œœ¦©¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ª¨©¡¡¡¡¡¡¡œ¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡«¡¡¡œœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¬œ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡­¡¡¡¡¡¡¡¡¡¡¡¡œ¡««¡¡¡œœœœœœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡œ¡¡¡¡¡¡¬¬¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡œ¡¡¡¡¡¡­¡¡¡¡¡¡¡¡¡¡¡¡œœœœœœœ¡¡¡¡¡¡œ¡œœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡œ¡¡œ¡¡¡¡œ¡œ¡¡¡¡¡¡œ¡¡¡¡œœœœœ¡œ¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡œ¡¡œœœœœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœœœ¡¡¡¡œœ¡¡¡¡¡¡¡¡œœœ¡¡œœ¡¡¡¡œœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœœœœœœœœœœœœœœœœKùéåãá› ØÕ› K› ½>²C› A› }› › uµóQ4TdcŠRx¥·Å§è)]ðW›w› ’yl—› U› ß› _› _b› › ÉÖ×ì› › › › aÁõ š27B=$@d|DgrrŒ“ Ž½Í¿Î¢~ÈÏïã°øü#‹òó_S0lÐQD]pÑŒ€˜~ ð¹óñúôý6¦÷5@<7NWRUY^dbq~ÅNU› ?› ¡› ÅùòíAš±…é¹ÙÚÛÝÜ5Þ‹Cëõßøùà¿ûÿÃÆÉ.#'7;9BŸ>OUDK¡`fdk~€t¤¨Šp«ŒŽ™­®Hzž ¥®°´µº¾ÀÃÓÅÏÖÚæßïê Ø!"&+01?@=ADMTWjXZguqzŒŠŽ‘á»›œŸ¨©«› ¬­¯¶› ¸ºÃÄÆÈÒ¿ÑÓ®âãÖí×ñí î !1-› 046DEPQTV[a`› bknq|ˆ~‰ŠŒŽšŸ«› ¤¯ª°¶º³ÃÀÅÓØÙÝâ› äòèæïþÿ  $*&-)978CPSUT› ^•_ac‡4—Õ/Öenpuy{~|€‰Œ–›š› œŸ¨±ª«¯› º¾¿ÅÊË‘ÔÕæÖåêóúÿ›  › %&16<@5:;?AJOZ\[› çw› ÜH]`afpw› €› › |‚ƒŒ’–— £œ§¢©› ­› °³› ¿ÂÃÄ› Æ› ÉÍÔÛ×Ý› àçêë› –ê 3ì› íð÷þ û      $ › ' ) - 2 8 › 3 7 ^“î:› 9 D E F T S e f b J g k l v  `› j› ‚ † ˆ l Ÿ ‘ ” ¢ ¤ ¦ ¨ …|› ­ © ¹ › » ½ Æ Ä › › Ê Ï Ô Ø Í á ç ê í î ð ñ ú ô ÿ  › K Q W ] a g m s y  |‚ † QŒ ’ ”    !"#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKL "&),/258;>ADGJMPSVY\_behknqtwz~€‚‡ˆŠŒŽ‘’““”•–——˜™›œžŸŸ ¡¢£¤¦¨©ª«¬­®¯°±²³´µ¶¸¹º»¼½¾¿ÁÂÃÄÅÆÇÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÛÜÝßàáâãäåæçèéêëìíîïðñòóôõ÷øùúûüýþÿ     !"$%&'()*+,-/013468:;=?ABCDEGHIKLMNOPQRSTUWXY[]^_abcdfgiklnoqrstuvwxy{|}~€‚ƒ„…†‡ˆ‰ŠŒŽ’“”•—˜™›œžŸ ¡¢£¤¥§¨©ª«¬®®¯°²³µ·¸º¼¾ÀÁÂÄÆÇÈÉÊËÌÍÏÐÑÒÔÖ××רÙÚÛÝÞßáãäåçèêìíîïðñòóõöøùúüýÿ    !"$&'()+-/01235678:<=>?@ABCEFHJLMNOQSTUVWXZZZZZZZ\^`abdefgijkmoprtvwxyz{}‚ƒ„…‡ˆ‰Š‹ŒŽ‘’”–—˜™šœžŸ¡£¤¦¨©ª«¬­®¯±³µ¶·¸¹»¼¼¼¼½½½¾ÀÂÃÄÆÈÉËÍÏÐÒÔÕרÚÛÜÝßàâãåçéêìîðñóõ÷øúüýþÿ         "#%'()+-.....01235789:;=>@BCDDEEFGIJKKKMOQRSTVWXY[\]]^_abcdeghijklmnprsuvwxyz||@ÒÐÑÐÑÑÅÐÑÐÑÆÐÑÆÐÑÆÈÐÑÆÐÑÇÈÐÑÆÐÑÃÐÑÂÐÑÄÐÑPÐѯÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐѽÐÑÐÑ@ÐÑÐÑ ÇÈÐÑÑÑÑÑÑÑÏÏ¾È ÈÇÈÀ¿ÁÎÍÍÍÍÍ+Í®ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ)ÍÍÍÍÍÍÍÍDÍÍÍÍÍÍÍ>ÍÍÍÍÍÍÍÍÍÍÍÍÍÍ:ÍÍ[ÍÍÍÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ*ÍÍÍÍÍÍÍÍÍÍÍÍ@  ÇÈÈ ÍŽÍÍZÍͪÍÍÍÍÍÍÍÍmÍÍÍÍÍÍÍÍÍÍ„ÍÍÍ­ÍÍSÍÍbÍÍUÍ Í]ÍÍÍÍ͈ÍÍÍ#ÍÍÍÍÍÍÍÍÍÍÍŒÍÍÍžÍ|ÍÍ͉ÍÍÍÍ“ÍÍ’ÍÍÍvÍÍ\ÍÍÍÍÍÍÍÍÍ‘ÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍ‚ÍÍÍ‹ÍÍÍÍ6ÍÍ͆ÍÍÍÍÍÍÍÍÍÍÍŸÍÍÍÍÍÍ^ÍÍ…Í͇̓ÍÍ{ÍzͬÎÍÍÍ&Í©ÎÍÍÍÍÍÍÍXÍÍÍÍ@ÍÍÍÍÍÍVÍÍÍhÍÍÍͼÍÍ4Í«ÎÍÍÍÍÍÍÍcÍÍ(ÍÍÍ–ÎÍ/ÍÍEÍÍ͵ͷÍÍÍÍWÍlÍÍ ÍÍÍÍÍÍÍÍÍGÍÍÍŠÍÍ.Í¡ÎÍÍÍHÍjÍ?ÍÍÍÍÍËÍÍÍÍwÍ1ÍÍÍÍÍÍÍ$ÍÍgÍFÍLÍÍÍÍdͳÎÍÍÍAÍCÍ"ÍÊÍÍÍÌÍÍÍÍ5ÍÍÍQÍœÍÍ=Í”Î8ÍÍÍÍÍÍxͶÎIÍÍÍÍÍTÍ ÍÍÍÍÍÍÍÍÍyͺÍÍÍÍʹθÍÍ›Î3ÍÍJÍ0ÍÍÍÍÍÍÍoÍeÍMÍÍÍÍÍBÍÍ!ÍiÍÍÍ Í¢Î͗ΙΥÍͣͤÍÍ`ÍÍpÍÍÍÍ2ÍÍRÍÍ•ÎÍšÎͰͻÎ9ÍÍ%Ͳ͹Î͘Î_ÍÍÍÍÍnÍqÎÍÍ'ÍÍÍsÎÍÍÍÍÍaÍÍ,ÍÍYÍKÍÍͱÎÍ-Í}ÍÍÍrÎ<ÍÍÎÍÍͧ̀ÍÍÍÍÍfÍÍÍNÍÍÍÍ;ÍÍÍ€ÍtÍkÍÍÍÍOÍÍuÎÍÍ€Í7ÍÍÍ ¦ÍÍÍÍÍÍÍÍͨÍÍ~ÍÍÍÍÍÍÍ-DTû! @iW‹ ¿@Stack nowtokennterm%s %s (Deleting%s Starting parse Stack size increased to %lu Entering state %d Reading a token: Now at end of input. Next token isShifting $%d = break outside loop or switchcontinue outside loopcan not return valueString not terminatednested functions not allowed'for' and 'next' do not match-> $$ =syntax errorError: discardingError: poppingmemory exhaustedCleanup: discarding lookaheadCleanup: popping$end$undefinedtFNUMtSYMBOLtSTRSYMtDOCUtDIGITStSTRINGtFORtTOtSTEPtNEXTtWHILEtWENDtREPEATtUNTILtIMPORTtGOTOtGOSUBtLABELtONtSUBtENDSUBtLOCALtSTATICtEXPORTtERRORtEXECUTEtEXECUTE2tCOMPILEtRUNTIME_CREATED_SUBtINTERRUPTtBREAKtCONTINUEtSWITCHtSENDtCASEtDEFAULTtLOOPtDOtSEPtEOPROGtIFtTHENtELSEtELSIFtENDIFtUSINGtPRINTtINPUTtRETURNtDIMtENDtEXITtATtSCREENtREVERSEtCOLOURtBACKCOLOURtANDtORtNOTtEORtNEQtLEQtGEQtLTNtGTNtEQUtPOWtREADtDATAtRESTOREtOPENtCLOSEtSEEKtTELLtAStREADINGtWRITINGtORIGINtWINDOWtDOTtLINEtCIRCLEtTRIANGLEtTEXTtCLEARtFILLtPRINTERtWAITtBELLtLETtARDIMtARSIZEtBINDtRECTtGETBITtPUTBITtGETCHARtPUTCHARtNEWtCURVEtSINtASINtCOStACOStTANtATANtEXPtLOGtSQRTtSQRtMYEOFtABStSIGtINTtFRACtMODtRANtVALtLEFTtRIGHTtMIDtLENtMINtMAXtSTRtINKEYtCHRtASCtHEXtDECtBINtUPPERtLOWERtMOUSEXtMOUSEYtMOUSEBtMOUSEMODtTRIMtLTRIMtRTRIMtINSTRtRINSTRtSYSTEMtSYSTEM2tPEEKtPEEK2tPOKEtDATEtTIMEtTOKENtTOKENALTtSPLITtSPLITALTtGLOB'-''+''*''/'UMINUS'('')'';'',''#'$acceptstatement_list$@1$@2$@3$@4$@5$@6$@7$@8clear_fill_clausestring_assignmenttoopen_clauseseek_clausestring_scalar_or_arraystring_expressionstring_function$@9$@10string_arrayrefcoordinatesconstsymbol_or_linenodimliststringfunction_or_arraycall_list$@11callscall_itemfunction_definition$@12$@13$@14endsubfunction_nameexportlocal_listlocal_itemstatic_liststatic_itemparamlistparamitemfor_loop$@15$@16$@17$@18nextstep_partnext_symbolswitch_number_or_string$@19sep_listcase_list$@20default$@21do_loop$@22while_loop$@23$@24wendrepeat_loop$@25untilif_clause$@26$@27$@28$@29endifshort_if$@30else_partelsif_part$@31$@32maybe_theninputlist$@33readlistreaditemdatalistprintlistusinginputbody$@34$@35$@36$@37$@38promptprintintrohashed_numbergoto_listgosub_listif statement starting at line %d has seen no 'endif' yetfor-loop starting at line %d has seen no 'next' yetwhile-loop starting at line %d has seen no 'wend' yetrepeat-loop starting at line %d has seen no 'until' yetdo-loop starting at line %d has seen no 'loop' yetReducing stack by rule %d (line %lu): can not import a library in a loop or an if-statementno use for 'local' outside functionsno use for 'static' outside functionsa value can only be returned from a subroutineinstr() has changed in version 2.712do not define a function in a loop or an if-statement%d end-sub(s) are missing (last at line %d)%d next(s) are missing (last at line %d)%d loop(s) are missing (last at line %d)%d wend(s) are missing (last at line %d)%d until(s) are missing (last at line %d)%d endif(s) are missing (last at line %d)p³Ap³AðÔAp³AÖÔA¿ÔAp³Ap³Ap³Ap³Ap³Ap³A«ÔA˜ÔAp³Ap³Ap³Ap³Ap³AHÔAìÓAŒÓAp³ApÓAÐÓAÓAp³AHÓAp³Ap³Ap³AþÒAßÒAÐÒA¨ÞA•ÞA‚ÞAßAãÞAöÞAØÛAÀÜA­ÜAšÜArÜAGÜA%ÜA ÜAëÛAÝAp³AùÜAp³AæÜAÓÜA*ÝAÝAp³Ap³A=ÝA¹ÛA]ÛAþÚAŸÚAp³A“ÚA„ÚAqÚA^ÚAAÚA2ÚAÚA ÚAûÙAâÙAÉÙA¶ÙA™ÙA†ÙAwÙAkÙAQÙA7ÙA$ÙAÙAþØAäØAÑØA¾ØA«ØAŸØAØA}ØAjØAWØA-ØAØAæ×AÉ×Aº×A«×Aœ×A×Az×A^×AK×A=×A*×A×A ×AýÖAîÖAßÖAÀÖA±ÖA¢ÖA“ÖA„ÖAgÖAp³Ap³AXÖAIÖA:ÖAÖAìÕAÙÕAÆÕAˆÕAkÕA§ÕAp³AVÕA?ÕA,ÕAp³AÕAÕAÿÔAéÂAÚÂAËÂA¼ÂA ÂA„ÂAuÂAfÂAWÂAHÂA9ÂA*ÂAÂA ÂAýÁAîÁAßÁAÐÁAÁÁA²ÁAŸÁAŒÁAyÁAfÁAWÁAHÁA9ÁA*ÁAÿÀAàÀAÍÀAµÀA¡ÀA‰ÀAuÀAfÀAWÀAHÀA9ÀA*ÀAÀA ÀAù¿Aæ¿AÖ¿AÀ¿Aª¿A”¿A~¿Ai¿AJ¿A;¿A,¿A¿A¿Aÿ¾Aì¾AݾAξA¿¾A°¾A¡¾A’¾Ap³Ap³Au¾AX¾Ap³AI¾A:¾A+¾A¾A ¾Aþ½Aï½Aà½AѽA½A³½A¤½A•½A†½Aw½Ah½AY½AJ½A>½A/½A ½A½A½Aó¼Aä¼AÕ¼A¸¼A©¼Aš¼A‹¼A|¼Am¼A^¼AO¼A6¼A¼A¼Aõ»AÜ»AÍ»A´»A›»AŒ»As»AZ»AK»A<»A-»A»A »AøºAåºAÒºAªºA›ºAºA€ºAqºAbºASºABºA1ºAºAAÍA+ÍAÍAñÌAÔÌA·ÌAšÌA}ÌAMÌA0ÌAjÌAp³Ap³Ap³Ap³Ap³Ap³AñËAšËA}ËAËAëÊAßÊAžÊA]ÊANÊA?ÊA0ÊA!ÊAp³Ap³AÊAêÉAµÉA€ÉAp³Ap³A`ÉACÉAÉAÍÈAp³Ap³Ap³AŒÈANÈA'ÈAÈAÓÇAžÇAÜÆAÈÆA ÆA}ÆAqÆA_ÆAp³APÆAÆAùÅAÅÅA®ÅA—ÅAp³Ap³Ap³AhÅAUÅAp³A4ÅAp³AøÄAp³AÖÄA¢ÄAfÄAÄAp³AÔÃA(ÄA˜ÃAp³AqÃA/ÃAÃAøÂAzÐApÐAp³ARÐAFÐA'ÐAÐAp³Ap³Ap³AÐAêÏAp³Ap³Ap³Ap³A×ÏAp³A¨ÏA{ÏALÏAÏAp³Ap³AöÎAÏÎA¦ÎAÎAqÎAaÎASÎACÎAp³Ap³Ap³A4ÎA%ÎAÎAÎAøÍAÊÍA¹ÍAˆÍAwÍAcÍARÍA¡ÒAÒAoÒA^ÒAEÒA-ÒAÒAäÑA¶ÑA¥ÑA}ÑAUÑA-ÑAÑAËÐA•ÐALÞAÞAàÝAªÝAp³Ap³A{ÝAu¸ALÝA´ÞA ¸A ¸AðÔA ¸AÖÔA¿ÔA ¸A ¸A ¸A ¸A ¸A ¸A«ÔA˜ÔA ¸A ¸A ¸A ¸A ¸AHÔAìÓAŒÓA ¸ApÓAÐÓAÓA ¸AHÓA ¸A ¸A ¸AþÒAßÒAÐÒA¨ÞA•ÞA‚ÞAßAãÞAöÞAØÛAÀÜA­ÜAšÜArÜAGÜA%ÜA ÜAëÛAÝA ¸AùÜA ¸AæÜAÓÜA*ÝAÝA ¸A ¸A=ÝA¹ÛA]ÛAþÚAŸÚA ¸A“ÚA„ÚAqÚA^ÚAAÚA2ÚAÚA ÚAûÙAâÙAÉÙA¶ÙA™ÙA†ÙAwÙAkÙAQÙA7ÙA$ÙAÙAþØAäØAÑØA¾ØA«ØAŸØAØA}ØAjØAWØA-ØAØAæ×AÉ×Aº×A«×Aœ×A×Az×A^×AK×A=×A*×A×A ×AýÖAîÖAßÖAÀÖA±ÖA¢ÖA“ÖA„ÖAgÖA ¸A ¸AXÖAIÖA:ÖAÖAìÕAÙÕAÆÕAˆÕAkÕA§ÕA ¸AVÕA?ÕA,ÕA ¸AÕAÕAÿÔAéÂAÚÂAËÂA¼ÂA ÂA„ÂAuÂAfÂAWÂAHÂA9ÂA*ÂAÂA ÂAýÁAîÁAßÁAÐÁAÁÁA²ÁAŸÁAŒÁAyÁAfÁAWÁAHÁA9ÁA*ÁAÿÀAàÀAÍÀAµÀA¡ÀA‰ÀAuÀAfÀAWÀAHÀA9ÀA*ÀAÀA ÀAù¿Aæ¿AÖ¿AÀ¿Aª¿A”¿A~¿Ai¿AJ¿A;¿A,¿A¿A¿Aÿ¾Aì¾AݾAξA¿¾A°¾A¡¾A’¾A ¸A ¸Au¾AX¾A ¸AI¾A:¾A+¾A¾A ¾Aþ½Aï½Aà½AѽA½A³½A¤½A•½A†½Aw½Ah½AY½AJ½A>½A/½A ½A½A½Aó¼Aä¼AÕ¼A¸¼A©¼Aš¼A‹¼A|¼Am¼A^¼AO¼A6¼A¼A¼Aõ»AÜ»AÍ»A´»A›»AŒ»As»AZ»AK»A<»A-»A»A »AøºAåºAÒºAªºA›ºAºA€ºAqºAbºASºABºA1ºAºAAÍA+ÍAÍAñÌAÔÌA·ÌAšÌA}ÌAMÌA0ÌAjÌA ¸A ¸A ¸A ¸A ¸A ¸AñËAšËA}ËAËAëÊAßÊAžÊA]ÊANÊA?ÊA0ÊA!ÊA ¸A ¸AÊAêÉAµÉA€ÉA ¸A ¸A`ÉACÉAÉAÍÈA ¸A ¸A ¸AŒÈANÈA'ÈAÈAÓÇAžÇAÜÆAÈÆA ÆA}ÆAqÆA_ÆA ¸APÆAÆAùÅAÅÅA®ÅA—ÅA ¸A ¸A ¸AhÅAUÅA ¸A4ÅA ¸AøÄA ¸AÖÄA¢ÄAfÄAÄA ¸AÔÃA(ÄA˜ÃA ¸AqÃA/ÃAÃAøÂAzÐApÐA ¸ARÐAFÐA'ÐAÐA ¸A ¸A ¸AÐAêÏA ¸A ¸A ¸A ¸A×ÏA ¸A¨ÏA{ÏALÏAÏA ¸A ¸AöÎAÏÎA¦ÎAÎAqÎAaÎASÎACÎA ¸A ¸A ¸A4ÎA%ÎAÎAÎAøÍAÊÍA¹ÍAˆÍAwÍAcÍARÍA¡ÒAÒAoÒA^ÒAEÒA-ÒAÒAäÑA¶ÑA¥ÑA}ÑAUÑA-ÑAÑAËÐA•ÐALÞAÞAàÝAªÝA ¸A ¸A{ÝAu¸ALÝA´ÞA       ¨©ª«¬ª­­­­­­­­­­­­­­­­­­®­¯­­­­­­­°­±­­­­­­­­­­­²­³­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­´´´´´µµµµµµ¶¶·····¸¸¹¹ºººººº»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»¼¼¾½¿½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½ÀÁÂÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÄÄÄÅÅÆÆÇÇÇÇÈÉËÊÌÌÌÍÍÏÐÑÎÒÒÓÓÔÔÔÔÕÕÖÖÖÖ××ØØØØÙÙÙÚÚÚÚÜÝÞßÛààááââäãååææçèçéêéìëííïðîññóòôôö÷øùõúúüûýýþÿþ            !"#(+123456:;GHIJKLRSTWXY[\]`cefz{|“–©ª­´µ·¸¼ÈÉÎÔÛãëîòõûE£E£ÜïóÆÆÆ <=>?JM^_bdhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•—˜™š›œž£º»½ÃÅÈÉ®¯£º££ºäì½79:§²º½ǽº½º½žŸÄÅÆRZ§º½RZgQ½Â 2ÂÂ8RSTYX½µ¼Èɺººg£££££º*«UVaEE½Ê˺Ê£ª££!"££½££££££££££££££££££££££££££££££££££££££££££££££££££££££££££££½º½@ABCDEŸ<=@ABCDEFžŸ ¡ÕÖרºÊʺ½æªöü£7££º½7§ ££¦¦¦££¦ÅŦ½º½ ¦¦º¦Â³ ¦¶¦Â ¶¶¹¹¹¤½º¦¦)½ºÏ¤º½ÌͤE½*ôÊʽ½½ZºÀÁÀÁ½½½½½½½½½½½½½½½½¤½ººººº½½½¤½½º½º½ºº¤º¤º¤º¤ºººººººººº¤¤º¹º¹º¤¤ººººººº°±¿¾½½½½½½½½½½½££¦££¦¤¤)å'*í,ª½£º½0 ¥¦££Êʽ½ÊÊĦOPZº½½ º¶½½£¦¦¦¤¤º½º½¬¦¶¶Ӧݤ£¤¤¦¦¦¤¤¦¦¤££¤¤¦¦¶¦¤¤¤¤¤¤¦¤¤¦¤¤¤¤¤¤¤¦¤¤¦¦¦¤¦¦¤¦¤¤¤¤¤¦¤¤¤¤¤¤¤¤¤¤¦¦¤¤¤¤¤¦¦¤¦¦¤¦¦ÆÆ½½ÊÊÖÊÊØ)ç÷/¦½¤¦¤£ºº½½  ½¤¤££¦¦¤¤½NN¦¦¦Â¦¦Ê½½½­½ÂÂÐͽ𽽽½ºZº¤¤½½Â½½½½½½½½½º½ºººÁºÁºº¦¦¤¤¤¤%&骽¦7ºº ¦¤££¦Êʽ½¦ººº½½¤¤¤¤¦¶£ ª¤¤¤¤¤¤¤¦¤¤¤¶¤¤¤¤¤¤¦¤¤¤¦¤¤¦¤¦¤¤¦¤¤¦¤¤ÆÆæ)$ø¤½£¤¦½ Êʤ¤º¦¦EEE½ÂÙÚ½*ñº½½º½½ººèê.þ9:¤½7º¤¤¤ººººº¤££¤¦ ᤦ¤¤¤¤¤¤ªª½-ý£¦£¤E¤¤ÑÚ½Þ½,ªùº½½ºªª¤ÿ*/ú¤¦¤¦*Òߪº½ *तâþ" ÓÔ )*îï S7F P E Ÿ¤EUV Ÿ£$%&#a¦/8/-*£EF799:*@ABCDE RST%&YMS SF*@ABCDEŸ9¤Ÿ¦¤c ¡*¦³­®£@ABCDE!"<=£§@ABCDEF<=@ABCDEFz{|žŸ ¡AŸCDEF'¦*Ÿ¦r ¡uXòóÊ˧žŸ ¡Q³£³£²Ÿ£žŸŸÞ¹¦¤¤¦ä域g¬­  ¦¦žŸžŸŸŸ*ÐÒ¤¦ûüýžŸ ¡Ÿ¤£¦¦¤ËžŸ ¡Ÿ@ABCDE¦žŸ ¡ô¤Ÿ¦£ÌH¤J¦þŸ£ŸŸ¤Ÿ¦¦¦¤£¦ Ÿ¤¤¦ !"#$%&'EuŸ-./01¦3Ÿ5ŸŸ¦¤Eƒ„¦Cˆ‰!ŸŸŸ¤¤¤¦¦ @ABCDEZ[\]^_`abcdŸŸ£C¤¤¦¦Ÿ¤u¦u¤š¦v£{ABCDEF¥¦<=†‡@ABCDEFCDEF“Ÿ•bŸd¤²¦¤µ£Ÿ @ABCDEŸ¨©¤Ÿz{|Ÿ¤Ÿ€‚7„Ÿ†‡ˆ¦¤OPŽ’£Ÿ•Ÿ—˜¤š¤œŸ¤£¤žŸ ¡!"Ÿ$%%&¤£žŸ ¡žŸ ¡<=@ABCDEFŸŸ£ŸŸ¤¤Ÿ¤¤9:¤££ñDEF,Ÿ£££¤W£Ÿ£<=¤£@ABCDEFŸŸ£ŸŸ¤¤T¤¤1££ŸŸ£78¤¤;*cdŸ£/£E¤££££I££££££žŸ ¡£¦|£XYZ£a£a£)£bžŸ ¡£hi£k£Fnop¦£¦££££££z{Ç}žŸ ¡£¦„££‡£££££££,£’“”£–—ÜÝ£££££Ÿ<=0£@ABCDEFö££<=££@ABCDEF£££££,)¤¦Ç¦Ç¤<=¤É@ABCDEF<=¤£@ABCDEF£Þߦ££ãä¤*+¦éꤣ££ö¦ö¦¦¦¦£¦¤ ¤¤¤$žŸ ¡£¦ã䣦¤012žŸ ¡¤¤9¤>)/¤¤£!£¤¤&NžŸ ¡ON¤¤¦¤¦žŸ ¡¦¤¤7¦¤=¤¤@££¦¤‘£)¤¤$£M)¤¤EEET¤.7¤££[-]£<=£E@ABCDEF¤¶¤$na//hÀ#&è䊡Ñÿÿ¼ÿÿÿÿÿÿÿÿÑ—«ÿÿÿÿ‘‘²ÿÿÿÿ’<=ÿÿ¹@ABCDEF<=ÿÿÿÿ@ABCDEF©ÿÿÿÿ¬ÿÿÑÿÿÿÿ¶ÿÿ¶ÿÿÿÿÿÿÿÿÛ¹ºÀÿÿÀÃÿÿÞŸ ¡ÿÿÿÿ¤ÿÿ¦ÿÿÿÿÑÿÿÑÿÿÿÿÿÿõÿÿÿÿÿÿÿÿÿÿØÿÿÿÿÿÿÿ<=ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿ¦ÿÿÿÿžŸ ¡ÿÿ()*+,ÿÿÿÿÿÿÿÿÿÿ2ÿÿ4ÿÿ6789:;<=>?@ABCDÿÿÿÿGÿÿIÿÿKÿÿÿÿÿÿOPQRSTUÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿxÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’ÿÿ<=>?ÿÿÿÿÿÿ›ÿÿÿÿÿÿÿÿÿÿÿÿJÿÿMÿÿ¨©RÿÿÿÿÿÿÿÿÿÿÿÿÿÿZÿÿÿÿÿÿ^_ÿÿÿÿbdÿÿÿÿghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£ÿÿÿÿÿÿ§bÿÿdÿÿÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•4—˜7šÿÿœÿÿÿÿÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿbÿÿdÿÿÿÿÿÿÿÿÿÿhžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿstÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿ’ÿÿ•ÿÿ—˜ÿÿš™œÿÿÿÿÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿÿÿÿÿÿÿª«ÿÿžŸ ¡±ÿÿÿÿ´¦ÿÿ·¸ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÌÿÿÎÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿ@ABCDEFÿÿåæçÿÿÿÿÿÿbÿÿdÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿŽÿÿÿÿ’ÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿ1žŸ ¡ÿÿÿÿÿÿÿÿ¦žŸ ¡ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿIÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿX¦ÿÿÿÿÿÿÿÿÿÿÿÿ`ÿÿÿÿcÿÿÿÿÿÿZÿÿÿÿÿÿÿÿÿÿÿÿÿÿbpdÿÿÿÿyz{|}ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿ<=>?ÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¸JÿÿÿÿM½<=ÿÿR@ABCDEFZÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÖhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ§ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿZÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ§ÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ§ÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£¤ÿÿÿÿ žŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ2ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ ÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJÿÿM<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿ^_ÿÿÿÿbdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžZÿÿ£ÿÿÿÿÿÿÿÿbÿÿdÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿ’ÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿÿÿÿÿÿÿÿÿÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿbÿÿdÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•ÿÿ—˜bšdœÿÿÿÿÿÿÿÿÿÿÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿÿÿ £ÿÿÿÿ ÿÿÿÿÿÿÿÿ!"#ÿÿÿÿÿÿÿÿ(ÿÿÿÿ+ÿÿÿÿÿÿÿÿÿÿ123456ÿÿÿÿÿÿ:;ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTUVWXYÿÿ[\]ÿÿÿÿ`aÿÿc<efÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ“ÿÿ –ÿÿÿÿÿÿ!"#ÿÿÿÿÿÿÿÿ()*+ÿÿÿÿÿÿÿÿÿÿ123456ÿÿÿÿÿÿ:;ÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTÿÿÿÿWXYÿÿ[\]ÿÿÿÿ`ÿÿÿÿcÿÿefÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ“ÿÿ –ÿÿÿÿÿÿ!"#ÿÿÿÿÿÿÿÿ()ÿÿ+ÿÿÿÿÿÿ/ÿÿ123456ÿÿÿÿÿÿ:;ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTÿÿÿÿWXYÿÿ[\]ÿÿÿÿ`ÿÿÿÿcÿÿefÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ“ÿÿ –ÿÿÿÿÿÿ!"#$ÿÿÿÿÿÿ()ÿÿ+ÿÿÿÿÿÿÿÿÿÿ123456ÿÿ<=:;@ABCDEFÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTÿÿÿÿWXYÿÿ[\]ÿÿÿÿ`ÿÿÿÿcÿÿef<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿ<=ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ“ÿÿÿÿ–ÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤BÊC͘'(˜à០‘`¤WXMyá9zU:´ O¼ûüÀÂÄ…U­ÔÔÔÏý’ëâìèYâY®\É\G_`µÔ¶·¹†OPQRST˜ãäå½¾ÙÚæB@C`TÚ±UºOPQRSTU÷³U´\cdÛ“snoÅÆNOPQRST  XYP€Z[\]^_`XYefZ[\]^_`456abcd[U]^_`+°™,U™›LNžç£¤‹Œ¸abcdÛB{C;qUñTUU–}”r‘sœžUUðcd¼½ª«ÊËÊËUUùŽø•¨«¬­abcdU¶ò·™œ|abcdUOPQRST²Ëabcd¦_U`óÙžŸ®UôUU³°U±¸µ¸Ëõ̾¿UÀÔÔb¡cÌÍÎÏÐÑÒÓÔÕÖÔØÙÚÛÜÞYþ/U\äåæèéåëUíÃÄU[Uç]¢ÿ>?yÔDE×UUUij HWIX_©OPQRST UUÍZ\[]U§B¨C Qp0SÅÆN3[\]^_`67XYBCZ[\]^_`]^_`NUOiUjÕÖ£PUVOPQRSTU^`@A¤U}~U¥Uƒ„…w‡U‰Š‹…¦JK‘’VW• U˜U™š§œ¨žUefÖש«ðabcd¿ÀUÂì abcdabcdXY€Z[\]^_`UU UU­FU^a”•®>^_`žþU¡dë½¾¹»UMXYeZ[\]^_`UUUUo«è®±ÊUUÑÒ²»ÕÒñòUÓ·å â!"#$%&abcd'Š(ìíî)B*C+ª,ðabcd-³õ.÷/`øùú0’123456abcd7“89:;<=>?@ÅA B  -.CDEFG XY4HZ[\]^_`AIJXYKvZ[\]^_`xƒ„ˆ‰.)±›B©C¶XY Z[\]^_`XY!Z[\]^_`"</0#$%ÔÔ'st&78(¬18¯WBXCYZbh»ktlÁÃmquÓabcdvz23w{xíîïabcdyŠö¯ÅfgqÈÚÛÜmÝÆàáqãabcdäƒþ„ÿabcd†"‡~„*+,9³´?iGLjn‰üÿvw{|}Šœ’˜¥¦Œ¶¸XYº½Z[\]^_`¾Ç¿¬þ—çïéêÉôÎÁÄÏÁHhéFM%ÌÞPmBBCCpµXY|Z[\]^_`XYZ[\]^_`ÂÄBC”ÊËBCBCabcd˜™BC§à¯XY²Z[\]^_`Âabcd<=abcdßàáâãêìîïñóõ÷øùúûüýþÿ   YZ[\]abcdST^_2MabcdRe[f]]_Ö×ghi_jØklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡Òij[]XYZ[\]^_`}~_ƒ„…‡‰Š‹‘’•˜Ï™šÐœž«òXYZ[\]^_`ij²abcd†ûý}~ƒ„…‡‰Š‹‘’[•]˜™šœ ž«ô_abcd‡#$XYZ[\]^_`Z[\]^_`456ijXYZ[\]^_`}~ƒ„…‡‰Š‹[]‘’•p˜™šœž_«öxabcd•abcdˆabcd‹IŽLi™jYZ[\]Ÿ ¡¢£}~^_ƒ„…‡‰Š‹‘’•˜™šœžabcd«ÉefÍXYÐZ[\]^_`Ñghijßklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]Òabcd ^_abcdeXYfZ[\]^_`Ághijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]Òabcdn^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]Òabcdo^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¥YZ[\]abcdp^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡ÝYZ[\]abcd}^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡çYZ[\]Þabcd^_ßabcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]abcd–^_`abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]abcd—^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]abcdÉ^_abcde[f]XYZ[\]^_`ghi_jklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ [ü]¡ijabcd_Þ}~ƒ„…‡‰Š‹‘’[•]˜™šœž«_ij}~ƒ„…‡‰Š‹‘’•˜™šiœjž«}~ƒ„…‡‰Š‹‘’•˜™šœžÎ Ùþ  !"#$%&'()”ÿ”ÿ*+,-./0”ÿ1X23Z[\]^_`456789 Ùþ ùÿùÿ abcd!"#$%&'()*+,-./0123456789 Ùþ ùÿùÿ !"#$%&'()*+,-./0123456789 Ùþ ùÿùÿXY Z[\]^_`!"#$%&'()*+,-./0123XYZ[\]^_`456XY7Z[\]^_`89abcdXYßZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXYæZ[\]^_`abcdXYéZ[\]^_`XYZ[\]^_`abcdêabcd!abcdXY&Z[\]^_`abcdXY1Z[\]^_`abcdzabcdXY¬Z[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY¹Z[\]^_`abcdXYØZ[\]^_`XYZ[\]^_`abcd[abcdjabcdXY~Z[\]^_`abcdXYZ[\]^_`abcd€abcdXYZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY‚Z[\]^_`abcdXY…Z[\]^_`XYZ[\]^_`abcdˆabcd‰abcdXY‹Z[\]^_`abcdXYŒZ[\]^_`abcdabcdXYŽZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXYZ[\]^_`abcdXYšZ[\]^_`XYZ[\]^_`abcd›abcdabcdXY Z[\]^_`abcdXYÍZ[\]^_`abcd)abcdXY:Z[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY;Z[\]^_`abcdXYBZ[\]^_`XYZ[\]^_`abcdCabcdDabcdXYEZ[\]^_`abcdXYJZ[\]^_`abcdKabcdXYNZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXYOZ[\]^_`abcdXYPZ[\]^_`XYZ[\]^_`abcdQabcdRabcdXYUZ[\]^_`abcdXYVZ[\]^_`abcdYabcdXYlZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY–Z[\]^_`abcdXYšZ[\]^_`XYZ[\]^_`abcd¤abcd­abcdXY¯Z[\]^_`abcd°abcdÐabcd×abcdæÿÿ:;úa<©ªº—=>š?@¢¢£AÜÇÈݥ̦V¿§¨´µD°óÀÜgEghkl‚ƒFQiÃÝãªèG²*rÆ‘H³-IRö‡JS»KtÇkÈÔLu·“Ñ䯨uÙÇÈÎ~5ÓÔr¼‚=¹Õº¼1ý1ýºÿ1ý1ý1ý1ý1ý1ý1ý1ý1ýGÿ1ý1ý·ÿâ1ýH1ý1ýdíþßÿ1ýòáÿ 1ýÁÿ1ý1ý1ý1ý1ý1ý1ý1ý1ý1ýX1ýV1ýÖÿ1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ýd1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ýÿ1ý1ý1ý2ý1ý1ý1ýø1ý1ý³õ1ý1ý1ý1ý1ýÊÿ1ý*1ý1ýlj>Y^ ()IU˜1=gh;mn^_(*  '½‚…ñô÷ú™›ƒÊ·¼„ +*iœ„”?>@i68|~9z€ :<Z§W\P)D3IYXop] kO¨q!"®Ã#%¬ª-.+341NMl™š‡‰.2–  [¦CH”xwEK€`©v?`_áòõøûšœ‡ËÅÇÉÆÈư²´±³¯Â¿¾ÀÁ,-KOXWVc…/0ŒŽ—{‚ƒ{z~Î4FSJabcdef%& Z§ÿ¸¹ÏÐÑÒÓÔÖ×ÙÚµÝÞÛÜàå䌑’æ¥ç¦“”ðóöù—•–˜íïî ¢¨$ª&­«,2LRj›Šˆ‰vx•s}AGQVÌÍ/056d†t57|}yTMN7aüýþ º»£ÕØßˆ‰‹âãèé랟¡¶©«PSJmŸžBR:;8E]\[lk£ ’‘wyuULtus!@ ŠŽêìQqe‹–<=9FrnlrA¤ghf¤¡“$#"oDCGm¥¢HBp× ÏÿÚÿ1ý1ý1ý1ý1ýSSS« 1ý1ý1ý …ÿ“ÿ …R1ý1ý1ýå 1ýå I1ýå å å l0SQ:‹aå  å øÿPå 1ý   `@Zbm‹Öª1ýÌÿ1ý1ý1ý1ýéþ1ý11ý1ý1ý1ý1ý1ý1ýå 1ý 1ýSÉO 1ý1ý1ý1ý1ý1ýÜ1ý1ý)GX]hå ipqrz}‹”•˜¢¤§¨©ª¬­®¯°±¶¹½¿ÁÃÉÌÎÔÖרÙÚÛäçèêëìíîïðó÷üýþÿå å 1ý·1ý1ý1ý1ý„K 1ý1ý1ý1ýå O å…å ×ÿgg­ñ´1ý1ý**1ý1ýÐ1ýå  å gÒ1ý1ý1ý1ýâ v1ýå 1ýýÿ 1ý1ýå H 1ý1ýg1ý1ýéþúÿúÿ1ý( 3"1ý1ý<å å å å  1ýg!å &å 11ý1ý1ý1ýå å å î‹yyå å å å å å å å å å å å ‹å å å å å Ê     å å å l å  å  å   9€àk       ‹ )4   ,­d       1ý1ý1ý1ýå å å å å å å å å å å 6>?1ýCDG1ýzÿFLg›w—_å O 1ý1ýå wâP1ýÚ1ý1ý«å å 1ý1ýl1ý1ý2•guïå å 1ý×ÿ1ý1ýå  1ýå ýÿå å RQST1ýÃÿå å 1ýUýÿýÿgÓ1ýgV1ý1ý1ý [1ý1ý\_ýš7`YahlmufjýÿÙ.GR~”š¸ÃvÎäú{ 1ý4ˆÿÆÿ4 º (1ýJkBv\už1ýý1ý 1ý1ý.07&'E_fxe1ý1ýMÀÿg>h1ý1ý1ýSSå å @QWÊöÿ1ýÉÿÉÿ,,1ý1ý„1ý1ýK1ý1ý1ýõ1ý1ý1ý1ýóW å kš¶ 1ý1ýå å 1ý1ýå 1ýÕ€‚„ø ã…†1ý1ý1ýå Þä1ý‘g1ý1ýš1ýå )J1ýå å å 1ý1ýggO å å å 1ý1ý1ýå å 1ýå 1ý1ýå å å 1ý1ý + 1ý’1ý1ýå å å å 1ý1ý1ý1ý1ý1ýå 1ý1ýå 1ý1ý1ý1ý1ý1ý1ýå 1ý1ýå å å 1ýå å 1ý 1ý1ý1ý1ý1ýå 1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý  1ý1ý1ý1ý1ý #1ý #1ý  1ý‘1ý–w ™1ýŸ 1ý1ýÂO 1ýå U 1ý w`ÕÕ°£¤1ý¢1ý1ý1ý1ýå å 1ý1ýy‹‹   1ýå å ¥»ç\1ýgýÿ1ý©1ýJO !,7`ª®1ý1ýMf«?q³×â¦í¯ËÌbVctsSS1ý1ý1ý1ýå $,*$å ®Ô1ýå 1ý1ý1ý1ý1ý1ý°±gg 1ý1ý g1ýå å ñå 1ý1ý1ý1ý1ý1ý1ý 1ý1ý1ýå 1ý1ý1ý1ý1ý1ýå 1ý1ý1ý 1ý1ýå 1ýå 1ý1ý 1ý1ý 1ý1ý1ý1ý1ý1ý1ý-ÏSå % iÕ¶¹Õ1ý1ý     Š1ý»¼Ð1ýM1ý1ý1ýŽ›• ¹‘šO çå 41ýÀ1ýÇÛ1ý1ý1ý1ý1ý"ËÍ1ýñå 1ý1ýå 1ý1ý1ý1ý1ý1ý*NiO 1ý å å 1ýÚ 1ý1ýO 1ýgO Ï1ý1ý*úÚàÕA*1ýO 1ý1ý1ý1ý 1ýå 1ý1ý1ý1ý *¥1ý1ýp-1ý1ý1ý1ý1ý+ŠBĉB0ŠB;ŠBAŠBIŠBQŠBWŠB_ŠBgŠBlŠBpŠBvŠB|ŠBƒŠB‰ŠB‘ŠB˜ŠB ŠB¦ŠB­ŠB´ŠB¸ŠB½ŠBÅŠBÌŠBÔŠBÜŠBãŠBìŠBöŠBÿŠB‹B‹B&‹B0‹B8‹B>‹BD‹BM‹BS‹BW‹B\‹Bd‹Bh‹Bn‹Bt‹B{‹B‚‹B‰‹B‹B—‹BŸ‹B¤‹B©‹B¯‹B³‹B»‹BÄ‹BÌ‹BØ‹BÝ‹Bá‹Bæ‹Bë‹Bð‹Bõ‹Bú‹Bÿ‹BŒB ŒBŒBŒBŒB#ŒB)ŒB0ŒB6ŒB<ŒB@ŒBIŒBRŒBZŒBbŒBgŒBmŒBuŒBŒB…ŒBŒŒB’ŒB›ŒB¡ŒB§ŒB¬ŒB³ŒB»ŒBÁŒBÇŒBÏŒB׌BàŒBéŒBîŒBõŒBúŒBBB BBBB B&B+B2B7B?@ABCDEFGHIJKLMNOPSTWWXXYZ[\]^_`abcdefghijklmnopqrstuvy|‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½ÀÁÂÅÆÉÊÍÎÏÐÓÖÙÙÜÝÞáâåæéåîïòóö÷øùüý     .3478;<AAEFIJNPOTUUYY_`dedklppuvz{{}z‚……‰Š‘Ž•–™ššž ¡¥¦©ª¬­±²³´·¸¹º»¾¿ÀÃÃÄÄÅÅÆÆÇÇÊËÎÏÐÑÒÓÔÕÖרÙÚÛÞßáâåæ§£¤ Ÿ¦ž¡¥  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œ¢H“@;$Hüüÿp8ýÿ@3õýÿX3(ýÿ0Ø/ýÿ@Ø0ýÿ˜ˆ1ýÿ°2ýÿðX4ýÿ@ ¨4ýÿX 8ýÿ˜ ¨8ýÿÀ Ø8ýÿØ ¨=ýÿ( ?ýÿˆ x@ýÿè ¸@ýÿ è@ýÿ@ Aýÿ` ¸Býÿ  ØBýÿ¸ èBýÿÐ XDýÿ (Fýÿ@ ¨Fýÿh Gýÿ€ 8Gýÿ˜ xGýÿ¸ ¸Hýÿ Iýÿ( ¨IýÿP ˜Nýÿ  ØNýÿÐ èOýÿhøOýÿ€QýÿÈXRýÿˆSýÿ`ÈSýÿ€hTýÿÀ¨Wýÿ(Yýÿ`xYýÿ€èYýÿ°ZýÿÐØ[ýÿø[ýÿ0Ø\ýÿhè]ýÿÀ(cýÿ(wýÿx˜wýÿ˜¸wýÿ°øwýÿÐx{ýÿ¨ˆ|ýÿ¨|ýÿ X}ýÿ@ˆ}ýÿhH~ýÿ¨¨~ýÿÈø~ýÿðýÿøýÿ`h€ýÿx¸ýÿ˜(‚ýÿ°xƒýÿØX„ýÿè„ýÿ((…ýÿ@¸…ýÿpx†ýÿ˜¸†ýÿÀX‡ýÿø¨ŠýÿHxŒýÿ˜˜Œýÿ¸ØŒýÿØøŒýÿøxýÿ Xýÿp¨ýÿÈ’ýÿÀH“ýÿèX—ýÿP˜ýÿˆ8šýÿðØšýÿ0(›ýÿPØ›ýÿˆ¨œýÿÈØœýÿð˜žýÿ@øžýÿ`(ŸýÿˆXŸýÿ¨xŸýÿÈ¢ýÿh¤ýÿHȤýÿ`¨¦ýÿ §ýÿ¸¨©ýÿ ˜ªýÿ8­ýÿˆ˜­ýÿ h¯ýÿи¯ýÿø(±ýÿ8¨±ýÿpȱýÿ¼ýÿ0ˆ¼ýÿHȼýÿ`X¾ýÿx¾ýÿ°8Âýÿ èÄýÿX (Éýÿ!øÌýÿX!¨Íýÿ¨!¨Òýÿ "xÓýÿH"Ôýÿ€"ÈØýÿð"¸Ýýÿx#8áýÿØ#Xáýÿø#8âýÿ $èâýÿ@$˜ìýÿ`$Xïýÿ $ˆòýÿè$èòýÿ%˜õýÿ0%ØõýÿH%(öýÿh%8øýÿ¨%ˆøýÿÀ%Èúýÿ&èúýÿ0&ˆüýÿ€&Øüýÿ˜&xýýÿ¸&ÿýÿø&8ÿýÿ 'ˆÿýÿ@'¨ÿýÿX'øÿýÿx'þÿ'Xþÿ°'xþÿÈ'¸þÿè'Øþÿ(ˆþÿ8((þÿ`(Hþÿ€(XþÿÈ(ˆþÿè(èþÿ8)þÿX)8þÿ€)Xþÿ )xþÿÐ)þÿè)ˆþÿ *¨þÿ8*( þÿp*ˆ þÿ *ø þÿÐ*( þÿø*X þÿ +˜ þÿ8+È þÿX+8þÿÀ+xþÿ ,˜þÿ@,hþÿ¨,¸þÿÐ,þÿè,Hþÿ-xþÿH-hþÿ -(þÿ¸-ˆþÿà-Øþÿ.øþÿ .hþÿ@.˜þÿX.Øþÿx.(þÿÐ.ˆþÿø.¸þÿ /èþÿH/þÿh/(þÿ€/xþÿ˜/¸þÿ°/èþÿÈ/¸þÿ0¨þÿH0X þÿp0è þÿˆ0(#þÿè0$þÿ 1ˆ$þÿH1ø$þÿ`1(%þÿx1H%þÿ1x%þÿ°1&þÿà1˜&þÿ2Ø'þÿX2è(þÿ˜2è)þÿØ2*þÿð2¸*þÿ3Ø*þÿ(3+þÿp3È+þÿ¨3h,þÿÈ3Ø,þÿð3X-þÿ4è-þÿ@4H.þÿp4ø.þÿ 4¨/þÿÀ480þÿð4Ø0þÿ85X1þÿh5x1þÿˆ5ˆ1þÿ 5˜1þÿ¸5¨1þÿÐ5¸1þÿè5È1þÿ6Ø1þÿ6è1þÿ06ø1þÿH62þÿ`62þÿx6è2þÿ 6ø2þÿ¸63þÿÐ63þÿè6h4þÿ7x5þÿH7˜5þÿh7¨8þÿ¸7H9þÿØ7˜<þÿP8ˆ€þÿ 8ø€þÿÈ88þÿè8˜þÿ9ø‚þÿ09رþÿ€9H²þÿÈ9zRx 'ýÿ*zRx $Ðóüÿà FJ w€?;*3$"D8(ýÿ¯D <\Ð(ýÿ~BŒA†D ƒF0y  ACBD f ADBLœ)ýÿKBBŒA †A(ƒF0½ (A ABBA D (A ABBF ì+ýÿC<H+ýÿiBBŒA †A(ƒD@U (A ABBK $Dx.ýÿŒAƒn Q A A là.ýÿ+DbL„ø.ýÿÐBBŽB B(ŒA0†A8ƒDP: 8C0A(B BBBA \Ôx3ýÿZBBŽG B(ŒD0†A8ƒD@´HNPCXG`L@s 8A0A(B BBBE \4x4ýÿdBBŒF †A(ƒM0‰ (C ABBG ~ (C ABBJ @ (C ABBH $”ˆ5ýÿ7AƒM N AC UA,¼ 5ýÿ0BŒA†D ƒeABì 5ýÿ)FƒNÃ< °5ýÿŸBBŒD †A(ƒJ0 (A ABBD L7ýÿDMd7ýÿ<|7ýÿfBŒA†D ƒF ABH ‚ ABC ,¼@8ýÿÍA†AƒN z FAG $ìà9ýÿxMƒBÃIƒ^Ã8:ýÿ\DS,€:ýÿ0DgD˜:ýÿ4CƒpLd¸:ýÿ:BBŒA †A(ƒD0s (F ABBH œ(D ABB´¨;ýÿYQƒt ÃK $Ôè;ýÿA†AƒN }AALüP<ýÿãBBŽB B(ŒA0†A8ƒDPs 8C0A(B BBBC ,Lð@ýÿ5BŒA†A ƒmAB\|AýÿBŽBG ŒA(†D0ƒS (D BBBK ½ (A BBBD G(A BBB4Üðøüÿ¤(BBŽE B(ŒA0†A8ƒKpxAýÿD,pAýÿBŒK†D ƒZ ABJ s CBH …FB4t8BýÿEFŒA†A ƒF@û  DABH \¬PCýÿ)BBŽE B(ŒD0†A8ƒDPÉ 8A0A(B BBBI j8E0A(B BBB  Dýÿ2Aƒh<,@Dýÿ–BŒA†D ƒo ABG N ABA Ll Dýÿ6BBŽB B(ŒA0†A8ƒI`Z 8A0A(B BBBI L¼GýÿqBBŽB B(ŒG0†A8ƒD@& 8A0A(B BBBD  ÀHýÿAAƒ,,ðHýÿiBŒA†F ƒ\AB\0IýÿAƒT<|0IýÿÊBŽBB ŒA(†A0ƒŸ (A BBBB ¼ÀJýÿAƒT4ÜÀJýÿÛBBŒA †A(ƒD0Ç(D ABBT hKýÿBBŒD †A(ƒMPiXK`_XAP{ (A ABBE K(A ABBLl Lýÿ:BBŽB B(ŒD0†A8ƒGp{ 8A0A(B BBBG d¼ QýÿüBBŽB B(ŒA0†A8ƒG`¢ 8A0A(B BBBA  8A0A(B BBBA $ ¨dýÿfD V F D ødýÿDU\ eýÿ:Iƒ[ D QÔ| eýÿ~BŽBB ŒA(†A0ƒD@Á 0A(A BBBK } 0D(A BBBP I 0D(A BBBL y 0F(A BBBE Z 0D(A BBBE a 0A(A BBBJ K 0A(A BBBE P 0A(A BBBE TT Ègýÿ A†AƒD0W DAN D AAJ p FAI ^ KAF RAA¬ €hýÿAƒTÌ €hýÿ¯DQ K J$ì iýÿ.A†AƒQ XAA< iýÿ³A†AƒD U AAC P AAF oFAT ˜iýÿXAƒM HA$t ØiýÿKA†AƒP vAAœ jýÿAƒWL¼ jýÿÖBŒA†A ƒC ABN A ABT s ABJ bAB jýÿn$ èjýÿND t H D lýÿn$\ plýÿJAƒI q AD ,„ ˜mýÿÝA†AƒI0_ AAD ´ HnýÿtƒD rAÃÔ ¸nýÿ@,ì ànýÿˆA†AƒI V AAE $@oýÿ²DR J f J $DØoýÿ4A†AƒO `AA4lðoýÿ•A†AƒK b AAO DKAL¤XpýÿJBBŽB B(ŒA0†A8ƒG€Æ 8A0A(B BBBG LôXsýÿÇBBŽB B(ŒD0†A8ƒG@S 8D0A(B BBBD DØtýÿAƒTdØtýÿ5DY C P„øtýÿAƒO$¤øtýÿyGƒn K l D HLÌPuýÿÚBBŒA †A(ƒD@i (C ABBE D (E ABBB àvýÿDAƒ^ I [,<wýÿ A†AƒD Ä AAD $lzýÿsQƒl ÃC eÃd”Xzýÿ BBŽB B(ŒA0†A8ƒDPÜ 8D0A(B BBBI T 8A0A(B BBBB 4ü~ýÿºA†AƒI g AAD vFAd4ˆ~ýÿBBŒA †A(ƒD@2 (A ABBF F (D ABBI C (A ABBA <œ@€ýÿžC†AƒM M AAH ` AAF KAAÜ €ýÿGAƒA4üЀýÿ¨A†AƒL T CAJ D AAJ <4HýÿÄA†AƒI } AAF A AAM aAA$tØýÿ(A†AƒM VAALœàýÿ¹BBŒD †A(ƒD@^ (A ABBG m (A ABBE ìPƒýÿVwM D I$ ƒýÿ-A†AƒP XAA4˜ƒýÿ"AƒP O AT¨ƒýÿAƒT4t¨ƒýÿŸA†AƒG  AAH P FAA D¬†ýÿKyŒA†A ƒ¯ÃAÆBÌs ƒ†ŒpÃÆÌX ƒ†ŒôˆýÿW< `ˆýÿàBŽBI ŒA(†A0ƒR (A BBBP LŠýÿWddHŠýÿBBŽG B(ŒA0†A8ƒDp· 8A0A(B BBBA µ 8A0A(B BBBA Ì€ŒýÿçLäXýÿeBBŽB B(ŒD0†A8ƒF€ñ 8D0A(B BBBG 4xýÿ‹,LðýÿÁA†AƒJ@Õ AAE $|‘ýÿKA†EƒJ0xAA<¤¸‘ýÿpBŒA†K ƒ¿ ABH n ABG 4äè’ýÿvBBŒC †A(ƒR@S(C ABB0“ýÿAƒTœ<0“ýÿC BŽBB ŒA(†A0ƒG°‰ 0A(A BBBA b¸EÀFÈBÐBØBàI°m¸bÀB¸A°Þ¸GÀW¸A°\¸EÀBÈDÐI°Üàœýÿiô8ýÿ5, `ýÿAƒL  AB {A<ÀžýÿAƒ[\\Àžýÿ¹A†AƒD@ìHUPcHA@c AAH S AAC ˜ AAF PHUP^HA@D¼ ¢ýÿ¦A†AƒD06 AAB j AAD S AAK ¤ˆ¤ýÿ6A†AƒD@ŠHuPBXI`LHpPFXA`U@” AAB YHuPBXI`LHpPFXA`U@b AAK bHdPBXI`LHpPFXA`U@aHdPBXI`LHpPFXA`U@T¬ ¨ýÿÅA†AƒD`1 AAG LhPpPhA`^ AAC DhPpPhA`L˜«ýÿ®BBŒA †A(ƒD0x (A DBBE D (C ABBD tTø«ýÿñBBŒA †A(ƒFpç (A ABBG dxV€^xBpsx_€exAp² (A ABBF DxN€¥xAp$Ì€°ýÿÅRh HAdYD4ô(±ýÿ›A†AƒG ] DAE D KAH l,±ýÿ§A†AƒDPX``jXBPr AAD eXn`wXAPh AAK ]Xn`‚XBPfX``iXAP„œеýÿäBBŽG B(ŒA0†A8ƒG€’ 8A0A(B BBBF ΈDVˆA€|ˆGB˜A Q€WˆEB˜D S€\$8ºýÿ~BBŽB B(ŒA0†A8ƒG€ˆHXˆA€ 8A0A(B BBBA „X½ýÿAƒT$¤X½ýÿÜHƒ\ D c̾ýÿ¬D  G Sì ¾ýÿ¡ Iƒ> Y < 0Èýÿ¸A†AƒL0X AAH ï AAG DL°Êýÿ.A†AƒG H AAE Q DAJ … FAL ,”˜ÍýÿVBŒA†D ƒKABÄÈÍýÿ©Ü`Ðýÿ4DkôˆÐýÿIDx D <¸ÐýÿIŽBB ŒA(†A0ƒø (A BBBB TˆÒýÿLDCTlÀÒýÿ9BBŽB B(ŒA0†A8ƒDP– 8D0A(B BBBG X\`HXAPĨÔýÿLܰÔýÿ›BBŽG B(ŒF0†A8ƒX@V8K0A(B BBB,ÖýÿOD8ÖýÿœDz B <d¸ÖýÿBBŒA †A(ƒF0R (D ABBI $¤Øýÿ*A†AƒG ^AAÌØýÿCAƒAì@Øýÿ DWHØýÿHAƒF$xØýÿDO<€Øýÿ;Aƒy\ Øýÿt¨Øýÿ:AƒM jA”ÈØýÿAƒ\,´ÈØýÿ¥A†AƒG a AAD $äHÙýÿ™AƒL \ AF  ÀÙýÿAƒUD, ÀÙýÿBŒA†F ƒT ABX  ABF A GBF t ˆÚýÿ"Aƒ`L” ˜ÚýÿQBŒA†F ƒt ABX S ABB A GBF }ABä ¨ÛýÿAƒU$!¨Ûýÿ*A†AƒG ^AA,!°ÛýÿAƒT,L!°ÛýÿYƒD  FÃN mAÃB ƒ|! ÜýÿŽ4”!ÝýÿrA†AƒL@’ AAF t KAH Ì!`Þýÿ4ä!hÞýÿrA†AƒG g AAF X AAF ,"°ÞýÿRA†AƒG g AAF ,L"àÞýÿiJ†AƒG vAÃAÆF ƒ†$|" ßýÿ.A†AƒQ XAA$¤"(ßýÿ+A†AƒG _AAÌ"0ßýÿ5D pä"Xßýÿ"Aƒ`d#hßýÿbBBŽB B(ŒD0†A8ƒGÀ‘ 8F0A(B BBBL ¯ 8A0A(B BBBG \l#päýÿ3BBŒA †A(ƒG0N (A ABBG k (F ABBJ a (A ABBA Ì#PåýÿAƒ]dì#PåýÿÅBBŽB B(ŒA0†A8ƒGPj 8A0A(B BBBK ù 8F0A(B BBBH $T$¸èýÿFA†AƒM tAA|$àèýÿY$”$(éýÿ%A†AƒL TAA4¼$0éýÿ0A†AƒD “ FAH D AAB Tô$(êýÿçBŒA†A ƒF0E  AABE P  AABL X  AABE L%Àêýÿ±$d%hëýÿZAƒl K A O FŒ% ëýÿKDn F R¬%ÐëýÿAƒUÌ%ÐëýÿbAƒy V Mì% ìýÿ#DZ&8ìýÿ2AƒpT$&XìýÿFBŽBE ŒA(†F0ƒD@¹ 0A(A BBBK S 0K(A BBBK $|&PíýÿRA†AƒQ |AA$¤&ˆíýÿ.A†AƒQ XAA$Ì&íýÿ.A†AƒQ XAAô&˜íýÿ-Aƒk'¨íýÿ ,' íýÿGDBD'Øíýÿ<\_\'îýÿ/Lt'îýÿÇBBŽE B(ŒD0†A8ƒG@| 8D0A(B BBBH ,Ä'˜îýÿéAƒGà` AG i AF $ô'Xïýÿ¤Aƒv I b V (àïýÿ‚\4(Xðýÿ:BBŒA †A(ƒG0Ü (D ABBN O (A ABBK ë (F ABBE 4”(8òýÿÑA†AƒN D FAE _ AAG $Ì(àòýÿxDv F W I Sô(8óýÿcD^ )óýÿ!$)¨óýÿ<)°óýÿ!Aƒ_,\)ÀóýÿŸA†AƒI ` AAC $Œ)0ôýÿvA†DƒF hAAL´)ˆôýÿ@BBŽH B(ŒD0†A8ƒOP  8A0A(B BBBD <*xõýÿBBŒD †A(ƒL0• (A ABBH <D*HöýÿBBŒD †A(ƒL0‰ (A ABBD „*÷ýÿ"œ* ÷ýÿžD z B ]¼* ÷ýÿÔ*¨÷ýÿ:Duì*ðÒüÿ½+•Óüÿ$D4+ ÷ýÿ­A†AƒD d AAD } AAA T+øýÿšAƒ‚ E $t+˜øýÿbMƒc ÃH M ÃK PÜ+àøýÿ}4´+Hùýÿ„BBŒA †A(ƒJ0m(A ABB,ì+ ùýÿXBŒA†D ƒC ABA ,,Ðùýÿ¯IŒA†D ƒd AFw L,Púýÿ¬Jƒ‰Ã,l,àúýÿBŒA†H ƒrABDœ,@ûýÿLŒA†E ƒi ÃAÆBÌB AÃCÆBÌM ƒ†Œ,ä,˜ûýÿrBŒE†A ƒR ABA -èûýÿAƒO4-èûýÿL-àûýÿd-Øûýÿ|-Ðûýÿ”-Èûýÿ¬-ÀûýÿÄ-¸ûýÿÜ-°ûýÿô-¨ûýÿ . ûýÿ$$.˜ûýÿÐA†AƒD ÇAAL.@üýÿd.8üýÿ|.0üýÿ,”.(üýÿBA†AƒN0 AAD ,Ä.HýýÿA†AƒG  AAF ô.(þýÿAƒTL/(þýÿBBŽE B(ŒD0†A8ƒGm 8D0A(B BBBG d/èþÿ—PvJt„/hþÿCBŒA†D ƒD0=  CABB b  CABH N  CABA o  HABA b  CABA Lü/@þÿçCBBŽB B(ŒA0†A8ƒD`³ 8A0A(B BBBA $L0àGþÿfA†AƒT DFAt0(Hþÿ=Jƒn”0HHþÿYkƒ]Ã$´0ˆHþÿ^WƒfÃsƒC ÃM LÜ0ÀIþÿÑ.BBŽB B(ŒA0†A8ƒGÐX 8D0A(B BBBA D,1PxþÿgBIŽB B(ŒD0†H8ƒM@t8A0A(B BBBt1xxþÿÐ_@°_@q}³Ï½ H+@ táA°mc¸mcõþÿo˜@`@ø@ µ pc¸@è@¨ þÿÿox@ÿÿÿoðÿÿo@Èmc†+@–+@¦+@¶+@Æ+@Ö+@æ+@ö+@,@,@&,@6,@F,@V,@f,@v,@†,@–,@¦,@¶,@Æ,@Ö,@æ,@ö,@-@-@&-@6-@F-@V-@f-@v-@†-@–-@¦-@¶-@Æ-@Ö-@æ-@ö-@.@.@&.@6.@F.@V.@f.@v.@†.@–.@¦.@¶.@Æ.@Ö.@æ.@ö.@/@/@&/@6/@F/@V/@f/@v/@†/@–/@¦/@¶/@Æ/@Ö/@æ/@ö/@0@0@&0@60@F0@V0@f0@v0@†0@–0@¦0@¶0@Æ0@Ö0@æ0@ö0@1@1@&1@61@F1@V1@f1@v1@†1@–1@¦1@¶1@Æ1@Ö1@æ1@ö1@2@2@&2@62@F2@V2@f2@v2@†2@–2@¦2@¶2@Æ2@Ö2@æ2@ö2@3@3@&3@63@F3@V3@f3@v3@†3@–3@¦3@¶3@Æ3@Ö3@æ3@ö3@4@4@&4@64@F4@V4@f4@v4@†4@–4@¦4@¶4@Æ4@Ö4@æ4@ö4@5@5@&5@65@F5@ÒBOBÛ B­ôA°ôA“ûA(öAnpycÒÿÿÿÿÿÿÿÿGCC: (GNU) 6.0.0 20160406 (Red Hat 6.0.0-0.20)GCC: (GNU) 6.3.1 20161221 (Red Hat 6.3.1-1)<`@P6@¤(,Ei @¸5,ÂÃà´@E',y0Ü@~E,p°!A‰#,®È@EAúLµõ@ZAgU`5@½6@$,À,°¯AA1Aiµ žÀàé=Ø440;¬ 92ÐintÝ­ƒj(„j[ 8 ‹j j¬9¬—0ÃDØñ@ —òc ÷¦ ø¦ Vù¦ ú¦ Éû¦( Üü¦0 Íý¦8 Ÿþ¦@ ‚ ¦H ¦P ó ¦X -x` ¦~h ,cp ÷ ct qx FG€ èU‚ ÷„ƒ i”ˆ …!| ü)¤˜ E *¤  +¤¨ ,¤° .)¸ ¼$/cÀ 1šÄ b–íœx Dx æ ž~ ¼8¢cGà ¬” ‡@ ¬ª ‡A;ªb<ªÊ =ª³Ó ¨~1 ©~Ú ª~¿c Ù $cØ: KŽ b  Ž i!™/—° ¨cc \®ÿ˜63<| b‚Ñ g® ¦Ö ‡9Æ÷cÞ j;!Æù)cà *jà  7C H 9c C :cC UY_jc Ùz ‡@j( -z) .z˜ Ä 瞣¦ pcû mÒØ{€ šN ž¤÷7Çp :Ç- bÇ>8ÇL9Çm9ÇN ¼l›? TO j Æ5 Ȥ  Él ú Êè õ; ËÝ Ìw¤ ¯¿´î o¿ï p¿W"µÊ9¦³GcæLc~Pc ¡N *Ö w>tB X¥¯ ϧ\ ɧ\ Pª\ Jª\ t «\ n «\ —­\ °¯ ± ¥ ´ – µ œ¶ A · ¸¸ ¹ ³º ­» ¦¼ ¾½c$ B¿#( ç Â\0 ›Ã\2 @Æc4 FÇc8 dÈ)@ ãлH ÓÒ\Tv2 Ë aÍ\ { Í\ øÎ\ ûÎ\ ßÏ\ IÏ\ 16ux)3y)‘z) ¬^¢{S‹|c }c! ~cÚc€ccN/ Û \•Ëù Ž@¼€'¸ —|p¤í V ¦ccnt§c ã¨ø  D©ø  % ª¤ %2«¤  ¬ø ( 1­¦0 ®ø 8 €¯ø @ ¸2°cHtag²cL B³cPlib´$ X tµ¦` P ¶òhÉ ^ø  (_ø ¥`ø Þaø ½bcccÎ>dc e¦ ¦V fK ägµËhcÞi2º i2ªi2=j¦9k¦êlc4mSnc^ocpcwr¦ž s¦   ¸´vû àwc c- Ëx" — ycB‰c´ŠcdcÏ(” ~•p–p= —p–˜p{šcd ›¦“œcq œcK žcR žc6 žcažc#ŸK b¢¦7£cWª¦«¦8¬¦ ­¦Ù®¦e/¯cj±¯Á »c! Àø OÁ¦Õ(Ñ V ƒc D„Ü  ã…Ü  % †¤ ä5‡p ÅÜ ‚ fÆÜ hÈø VÉø & Êc±Íc $ $ * É 8Íœ lϦ é ÐcsѦ ]Òc z7Óc ! Ôø )Õø ( DÖ$ 0ëÎ ˜Ï$ -Ðc£ÑcCÒcŸÓ $צœØcùÙcÚc16NúE¿‰Z#˜# , Nÿn÷#´ ËN˜:7¿6R N'.^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT cORUåV cLTW cGTX cLEY cGEZ cEQ[ cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•NVšz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3N^ÄrÞ _ CNhô2ñOµ MbNm$#FÝóY=Nr2® kUP·L¦¼ÿ }' kF0 kF1 kF2 kF3 kF4 kF5 kF6 kF7 kF8 kF9' ®8 = B G L Q V [ ™ ²¯ ;!·"?#Ž$†%Õ&-'÷(û)kNz\0ôÇ †%28™Å V ›c p4œÅ qÅ ž¦ % Ÿ¤ ¸2 ¦( ä5¡p0\P ¹òidºc Û3»cËU@¾: ­.À:  Ác( % ¤0 V ì8 cJ ‡ ¯#c!þ : hÔc! ; hÕc! < €Õc!í = `Õc! > |Óc!* ? HÕc"f@c ¤xc"!Ac  xc"rBc œxc"­Cc ˜xc!5 D pÕc!Ú E xÓc"n F¦ xc#0G Pvc!˜ H €Óc!£ I XÕc!® J tÕc"Kc ˆxc!Ä L xÕc!@ M Hvc#æNc Dvc#¿ Oc @vc!V S ÀÎc#g T¦ 8vc!a U PÕc!l V ˆÕc"B Wc „xc"] Xc €xc$Y Yc!w [ Õc!‚ [ pÔc! [ pÓc ¬¯ ‡Ç!¹ \  Óc#L]Ÿ €Ôc"2^ø xxc"g _c txc!Ï ` 0vc#Ð a¦ (vc!å b  vc%r^ ¦T&err^ c%æ0 ¦­'0 ¦(f2  )ª 3 ¦*)]F ¦(toF ¦(tryF ¦+²& ß'P:& ¦'m&  &len& %,Ách@ÐœÕ - Á¦.à Ä. Ä 6. Å «.JÆ @/cÇcœ/iÈc1. Éc0¹)IÐ)),Ð)11h@ob2Uv2T|00õ)IÖ)),Ö)1Ph@ob2U}2T|3­7i@! A4ÒU4Æ}4º 1Oi@~b2Tv3­hi@ …5Ò5Æ4ºë1wi@~b2Tv3­¸i@ É5Ò5Æ4ºR1Çi@~b2Tv3­øi@( 5Ò5Æ4º1j@~b2Tv3­ j@ Q5Ò5Æ4º1/j@~b2Tv66mk@`þ€4GO7yk@Šb66ók@Þ¯4Gs7ük@Šb664l@ÀäÞ4G—7=l@Šb66~l@ðë 4G»7‡l@Šb8gh@–b22Uv2T ­ôA8…h@–bQ2T ­ôA8 h@–bv2U|2T °ôA8Êh@~bŽ2Tv8Óh@¢b§2Uw8 i@–bÆ2T ­ôA80i@®bå2T ÍôA8ˆi@¢bý2U|8i@~b2Tv8¥i@¢b-2U|8Cj@¢bG2U‘¸8]j@~b_2Tv8gj@¢by2U‘¸8ƒj@ºb¨2U ÙôA2T12Q52Rv8šj@ÉbÍ2Uv2T ßôA8°j@Ébò2Uv2T éôA7¼j@Õb8Îj@Éb$2Uv2T ßôA8éj@ÉbI2Uv2T ñôA8ýj@Éb{2Uv2T éôA2Q ûôA8k@áb”2Uw8k@áb®2U‘¸8k@ábÆ2Uv83k@®bë2T ˆãA2Q|8Dk@O22U18fk@O2&2U12T XãA7mk@ìb8šk@®bR2T °ãA8«k@O2i2U18²k@áb2Us8Øk@®b¦2T ³ôA2X|8ék@O2½2U57ók@ìb8l@®bé2T °ãA8*l@O2 2U174l@ìb8Zl@®b, 2T °ãA8kl@O2C 2U18tl@áb\ 2Uw7~l@ìb8 l@®bŽ 2T ØãA2Q|8±l@O2¥ 2U18ºl@áb¾ 2Uw1Äl@áb2U‘¸,ò¦c0n@dœÓ"-m¦ ß-†¦c36ån@¶J!4GÜ7ìn@Šb665o@`©y!4G 7>o@Šb8Mn@÷bœ!2U|2Ts2Q28kn@c»!2T '2Q|8ƒn@ÕbÓ!2U}8£n@®bò!2T päA8´n@O2 "2U68Än@÷b,"2U|2Ts2Q27ån@ìb8 o@®bX"2T ;õA8o@O2o"2U475o@ìb8[o@®b›"2T ;õA8lo@O2²"2U41o@O22U42T @äA9é1cÐx@㜕(.K$3 $ /i4c€ /c5c) : 6c‘¸:U7c‘¼. 8cÑ .º9¦µ ;:c.†;c 66|@ B­#4G77|@Šb8 y@O2Ò#2Uv2T ºõA8*y@–bñ#2T B8Fy@Õ $2U|2T ç8~y@¢b'$2U|8£y@Õ E$2U|2T à8¸y@áb]$2U|8Ñy@c$2U|2T ÇóA2Q |Óc8æy@Õ ­$2U|2T à8z@®bÒ$2T ëõA2Q~8-z@O2é$2U68:z@Õ %2U|2T Ó8Vz@c3%2U|2T ÇóA2Q‘¼8uz@®bR%2T °åA8†z@O2i%2U68žz@Õ Š%2U|2T Ó}7²z@Ó/8Ëz@c¯%2Q|8öz@®bÎ%2T æA8{@O2å%2U68{@Õ &2U|2Ts8-{@c/&2U|2T ÇóA2Q‘¸8L{@®bN&2T `æA8]{@O2e&2U68p{@Õ ƒ&2U|2Ts7|@ìb8+|@®b¯&2T HåA8<|@O2Æ&2U48R|@O2ê&2U42T ÒõA8h|@O2'2U42T xåA8~|@O22'2U42T àåA8’|@O2V'2U52T ˆæA8­|@ºb'2U ÿõA2T12Q57¹|@c8ï|@¢b¤'2U|8}@*c¼'2U}8!}@*cÓ'2U:80}@O2÷'2U52T ÀæA8<}@9c(2U èæA8T}@c-(2T28^}@Õ K(2U|2Ts8~}@O2o(2U42T 0æA1®}@ºb2U ÿõA2T12Q5<Ð@x@œO)/arO)[/docø ¥/icÈ8Ux@Ecý(2Us2T17kx@Ó/8|x@ý/))2U (öA1Åx@Qc2U €õA2T32Q3øcmdø P:þø Xvc1x@j:2US2T02Q0<·Ó v@:œ:+=cmdÓø I/stÕÜ ¾/retÕÜ .îÖ¦*.5Ö¦s.’×ø ¼8ßv@Õb[*2U|7w@®b?-w@O2*2U18Cw@®bž*2T ØäA7Nw@Õb7Xw@Ó/8gw@]cÐ*2U}8rw@lcè*2T|7{w@{c8w@‡c+2U}2T17¨w@“c7Áw@Ÿc@Úw@{c<°É`v@4œ×+-=Éc /cmdËø F8wv@j:¥+2U óU $0.ÿ#2T02Q08†v@Ã-É+2U (öA2T07Žv@ý/<õ À0v@0œD,8>v@«c ,2U17Gv@·c7Nv@ÃcA`v@j:2U82T02Q0<¬Ðu@\œ¹,=cmd¬ø |/s®Ü µ/r¯ø Ø8v@«c¥,2U1A,v@O22U19甦Pu@xœ²--”¦û:ˆ–²- `vc/at—¦p/dot—¦¦8ju@Îc>-2Us2T.8‚u@Ýcd-2U `vc2Q ,8‘u@Îc‰-2U `vc2T@1ºu@Ýc2U `vc2Ts2Q , ¬Ã-B‡+%E¦ù-'¦'Äc)ˆƒŸ9 J$ r@fœ¹/=lJ¦Ü=sJ¦(newL$ .·M$ >:?N$ hxc.êOct/endOcÒC9r@ Ë.)IS)),S)1Dr@ob2Tv6Ó/hr@À\$/4ä/2DÀEE]8rr@ìc/2U<1qs@¾\2U88¬r@ý/lzï4‘`:Ï?|c‘l8`@BdO42T?81`@Mdl42T‘l2Q08X`@Xd…42U Ò8b`@cd¤42U áA8v`@cÁ42Uw2T27Š`@6d7£`@od1¯`@6d2U1 ¬ÿ4 ‡9¹%c°`@~œ¶5=a%¦=b%¦=min%c/len'c,8Ó`@Õbv52U‘X8æ`@{d•52U|2T‘X1a@{d2U|2Qs $ &FêúE8'ï úc' úµ)çýµ)Îþc)1 þc)¦(ic(arc)Œ  )d¦)(1¦)âcHˆ6)Ij)),j)*)4jE8)jcHÀ6)It)),t)*)4tE8)tcHø6)Iv)),v)*)4vE8)vcH07)Ix)),x)*)4xE8)xcHh7)Iz)),z)*)4zE8)zcH 7)I|)),|)*)4|E8)|cHØ7)I~)),~)*)4~E8)~cH8)IÆ)),Æ)*)4ÆE8)Æc*)IÈ)),È)*)4ÈE8)ÈcBn2c‘L/i2cé!./3¦n"/sp4Ü ô"8!d@®bP<2U|2T áóA2QóU2XóQ2Y}8Âd@®b{<2U|2T `ôA2Q}8e@®b¬<2U|2T zôA2Qv|2R}8+e@O2Ã<2U68Re@®bî<2U|2T PôA2Q}8re@®b=2U|2T IôA2Q}8’e@®bD=2U|2T BôA2Q}8²e@®bo=2U|2T 5ôA2Q}8Òe@®bš=2U|2T ,ôA2Q}8òe@®bÅ=2U|2T $ôA2Q}8f@®bð=2U|2T ôA2Q}8?f@®b>2U|2T ôA2R}8^f@®bF>2U|2T ôA2R}8zf@®bq>2U|2T ôA2Q}8’f@®bœ>2U|2T pôA2Q}8¼f@®bÕ>2U|2T ÐóA2QóU2RóT2X}8åf@®b?2U|2T øóA2Qs2R}8g@®b8?2U|2T ïóA2QóU2X}14g@®b2U|2T ôA2Q}I•gcP6@¤(œ'\JÎgcc#JçgµS$KlenocC%LÓ/_6@Pq@4ä/%DPEE]8m6@ìcñ?2U '1“M@¾\2U 'LÓ/v6@rb@4ä/Ì%DEE]8‡6@ìcK@2U '1¬M@¾\2U 'L¶5ë6@оN4Ï5&4Ã5@'DÐMÛ5x(Mç5l)Mó5å*Mÿ50+M 6y+M6Ù+M 6 -M,6Ÿ.M86Ì/MD6ï/Cz8@2AMU6Ñ0Ea6Nz8@Mn61Mz6ˆ2Có[@ wAMÝ7ë2Eé71\@ob2U ÍöA2TsC\@ ¼AM873E81'\@ob2U ØöA2Ts36¦]@èïA4Go37­]@Šb77@Õb8 7@Ó/B2U~3$#737@ý/8@7@’dDB2T &öA8V7@’dhB2U02T &öA8¦7@Ó/„B2U~3$#8!8@ÿ4®B2U )öA2Ts2Q28;8@ÿ4ÙB2U 2öA2Ts2Q þ8U8@ÿ4C2U 8öA2Ts2Q28r8@ÿ4-C2U OöA2Ts2Q289@ždGC2U‘ 8©B@Ó/cC2U~3$#8úB@ý/{C2Us8"C@ÿ4¥C2U VöA2Ts2Q28FC@Õb½C2U~8ÒC@ÿ4çC2U xöA2Ts2Q38ìC@ÿ4D2U |öA2Ts2Q48D@ÿ4;D2U ˆöA2Ts2Q28 D@ÿ4eD2U ŒöA2Ts2Q28=D@ÿ4D2U ˜öA2Ts2Q28WD@ÿ4¹D2U ¢öA2Ts2Q37{D@ý/7¦D@ý/8ÏD@{d E2U~2T löA2Qs‘˜s6,(8÷D@{dCE2U~2T röA2Qs‘˜s6,(7LH@ý/8uH@{dˆE2U~2T ĉB2Qs‘˜s6,(8ÀI@Ó/¤E2Uv3$#7J@ý/71J@ý/8–K@Ó/ÕE2U@8¦K@Ó/ìE2U@8:@ìcøN2U,1M@¾\2U(6Ó/W:@0ægO4ä/ü4D0EE]8o:@ìcQO2Ut1îL@¾\2Up3¹/2;@šO4Æ/6577;@{c7£9@Ád8²9@+dËO2U82T @g@8Á9@+dïO2U;2T @g@8Ð9@+dP2U22T @g@8ß9@+d7P2U12T @g@8î9@+d[P2U32T @g@8ý9@+dP2U62T @g@74:@Íd8›:@ÙdªP2U‘°2T07Ë:@äd8Õ:@ý/ÖP2U ÷A8æ:@ý/õP2U B7ò:@“c7;@ðd8&;@Qc8Q2U ÷A2T02Q38A;@ý/WQ2U ÷A7h;@üd8‰B@®b‰Q2T ïA2Qs1šB@O22U16u2ûH@pkXDpM‚2Y57FK@e8kK@9cðQ2U ÏûA8ƒK@cR2T28+L@;&R2U ÅûA8IL@;ER2U ìûA8cL@edR2U õûA8xL@9cƒR2U ðñA8L@cšR2T28ÈM@;¹R2U ÅûA8N@O2ÝR2U52T üA8N@O2S2U42T *üA8-N@O2%S2U12T `òA8>N@O2IS2U02T €òA7HN@D,7dN@e7€N@#e7œN@/e7¸N@;e7ÖN@Ge7ôN@Se7O@_e70O@ke7LO@we7hO@ƒe7„O@Že7 O@še7¾O@¦e7ÚO@²e7öO@¾e7P@Êe72P@cd7NP@Öe7jP@âe7†P@îe7¢P@úe7¾P@f7ÚP@f7öP@f7Q@*f7.Q@6f7JQ@Bf7fQ@Nf7‚Q@Zf7žQ@ff7ºQ@rf7ÖQ@~f7òQ@Šf7R@–f7*R@¢f8JR@®f4U2U07fR@ºf7‚R@Æf7žR@Òf7ºR@Þf7ÖR@êf7òR@öf7S@g7*S@g7FS@g7bS@&g7~S@2g7šS@Æ)7¶S@×+7ÒS@>g7îS@Jg7 T@Vg7&T@bg7DT@ng7`T@zg7qT@†g8’T@«cOV2U17›T@ß8¼T@«csV2U37ñT@’g7 U@žg7)U@ªg7GU@¶g7cU@Âg7tU@Îg7U@Úg7¬U@Íd7ÈU@æg7äU@òg7V@þg7V@“c7>V@ h7ZV@h7vV@"h8—V@«cMW2U:7³V@.h7ÏV@:h7ëV@Fh7W@Rh7#W@^h7?W@jh7[W@vh7wW@‚h7“W@h7¯W@™h7ËW@¥h7çW@±h7X@½h7X@Éh7;X@Ôh7WX@àh7sX@ìh7X@øh8J[@®bVX2T (òA1[[@O22U17ß6@T7ë6@Ó"8r9@i¤X2U Õc8ž9@O2ÈX2U62T €îA8GG@O2ìX2U52T –ûA7fG@Ãc8‚G@O2Y2U12T ®ûA7G@•(8žG@j:KY2U82T02Q08½G@®bjY2T  ñA8ÎG@O2Y2U58ØG@i Y2U pÔc7íG@ß8H@®bÌY2T PñA8.H@O2ãY2U273H@þ38³H@®bZ2T €ñA8ÄH@O2&Z2U17ÉH@þ38hI@ªd_Z2U  Óc2T €Ôc8wI@e~Z2U @ïA8I@eZ2U èïA8‹I@e¼Z2U  ðA8•I@eÛZ2U `ðA8ŸI@eúZ2U ¨ðA8©I@e[2U ððA8YJ@9c8[2U ¨òA8J@®bW[2T óA8¡J@O2n[2U58«J@i[2U pÓc8ëJ@®b¬[2T PóA8üJ@O2Ã[2U57K@þ38ÚL@O2ô[2U12T GüA8ÆZ@9c\2U ¨ñA1ÞZ@c2T2PO2€c@Cœ¾\4\264h2¥6C¸c@ ˜\4h2074\2i7AÃc@°02UóU2TóT?šc@°0°\2Q ÿ@³c@°0PÓ/Ðg@+œ!]4ä/¢7Eð/8ég@®b ]2T èâA2QóUAûg@O22U0PÓ/ o@7œ{]4ä/î7Mð/:88³o@ìcf]2Us1Ìo@¾\2UsPý/p@)œ)^40q8M0ù8C0p@ û]Q0N0p@ EŸ]A9p@%02U (öA2T08p@Õb^2UsA&p@%02UóUP¹/r@œc^4Æ/9Ar@{c2UóUPÃ-€s@Íœã_4Ô-U94à-Ê9Oì-  wc0ð'_5à-4Ô-):DðE^8½s@ÎcÞ^2Us2T@8ót@i _2U  wc2T bõA1Hu@i2U  wc8•s@ÎcE_2Us2T.8¬s@Ýcp_2U  wc2Ts2QÈ8òs@Ýc•_2U  wc2QÈ8Ft@iÁ_2U  wc2T  /B1˜t@i2U  wc2TsP­À}@5œ.`4ºu:4ÆÓ:4Ò;1ä}@~b2T|PT~@œ5b4ek;Mq<R{C8~@¹ía4eO<N8~@¹ER`E[`N8~@¹Mˆ®<M”÷<MŸŸ=8B~@iå`2U öA8M~@Õbý`2Uv8X~@Õba2U~7a~@Ó/8r~@Îc@a2Uv2T:8’~@Îc^a2Uv2T:8®~@Ýc‚a2Us2Tv2Q}8Ã~@*iša2Us8×~@9i¸a2Us2T~8ä~@–bÝa2Us2T B7ñ~@áb8~@–bb2U~2T B7"~@ábA2~@ý/2UóUP6@œob4Gû=A@Šb2UóUSæÜæT‘‘=Tuu˜TTTT„„Tz z lSƼÆT  dTññŠU` ` íUBB2TžžíT••nV•ž»•U  OS‘‡‘T jTNNNT  qS!!STÔÔãTÐИTá á nTÈÈ™WpoppopoTpp©Ubb$S¥ › ¥ S¹¯¹TÂÂÒS©Ÿ©TllvT¤¤éT­­êUbb fT((Ušš UÈȈU~~|T77ýTøøqUÜÜTL L ‡TWT¨U}TööTMM—TþþsU__ GT  xT€ € ¡T;;*Sª ªT””Ti0i0 TuuþTÌÌ÷TÃÃTrrT‹‹GTææFTøøU‡‡{T™ ™ TüüTT¤¤õT!!T]]ET¢¢AT # #ûT‘‘ùT:TÉÉ9T¯¯gTpp5Ta2a2eT| | cTSSbTJJ7T4T55<T((PTXXmTÈÈTÅÅ&TÌ+Ì+T²²TTø*ø*TooTTP:P:T¶¶T¤¤TBBWdotdotTóó>WdimdimlTXXT]]ŽTmmhT/T² ² ŒT  Tì ì TÚÚ‹T  ŠTV V 2T{{1TïïwT×5×5–T««tTŸ4Ÿ4~T§2§2ZT66[T’2’2ST 3 3_TTT]Tee\T::QTÑ2Ñ2aTv5v5pTT¹5¹5œTÏÏžU……ÂTÙÙ€TííT««TttJT÷@÷@IU  ÇT„„OTƒ3ƒ3XTA2A2YTR2R2jU‘‘ÀS5+5TRR4SñçñU««…yZšµ ¥À @¸5X intÝé=ØM40T¬ 92Эƒ;(„;[ 8 ‹; ;·9·—0ÎDØñK —ò4 ÷± ø± Vù± ú± Éû±( Üü±0 Íý±8 Ÿþ±@ ‚ ±H ±P ó ±X -ƒ` ¦‰h ,4p ÷ 4t |x F`€ èn‚ ÷ƒ iŸˆ …!‡ ü)¯˜ E *¯  +¯¨ ,¯° .B¸ ¼$/4À 1¥Ä b–휃 Dƒ æ ž‰ ¼8¢4RÎ ·Ÿ ’K ·µ ’A;µb<µÊ =µ¾Þ ¨‰1 ©‰Ú ª‰¿4 ä $ 4Ø: K™  m  ™ i !¤/—° ¨44 \²ÿ˜63<| b†Ñ g² ±Ú ’9Ê÷4Þ ;;!Êù)4à *;à  7G H 94 C :4"G U]cn4 ä~ ’@n( -~) .~˜ Ä 碧± p4ûmÖÜ{€šgž¯÷7Ëp :Ë- bË>8ËL9Ëm9Ëg¼p›? TO jÆ9Ȩ Ép úÊì õ;ËáÌ{¨ ³Ã¸î oÃï pÃW"¹Ê9±³G4æL4~P4 ¡g .Ö #w>tF X¥³ ϧu ɧu Pªu Jªu t «u n «u —­u °³ ± ¥ ´ – µ œ¶ A · ¸¸ ¹ ³º ­» ¦¼ ¾½4$ B¿'( ç Âu0 ›Ãu2 @Æ44 FÇ48 dÈ-@ ãпH ÓÒuTv2 Ë aÍu { Íu øÎu ûÎu ßÏu IÏu 1":ux-3y-‘z- ·b¢{W‹|4 }4! ~4Ú4€44g/ Û \•Ëù Ž@¼€'¸ —|p¤ñ V ¦4cnt§4 ã¨ü  D©ü  % ª¯ %2«¯  ¬ü ( 1­±0 ®ü 8 €¯ü @ ¸2°4Htag²4L B³4Plib´( X tµ±` P ¶9hÉ ^ü  (_ü ¥`ü Þaü ½b4c4Î>d4 e± ±Z fO äg¹Ëh4Þi=º i=ªi==j±9k±êl44mWn4^o4p4wr±ž s± ôvÿ àw4 41 Ëx& — y4B‰4´Š4d4Ï(” ~•-–-= —-–˜-{š4d ›±“œ4q œ4K ž4R ž46 ž4až4#ŸO b¢±7£4Wª±«±8¬± ­±Ù®±e/¯4j±³Á »4! Àü OÁ±Õ(Õ V ƒ4 D„à  ã…à  % †¯ ä5‡- Åà † fÆà hÈü VÉü & Ê4±Í4 ( ( . É 8Í  lϱ é Ð4sѱ ]Ò4 z7Ó4 ! Ôü )Õü ( DÖ( 0ëÎ ˜Ï( -Ð4£Ñ4CÒ4ŸÓ $×±œØ4ùÙ4Ú416gúI¿‰Z#˜# Ëgs:7¿6üg Ú ®µOæîÖ¤Ñ h © å – à ^‡ëù¼Jþà–¯@DY–/v !#"Ò#F$(%U&/'×(›) *P+b,-.ª/ fOR0Œ12´3f4Á56r748)9ò:;w<ù=;>?@ÆAûB CR g'³^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT cORUåV cLTW cGTX cLEY cGEZ cEQ[ cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•gVz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3g^IrÞ _ Cghy2ñOµ Mkgz£0ôÇ †%28™  V ›4 p4œ  q  ž± % Ÿ¯ ¸2 ±( ä5¡-0£P ¹9idº4 Û3»4U@¾ ­.À  Á4( % ¯0 V ÷8 4‘ ’ ÐxÆÆ ˆÈÆlenÉ4h DÊÖp ·Ö ’d‘¯4!.ü Àxc"/Ö Xyc"³0& PycÖ"ï14 Hyc#{ 2 ˜Õc$5ØP´@ˆœö%V Øü 4>&aÚ4m>&bÚ4£>&cÚ4Ù>'!Ûà "?(`´@FWÑ)U3(}´@FWè)U3*š´@RW$.Ä´@@œm+cÄ·E?'V Æ4§?,8´@^WN)T0)Q0-P´@^W)UU)T0)Q0$m±€³@œè%V ±ü ò?'!³à >@&is´-t@*ó@RW.Õ³@jW)U6)T úB$…ˆ ²@ÝœÈ'!Šà ¾@'2Šà á@'€Šà =A&r‹-sA/³@ 0I–B0,–B*'³@vW(°²@FW–)U:(æ²@jWº)U1)T ÀB*õ²@RW$JfP±@JœÂ%V fü +B&ah±dB&bh±æB&ci-C'!jà @C/²@k0IpB0,pB*²@vW/±@¦0IsB0,sB*•±@vW/@²@á0IvB0,vB*E²@vW/p²@0IyB0,yB*u²@vW/б@W0I|B0,|B*Õ±@vW1†0IB0,B*ý±@vW(_±@FW)U1(m±@FW´)U1*¶±@RW$CIà°@nœw+cI·cC'V K4îC, ±@^W)T0)Q0,,±@^W6)T0)Q0,>±@^WX)Ub)T0)Q0-N±@^W)U])T0)Q0$'¯@Nœ%V 'ü ‰D&a)-ÂD&b)-E&c)-UE'!*à E(ž¯@FWö)U3(³¯@FW )U3*ô¯@RW$ù  ¯@nœÐ+c ·°E'V  4;F,J¯@^Ws)T0)Q0,l¯@^W)T0)Q0,~¯@^W±)UZ)T0)Q0-ޝ@^W)U[)T0)Q0$]ç@®@Öœ‘+cmdçü ÖF'®=éà aG'V ê·½G'! ë‘XH,”®@jWR)U1)T ˜B,«®@jWv)U1)T äB*µ®@RW*Ñ®@…Wü $VÝ ®@œò%V Ý·$I2cmdßü P.4®@^W)Uo)T0)Q0$gÎЭ@Kœe%ä5α]I&cÐü ©I(ç­@^WP)Up)T0)Q0. ®@…W)Uv$¾p­@Xœ×%ä5¾-ßI&cÀü J(‰­@^WÃ)Up)T0)Q0.–­@‘W)U8$¢˜°¬@³œo+cmd˜ü gJ'Ä2šü ÜJ'! ›‘K(2­@W<)T<(L­@©W[)T ÎB-c­@jW)U1$›Ž€¬@.œã%Ä2ޱzK&cü ÙK(˜¬@^WÎ)Ul)T0)Qs.£¬@…W)Us$jЫ@¯œ !+cmdjü L(ê«@µW- )U2)T1(ù«@µWI )U1)T1(¬@µWe )U3)T1(¬@µW )U6)T1,*¬@µW )U?)T1(?¬@µW´ )U2(N¬@µWË )U1(]¬@µWâ )U3(l¬@µWù )U6-¬@µW)U?$`°«@œg!%î8`4qL2cmdbü P.Á«@^W)U?)T0)Q03lO±'"4/O±48O±5sQ±6º!0T475__cT46ò!0IVB0,VB704V'"0V470IVB0,VB704V'"0V4[3f±%4/±4·ü 5s±6€"0475__c46¸"0IB0,B704'"046ð"0I(B0,(B704('"0(46(#0I*B0,*B704*'"0*46`#0I,B0,,B704,'"0,46˜#0I.B0,.B704.'"0.46Ð#0I0B0,0B7040'"0046$0I2B0,2B7042'"0246@$0I4B0,4B7044'"0446x$0I6B0,6B7046'"0646°$0I<B0,<B704<'"0<46è$0I>B0,>B704>'"0>470I>B0,>B704>'"0>43S4;%443öÜ-ó'4/ܱ5sÞ±5nowß=6Ž%0â475__câ46Æ%0IäB0,äB704ä'"0ä46þ%0IæB0,æB704æ'"0æ466&0IèB0,èB704è'"0è46n&0IêB0,êB704ê'"0ê46¦&0IìB0,ìB704ì'"0ì46Þ&0IîB0,îB704î'"0î46'0IîB0,îB704î'"0î46N'0IðB0,ðB704ð'"0ð46†'0IòB0,òB704ò'"0ò46¾'0IôB0,ôB704ô'"0ô470IöB0,öB704ö'"0ö4$V ¹ ª@ œ<)+cmd¹ü ¼L'‡»±M'¼-ÈM'½4N(¸ª@FWh()U3(ͪ@FW()U3(Ûª@ÀWœ()Us)T08«@ËW(*«@FWÀ()U1(E«@©Wå()T PB)Qs,\«@jWü()U1,«@jW ))U1)T pB-©«@×W)U ‘Xö-÷4÷${\ §@~œ70+cmd\ü ¨N'/^± O&s^±-O&c^·ûO'‡_±JP'`-yQ'• aà ±Q'ºb4çQ/p§@=*'l4R6 *5__cl49BVp§@l:RVBR*‡§@ãW/§@ ‰*0InB',nB›R704n'"0n4/·§@Õ*0IsB',sBÓR704s'"0s4/¨@ !+0IuB',uBS704u'"0u46Y+0IwB0,wB704w'"0w46‘+0IwB0,wB704w'"0w46É+0IyB0,yB704y'"0y46,0IzB0,zB704z'"0z469,0IzB0,zB704z'"0z46q,0I{B0,{B704{'"0{46©,0I|B0,|B704|'"0|4/¨@ õ,0I~B',~BkS704~'"0~4/˜¨@ A-0IƒB',ƒB·S704ƒ'"0ƒ4/è@ -0I…B',…BïS704…'"0…4/ب@ ô-'†4ûO6Ä-5__c†49BVب@ †:RV'T*ݨ@ãW/ý¨@ @.0IŸB',ŸB¥T704Ÿ'"0Ÿ4/-©@ Œ.0I¡B',¡BÝT704¡'"0¡4/`©@ Ø.0I£B',£BU704£'"0£4(I§@FWï.)U3(^§@FW/)U1(â§@…W/)U|(.¨@îW6/)U|,R¨@ùWM/)Q28q¨@X(‚¨@FWq/)U18è@X8-©@ËW,[©@ Xª/)U ‘Hö-÷;÷(›©@©WÏ/)T »B)Qv8¸©@jW8Õ©@,X(÷©@©W0)T fB)Qd.ª@©W)T ØB)Q ‘Hö-÷4÷$tNà¦@:œ¬0%î8N·MU&cmdPü ¯U(§@^W—0)UO)T0)Q0.§@^W)UP;‹AÀ¦@œï0(Φ@8Xá0)U78Þ¦@GX;æ%P¦@fœk1'¿'-åU2tv*H‘`(^¦@FWB1)U3.¦¦@RX)U0)T0)Q0)R0)Xw3u±Â1‚5 Èxc'»ƒ±¨Y'f+ƒ±ÞY&pre„4ÁZ'Õ„42[&len„4¶[2i„4‘¼'˜„4`\' „4Ã\'Û„44]&neg…4¥]&ip†-þ^&fp†-€_'µ&†-`>|"‡± BŸ(ô@]Xi3)U Èxc(Ž@lXª3)Us)T úB)Q‘´)R‘¸)X‘³)Y‘¼(=Ž@lXä3)Us)T  B)Q‘¸)R‘³)X‘¼(`Ž@lX4)Us)T üB)Q‘¸)R‘³)X‘¼(ƒŽ@lXX4)Us)T ýB)Q‘¸)R‘³)X‘¼(ŸŽ@]Xw4)U B(ÍŽ@©WŸ4)Uv)T|)a‘˜ö-(ðŽ@|X·4)U|(j@ˆXÓ4)a‘˜ö-(Ê‘@“Xñ4)Uv)T|. ’@|X)U| ·5 ’?¿a-€@)œœ6+hexa±Œ`%_a4a&decc-œa>|"d±òãÁ'»e±b&if4kb&lenf4¿b/ ‚@Ý5'q4âb75__cq4(ª@|Xõ5)U~*Ð@ãW(&‚@]X!6)U žB(D‚@©WL6)T ¯B)Q})R~(U‚@jWc6)U1(…‚@©Wˆ6)T B)Q}.–‚@jW)U1?$>±0€@Eœ¶7+d>-c%_>4yc&len@4îc&decA-šd' A- e'(B±Že'ÞC4×e(M€@ˆXG7)aóõ-*£€@‘W(Ù€@ˆXu7)a ‘Xö-‘Hö-(@ˆX¨7)a‘Xö-‘Hö-‘Pö-ô-à?"*[@ˆX$ìŒ@œ•8+s±#f+px0Yf+py0áf+pb0ig+pm0ñg2x4‘@2y4‘D2b4‘H2m4‘L2c·‘¿.eŒ@lX)T æB)Q‘H)R‘¿)X‘L)Y‘@3\·±é8ˆ¹Æ àxc5lenº45p¼ 5c½4@µ¢± ‹@Ûœv9'·¤Öfh&old¤Ö¯h'!¥±Òh'‚¦4i&len¦4zi*6‹@‘W*Ù‹@³XA‚–œ94ˆ–±ä5ƒ-‘¸>„=‘¸'V …4…p'!…4As&len…4Áv'ê…4µw2i…4‘´&max…4x&str†±°x'®†±z1€Š;'„4#{6k;5__c„4D&V™@€„:6V|{1PÔ;'Ž4Ç{6µ;5__cŽ4DBVØ@PŽ:RV |Eg!‚”@=:„!k|:x!¡|FG!×|/”@Z<GŸ! }9BV”@T:RVC}*§”@ãW/¼”@#¢<H¿!GË!œ}I¼”@#GØ!Ô}Gä! ~/ó¡@ Æ<Hó!Gÿ!Œ~(ó”@ËXÞ<)U}*û”@…W.Á¡@jW)U1Eî9›@°´=:ÿ9°~F°G :ú~*(›@×X*9›@ãX(H›@µWe=)UF)T1(W›@µW=)UE)T1*\›@ïX(e›@ûX¥=)U0*£@YE•8|›@ðà>:¦80FðGÈ8fGÔ8ïGÞ8^€J²8 àxcKœ9›@ÈEv9è›@@Ü[>:ƒ9º€:9æ€.ù›@‘W)Ux(ž›@Y€>)Us)T B(×›@Y˜>)U}(Ñœ@+Y°>)U}*Øœ@é8.°¡@©W)T yB)QsE%$Ÿ@pd?:.% *8Ÿ@Y(£@ÀW+?)Us)T0(e¤@©WP?)T B)Qs.v¤@jW)U1E-"_Ÿ@°0C:J"R:>"ÁF°GV"0‚/pŸ@ê?Ge"–ƒ9BVpŸ@:RV¹ƒ*‡Ÿ@ãW/Ÿ@ @H…"G‘"„/¢@ 2@H½"GÉ"†„/$¢@ V@Hõ"G#æ„/9¢@ z@H-#G9#F…/N¢@ ž@He#Gq#¦…/c¢@ Â@H#G©#†/x¢@ æ@HÕ#Gá#f†/¢@ AH $G$Ɔ/¢¢@RAHE$GQ$‡I¢¢@G^$^‡Gj$§‡/¨¤@ vAH}$G‰$ ˆ/½¤@ šAHµ$GÁ$Dˆ/Τ@ ßAHé$Gõ$hˆ.Û¤@vW)U})T çB(îŸ@…WþA)U löA(Í¢@…WB)U ÷A(¤@…W4‘™Ni>4šNp?±ÇšNq?±I›Npp@¹¥›NdelA±œPBA±NœP9B4—œP(B4Q|‘à…@(¿ƒ@FW£T)U2(̃@FWºT)U1(àƒ@LZÖT)T3)Q0(U„@]XîT)Uv*Ö„@XZ*æ„@XZ(ö„@‘W%U)U‘¼”3$( …@…WDU)U (öA(<…@]XhU)Uv)T~8$8&(e…@]X€U)Uv(“…@dZ˜U)T~*å…@RW(:†@jWÉU)U1)T 8B(I†@FWàU)U1*…†@pZ(›†@©W V)T ÊB.¬†@jW)U1?RÞÝ4BVS__cÝ4Rç×4^VS__c×4Tk1ð‚@–œFW:|1 ž:ˆ1’ž:”1(ŸGŸ1ŸG«1ÓŸGµ11 /pƒ@ W:|1g :ˆ1Š :”1­ Ipƒ@ H”VHVH¦V.zƒ@‘W)U1(ƒ@|X,W)Uv.6ƒ@‘W)Us|#UpoppopoVá á nVxxâV1616ÜWæÜæVv v æV¿¿ßVÐИVz z lXbb fX..zV©©±V‘‘=XÁÁQXÜܤW¹¯¹VrräV²²V  xV;;*W“‰“XòXnnjW¥ › ¥ Y6?À6VññŠXµµ¸X}Zž0123456789abcdefVÑÑàV vVRR4V__ÌV¤¤éV{{wVKKMV­­êV..hV„„VmmnX‘‘ÀX‡‡¤VÉÉ%VÉÉ$XÜÜV€€Q[loglogmX\\8 L9 m9 `¼5 ›? TO jÆþ Èm É5 úʱ  õ;˦ Ì@ m x ˆ } î oˆ ï pˆ W"~ Ê9±³G4æL4~P4 ¡` Ý ó Ö è w>t ! X¥x ϧn ɧn Pªn Jªn t «n n «n —­n °x  ±Ý  ¥ ´à  – µà  œ¶à  A ·à  ¸¸à  ¹à  ³ºà  ­»à  ¦¼à ¾½4$ B¿ì ( ç Ân0 ›Ãn2 @Æ44 FÇ48 dÈò @ ãЄ H ÓÒnTvÝ !2 Ëà aÍn { Ín øÎn ûÎn ßÏn IÏn 1ç ÿ uxò 3yò ‘zò ·'¢{‹|4 }4! ~4Ú4€44 `/Ø"Û "\""•"Ë"ù "Ž@"¼€'¸ —!|p¤¶ V ¦4cnt§4 ã¨Á D©Á % ª¯ %2«¯  ¬Á( 1­±0 ®Á8 €¯Á@ ¸2°4Htag²4L B³4Plib´íX tµ±` P ¶ahÉ ^ÁØ(_Á¥`ÁÞaÁ½b4c4Î>d4 e± ±fäg~ Ëh4ÞiGº iGªiG=j±9k±êl44mn4^o4p4wr±ž s± ÏÏôvÄàw4 4öËxë— y4B‰4´Š4d4Ï(”Ï~•-–-= —-–˜-{š4d ›±“œ4q œ4K ž4R ž46 ž4až4#Ÿb¢±7£4Wª±«±8¬± ­±Ù®±e/¯4j±x Á »4! ÀÁOÁ±!Õ(š V ƒ4 D„¥ ã…¥ % †¯ ä5‡- Å¥KfÆ¥hÈÁVÉÁ& Ê4±Í4 ííó!É 8Íelϱ é Ð4sѱ ]Ò4 z7Ó4 ! ÔÁ )ÕÁ( DÖí0ëÎâ˜Ïí-Ð4£Ñ4CÒ4ŸÓâ$×±œØ4ùÙ4Ú4#16`ú¿‰Z#˜# $Ë`8:7¿6$R `'Î^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT%cORUåV%cLTW%cGTX%cLEY%cGEZ%cEQ[%cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•$`V:z½p ¿ÿf $ã Á ¥ Q ½ / ˆ!P ¹aidº4 Û3»4:¯14&ýI4 ÀÇc'ÕJ  Õc'öK  Öc(L4 Œuc&`$M4 ˆuc& NÏ ¸Çc&ÈOÏ °Çc ·)’'&Œ"Pý   c'Q hyc&^R±  c(~TÏ `yc*Ï 9±ÐØ@çœÎ+col94U,r1;K pyc,r2;K lyc,pr<± €uc*Éà±ÀÙ@eœQ-xfà4Р-yfà4¡-xtà4Q¡-ytà4‰¡.xâ4Ò¡.yâ4¢/cä4.ctä4£¢/ccä4/cfæ4/cbæ40Ë#ç4Ù¢0Ð#ç4þ¢.resè±6£1'!鵑 2Ú@|Hã3U |~3#2$27Ú@ˆH3Us3T ÈB3Q|3R~2ŒÚ@”H,3Us2ÕÚ@£HJ3T3Q}4êÚ@¯H4Û@»H4;Û@ÆH2LÛ@^‰3Uu2XÛ@^¡3Uu2oÛ@ˆHÍ3U‘ 3T ó B3Q~2€Û@ÒHì3Us3T‘ 2³Û@£H3T‘œ”3Q‘˜”2»Û@ÝH(3Us5ìÛ@ˆH3U‘ 3T ý B3Q~6”y0Ö@œ".ch{±’£0P:{·Û£1ž"{K‘ 1ö{K‘°,n|4‘´,sx|4‘¸,sy|4‘¼.x|4¤.y|4¤.f|4Ȥ.b|4:¥.tox}4‡¥.toy}4"¦7Ë#~47Ð#~42HÖ@éHc3U32]Ö@éHz3U32qÖ@éH‘3U12“Ö@õHË3Us3T ŽB3Q‘¸3R‘¼3X‘´4×@ÆH27×@£Hö3T~3Q}2L×@I3Tv8$8&4Ê×@ÆH2Ø×@I83T02ê×@£HV3T~3Q}4ö×@I2Ø@I‡3Tw”3$‘˜”"8$26Ø@)I«3U‘ 3Ts3Q32NØ@)IÏ3U‘°3Ts3Q32}Ø@{è3U‘ 2”Ø@{3U‘°5¶Ø@8I3U13T Ý B*h94ÐÕ@WœR+oc94U8Æ!ã4{9ycã4:ž"ã48Q$¿4?#:¿±/cÁ±;Â<Ä4=/__cÄ4;ú4‘#124 xuc/i‘4/j‘4/f’n/b’n6Ì8@Ñ@Kœ¬&-cmd8Á†¦0ž":±²§0ö:±^¨.p:±Ð¨.fc;4Ê©.bc;4rª?€Ò@?$0e4»ª=/__ce4?¸Ñ@s$0j4ëª=/__cj4?ðÑ@§$0n4«=/__cn44ƒÑ@ÆH2ŸÑ@éHË$3U14±Ñ@DI2×Ñ@éHï$3U14éÑ@DI2 Ò@{%3U|2Ò@{,%3Uv@9Ò@IANÒ@IP%3T0A_Ò@8It%3U13T  B4eÒ@éH4wÒ@DI2Ò@{¦%3Uv4µÒ@éHAáÒ@IÌ%3T@>$2þÒ@ˆHñ%3T Ð B3Q|2Ó@8I&3U12Ó@{ &3Uv20Ó@ˆHE&3T ð B3Qv2AÓ@8I\&3U12ZÓ@éHs&3U12uÓ@ˆH˜&3T Ð B3Qv5†Ó@8I3U16:$.€Î@œ'Bî8.4K«,c0ÁP5‘Î@OI3U~3T03Q0C7 '9s ±60 Î@-œ’'-str±–«.cmdÁâ«27Î@OI}'3Un3T03Q05BÎ@[I3Uv6u÷ÀÍ@Vœþ'D'÷Í@ÀúE' 9öAŸ4üÍ@±+FÎ@Ø@3U 9öA>Tç(9chç4G—Å44(/chÇ4>¨"’a(/nl•±/x–4/y–46 #EÌ@¹œY*-cmdEÁ¬,dG-‘H1¥;Hý €yc0,!I4 ¬0#J4'­.sK¥p­<žL4H‚”Ì@I((Ì@`b:)J`K((4-Ì@±+4õÌ@]AI(xÌ@Ux)JK((4}Ì@]A4Ì@±+L(WÍ@zÆ)MWÍ@K((4\Í@±+4iÍ@]A4PÌ@gI2cÌ@[Iò)3U €yc4¡Ì@gI2ÑÌ@õH1*3U €yc3T 8B3Q‘H4GÍ@þ'4†Í@þ'4žÍ@þ'6#:ÐË@(œÄ*BV :·Ì­B#:4®,cmd<ÁP5ëË@OI3Uk3T03Q08.(4î*:(4:(46øË@Äœ±+-cmdÁP®.s 4‰®.c 4Ò®0! ¥¯2Ë@éH_+3U32&Ë@Ä*|+3Us3T04/Ë@gI4UË@gI4xË@sI@šË@I*9 î4 ¼@yœ,08"ð4w¯0!ð4ɯ4x¼@ˆH5‰¼@8I3U1C~ÑF,:Ñ4<8"Ó44.ret>4{Â<¦?4Ocnt@4NÀK8<Û#€4<à#€44ç¶@J2ÿ¶@Jv83U‘À}3T04·@J4·@*J4(·@I2ò·@J»83U‘À}3T04M¸@6J2θ@BJò83Uw”3Tv3Q03R02ï¸@MJ 93U‘ }2¹@YJ&93U‘ }2¹@YJ@93U‘ }45¹@eJ4:¹@qJ4F¹@I2P¹@[I93U‘ }2¹@8I¥93U13T  B2§¹@8IÉ93U13T  B5±¹@[I3U (öA ·õ9 ’cP•!QÃóðÓ@àœ§<Rõ9(Ô@ úŒ<IE#-Ô@@ n;J@ Sh#×ÂSr#5ÃK|#K†#TR# xuc4ÿÔ@ÆH4 Õ@}J2Õ@‰J²:3U ÿ3T ÿ2NÕ@RÐ:3Uu3Tt2]Õ@Rî:3Uu3Tt2kÕ@•J ;3Uv ÿÿ2Õ@R(;3U}3Tt2¯Õ@•JF;3U}?3Qs5ËÕ@¡J3U33T è3Q è3R04-Ô@­J2OÔ@¹J’;3T02`Ô@ÅJ©;3T12qÔ@ÑJÀ;3T12‚Ô@ÝJ×;3T12Ô@éJî;3T02šÔ@õJ<3U:2¡Ô@K<3U02¯Ô@ K3<3T02¾Ô@KO<3UF3T12ÍÔ@Kk<3UE3T14ÒÔ@$K5ÛÔ@0K3U04Ô@Z'ÆÇ4sÀ@±+5ƒÀ@Ø@3UvY' Á@Ÿ‚>Z'éÇ4Á@±+Y'’Á@ ¯´>Z' È4—Á@±+Y'·Á@Âú>Z'/È4¼Á@±+5ÈÁ@Ø@3Us4Þ¾@±+2 ¿@éH?3U12¿@éH5?3U12$¿@éHL?3U34S¿@HK2u¿@ˆHx?3T B2†¿@8I?3U12¬¿@éH¦?3U12¹¿@éH½?3U32ê¿@éHÔ?3U32VÀ@ˆHó?3T - B2jÀ@éH @3U12ÝÀ@£H'@3Tv3Q04éÀ@I2‹Á@ˆHS@3T 3 B5äÁ@TK3T1Væ!i µ@4œØ@[V i·RÈUcmdkÁ‹È2¹µ@OIÄ@3Uj3T03Q05Ƶ@|H3U4\'à´@²œ]AZ'ÁÈ4µ@`K4(µ@oK4Lµ@`K4Xµ@oK2„µ@zKOA3TóU3Q ÿ4µ@I\( ¼@ÚœóBS((_ÉI4($½@ðÎ…BJðSA(Ê]L(TV(S4K½@±+2‡½@†KçA3U   c3T '2¾@KþA3U12,¾@’K$B3T   c3Q '23¾@K;B3U02?¾@žK_B3U   c3T02i¾@TKvB3T14u¾@I4ļ@»H2ܼ@øI·B3U ) B3Ts4õ¼@ªK4¤½@»H5¼½@øI3U ) B3Ts\þ'€¾@DœYCZ (*Ê?¨¾@6CZ (²Ê4ˆ¾@±+F¤¾@I3UóU\Ä*ðÁ@sœúCZÕ*ÕÊZá*]Ë?>Â@ÁCZÕ*ÏËZá*õË5OÂ@8I3U12!Â@ˆHìC3T è B3QóU3R<4>Â@ˆH\,`É@žœ…DZ!,ÌS-,8ÍS9,¶Î?ÈÉ@kDZ!,”ÏMÈÉ@KDK'D5‚É@Ä*3Us3T0\'PÎ@"œÌDZ'ÍÏ4YÎ@±+FfÎ@Ø@3UóU\{ Î@Ÿœ,HZŒUÐS˜‹Ð?ÀÎ@ES§üÐ?ÕÎ@9EKÇ^ÓN HZŒ,ÑJ KðDNP …EKÿS ‹ÑJP S ÃÑS$ "Ò?Ï@ ©EK7 SC ²ÒN€ ÙEKo S{ êÒJ€ Sˆ 6ÓS” Ó?Ï@ ýEK!S#!üÓ?XÏ@EFK§ S³ HÔMXÏ@SÀ €ÔSÌ ¶Ô?mÏ@FKß Së 3ÕMmÏ@Sø WÕS!zÕN° ½FKO!S[!ÂÕJ° Sh!úÕSt!0ÖNà ÕFK‡!S“!¨Ö?ÄÏ@GK¿!SË!àÖMÄÏ@SØ!×Sä!N×N 5GK÷!S"Ë×N` MGKg"Ss"Ø?+Ð@•GKŸ"S«";ØM+Ð@S¸"_ØSÄ"‚ØN° ­GK×"Sã"ÿØNà ÝGK #S##ÙJà S$#GÙS0#jÙM÷Ð@K/"^;"M÷Ð@TH"VST"çÙ4¶Î@DI\RÓ@Wœ|HEcUZndÚMÃÓ@Zn›ÚZc¾Ú_¿¿ß_z z l`ñçñ_þ"þ"F_Ø Ø <a  O_. . |a««…_ññŠbpoppopoc6?À6_—"—"_ŸŸ&_/"/"K`¹¯¹_1616ÜaÁÁQ_xxâ_v v æ_á á n_¿¿­_ê ê ¾_ÑÑà_žžía` ` í_mmn`æÜæ_TT_..haBB2_rrá`¥ › ¥ _--Za__ G_K"K"Õ_-#-#Y_²!²!A ann j_!!#_!!"_M"M"n_+#+#Ó_í"í" _nnˆ_N N ˆ_]]‡_X X †_C!C!O_UUó_—_««•_¦ ¦ Ù_>">"_E E c_°#°#abb f_{{w_KKM_ÐÐ/_––?_ñ ñ N`©Ÿ©aò_Æ Æ "_••n_AA9_#"#"‰_„„óØµ j,À0Ü@~E%4é=Ø-0?¬ 92ÐintÝ­ƒn(„n[ 8 ‹n¥9¥—0¼DØñ9 —òg ÷Ÿ øŸ VùŸ úŸ ÉûŸ( ÜüŸ0 ÍýŸ8 ŸþŸ@ ‚ ŸH ŸP ó ŸX -q` ¦wh ,gp ÷ gt ux FK€ èY‚ ÷}ƒ iˆ …!€ ü)˜ E *  +¨ ,° .4¸ ¼$/gÀ 1“Ä b–íœq Dq æ žw ¼8¢g@¼ ¥ ‹9 ¥£ ‹A;£b<£Ê =£¬Ì ¨w1 ©wÚ ªw¿g Ò$gØ: K’/ ¥M ‹—° ¨gg \’ÿ˜63<| bfÑ g’ Ÿº ‹9ª÷gÞ n;!ªù)gà *nà  7' H 9g C :g' ÒB ‹@2( -B) .BXID B-x- J-÷ L-”. M-A+ `_Ö' a_ž( d_ý$ f_q$ g_Ì) h_ž/ j_˜H$ PŸÁ# ”' < •g D –' -$ —< Š šßêg<'-Â# ›ê€ µj ó ¶g 5( ·- W ¸-  ¹- + ºg \* »g$ ÿ0 ¼g( W0 ¾g, x' ¿g0 ß, Ág4 ¹$ Âg8 K, ì@ *- ĬH ß0 ÅgP Õ) ÆgT Å' Ç¡X & Èg` ß' Égd ±+ Êgh ö+ Ëgl @' ̬p «1 Ígx š0 Î¥| 1 ÏMGC Þ…£"8 ãó  äó î åu ¸ ég ` ë- < ë- ¨! ë-( 4# ìg0 ñ íg4BG îŠ ó1 Ï8 ôg ƒ" õg „" ö1ùÕ! ÷€ P  ó j U * ‹ + g 0 g Y$ g Þ" g$ Ê g( Ë [0 ± g8 ¾ 1@ A# uH ù" ÂP " -X $ -` Ò gh ¥ gl Å" gp Þ gt ¨ nx P7æ" B «  ó Ï8 g g g Û g! mp "„ Æ& #¬ W- $- 41 %¬ ˆ1 &- ‘$ 'g ') (g$ Å" )g( M* *-0 ð& +-8 30 ,g@ * -nH û. .nP ¿+ /gX M/ 0Â` ø0 1·h?% 2·ˆ 4Á x 5gy 5g + 6g 0 6g + 7g Ï8 8g à 91 * :‹ ¸ >g( ‘$ @g, ') Ag0 Å" Bg4 M* C-8 ð& D-@ 30 EgH M/ FÂP ( GgX ´. Hg\ h- In` Š* Jnh û. Knp ¿+ Lgx ‰, MÁ €a‚/ N «+0 x/ & yZ u& „o  ü/ …Ž  „- †²  l1 ‡Û H. ˆõ (£1ˆ h + ig 0 ig 3) jg – kg ’ lŸ  mg m" ng  og »! pg$ Ï8 qg( ê- rg, g sg0 ` t-8 < u-@ ¨! v-H þ% wßPf ‰Ó XT T U1RggŸRRgg/  go T ` -Ž T ggu g² T gg-” T Û T ggRR¸ gõ T ná ¤1 Š/  š_ L. ›-red œK é+ œK ë0 œK ˜ ¥pad ž¥e1 Ÿ  ª‹ x «`y «`£( ¬k Ä çP( íî  òó å# óófd ôg î# õg ög i ÷g # øŸ ÷# ù_( $ ú_0 $ û_8 $ üg@ \! ýH  gP m" gT »! gX  g\ Ì! g` h $ gp ±" gt $$ óx L# ó€ &# gˆ [" - Ì, -˜ V# ß  `# ߨ j# ß° t# ߸ " RÀdb È ~# .Ð ‚ ŸØ 4! gà R" gä S" Á è k! -ð ˆ# -øy! g g’# ßœ# ߦ# gJ Ÿ …!î_Uù«×g.Uó! &@£ ` - V .g E- /- Í- 0g j 1 Š$ 2‹ * 3‹( ‡$ 4‹0 ‘ 5€8x 6g@y 6gD * 7gH í) 7gL W 8RP }! 9RT „, :gX— ~+ ;Fþ- <` ?ö V @g E- A- Í- Bg j C Š$ D‹ * E‹( ‡$ F‹0 ‘ G€8x Hg@y HgD * IgH í) IgL W JRP 3+ KRT „, LgX¯0 M-` QË V Rg E- S- Í- Tg j U Š$ V‹ * W‹( ‡$ X‹0 ‘ Y€8x Zg@y ZgD * [gH í) [gL W \RP + ]¥T „, ^gXŠ( _h bº V cg E- d- Í- eg j f Š$ g‹ * h‹( ‡$ i‹0 ‘ j€8x kg@y kgD * lgH í) lgL ½$ mgP $ ngT „, sgX y% tg\ W uR`>0 v×0 z+ V {g E- |- Í- }g j ~ Š$ ‹ ½$ €g( $ ‚g,P' ˆÆH  V Žg E- - Í- g j ‘ Š$ ’‹ q) “=(7& ”7@ –# V —g E- ˜- Í- ™g j š Š$ ›‹ x œg(y œg, + g0 0 g4 º žg8ª( Ÿ›H ¡Ñ V ¢g E- £- Í- ¤g j ¥ ?. ¦– x §g(y §g, + ¨g0 0 ¨g4 º ©g8 * ªg< v1 «g@ð, ¬/0 ®B V ¯g E- °- Í- ±g j ² ?. ³– * ´g( v1 µg,0 ¶Ý0 ¸¦ V ¹g E- º- Í- »g j ¼ Š$ ½‹ W ¾g(S& ¿NH ÁT V Âg E- Ã- Í- Äg j Å e Æ‹ Š$ Ç‹(x Èg0y Èg4 + Ég8 0 Ég< + Êg@ ¿+ ËgD2- ̲0 θ V Ïg E- Ð- Í- Ñg j Ò Ò- Ó‹ Š$ Ô‹(T% Õ`8 ×) V Øg E- Ù- Í- Úg j Û Ò- Ü‹ Š$ Ý‹( Â$ Þg0¤$ ßÄ8 áš V âg E- ã- Í- äg j å Ò- æ‹ Š$ ç‹( ¿+ èg0¡+ é50 ëþ V ìg E- í- Í- îg j ï e ð‹ Š$ ñ‹(' ò¦H ô’ V õg E- ö- Í- ÷g j ø Ò- ù‹ Š$ ú‹( e û‹0x üg8y üg< ¿+ ýg@’' þ X M V g E- - Í- g j  Ò- ‹ Š$ ‹(x g0y g4 + g8 0 g< + g@ J' ‹H ¿+ gPt, ž8 Ç V g E- - Í- g j  Ò- ‹ Š$ ‹(x g0y g4•1 Y0 8 V g E- - Í- g j  Š$ ‹ + g( 0 g,B1 Ó` ! V "g E- #- Í- $g j % e &‹ Š$ '‹(x (g0y (g4 + )g8 0 )g< + *g@ J' +‹H $ ,gP k+ --X;) .D8 0q V 1g E- 2- Í- 3g j 4 Ò- 5‹ Š$ 6‹( ë 7g0o. 8 8 :â V ;g E- <- Í- =g j > e ?‹ Š$ @‹( ë Ag06* B}@ D` V Eg E- F- Í- Gg j H Š$ I‹ »% Jj( ‘ K€0 W Lg8x$ Mî8 OÑ V Pg E- Q- Í- Rg j S Š$ T‹ l( Uj( ‘ V€0ô) WlP Yi V Zg E- [- Í- \g j ] \) ^‹ Ø- _‹( l( `j0 ( aj8 Ë/ bj@ ‘ c€H. dÝH fô V gg E- h- Í- ig j j Ø- k‹ l( lj( ( mj0 Ë/ nj8 ‘ o€@h' pu8 rr V sg E- t- Í- ug j v Š$ w‹ M/ xÂ(new |g0 W ~g4,  ( ‰¦!b Š“!s ‹¦!l Œ¶ `¶ ‹ nÆ ‹` 8 V ‚g E- ƒ- Í- „g j … Š$ †‹ ¥/ ‡j( – ˆg0 ’ ~8n/ ŽÆ8 ¶ V ‘g E- ’- Í- “g j ” Š$ •‹ Ì, –g( ²/ ˜g, º ™g0 % šD ( œ'! V g j ž g* Ÿ_ E-  - % ¡? ©, ¢?! v1 £?"Y( ¤ ( ¦~! V §g E- ¨- Í- ©g j ª Š$ «‹ Ú. ¬3!( ´â! V ¶g E- ·- Í- ¸g j ¹ À/ ºg ' »g$¡0 ¼Š!8 ¾`" V ¿g E- À- Í- Ág j  À/ Ãg ' Äg$ w+ ÅR( ’ Æ0ê% Çî!",,À Í$#V Îg#ñ. Ï~!#, Ð#2+ Ñö#& ÒË#Š. Óº#x% Ô+#é* Õ##í( ÖÑ#% ×B#$& ئ#P, ÙT#r* Ú¸#-1 Û)#ÿ$ Üš#¶, Ýþ#‡0 Þ’#4, ßM#º- àÇ#- á8#Â, â#»& ãq#æ$ äâ#Ê/ å`#’) æÑ#!0 çi#k( èô#L/ ér#·( ê8 #f. ë¶ #ï+ ì'!#d& í#±- îâ!#v+ ï`"!pad ð$ n.$ ‹-, ñl" ù’$ ‘0 ú` Ô* û` + ü` .( ý` ð0 þ` +* ÿK ˆ+ :$ Â$  j 9' -Ÿ, ž$` ¨%  ófid ¡ ´' R ³) R Û( R •, R & R ý( g$ &% R( ) g, ) ¨%0 ©. ’$8 * ’$D š* ®%P .( gX ð0 g\Â$’$–- Î$´%Ÿ pgXõ%$xYg$yZgPQº& ˜Rn$xSg$ySg +Tg 0Tg Ø&Ug !,Ug Ã-Vg -Vg$ (Wg( ñ/Wg, F([Ø%0 ¢)[Ø%8 Ô,\g@ 0\gD ')]gH%^õ%@Q' à 1 î!u ‰,"g Ï8#g ¸'g ` )- <*-( ¨!+-0 ,,g8 4#-g<3%.Å&ûmh'n'{€šRž÷7]'p :]'- b]'>8]'L9]'m9]'%R¼(›? TO jÆË'È:( É( úÊ~' õ;Ës'Ì (:(Í E([(P(î o[(ï p[(W"Æ%Ê9Ÿ³GgæLg~Pg ¡R °(Æ(Ö »(w>tÞ( X¥K* ϧ` ɧ` Pª` Jª` t «` n «` —­` °K* ±°( ¥ ´³* – µ³* œ¶³* A ·³* ¸¸³* ¹³* ³º³* ­»³* ¦¼³* ¾½g$ B¿¿*( ç Â`0 ›Ã`2 @Æg4 FÇg8 dÈÅ*@ ãÐW*H ÓÒ`Tv°(2 ˳* aÍ` { Í` øÎ` ûÎ` ßÏ` IÏ` 1º*Ò(uxÅ*3yÅ*‘zÅ* ¥ú*¢{ï*‹|g }g! ~gÚg€gg%R/«+&Û &\&&•&Ë&ù &Ž@&¼€'¸ —|p¤‰, V ¦gcnt§g 㨔, D©”, % ª %2«  ¬”,( 1­Ÿ0 ®”,8 €¯”,@ ¸2°gHtag²gL B³gPlib´À/X tµŸ` P ¶<6hÉ ^”,«+(_”,¥`”,Þa”,½bgcgÎ>dg eŸ Ÿò,fç,ägÆ%ËhgÞi+º i+ªi+=jŸ9kŸêlg4mï*ng^ogpgwrŸž sŸ ¢-¢-±´v—-àwg gÉ-Ëx¾-— ygB‰g´ŠgdgÏ(”¢-~•T–T= —T–˜T{šgd ›Ÿ“œgq œgK žgR žg6 žgažg#Ÿç,b¢Ÿ7£gWªŸ«Ÿ8¬Ÿ ­ŸÙ®Ÿe/¯gj±Á »g! À”,OÁŸÕ(m/ V ƒg D„x/ ã…x/ % † ä5‡T Åx//fÆx/hÈ”,VÉ”,& Êg±Íg À/À/Æ/É 8Í80lÏŸ é ÐgsÑŸ ]Òg z7Óg ! Ô”, )Õ”,( DÖÀ/0ëε/˜ÏÀ/-Ðg£ÑgCÒgŸÓµ/$ןœØgùÙgÚg'16Rúá0¿‰Z#˜# (â&R"1,/Ž-š+(R R'›4^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT)cORUåV)cLTW)cGTX)cLEY)cGEZ)cEQ[)cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•(RV5z½p ¿ÿf $ã Á ¥ Q ½ / ˆ(=Rr6®)kUP·L¦¼ÿ }' )kF0 )kF1 )kF2 )kF3 )kF4)kF5)kF6)kF7)kF8)kF9' ®8 = B G L Q V [ ™ ²¯ ;!·"?#Ž$†%Õ&-'÷(û)P ¹<6idºg Û3»g6*Ò%6Ÿ Ìc*É(7g Ìc+õ-8 (Èc+.C  Èc*@DT øËc*q0Eg ˜uc+ç.G Èc*0&IÀ% ðËc+7.O Èc+B.P ÈÖc+M.Q ÐÖc+X.Q lÖc*n%Rg èËc*s%Rg äËc+c.U Èc+n.U Èc+y.U  Èc+„.U Èc+.V ×c+š._ ØÖc+¥.` hÖc*l&cg àËc+°.d Èc+».e øÇc+Æ.f ðÇc+Ñ.g èÇc+Ü.h àÇc*M0j- ØËc*”/j- ÐËc+ò.k ÀÖc**l‹ ÈËc*Š$m‹ ÀËc,gcnu ¸Ëc,rgcou °Ëc*V/pº& `Ëc-â%…¬ `Öc+ý.† ”uc-M/‡Â àÖc-"1ˆQ' €Öc*^,‰- HËc*{0Š- @Ëc*á)‹- 8Ëc*R)Œ- 0Ëc*¿(- (Ëc*v(Ž-  Ëc.!˜ €A.œB:/â-˜ ŸáÚ0£*› Ÿ¸Û1keyœ gÍá2•Aª|2µA¶|3óAÁ|:4UóU5!AÌ|4UóU4T w!B.!Ð ÀA¸œP=/º#Ð ŸOâ6Ò-Ó .$ @Èc7symÔ Í 0Èc0é,Õ J(Áâ6ò'Ö g‘T1yk× gã1len× gVã7x× g‘X7y× g‘\8áAØ| ;4Q=8Aä|/;4Q=4R @Èc8'Að|l;4U @Èc4Ts4Qd4R 0Èc4X08IAØ|ƒ;4Q08{Að|À;4U @Èc4Ts4Qd4R 0Èc4X08¨Aü|Ý;4Q14R‘T2ºA}8ôAÁ|<4Us8"A}N<4Us4T Èc4Q Èc4R  Èc4X Èc8MAü|k<4Q14R‘T8bA}ƒ<4Uv8›A}›<4Uv2¥A¶|8ËAÌ|Í<4Us4T w!B8óAAYë<4U‘X4T‘\8AÌ|=4Us4T d!B8KAAY.=4U‘X4T‘\9sAÌ|4Us4T Q!B:¯ .ø*¸A¡ œöJ;cmd¸”,Œã<ô=1fdØgëã2YA }8cA,}Ë=4U `B2rA8}9†AD}4T OB2#AP=87A,} >4U €!B2¤AP}2«A[}8ÈAÌ|Y>4T ˆB8ÙAg}p>4U18õAs}>4T OB8A}®>4T B84A}Í>4T B8wA}ì>4T (B8ŠA} ?4T DB8A}*?4T bB8°A}I?4T xB8ÃA}h?4T ŒB8ÞA‹}‘?4U B4T14Q68ùA‹}º?4U ¤B4T14Q@8A‹}ã?4U µB4T14Q@8/A‹} @4U ÆB4T14Q@8JA‹}5@4U ×B4T14Q@8eA‹}^@4U èB4T14Q@8€A‹}‡@4U ùB4T14Q=8›A‹}°@4U B4T14Q=8¶A‹}Ù@4U B4T14Q=8ÑA‹}A4U #B4T14Q:8ìA‹}+A4U .B4T14Q@8A‹}TA4U ?B4T14QB8"A‹}}A4U RB4T14Q@8=A‹}¦A4U cB4T14QA8XA‹}ÏA4U uB4T14Q@8sA‹}ùA4U ¸B4T14QU8¡A}B4T B8¼A‹}BB4U XB4T14Q%8×A‹}lB4U €B4T14Q)8òA‹}•B4U †B4T14QK8 A‹}¾B4U ¢B4T14QJ8(A‹}çB4U ½B4T14QJ8CA‹}C4U ØB4T14QJ8^A‹}9C4U óB4T14QJ8yA‹}cC4U °B4T14Q28”A‹}C4U èB4T14Q98¯A‹}¶C4U (B4T14QO8ÊA‹}àC4U HB4T14Q*8åA‹} D4U B4T14QK8A‹}2D4U *B4T14QJ8A‹}[D4U EB4T14QJ86A‹}„D4U xB4T14QO8QA‹}®D4U ˜B4T14Q68lA‹}×D4U `B4T14QK8‡A‹}E4U |B4T14QE8¢A‹}*E4U ÐB4T14Q'8½A‹}TE4U øB4T14Q!8ØA‹}~E4U  B4T14Q!8óA‹}§E4U ’B4T14QB8A‹}ÑE4U HB4T14Q#8)A‹}úE4U ¥B4T14Q;8DA‹}$F4U pB4T14Q)8_A‹}MF4U ±B4T14QK8zA‹}vF4U ÍB4T14QK8•A‹}ŸF4U éB4T14QK8°A‹}ÈF4U  B4T14QK8ËA‹}ñF4U ! B4T14QK8æA‹}G4U = B4T14QF8A‹}DG4U  B4T14Q!8A‹}mG4U ÈB4T14QO87A‹}–G4U èB4T14QO8RA‹}¿G4U B4T14QO8mA‹}èG4U (B4T14QO8ˆA‹}H4U HB4T14Q98£A‹};H4U (B4T14QO8¾A‹}eH4U ˆB4T14Q*8ÙA‹}ŽH4U T B4T14QK8ôA‹}·H4U p B4T14QK8A‹}àH4U Œ B4T14QK8*A‹} I4U ¨ B4T14QK8EA‹}2I4U Ä B4T14QK8`A‹}[I4U à B4T14QK8{A‹}„I4U ü B4T14QK8–A‹}­I4U !B4T14QF8±A‹}×I4U ¸B4T14Q!8ÌA‹}J4U àB4T14QO8çA‹})J4U B4T14QO8A‹}SJ4U  B4T14Q98A‹}|J4U (B4T14QO88A‹}¥J4U /!B4T14Q@8VA}ÄJ4T @!B=mAš}8’A¥}èJ4U12›A,}.ñ*­`AœQK;num­g!ä7cmd°”,P9qA±}4U‹4T04Q0>Q(–gÇK?á!–Ÿ@red–ÇK?é+–ÇK?ë0—ÇK6@(šŸ ÉcAr›gAg›gAb›gKB('†!L?á!†Ÿ@red†K?é+†K?ë0‡K6e(ŠŸ Éc>}-wŸSL@wwg@hwgCá!zŸDÉŸà A~œP;x1glä;y1g¶ä;x2gå;y2gMå1sgƒå1xgßå1yg=æ0L.gsæ1xe1 g©æ1ye1 gWç1xe2 gòç1ye2 gzèC€(!Ÿ0á!#Pé6ö.$j‘À~1red%g±é0é+%g=ê0ë0%gƒêE!L2A0 SNFO4U‘´~4T‘°~8Ü AÕ}\O4Q24R‘À~8Aá}O4Q~4R4X}~#4Yv#JåA»O4U‘¨~4T‘”~”4Q‘¤~”J AÑO4U‘¨~8FAg}èO4U19PA,}4U (öAû .È“ðAäœSV0½$–Ÿpì1pm–ŸÏì0€(–ŸAí1pb–ŸŠí1m—¥Àí1xe˜gî1ye˜gzî1we˜gØî1he˜g¡ï1x™g}ð1y™g´ð6/™g‘¬~6Ì%™g‘°~7w™g‘´~7h™g‘¸~7n™g‘¼~0¡'™gñ7redšK‘¦~6é+šK‘¨~6ë0šK‘ª~0®%g“ñ0á!žPÉñ6ö.Ÿj‘À~K@AºQ0®gdòLA__c®gMòQCI°4C,°4LC4°SVC°gM*RCI²4C,²4LC4²SVC²gKe A^R0Ãg”òLA__cÃgEQK A äéRF†KÄòFzK)óFnKŽóFbKóóG N¨KN²KN¼KI’K Éc9¡ A {4U‘¦~4T‘¨~4Q‘ª~ObK0PQK= A÷„SF†KAôFzKôFnKßôFbK.õQ= AN¨KN²KN¼KI’K Éc9Q A {4U‘¦~4T‘¨~4Q‘ª~ObK08 A¥}›S4U12=Aí}8jA½}ÀS4Uv8ÄAÌ|åS4T ¨B4Qv8ÕAg}üS4U18ßA¥}T4U38òA¥}*T4U38 AAYJT4U‘¬~4T‘°~8 A¥}aT4U186 Aø}›T4U}4T ŠB4Q‘´~4R‘¸~4X‘¼~2N Aí}8} A~ÇT4U žB8‘ Ag}ëT4U14T øB8c AÕ} U4Q24R‘À~8‡ Aá}3U4Qv4R|4Xs4Y8ä AjhKU4UuJ. AaU4U‘~8h Ag}…U4U14T µB8 Ag}©U4U14T ^B8§ Ag}ÍU4U14T ;B8$ A~ïU4Rs4X04Y08R A~V4Rs4X04Y02b A#~Jk A2V4Us9Ï Ag}4U14T —BF.Ì+ @A§œrX;cmd ”,Rõ0*&g´õ0— &gýõ7x1'T‘@7y1'T‘H7x2'T‘P7y2'T‘X1s'TYö8kA¥}W4U38€A¥}W4U38•A¥}2W4U38ªA¥}IW4U38ÄArXgW4U‘@4T‘H8ÓArX…W4U‘P4T‘X2qA/~2ÁA/~2ÍA#~8:A}ËW4T DB2FAš}2¨A;~2A;~2A#~8?Ag}#X4U14T ;B2 A;~2þA;~2 A#~2jA/~2ºA/~2ÆA#~Ra+ïÀÜ@Áœ;Y;xï;Yµö;yï;Y÷1xzòTs÷1yzòTã÷1xdòT@ø1ydòTÕø0¤.óTDù0Ÿ.óTzù8SÝ@Ì|'Y4T B9dÝ@g}4U6TR`+áÞ@Kœ´Y;ixá°ù;iyáüù7dxäT‘P7dyäT‘X9ÄÞ@rX4Uw4T‘X.²Ï A›œ[;orÏŸHúK®A HZ0Õg·úMZA__cÕgSzy®A ÕFŠyçú2³Aí}<Ð ŽZ0Ög/ûMsZA__cÖgTzyÁAÐ ÖUŠy8ãA~­Z4U &B8öA~ØZ4U *B4Tv8$8&=AÁ|3%Ag} [4U14T .B92A¥}4U1.o­ÐAÅœ×[8A;~W[4R04X08>A;~s[4R04X02JA#~8lA‹}©[4U B4T14Q9=|Aš}5Ag}4U44T B.`A¬œ\6Ï?“g‘l8AG~\4T98¢AR~8\4T‘l4Q02¿A]~2ÒAi~2ÞA#~2íAP=9Ag}4U44T êBDÜ~g ü@®œÏ];al~Ÿ‚ûK=ü@ %]0„gáûMõ\A__c„gSzy=ü@ „FŠyü2Wü@í}< |]0…gBüMP]A__c…gTzy]ü@ …FŠyeü2Åü@í}8…ü@~§]4U ÌB4T}8$8&9˜ü@~4U ÐB4Tv8$8&.P:ÛÐü@ñœ7b;cmdÛ”,Ñü7xÞT‘°7yÞT‘¸0P:ߟFý0¾.àŸ¢ý0Ã.áŸ9þ0gâŸÐþ0%ãŸÙÿ0~äg„0= ägå1lenäg01iægS7d1æg‘¤7d2æg‘¨7d3æg‘¬6õ;ç’$‘@6Ô/èŸ ¸BŸ8 ý@\_4Uv8'ý@\*_4Uv8Qý@,}B_4Us2Yý@o8gý@¥}f_4U18uý@¥}}_4U38Šý@¥}”_4U38¤ý@rX´_4U‘°4T‘¸8¿ý@g}Ø_4U14T ;B8ðý@½}ð_4Us8þ@u~`4Ts4R‘¤4X‘¨4Y‘¬8Êþ@~5`4Ys8 ÿ@~M`4Ys2ÿ@#~8Ðÿ@}y`4T ñB8Au~³`4T ¸B4Q74R‘¤4X‘¨4Y‘¬80A‹}Ý`4U ðB4T14Q/8HA} a4T  B4Q ¸B8{A}(a4T PB8–A‹}Ra4U xB4T14Q+8ÝA¥}ia4U18A¥}€a4U18A\˜a4Us88A\°a4Uv8]AÌ|Ûa4T @B4Q}4Rv8nAg}òa4U18ŸAg}b4U14T pB9®Ag}4U14T ÔB.¶zPø@Åœ´e;cmdz”,±7x0}T‘ 7y0}T‘¨7x1}T‘°7y1}T‘¸7x2}T‘@7y2}T‘H6™%´e‘P0*…gê0— …g38mø@¥}c4U38‚ø@¥}c4U38—ø@¥}1c4U38¬ø@¥}Hc4U38Áø@¥}_c4U38Öø@¥}vc4U38íø@rX•c4Uw4T‘¨8üø@rXµc4U‘°4T‘¸8 ù@rXÓc4U‘@4T‘H8¢ù@~õc4R‘P4X44Y08Êù@~d4R‘P4X44Y02Öù@#~8úù@‹}Md4U ²B4T14Q28wú@}„d4T B4Q ÿ0s $0)( õ#y2ƒú@š}8Éú@™~³d4R‘P4X44Y28ûú@™~Õd4R‘P4X44Y28û@g}ùd4U14T ;B8Qû@™~e4R‘P4X44Y28ƒû@™~=e4R‘P4X44Y22‘û@#~8µû@‹}se4U ²B4T14Q28èû@~•e4R‘P4X44Y09ü@~4R‘P4X44Y0 ‹ Äe ‹.¤(ô@6œ.h;cmd(”,7x+T‘P7y+T‘X1r+TÈ0*,gÿ0— ,gn8-ô@¥}Qf4U38Bô@¥}hf4U38Wô@¥}f4U38qô@rXf4U‘P4T‘X8èô@¥~µf4Yv84õ@¥~Íf4Yv2Dõ@#~8hõ@‹}g4U ²B4T14Q28¼õ@}:g4T µB4Q ÿ0s $0)( õ#y2Èõ@š}81ö@±~_g4Yv8}ö@±~wg4Yv8Ÿö@g}›g4U14T ;B8 ÷@±~³g4Yv8U÷@±~Ëg4Yv2e÷@#~8‰÷@‹}h4U ²B4T14Q28ñ÷@¥~h4Yv9=ø@¥~4Yv>5/gjh@r@g@b?L.gV)ÿg0Ü@‹œÅhWrÿgU;gÿgÊ;bÿg0L.n9.Å´`ñ@¦œ€k;cmd´”, 7r·g‘T7g·g‘X7b·g‘\0L.¹gÆ AretºgCù-»€k<` ài1hÏŸ" 8Jò@¥}pi4U18lò@ø}§i4Uv4T uB4Q‘T4R‘X4X‘\8‡ò@Ì|Ìi4T ¨B4Qv9˜ò@g}4U18‘ñ@¥}÷i4U38¤ñ@¥}j4U38·ñ@¥}%j4U38øñ@jh=j4Qx8(ò@½~Uj4Qv8>ò@É~mj4Qv8µò@Ì|Œj4T `B8Æò@g}£j4U18ßò@g}Çj4U14T ;B2Có@½~8Yó@É~ìj4Qv8Šó@} k4T ~B8²ó@}*k4T B8Úó@}Ik4T œB8õó@‹}rk4U «B4T14Q92ô@š} ¥k ‹Ç.BH í@¹œÍm;cmdH”,X 7x1KT‘@7y1KT‘H7x2KT‘P7y2KT‘X6­)LT (Éc6”+LT  Éc6B/Mg 4Éc6h$NT Éc6ù'NT Éc6¨*Og 0Éc0–%Pg 0— Qgj 8jî@rX¸l4Uw4T‘H8yî@rXÖl4U‘P4T‘X2ºî@Õ~2ñî@Õ~2ýî@#~8^ï@}m4T `B2jï@š}8‡ï@g}Mm4U14T ;B8šï@¥}dm4U38¯ï@¥}{m4U32hð@Õ~2Ÿð@Õ~2«ð@#~8Úð@¥}¹m4U39ïð@¥}4U3.‘&<€í@œ(n/–%<gó 7cmd?”,P9‘í@±}4Uƒ4T04Q0Xdotðë@œZo;cmd”,> 7xT‘`7yT‘h0—  g³ 8ì@¥}—n4U38ì@¥}®n4U38.ì@rXÌn4Uw4T‘h2pì@á~2–ì@á~2¢ì@#~8ùì@}o4T QB2í@á~2@í@á~2Lí@#~9wí@g}4U14T ;B.`/ø°ë@5œ‡oY½$øgU:;ë>¾'agÔo?%aŸC/'jjLCIo4C,o4>°$¤g¨pC‰,¨gC™.©_ Agot©_ 6/'ªj ÀÉc7w«R DÊc7h«R @ÊcC.¬gCÀ%¬gCÝ*¬gC†)­_ CÑ+­_ C0®gCY+¯gC%³ŸZi0Ÿðà@C œ"y[cmdŸ”,ü \fnt¢g^*2£g uc]%¤Ÿ–*Ò-¦.$ `Êc* %§„ ‘Ð|\rx¨g\ry¨g*\rw¨gM\rh¨g‹*ö.©j‘À}]b'ªPÉ*+*«Ç ‘À~^̬_ _r­g_g­g_b­g`Ôo1â@ð ÇvGð HGpÿHSpJH_p•Ikp‘À}Iwp‘À~NƒpNpH›pàNåoNñoNýoI p ÀÉcIp DÊcI3p @Êc2Dâ@í~8Œâ@ù~„r4QH4R44X €Öc8ùã@Ì|£r4T ˆB8 ä@g}ºr4U58&ä@Ì|ër4T °B4Q}4R~4X|87ä@g}s4U58bä@s4R08•ä@9s4R‘À}4X‘À~8Æä@jhQs4Uu8å@qs4R‘À}4X‘À~8'å@jh‰s4Uu8Rå@µs4T B4Q ™öA8vå@)ûs4T èËc4Q äËc4R DÊc4X @Êc8Òå@5t4Q<4R ÀÉc8æ@5Ct4Q<4R ÀÉc84æ@ot4T B4Q ÈöA8Kæ@o‡t4Us2Òç@Ì|8ãç@g}«t4U18þç@×t4T B4Q öA89è@u4T B4Q }öA89ê@ù~-u4Q 4R44X €Öc8cê@ù~Vu4Q@4R44X €Öc8ê@ù~u4Q<4R44X €Öc8·ê@ù~¨u4Q84R44X €Öc8Îê@g}Ìu4U14T `B2Øê@P}2ßê@[}8õê@Ì|v4T ìB9ë@g}4U1a‡o׿@0 ñ8$á@¥}Dv4U182á@¥}[v4U38Oá@¥}rv4U38}á@oŠv4Uv8 á@g}®v4U44T ¡B2 â@A8,â@g}ßv4U14T B2næ@M8†æ@Y w4Q `Ëc8žæ@Ø|$w4QH<$2±æ@e8Âæ@qPw4T `Êc8׿@Ø|gw4Q08;ç@}€w4Q‘À~2bç@‰8ç@g}±w4U14T @B8¡è@;~Íw4R04X08Ðè@;~éw4R04X02Õè@•8+é@g}x4U14T 'B2<é@í~8Wé@Ø|@x4Q €8té@Õ}^x4Q24R‘À}8‰é@q}x4T `Êc8Ôé@á}§x4Qv4R|4X}4Y~8ê@~Éx4Rs4X04Y0Jê@Ýx4Us8ë@g}y4U14T ÑB9.ë@g}4U14T µBZb0”Ðà@œzy[fnt”gO,cmd—”,P9áà@±}4U4T04Q0bç×g–yc__c×gdoàÞ@pœ {F¡ošI­o @Éc<€ ñyNºoNÆo9 ß@¡4Tv<° {F¡o"G° Nºy8>ß@,}%z4Uv2Tß@°8•ß@¼Xz4Q @4R @Éc8Òß@Ì|wz4T qB8ãß@g}Žz4U18à@Ì|­z4T (B8à@g}Äz4U48*à@°ãz4T ZB9Kà@g}4U14T `B2%ß@È26ß@ }dQKPà@vœ½{FnKFzKÍF†KI¨K‘DI²K‘HI¼K‘LebKúbKŸI’K Éc9ˆà@ø}4Us4T B4Q‘D4R‘H4X‘Lf‡o@ë@iœdP=€AÜœª|8™A}|4T @B2¥AÔ8ÎA }3|4Us8 AÌ|R|4T ÏB2Aß8+Aëw|4Us8JAÌ|–|4T ÖB5\Ag}4U1gR+R+8h  Oh}gz z lg2.2. 9 gÂ*Â* Jg$+$+gR.R. ¤gh%h% Ô gììHgÑÑàgv v ægÒ.Ò.kg%%2hBB2grrág1616ÜgTTg  diƼÆhòjpoppopogxxâgññŠg¿¿ßgÛ/Û/ 5 gÜ$Ü$ °hÁÁQk6?À6i¥ › ¥ gª'ª' W g11 Ë gV1V1 J gƒ'ƒ' ¹ hšš hÈȈgø$ø$ g¢-¢- Ãgä.ä. V gÊ'Ê' d g.. 0 gÜ+Ü+ ¯ g** þgè/è/ › g¬&¬& › g11 R gÈ.È. & g ' ' 9 gµ*µ* ËgÎ0Î0gÅ)Å) g!(!( ß g?,?, ægb)b) ) gH+H+ 0g:+:+ dgL-L- C g¼0¼0“gÑ$Ñ$ ö g--  g// ƒ gƒ&ƒ& =gŠ%Š%÷iæÜægD&D& rg|)|) ög—(—( § h` ` íg__Ìhþ&þ&²:9¡µ 2À°!A‰#‚2é=Ø?40¬ 92ÐintÝ­ƒp(„p[ 8 ‹p§9§—0¾DØñ; —òi ÷¡ ø¡ Vù¡ ú¡ Éû¡( Üü¡0 Íý¡8 Ÿþ¡@ ‚ ¡H ¡P ó ¡X -s` ¦yh ,ip ÷ it wx FM€ è[‚ ÷ƒ iˆ …!‚ ü)Ÿ˜ E *Ÿ  +Ÿ¨ ,Ÿ° .4¸ ¼$/iÀ 1•Ä b–íœs Ds æ žy ¼8¢iB¾ § ; §¥ A;¥b<¥Ê =¥®Î ¨y1 ©yÚ ªy¿i Ô$iØ: K”/—° ¨ii \}ÿ˜63<| bQÑ g} ¡¥ 9•÷iÞ p;!•ù)ià *pà  7 H 9i C :ií Ô- @( --) .-˜ Ä çQV¡ piû m…‹{€ šT žŸ÷7zp :z- bz>8zL9zm9zT ¼›? TO j Æè ÈW  É ú Ê› õ; Ë Ì*W brgî orï prW"hÊ9¡³GiæLi~Pi ¡T ÇÝÖ Òw>tõ X¥b ϧb ɧb Pªb Jªb t «b n «b —­b °b ±Ç ¥ ´Ê – µÊ œ¶Ê A ·Ê ¸¸Ê ¹Ê ³ºÊ ­»Ê ¦¼Ê ¾½i$ B¿Ö( ç Âb0 ›Ãb2 @Æi4 FÇi8 dÈÜ@ ãÐnH ÓÒbTvÇ2 ËÊ aÍb { Íb øÎb ûÎb ßÏb IÏb 1ÑéuxÜ3yÜ‘zÜ §¢{‹|i }i! ~iÚi€ii|p¤C V ¦icnt§i ã¨N  D©N  % ªŸ %2«Ÿ  ¬N ( 1­¡0 ®N 8 €¯N @ ¸2°iHtag²iL B³iPlib´z X tµ¡` P ¶"hÉ ^N e(_N ¥`N ÞaN ½biciÎ>di e¡ ¡¬ f¡ äghËhiÞi-º i-ªi-=j¡9k¡êli4mni^oipiwr¡ž s¡ \ \ ³´vQ àwi iƒ Ëxx — yiB‰i´ŠidiÏ(”\ ~•-–-= —-–˜-{šid ›¡“œiq œiK žiR ži6 žiaži#Ÿ¡ b¢¡7£iWª¡«¡8¬¡ ­¡Ù®¡e/¯ij±bÁ »i! ÀN OÁ¡Õ(' V ƒi D„2  ã…2  % †Ÿ ä5‡- Å2 Ø fÆ2 hÈN VÉN & Êi±Íi z z € É 8Íò lÏ¡ é ÐisÑ¡ ]Òi z7Ói ! ÔN )ÕN ( DÖz 0ëÎo ˜Ïz -Ði£ÑiCÒiŸÓo $סœØiùÙiÚi16Tú› ¿‰Z#˜# Ø2TË 4p3Ò1·1ê3R T'a^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíTcORUåVcLTWcGTXcLEYcGEZcEQ[cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•TVÍz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3T^÷rÞ _ CTh'2ñOµ MkTzQ0ôÇ †3’† q”ï 4•õ ç1–õ%28™ï V ›i p4œï qï ž¡ % ŸŸ ¸2 ¡( ä5¡-0†QP ¹"idºi Û3»iûU@¾j ­.Àj  Ái( % Ÿ0 V ç8 iz ¯iÔ3i½4ii2'õ ÀÌc22(õ ¸Ìc' ) PØc8 * XØcC , hØcN - `ØcY .  Ìc ²2+iZ!2+i"i-i#â1.i#·/2 N™™!V i! i"ii"ar™($R2¦À@AÅœ]%cmd¦N e&ar¨™‘'• ©2 &symªï›&p«ŸÑ&str¬h-&dbl­]&i®iÀ&j®iE&bnd®i{',2®iÄ&cur®i!'²3®i‘(’AAp¾É)+ñ*p+7)+A‡+Må,AAo.à-U8.AAù/.3AAw8,­AAo.-U3,éAAo.(-U8.!BAƒ8,>BA8T-T Ø3B/]BA›8k-U1,âBA8Š-T 0B.CAƒ8,/CA8¶-T ¨3B,ZCAo.Í-U;,wCAo.ä-U8,CAV2-T3-Q0.ÁCA§8.ÏCAw8.ãCAw8.KDAù/.jDAƒ80€DA8-T €3B-$K2› @AœÑ1%2›¡A1|›i2cmdN P0³@A³8-UI-TóU-QóU$ n`?A3œò%cmdnN Ø',2pi‰&sq2 å&arr™g&symsï¥,€?Ao.S-U<.ž?Aù/,è?A8-T X3B/@A›8–-U1,:@Ao.­-U3,X@AV2É-T3-Q0.x@Aƒ80Ž@A8-T ÊB3ÿ2U:4offUi! U 4indU "iWi"curXi5%3Ei†4indE ! E "iGi"curHi"offHi6dimÎð9Abœ%%cmdÎN È"narЙ&oarЙc&nulÑ¡¿'V3Òiâ'O3Òil'2Òi·&iÒiï"jÒi2indÓj‘à~7q2Ój‘'3Ói9 &sÔï— '6Õi!8:A Ý'×iS!9­"__c×i:.7:A ×)>7Â!.:A¿8;@8'i"9"__ci:.7x7k".Žò)w¸#)k"=™+ƒî#+$0§A3ž>W>K=H>A?c+mª%+yà%,L:AV2µ-T3,_:AÖ8Ì-T3.q:Aƒ8,‡:A8ø-T Ð2B/©:A›8-U1.X;Aƒ8,t;A8G-T 3B-R-X~,…;A›8^-U1,Ü;Ao.u-U3,9A§8,£>A§8-U|.È>A§80?AÊ8-U8$ 3ÂÀ9A"œ“1¡&1V §O&2cmdÅN P0Ö9A³8-UG-TóU-QóU$(µ€9A5œÛ2s·2 P'ã3¸-ˆ&.Ÿ9Aù/$a2©P9A+œ2%cmd©N ¿&&p¬2 '.^9Aù/.j9Aw8$Z2Ÿ 9A.œ¦%sŸ¡A'&cmd¡N  ',89A³8‘-Ue-T0-Qs0C9Aw8-Us$| °8Aiœ %cmdN Ö'.Ù8A§8,ç8Ao.ø-U1.ð8Aw809AV2-T0-Q3$SP8ARœ %cmdN 5(&pƒ2 ”(.^8Aù/.r8Aw80˜8AV2-T0-Q3$¯pÐ7Arœ!%cmdpN Ý(&pr2 e).Þ7Aù/,8Aw8õ -U (öA088AV2-T0-Q3@:i°7Aœ$Ñ2?06Arœ<"%cmd?N Á)&dA2 I*&aB-¥*&bB-Ü*&cB-+,C6Ao.¥!-U3,X6Ao.¼!-U3.h6Aù/.µ6Aâ8/]7A›8ú!-U1-T Ñ/B,~7A8("-T µ/B-a ô-ÿÿÿÿÿÿï07A›8-U5$Ê2' 5AŽœ#%c'§Ÿ+/Â5A³8Š"-U6-T0-Q0/â5A³8¬"-U:-T0-Q0/6A³8Î"-U9-T0-Q0/6A³8ð"-U8-T0-Q0A.6A³8-U7-T0-Q0$’2ç€4AœÊ#%cmdçN |,'*4é¡-'‚2é¡)-&sê2 L-,!5A8Š#-T h2B/75A›8¡#-U1.J5Aù/05Aw8-U (öA$‹2Ý`4Aœ%$1V Ýi•-2cmdßN P0q4A³8-U@-T0-Q0$ƒ3Ó04A*œ|$%cmdÓN à-&sÕ2 ,..>4Aù/.O4Aw8$|3É4Aœè$1É¡b.1V Éi®.2cmdËN P0"4A³8-UK-TóU-Q0$A2¥°2AQœ¾&%cmd¥N ù.&l§ïÀ/&g§ï/0"ar¨™(42M3AÐÃu%)K2Ÿ0)@2é0Bo3AJ7(Z3AºÈ%)w1>k*+ƒC1+g10š3AÊ8-U@,È2AV2ß%-Q4.Ö2Aƒ8,ì2A8 &-T 2B/3A›8"&-U1.3Ao.,#3AV2K&-T3-Q1,93AV2g&-T3-Q2,„3A›8‹&-U6-T k/B,ì3A8ª&-T 82BA4A›8-U6$:2š€2A"œ*'1š¡Š11V šiÖ12cmdœN P0’2A³8-UJ-TóU-Q0$§2sp1Aœ©(%cmdsN !2&luïÒ2&guï3&atv¡Ÿ3(422A•»')K24)@2m4B?2AJ7,ˆ1Aí8Ù'-U|-T@,¨1AV2ð'-Q4.¶1Aƒ8,Ì1A8(-T È1B/á1A›83(-U1,ý1AV2J(-Q3,2AV2a(-Q2,P2AV2~(-U|-Q4,j2AV2•(-Q30~2AV2-Q2$ 2iP1Aœ)1i¡41V iiÜ42cmdkN P0b1A³8-UC-TóU-Q0$TX°0A™œ¸)%cmdXN '5&dZ-†5,Â0Ao.i)-U3,ö0A8ˆ)-T W/B,1A›8Ÿ)-U6091AV2-T1-Q3$eA0A¥œt*%cmdAN ä5&pD2 C6.0Aù/,A0A8 *-T C/B,R0A›87*-U6,0A›8[*-U4-T 0/B0›0AV2-T1-Q3$ 35à/Aœ¼*%cmd5N Ÿ62p82 P.é/Aù/$™3* /A:œ0+1ä5*-ë6&cmd,N "7,¹/A³8+-U?-T0-Q00Æ/AÊ8-U8C]3#€/Aœ\+B”/Aü8CD3@/A;œà+&st¡X72en2 P,K/AÊ8­+-UD,c/A8Ò+-Us-T */B.o/Aù/$ý1  /Aœ#,,+/Ao.,-U0B8/Aü8$É1ýÐ.AHœÄ,&stÿ¡¢72en2 P,Û.AÊ8t,-UD,ó.A8™,-Us-T */B,/A9¶,-Us-T1. /Aù/$y2ö°.A œ -,¾.Ao.ù,-U5AÐ.A9-T1$03æ`.ACœ©-&stè¡ì72ené2 P,k.AÊ8^--UD,ƒ.A8ƒ--Us-T */B,’.Aü8›--Us.—.Aù/$3Û0.A*œ.1Û¡68&sÝ2 ‚8.>.Aù/0I.Aw8-UvDî2£"A©œo.1V £i¸81ó2£¡-9A¹$A8-UóT-T 3õA-QóUEpopu2  ,Aœé/1^ uiŒ97*4xé/ €Ìc7»yé/ @Ìc'š2zië9&s{2 4:,8-A./-Us-T €Ìc,E-A.5/-U|-T @Ìc,b-A8n/-T  /B-Q €Ìc-R @Ìc,-A›8…/-U0.Í-Aù/,å-Aw8±/-U (öA,ú-A›8È/-U10 .A›8-U0-T ü.B §ù/ 1Fá V2 ,AœœM0&newY2 }:.E,A§80j,AÊ8-U($XD°+AOœ¨0&aF2 ³:&bF2 Ö:Aÿ+A›8-U1-T á.BG22ï°!AVœ'11V 2i ;12¡Y;&new4ï¥;,Ä!AÊ81-U80Ú!Aw8-Uv$g3*A›œ.2':3 õî;'õ1 .2<,A*A›8‰1-U3-T ·.B,¡*A9¡1-U|.¸*A#9,è*A9Æ1-U|,+A9Þ1-U|,O+A9ö1-U|,+A›8 2-U3A«+A›8-U3-T Ì.BïH·3úV2I]úïJtoúïK §ï°'A9œh4L§¡G<LV §i=Madd§iÉ=N:3ªõ>Nõ1«.27?NÌ3¬ï¦?Onew­ïÝ?N4®i9@Nû3¯i†@Nø2°i A8&(A M3PIÀ4P,À402(A.9-Uv,Ê(A8œ3-T 81B-Qv-R (öA¦8B~ $HM$.(-Y},Ý(A›8³3-U6,3)A8 4-T ˆ1B-Qv-R (öA¦8B~ $HM$.(-X}-Y‘¸”,H)A¨0)4-U~-Tv,)A¨0G4-U~-Tv.Ë)A80Ü)A›8-U6Q„–`'ALœã4Mcmd–N ~AN·˜N ·AOn™iíA,—'A8Ï4-T 1BA¬'A›8-U6R34b5JsbïSidiPW3eiSarg™Q«GP%Aœð6N¨3Iõ$BNõ1JïbBNÄ3Jï¾BNºKiáBTã4p%A@PŽ6)ï4SC*@+ø4œC+5ÀC+ 5öC.‡%A8,˜%A›8Ô5-U6.¤%A§8.Û%A§8,u&A8 6-T ,.B,†&A›8$6-U6.Ô&A§8,Ü&A§8I6-U},ÿ&A8h6-T H.B,'A›86-U6.I'A§8,°%A§8¦6-Us,&&A8Ë6-T è0B-Qv,7&A›8â6-U6.G&A§8Qþ5%AIœ.7Unew7õP0%AÊ8-UHVç×iJ7J__c×iW42À$A4œª7)@2,D)K2eD,ß$A8–7-T ô-BAô$A›8-U6W42ð)Aœå7)@2žD)K2×DB*AJ7WZDAFœ78)kE)w\E+ƒ¨EXP0¤DAÊ8-U@WàDAYœw8)+ÌE+7F+AvF+MÔFYv v æYççêYz z lY1616ÜYÑÑàYxxâZÁÁQY¿¿ßYÐИ[powpow™\¥ › ¥ Yâ2â2‚Y½2½2…\ñçñZ««…\æÜæ-ëµ ±4À@EAú;é=Ø840¬ 92ÐintÝ­ƒi(„i[ 8 ‹i 9 —0·DØñ4 —òb ÷š øš Vùš úš Éûš( Üüš0 Íýš8 Ÿþš@ ‚ šH šP ó šX -l` ¦rh ,bp ÷ bt px FF€ èT‚ ÷xƒ iˆˆ …!{ ü)˜˜ E *˜  +˜¨ ,˜° .-¸ ¼$/bÀ 1ŽÄ b–íœl Dl æ žr ¼8¢b;·  ˆ †4  ž †A;žb<žÊ =ž§Ç ¨r1 ©rÚ ªr¿b Í þ$ Ø: K/—° ¨bb\wÿ˜63<|bKÑgw šŸ †9÷bÞ i;!ù)bà *ià  7  H 9b C :bç  Í' †@( -') .'˜ Ä çKPš pbû m…{€ šM ž˜÷ 7tp :t- bt>8tL9tm9tM ¼›? TO j Æâ ÈQ  É ú Ê• õ; ËŠ Ì$Q \laî olï plW"bÊ9š³GbæLb~Pb ¡M Á×Ö Ìw>tï X¥\ ϧ[ ɧ[ Pª[ Jª[ t «[ n «[ —­[ °\ ±Á ¥ ´Ä – µÄ œ¶Ä A ·Ä ¸¸Ä ¹Ä ³ºÄ ­»Ä ¦¼Ä ¾½b$ B¿Ð( ç Â[0 ›Ã[2 @Æb4 FÇb8 dÈÖ@ ãÐhH ÓÒ[TvÁ2 ËÄ aÍ[ { Í[ øÎ[ ûÎ[ ßÏ[ IÏ[ 1ËãuxÖ3yÖ‘zÖ   ¢{‹|b }b! ~bÚb€bb|p¤= V ¦bcnt§b ã¨H  D©H  % ª˜ %2«˜  ¬H ( 1­š0 ®H 8 €¯H @ ¸2°bHtag²bL B³bPlib´t X tµš` P ¶hÉ ^H _(_H ¥`H ÞaH ½bbcbÎ>db eš š¦ f› ägbËhbÞi º i ªi =jš9kšêlb4mnb^obpbwršž sš V V ¬´vK àwb b} Ëxr — ybB‰b´ŠbdbÏ(”V ~•9–9= —9–˜9{šbd ›š“œbq œbK žbR žb6 žbažb#Ÿ› b¢š7£bWªš«š8¬š ­šÙ®še/¯bj±\Á »b! ÀH OÁšÕ(! V ƒb D„,  ã…,  % †˜ ä5‡9 Å, Ò fÆ, hÈH VÉH & Êb±Íb t t z É 8Íì lÏš é ÐbsÑš ]Òb z7Ób ! ÔH )ÕH ( DÖt 0ëÎi ˜Ït -Ðb£ÑbCÒbŸÓi $ךœØbùÙbÚb16Mú• ¿‰Z#˜# Ø2MÅ 4p3Ò1·1ê3R M'[^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíTcORUåVcLTWcGTXcLEYcGEZcEQ[cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•MVÇz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3M^ñrÞ _ 5McW5Ç5ÿ4CMhE2ñOµ MkMzo0ôÇ †%28™Ø V ›b p4œØ qØ žš % Ÿ˜ ¸2 š( ä5¡90oP ¹idºb Û3»bÞ¯bÔ3bu4 H ØÌcZ4!H ÐÌc b[ †c‹ "K €Øc¤5#b ÈÌc «lZA:œ½!pn, P" ZA#,#ÙcàYAœ íQ@YAžœs$êS9c$ S9b%G4S9 G&valS9AG'NYA/,H(U3'bYA/,_(U3)wYA/,(U3*² GYA"œ Ï#XAœ`+cmd#H ´G%·%H H%€5&bƒH%Ô3'bÍH'ŽXA;, (T Î4B'ŸXAG,!(U6'ÜXA;,L(T @8B(Qv(R|)êXAG,(U0 ýWAœK+cmdýH I%·ÿH vI%€5bæI%ø4b0J'WA;,Ý(T Î4B'WAG,ô(U6'›WA+(U}(T|'ÝWA;,7(T 8B(Qv)ëWAG,(U0 ¹5ÓÀUA@œ\+cmdÓH zJ%·ÕH ÙJ%€5ÖbIK%Ô3×b“K%5ØbÝK%ø4ÙbL'WVA;,è(T Î4B'hVAG,ÿ(U6'sVA+(U~(T}'½VA;,H(T Ð7B(Qv(R|)ËVAG,(U0 ²5Â@UAvœ+,Ï8ÂbJL&cmdÄH ©L'eUA;,¿(T ˆ7B(Qs'vUAG,Ö(U1'„UAS,ø(U-(T0(Q0'ŸUA;,(T ÇóA(Qs"«UA_, q5° TAŸœ-+cmd°H ßL,ø4°b>M--ðTA½¾.:³M/ðTA0,0 ,)UA/,(U;'ÒTA;,Ý(T 7B'àTAG,ô(U0'%UA;,(T X7B(Qs)6UAG,(U61v5¥_2cmd¥H 3ø4§b3S4¨, X™PTAœš+cmd™H ×M!c›H U ] TA!œÇ4cmdH U  z°SAcœ%&i}bN!len}bT%Á5~H GN)¾SA/,(U3 ì m0SAxœš'>SA/,Z(U35ŒSAG,~(U6(T 95B6¨SAk,(U ìûA ½2XPRAÑœ,Ä2XšN,V XbO&cmdZH O7ŽÇRA f.ŸñO)ÕRAw,(U87ÜÜRAàh?.éP'eRA¾\(Us(T7'rRAƒ,t(Us'™RA;,·(T '5B(Q 5B5Bv $@L$)(5°RAG,Î(U1'¼RAS,ñ(Uv(T0(Qs)ÇRA_,(Us1^5F+8]FH 2toFH  ÓPA:œ¾+cmdÓH eP%Ä2ÖH bQ&ret×, «Q%V ØbáQ&dotÙš=R'kPA¾°(T7'†PA,Î(U|(T."¯PAž,'ÀPA¾ò(T25 QA (UóU"5QA#,"]QA#,"vQAc''¨QAƒ,J(U|'ÃQA;,i(T 5B'ÑQA,(T@'åQA©,™(Us5+RAG,°(U1"4RAƒ,9вH MAÇœÜ,²šsR,V ²bÒR%·´H DS&atµšzS:=3I¾-3,¾-;¸MA 3IÃ-3,Ã-)ÄMA¸,(T~;†MA Á3IÈ-3,È-)’MA¸,(T~)=MA,(U~(T@1Ç4¦ö2cmd¦H –5 LA<œ5)ÈLAG,(U0(T š4B ¸4’PLAGœt)kLAG,(U0(T h6B#€ ‹@LA œ, AV&cmd?H V%2@bÓV=ð&"&dotEšCW'eJA,Ï!(T.'ŸJA;,î!(T t4B'°JAG,"(U3)$KAG,(U3(T f4B'ïJAG,J"(U3(T f4B6 KAG,(U3(T 4B Ÿ42ÀIA2œÙ"+cmd2H W&sym4ØÆW'ÔIAÇ,Å"(T1(Q2)ÞIAÓ,(U0 ˜4'IA#œA#>cmd)H ' IAß,'#(U \4B(T06³IAS,(UD(Q0 6 IAbœÝ#+cmdH üW'5IAÇ,†#(Q4"CIAƒ,'YIA;,²#(T (6B5kIAG,É#(U16‚IAÇ,(Q2 ú5IAœJ$,šqX,V b½X!cmdH P)IAS,(UB(TóU(Q0?ïñÐNA¤œÎ$@cmdñH YAfuóH Y'âNA¾›$(T3'1OA;,º$(T Î4B6COAG,(U6?"5ç°HAKœ8%BcmdéH PCÜÂHAÀì%.éÆY)ÂHAS,(UL(T0(Q0?d4ÉàMA霯&DÄ2ÉšüYL4˯&‘ ~AdotÌššZAcmdÍH ½ZCÜšNA`á²%.éóZ'NAG,Ö%(U6(T 6B'NA,ô%(Us(T.'1NAë, &(U‘¤~'>NA¾*&(Uw(T7'KNAƒ,B&(Uw'aNA;,a&(T ´4B'rNAG,x&(U1'NAS,š&(U2(T0(Qs)šNA_,(Uw  ¿& †Ç?Ú²PHAZœc'@cmd²H )[EÒ4´, Ç["dHA('nHA/,'(U:5•HAG,B'(U0(T G4B6ªHAG,(U0(T 6B?È‚GA±œ(@ret‚, \Aa„, p\Ab„, ]Ac„, a]Btop…, XAbot…, „]Eó4†, »]Eê5†, Þ]E¸2‡b^?4] FAçœþ(D55]bt^E¬4_, %_Eî4_, n_E5`š¤_EB5a9`EM5bbs`'ÒFA/,Ž((U:'GA/,¥((U:'GAG,É((U0(T Ð5B"4GA#,FQGAú,FyGAú,"‚GA_,?×54pEA0œK*@cmd4H Ï`Ais6b1aEç46b~aAs7, Ça'¶EA;,—)(T P5B(R 4B!4Bs $@M$)('ÇEAG,®)(U1'þEA;,Í)(T  5B5FAG,ä)(U6"%FA#,'=FA_,*(U (öA'_FA;,/*(T €5B)›FA;,(T *4B?Ð5)@EA%œ±*@is)b6bDç4)bbBcmd+H P)XEAS,(UK(T0(Q0GŽLA-œé*.ŸÌb)LAw,(U8GÜàLA/œ +HéUG€OA‚œÝ+.c.Éc;ÏOA+.d.;d6ÞOAG,(U1(T æ4B5ºOAG,¥+(U1(T ð6B5ïOAG,É+(U1(T È6B6PA/,(U:G-pTA!œ#,.:adIFšd0R)ŠTA/,(U;Já á nKpoppopoJz z lJ1616ÜJxxâJv v æJppÞJ¿¿ßJççêL¥ › ¥ M««…LñçñLæÜæJ  qJ²2²2xJEEéLJXXm7'µ Ù<À€eAé=Ø440;¬ 92ÐintÝ­ƒj(„j[ 8 ‹j¡9¡—0¸DØñ5 —òc ÷› ø› Vù› ú› Éû›( Üü›0 Íý›8 Ÿþ›@ ‚ ›H ›P ó ›X -m` ¦sh ,cp ÷ ct qx FG€ èU‚ ÷yƒ i‰ˆ …!| ü)™˜ E *™  +™¨ ,™° .)¸ ¼$/cÀ 1Ä b–íœm Dm æ žs ¼8¢c<¸ ¡‰ ‡5 ¡Ÿ ‡A;Ÿb<ŸÊ =Ÿ¨È ¨s1 ©sÚ ªs¿c Î ÿ$ cØ: KŽþ8Ã\/@ 1Gù8-2Oü?.D_ :¡z€'>HÆ Ÿ>È> L;Ê› ¶8Ë› î;Ð ;Õ «<Ûc( È>âc, g>èc0 t7êc4 ø>ëc8 :8ðc< Å?òc@æ=¦)ì<©h;«>­°8«>k8) XÎcP9) PÎcÆ:‘ HÎcoÇ=¡ @Îc; 8Îc( hÝc?› 0Îcæ; c ,Îcÿ:!c (Îcœ:&c9[;"3] øÌcD] ðÌcV7_c¿9acac œuc(=e› Z›‡{Šö9‡› `B ZLJ¶=îÇ  |B .ò ‡ÿâ‡:;ò  {B . ‡L ­>[ ÀzB jI‡­8Ï6gI `uB Zu‡­dI7¶u pB j¡‡ç k:¡  ZB ZÍ‡ç ¼í6=Í @DBa@ucèv ìÌcº7x  ÎcU[;x Îc@y›Ì;zc ÎcÝ7{c ÎcÒ;|cP?}æ8‹c  ÎcÔ=Œc Îc~  Úcœ (cµ>N .$ œ9¿=Í980<5>tTO @ : ú;  < J@?Ä;{\6g tONÞ6$7>£@U<;ú6‹=A@P=6¤8 }:!•="Ó<#•<$^>%Á8&tDO'Ú>(<6)tIF*ó8+à<,‡>- 9.9/d80Œ?1>2—:3]<4æ<5tAT6Ë<7Þ?8:9¦7:_8;tOR<V;=¼<>€9?7@=A:B“?C=D†=E @F7G¼?H¥<Iµ?J;Kô6LtASM 7N~>O(<Pv>Q¿;Ró<S28T:U9V =Wà=X89Y7Z5:[’7\)@]˜?^ß>_[@`ž7a”9b/9cL<d9e!<fz?g8h$@i™>j?k8l”>mF9n6?o76p"9qD6ru?s«@t\:u0:v=w‹6xP7yX8zA9{7|K9}ø7~¯6—7€d9e=‚q>ƒÈ9„«8…¸9†7>‡d7ˆl7‰A7Š=‹)9Œð=8<ŽÇ7Ö? 8‘b:’…6“‚;”7•7–;—Ã6˜k?™U:š!8›Ž>œ¡6b< Ò‰ c6 Ö‰ ú: ×c÷@ Øcsep Ùc= Ú›%2 Û›|" Ü›Ä Ý›b< â$ ×6 è —° ¨cc \ä ÿ˜63<| b¸ Ñ gä › ‡9ü ÷cÞ j;!ü ù)cà *jà  7y H 9c C :cT y Δ ‡@„ ( -” ) .” ˜ Ä ç¸ ½ ›pcûmì ò {€šNž™÷7á p :á - bá >8á L9á m9á !N¼†›? TO jÆO"Ⱦ Ɇ úÊ õ;Ë÷ Ì‘¾ ÉÙÎî oÙï pÙW"Ï Ê9›³GcæLc~Pc ¡N .DÖ 9w>t\# X¥É ϧ\ ɧ\ Pª\ Jª\ t «\ n «\ —­\ °É ±. ¥ ´1 – µ1 œ¶1 A ·1 ¸¸1 ¹1 ³º1 ­»1 ¦¼1 ¾½c$ B¿=( ç Â\0 ›Ã\2 @Æc4 FÇc8 dÈC@ ãÐÕH ÓÒ\Tv.#2 Ë1 aÍ\ { Í\ øÎ\ ûÎ\ ßÏ\ IÏ\ 18PuxC3yC‘zC ¡x¢{m‹|c }c! ~cÚc€cc!N/)Û \•Ëù Ž@¼€'¸ —#|p¤ V ¦c$cnt§c 㨠D© % ª™ %2«™  ¬( 1­›0 ®8 €¯@ ¸2°cH$tag²cL B³cP$lib´8X tµ›` P ¶áhÉ ^)(_¥`Þa½bcccÎ>dc e› ›pfeägÏ ËhcÞi'º i'ªi'=j›9k›êlc4mmnc^ocpcwr›ž s› > ´vàwc cAËx6— ycB‰c´ŠcdcÏ(”>~•‰ –‰ = —‰ –˜‰ {šcd ››“œcq œcK žcR žc6 žcažc#Ÿeb¢›7£cWª›«›8¬› ­›Ù®›e/¯cj±É Á »c! ÀOÁ›#Õ(å V ƒc D„ð ã…ð % †™ ä5‡‰ Åð–fÆðhÈVÉ& Êc±Íc 88>#É 8Ͱ$lÏ› é Ðc$sÑ› ]Òc z7Óc ! Ô )Õ( DÖ80ëÎ-˜Ï8-Ðc£ÑcCÒcŸÓ-$×›ùÙcÚc16NúN¿‰Z#˜# %NVºz½p ¿ÿf $ã Á ¥ Q ½ / ˆ#P ¹á$idºc Û3»cº¯¤c o ‡¸:©ó àÍc&Ç8ªc `Ýc'°« €Ýc'ܬ èÌc'ç­ @Úc'»® pÝc'Ư xÝc'Ѱ äÌc&i9±c àÌc(ç?ÐgA—œ)MhA5î*T ˜:B+^hA›5*U6,x@Ç>ÀdAœš-Ç›åd-ñ?ÇÏ je-<Çc£e>>Éš Ícï>Êš‘ð}.pË›f.libÌ>8f.iÍc”f/X>ΛEg0ueA IÜ)/,Ü)Æg14ܪÜc) eA§5'*U Ã8B*Tv)%eA¶5K*Uw*Ts*QÈ)MeA§5p*U Ã8B*T|)leA§5Ž*Uw*T.)¦eA¶5¹*U Íc*Tw*QÈ)µeA§5Þ*U Íc*T.)ÍeAÅ5 *U Íc*T B)fA¶5/*U Íc*QÈ)bfA§5N*U ä8B)¶fAÑ5f*Tw)ÈfA§5‹*U Íc*T.)àfAÅ5·*U Íc*T B)gA5ã*T ç8B*Q Íc)$gA›5ú*U1)qgA5*T x:B*Qw)‚gA›56*U1)—gA›5Z*U1*T È8B)¹gAà5*U Íc*Tv+ÉgAë5*U|*Tv ¡ª ‡ÇB,>ycphACœå-y›þg>>{›‘XI6|c ÌÍc¢9}c ÈÍc0¨hA iIƒ)/,ƒ)Zh14ƒªƒc0ËhA µI‹)/,‹)’h14‹ª‹c0àhA I”)/,”)Þh14”ª”c2ŒhAú5)ZiA6%*T0)ÔiA›5I*U6*T à:B)úiA6`*U1)$jA›5„*U6*T ;B20jA±)TjA´*Uv*T‘X*Q0)qjAY)Í*T @2yjA`*)ÔjA›5þ*U6*T H;B)ÿjA5#*T €;B*Qv)kA›5:*U1)2kA5_*T H9B*Qv)CkA›5v*U5)okA5›*T °;B*Qd)€kA›5²*U1)kA5Ñ*T Ø;B+®kA›5*U1(pt dAœs 3cmdt›*i4C&¤dAve 5T&vi)©dA6P *Us+´dA>%*Us6½dA`*(bcAœ„!-mb>¬i-g b›j-wb›ƒj4C&¯cAg!5T&õj)·cA6þ *Us+ÂcA>%*Us)ÝcA68!*Uv*T ¹8B):dAY)Q!*T @)UdA6v!*Uv*T ¹8B2‘dA`*(Þ8I@bABœE"3msgI›+k.iKcwk7jKc‘\)abA5ù!*T ©8B*QóU*R‘\2ªbAú5)cA51"*T ²8B*Qs8$8&+NcA›5*U18/?B_"9ptrB™:…95™‰"9ptr5™;õ;5:¬;0™§";õ;0,–8ÿ c@aAМa#4E"}aA #5R"Øk+…aA)6*UvÖ:Ý c(C>Ø 0aAœ›#?“;Ø cU@³=Ó c aAœ(x;Î aAœæ#?O>Î >U(Ý;É aAœ$?²7É >U(s9½ ð`Aœ@$?<½ cU@´;´ ›à`Aœ@m;« Ð`Aœ@Á<£ >À`Aœ@R@› >°`Aœ@?<’ c `AœA(6v 6@$œ>%3msgv Èl)76@56*%*T ÌóA*QóU+A6@A6*U2,w6T o`ArœC&-6T Èjl-47T Él.bV o=mBbufW ›.nX sm.iY Ám4‰"`A] ð%5š"øm+`AM6*U|)M`Aa&&*T|)h`AÖ$'&*U H:B+r`AÖ$*U ‹8B:ù<G oa&;{<G È,´6" o`_Aœ'-_" ›n-õ;" nBb$ o<‰"ƒ_A@, ã&5š"o+_AM6*UH)×_A`*û&*Us+ý_AÖ$*U :BC&;ñ ?'?ó 1›< (/=Þ Ð^Aœƒ'DW*_A0é 2ú^A­((â9À ^A¬œÓ'-r:À o(o=W*™^AÖ 22^A'(<;£ \A}œ(Eb£ oUDW*P\A-· Fh6‡ €\A„œ­(3b‡ oto-m‡ >Ào/Õ9Š c p2•\AY6)£\AÓ'‡(*Us)ã\Ad6Ÿ(*Uv2ê\Ap6(…8t [AbœY)3bt o/p‰q-õ;X cèqBbZ o<‰"]A \ Û)5š"Gr+#]AM6*UH4‰"6]Ae *5š"lr+;]AM6*U v $ &#)V]A(;**Us*T|+h]AÖ$*U è9BJ ?J (æ:+ ðZAšœ´*-r:+ o¬rDW*B[A0@ 2ùZA'(å> p]A¯œ1+-¢> > s=W*ž]AÐ$ )ž]A(+*Tv2å]A'+^AY)*T @K’@ Ug+;0@ U8 c<‘ "Lj=m U`5@½œÀ+/0@o Ujs/:p ›¨sM /<z "ósK? cB,/ ›†7 ›I8 Bi ,7 cN3,§=2 c1BcA cBnA )1o@\ ,€=qcÀkAçCœ3/0@sUt/:t›iu/Ü9t›öw/Á>ucÌxO˜6±OÎ7ÁOF?ÄP‰;êÝmAQÐæ,/<´"O{Q-/j<c¾{Q -/j<câ{Qð4-/j<!c|QÀN-/j<&c*|Qh-/j<7cN|Q‚-/j<Lcr|QPœ-/j<Lc–|0´„A+0./ :Q›º|0´„A "./%*UóUS‰"bAœ 55š"_…HbAM6*UóUS_" bAœU55p"˜…5|"Ñ…H%bAã6*UóU*TóTSE"0bAœ55R" †H5bA)6*UóUVz z lV1616ÜW¥ › ¥ W¹¯¹VTTW!!X««…WX  OV èYpoppopoVññŠVÔÔãV  dV((VÂÂÒXBB2V--ZV¨6¨6W6 66Vv v æZ6?À6Véé V¿¿­V+8+8>VÕ8Õ8:Vý7ý7ÅV‡9‡9àV× × ÝW>÷=>øc#µ ;BÀ°¯AA1ªTé=Ø?40¬ 92ÐintÝ­ƒp(„p[ 8 ‹p§9§—0¾DØñ; —òi ÷¡ ø¡ Vù¡ ú¡ Éû¡( Üü¡0 Íý¡8 Ÿþ¡@ ‚ ¡H ¡P ó ¡X -s` ¦yh ,ip ÷ it wx FM€ è[‚ ÷ƒ iˆ …!‚ ü)Ÿ˜ E *Ÿ  +Ÿ¨ ,Ÿ° .4¸ ¼$/iÀ 1•Ä b–íœs Ds æ žy ¼8¢iB¾ § ; §¥ A;¥b<¥Ê =¥®Î ¨y1 ©yÚ ªy¿i Ô$Ø: K”/?—° ¨ii \~ÿ˜63<| bRÑ g~ ¡¦ 9–÷iÞ p;!–ù)ià *pà  7 H 9i C :iî Ô: @*( -:) .:¥B•p˜ Ä çin¡ piû m£{€ šT žŸ÷7’p :’- b’>8’L9’m9’T ¼7›? TO j Æ Èo  É7 ú ʳ õ; ˨ ÌBo zŠî oŠï pŠW"€Ê9¡³GiæLi~Pi ¡T ßõÖ êw>t  X¥z ϧb ɧb Pªb Jªb t «b n «b —­b °z ±ß ¥ ´â – µâ œ¶â A ·â ¸¸â ¹â ³ºâ ­»â ¦¼â ¾½i$ B¿î( ç Âb0 ›Ãb2 @Æi4 FÇi8 dÈô@ ãІH ÓÒbTvß2 Ëâ aÍb { Íb øÎb ûÎb ßÏb IÏb 1éuxô3yô‘zô §)¢{‹|i }i! ~iÚi€ii|p¤[ V ¦icnt§i ã¨f  D©f  % ªŸ %2«Ÿ  ¬f ( 1­¡0 ®f 8 €¯f @ ¸2°iHtag²iL B³iPlib´’ X tµ¡` P ¶(hÉ ^f }(_f ¥`f Þaf ½biciÎ>di e¡ ¡Ä f¹ äg€ËhiÞi'º i'ªi'=j¡9k¡êli4mni^oipiwr¡ž s¡ t t ³´vi àwi i› Ëx — yiB‰i´ŠidiÏ(”t ~•-–-= —-–˜-{šid ›¡“œiq œiK žiR ži6 žiaži#Ÿ¹ b¢¡7£iWª¡«¡8¬¡ ­¡Ù®¡e/¯ij±zÁ »i! Àf OÁ¡Õ(? V ƒi D„J  ã…J  % †Ÿ ä5‡- ÅJ ð fÆJ hÈf VÉf & Êi±Íi ’ ’ ˜ É 8Í lÏ¡ é ÐisÑ¡ ]Òi z7Ói ! Ôf )Õf ( DÖ’ 0ë· ˜Ï’ -Ði£ÑiCÒiŸÓ‡ $סœØiùÙiÚi16Tú³ ¿‰Z#˜# üT ]Ú ®µOæîÖ¤Ñ h © å – à ^‡ëù¼Jþà–¯@DY–/v !#"Ò#F$(%U&/'×(›) *P+b,-.ª/ fOR0Œ12´3f4Á56r748)9ò:;w<ù=;>?@ÆAûB CØ2T4p3Ò1·1ê3â&T"±,/Ž-š+R T'G^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT cORUåV cLTW cGTX cLEY cGEZ cEQ[ cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•TV³z½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3T^ÝrÞ _ 5TcW5Ç5ÿ4P ¹(idºi Û3»i!Ÿ="WEDGH.+A“%#i"Ÿ"9kA–zYt!Ÿ“"4"9DA™¤ž!ŸÂ"Ÿ"4"96CœÓ©Í!Ÿñ"4"4"9rC ØüÄA¤%$#gi ´Ýc$¯hi  uc$5ii ¨Îc%L j  Îc$2Bki ˜ÎcVBm’ %b n ”Îc%m o Îc$ Api ŒÎc$ Bqi ˆÎc$Dri „Îc$*Dsi €Îc$Ö@ti |Îc$ñAui xÎc$]Avi tÎc$Awi pÎc$[Cxi lÎc$ÅCyi hÎc$€5zi dÎc$Ô3{i `Îc&b<U'c6Y-'ú:Zi'÷@[i(sep\i'=]¡'%2^¡'|"_¡'Ä `¡b<e ×6kŒB|F+wBˆM<CŽbM&¬;+„'RA-M'KC. 7•)„*¸Az• €-C HÁ)«°*PDªÁ  *C Ôí)Ü*´CÝí `!C Y)é*º@1 €C HE)é4*/ØB ?—3@/¯BA d\i—/“AB €\²—3p¨/ÝCF ?µ˜4p´A¾`5U5T|5Qv3Ðä/ÝCG ?+™4‰´A¾`5U~5T‘Èo5Q}6D´AÇ`5U s2$s"1$#4›´AÒ`5U|4¨·AÝ`5T £ˆB5Q‘Ào7ÆA$®8I48,46ÆAé`‚5T06)ÆAõ`™5U145ÆAa5Ts9¸\°·A²¾ ·:Ñ\Œ™;Ý\:Å\¯™<°·A²=é\>õ\ç™>]š6Ô·AÝ`H5T è’B5Q~5R‘¸o1$ *C"” ÿÿ6%¸AÝ`m5T ‰B5Qv6B¸A[_¢?ã]v‘¸o °B"”ÿ13$}"4S¸Aa5U:9=_ˆÍA¢õ:N_Vš4˜ÍAa5T05Q:9=_¶ÑAê3:N_zš4ÆÑAa5T05Q:9=_úÓAç q:N_žš4 ÔAa5T05Q:6õ´AÝ`™5T ÀˆB5Q‘¸o”6FµA`Ç5U ʉB?«\ ¸Ýc6cµA]å5U|5Tv6°µA`$5U ܉B5Ts1$@µB"” ÿÿ?«\}6=¶A`R5U ü‰B?«\ ¸Ýc6k¶A`q5U ŠB6‚¶AÒ`‰5U|6ß¶A*a¨5U ½‰B@û¶A6a6A·AAaÞ5U åˆB5T15QE6h·AÝ` 5T ˆB5Q ûˆB6w·A[_1 5T~?ã] ¸Ýc6ˆ·AaH 5U:@¸APa6¸A\av 5U>5T05Q06˸AÝ`¢ 5T ˆB5Q µ‰B6æ¸A[_º 5Ts6÷¸AaÑ 5U:6+¹A]ï 5U|5T~6C¹A] !5U|5Tv6k¹AAa6!5U “ˆB5T15Q?6ºAAa_!5U ÓˆB5T15QA6]ºAhav!5U36lºAha!5U16{ºAha¤!5U96ŠºAha»!5U26–ºAhaÒ!5U06¥ºAhaé!5U86±ºAta"5U06¿ºA\a""5UQ5T05Q06ͺA\aD"5U=5T05Q06àºA\af"5U#5T05Q06óºA\aˆ"5U$5T05Q06»A\a©"5UO5T05Q06»A\aË"5U 5T05Q06(»A€aâ"5UD67»A€aú"5U16F»A€a#5U06U»A€a*#5U/6d»AŒaI#5U (öA6n»A€a`#5U86}»AŒa#5U (öA6‡»A€a–#5U86–»A€a­#5U86¥»AŒaÌ#5U (öA6¯»A€aã#5U76¾»AŒa$5U (öA6È»A€a$5U76×»A€a0$5U76æ»AŒaO$5U (öA6ð»A€af$5U66ÿ»AŒa…$5U (öA6 ¼A€aœ$5U66¼A€a³$5U66'¼AŒaÒ$5U (öA61¼A€aé$5U56@¼AŒa%5U (öA6J¼A€a%5U56Y¼A€a6%5U56h¼A€aM%5UA6w¼A€ad%5UC6†¼A€a{%5U@6•¼A€a“%5U?6¤¼A€a«%5U56³¼A€aÃ%5U>6мA€aÛ%5U46ß¼A€aó%5U,6î¼A€a &5U$6ý¼A€a#&5U!6 ½A€a;&5U 6½A€aR&5UG6*½A€aj&5U969½A€a‚&5U86E½A€a™&5U06T½A€a°&5UN6c½A€aÈ&5U76r½A€aß&5UM6½A€aö&5UL6½A€a '5UK6Ÿ½A€a$'5UO6®½A€a;'5UJ6½½A€aR'5UI6̽A€aj'5U26Û½A€a'5UF6ê½A€a˜'5UE6ù½A€a°'5U-6¾A€aÇ'5U>6¾A€aÞ'5U=6&¾A€aõ'5U<65¾A€a (5U;6D¾A€a#(5U:6S¾A€a:(5U96c¾Aé`Q(5T06p¾A˜ah(5T26€¾Aé`(5T06¾A˜a–(5T46œ¾A¤a®(5U}6«¾A¤aÆ(5U>6º¾A¤aÞ(5U{6ɾA¤aö(5U<6ؾA¤a)5U!6ç¾A¤a&)5U=6ú¾A\aH)5U;5T05Q06 ¿A°a`)5U^6¿A°ax)5U/6'¿A°a)5U*66¿A°a¨)5U-6E¿A°aÀ)5U+6U¿Aé`×)5T06d¿A\aô)5U<5Q06y¿A\a*5UM5Q06¿A\a:*5UN5T (öA5Q06¥¿A\ac*5UN5T (öA5Q06»¿A\aŒ*5UM5T (öA5Q06Ñ¿A\aµ*5UM5T (öA5Q0@á¿A¼a6ô¿A\aä*5Ui5T05Q06ÀA\a+5Uy5T05Q06ÀAÈa+5U}6%ÀAÈa6+5U>64ÀAÈaN+5U{6CÀAÈaf+5U<6RÀAÈa~+5U!6aÀAÈa–+5U=6pÀAÔa®+5U!@zÀAàa6„ÀAÔaÓ+5U&6—ÀA\aô+5U@5T05Q0@œÀAìa@¦ÀAàa6°ÀAÔa&,5U|6ÃÀA\aG,5UA5T05Q0@ÈÀAìa6ÛÀAøak,5T16ëÀAé`‚,5T06úÀA\aŸ,5U>5Q06 ÁAta¶,5U16ÁA\aØ,5UQ5T05Q06%ÁA\aú,5U=5T05Q064ÁA€a-5U#6CÁA€a*-5U"6RÁA€aB-5UC6aÁA€aZ-5UB6tÁA\a|-5U%5T05Q06‡ÁA\až-5U&5T05Q06šÁA\aÀ-5U!5T05Q06­ÁA\aâ-5U"5T05Q06¼ÁA€aú-5U:6ËÁA€a.5UB6ÚÁA€a(.5U26éÁA€a?.5U26øÁA€aV.5U16ÂA€am.5U16ÂA€a„.5U?6%ÂA€aœ.5U)64ÂA€a´.5U(6CÂA€aÌ.5U'6RÂA€aä.5U&6aÂA€aü.5U%6pÂA€a/5U*6ÂA€a+/5U46‘ÂA¼aL/5a ô-ð¿6›ÂA€ac/5U46­ÂA¼a„/5a ô-ð¿6·ÂA€a›/5U46ÆÂA€a³/5U@6ÕÂA€aË/5U66äÂA€aâ/5UH6óÂA€aú/5U;6ÃA\a05U;5T05Q0@%ÃAb@*ÃAìa6DÃA\aV05U;5T05Q0@IÃAb6WÃA\a…05U/5T05Q06eÃA\a§05U35T05Q06­ÃA\aÉ05U25T05Q06·ÃAbá05U0@ÏÃA(b@÷ÃA4b6ÄA@b15U16ÄA\a315U;5T05Q0@#ÄAìa@4ÄALb@9ÄAb@>ÄAàa6LÄA\a‰15U/5T05Q06ZÄA\a«15U35T05Q06{ÄA\aÍ15U25T05Q06…ÄAbå15U0@ÄA(b@®ÄAb6¼ÄA\a!25U/5T05Q06ÊÄA\aC25U35T05Q06 ÅA\ae25U25T05Q06ÅAb}25U0@/ÅA(b6PÅA\a¬25U,5T05Q06cÅA\aÎ25U,5T05Q06vÅA\að25U*5T05Q06„ÅA\a35U;5T05Q06’ÅA\a335U+5T05Q06ÓÅA\aU35U/5T05Q06áÅA\aw35U=5T05Q06ïÅA\a™35U55T05Q0@ôÅAXb@þÅAdb6 ÆA\aÕ35U45T05Q06ZÆAõ`ì35U16lÆA¼a 45a ô-ð?6®ÆA\a/45U/5T05Q06¼ÆA\aQ45U35T05Q0@ÍÆALb@ÒÆAb@ׯAàa6êÆA\a™45UB5T05Q0@ïÆAìa6ýÆA\aÈ45U'5T05Q06ÇAé`ß45T06ÇA\aü45U>5Q0@ÇAàa6'ÇAé` 55T066ÇA\a=55U<5Q06DÇA\a_55U)5T05Q06OÇAé`v55T06^ÇA\a“55U>5Q06iÇAé`ª55T06xÇA\aÇ55U<5Q06†ÇA\aé55U(5T05Q06”ÇA\a 65U;5T05Q0@™ÇAìa6©ÇAé`.65T0@±ÇApb6¿ÇA\a\65UC5T05Q0@ÄÇA(b6ÎÇAb65U06èÇA\a£65U25T05Q06 ÈA|bº65U26ÈAé`Ñ65T06"ÈAˆbè65T261ÈA|bÿ65U46<ÈAé`75T06IÈAˆb-75T46XÈA|bD75U16cÈAé`[75T06mÈA”br75T06xÈAé`‰75T06‡ÈA\a¦75Ud5Q06–ÈA|b½75U36¡ÈAé`Ô75T06®ÈA”bë75T16¹ÈAé`85T06ÈÈA\a85U>5Q06ÛÈAé`685T16èÈA bM85T36öÈAé`d85T16ÉA¬b|85TS6ÉAé`“85T16#ÉA bª85T361ÉAé`Á85T16>ÉA¬bÙ85TD6QÉAé`ð85T16[ÉA b95T06nÉAé`95T16{ÉA b595T16‹ÉAé`L95T06˜ÉA”bc95T36£ÉAé`z95T06°ÉA¬b’95Ts6ÀÉAé`©95T06ÍÉA”bÀ95T36ØÉAé`×95T06åÉA¬bï95Td6õÉAé`:5T06ÿÉA”b:5T06ÊAé`4:5T06ÊA”bK:5T16rÊAé`b:5T0@zÊA¸b6ŒÊAé`†:5T0@”ÊA¸b6³ÊAé`ª:5T0@»ÊA¸b6ÍÊAé`Î:5T0@ÕÊA¸b6ËA\aü:5UL5T05Q06>ËA\a;5UH5T05Q06KËAÄb5;5U06cËA\aW;5UI5T05Q0@sËAÐb@xËAàa6‡ËA|bˆ;5U86•ËA\aª;5U=5T05Q06¶ËAÜbÂ;5TJ6ÄËA\aä;5UG5T05Q06ÒËA\a<5UL5T05Q0@ìËAèb@ ÌAìa6ÌA9^C<5U45T ð“B6;ÌAé`Z<5T0@CÌA¸b6XÌAé`~<5T0@`ÌA¸b6xÌA\a­<5UA5T05Q06ˆÌAé`Ä<5T06•ÌA¬bÜ<5TS6¥ÌAé`ó<5T06²ÌA¬b =5TS6ÂÌAé`"=5T06ÏÌA¬b:=5TD6ßÌAé`Q=5T06ìÌA¬bi=5TD6üÌAé`€=5T0@ÍA¸b6ÍAé`¤=5T0@!ÍA¸b66ÍAôbÈ=5T06^ÍAÿbå=5Uv5T06rÍAÿb>5Uu5T16ƒÍAÿb>5Uv5T0@¥ÍA¼a6´ÍAÿbI>5Uu5T16ÅÍAÿbf>5Uv5T06ÕÍAé`}>5T06äÍA\aš>5U<5Q06óÍAÿb·>5Uu5T16ÎA cÏ>5UU6ÎA cç>5Uu6 ÎA cÿ>5Ud6/ÎA c?5Us6>ÎA c/?5Us@NÎAc@\ÎA#c@lÎAc@zÎA#c6‰ÎA/c{?5Us6”ÎAé`’?5T06¡ÎAøa©?5T36°ÎA/cÁ?5Us6»ÎAé`Ø?5T06ÊÎA\aõ?5Ud5Q06ÙÎA/c @5Ud6äÎAé`$@5T06ñÎAøa;@5T16ÏA/cS@5Ud6 ÏAé`j@5T06ÏA\a‡@5U>5Q06/ÏA;cŸ@5Us6:ÏAé`¶@5T06GÏAøaÍ@5T36\ÏA;cå@5Us6gÏAé`ü@5T06vÏA\aA5Ud5Q06‹ÏA;c1A5Ud6–ÏAé`HA5T06£ÏAøa_A5T16¸ÏA;cwA5Ud6ÃÏAé`ŽA5T06ÒÏA\a«A5U>5Q06åÏA\aÍA5U5T05Q0@ïÏALb@öÏAGc@ûÏALb@ÐAàa6ÐA\a"B5U;5T05Q0@ÐAìa@"ÐAàa6<ÐA\a]B5U;5T05Q0@AÐAìa@uÐAàa@ÐALb@†ÐAGc@‹ÐALb@ÐAàa6£ÐA\aÍB5U|5T05Q06­ÐAScäB5U26ºÐA¼aC5a ô-H“@6ÆÐAÿb"C5Uu5T06ÙÐA\aDC5U|5T05Q06ãÐASc[C5U16ðÐA¼a|C5a ô-H“@6üÐAÿb™C5Uu5T06ÑA\a»C5U|5T05Q06ÑA¼aÜC5a ô-H“@6(ÑAÿbùC5Uu5T067ÑAScD5U36DÑA¼a1D5a ô-H“@6PÑAÿbND5Uu5T06_ÑASceD5U26lÑA¼a†D5a ô-H“@6xÑAÿb£D5Uu5T06‡ÑAScºD5U16”ÑA¼aÛD5a ô-H“@6 ÑAÿbøD5Uu5T06±ÑAÿbE5Uu5T0@ÓÑA¼a6ßÑAÿb?E5Uu5T06ïÑAé`VE5T06þÑA\asE5U<5Q06 ÒAÿbE5Uu5T06ÒA¼a±E5a ô-H“@6(ÒAÿbÎE5Uu5T0@6ÒAŒa6@ÒA cóE5Us6OÒAŒaF5U 9öA6YÒA c*F5Us6jÒAÿbGF5Uv5T06|ÒA¼ahF5a ô-H“@6‹ÒAÿb…F5Uu5T16œÒAÿb¢F5Uv5T06¯ÒA\aÄF5U|5T05Q06¼ÒA¼aåF5a ô-H“@6ËÒAÿbG5Uu5T16ÚÒA_cG5U1@ùÒAkc@ÓAPa6<ÓA@bWG5U15T H“B6gÓA@b{G5U15T p“B@yÓAwc6‡ÓA\aªG5U=5T05Q06šÓA\aÌG5U15T05Q06¤ÓAbäG5U.6ÃÓA@bH5U15T 9‰B@ÙÓAwc6çÓA\a7H5U=5T05Q06úÓA\aYH5U15T05Q0@ÔAƒc6>ÔA@bŠH5U15T ‰B6VÔA\a¬H5U15T05Q06`ÔAƒcÃH5U16ÔA@bçH5U15T ‰B6¦ÔA\a I5U€5T05Q06ºÔA9^-I5U15T “B6 ÕA€aEI5U=6ÕA€a]I5U36'ÕA€auI5U.6:ÕA\a—I5Uf5T05Q0@QÕAŒa6fÕA\aÁI5UN5Q06vÕAé`ØI5T06ƒÕAøaïI5T46“ÕAé`J5T06¢ÕA\a#J5Ug5Q06²ÕAé`:J5T06ÁÕA\aWJ5Uc5Q06ÔÕA\ayJ5Ux5T05Q06çÕA\a›J5Uw5T05Q06úÕA\a½J5UQ5T05Q06ÖAŒaÜJ5U OB6ÖAhaóJ5U36!ÖA\aK5UQ5T05Q06+ÖAŒa4K5U B65ÖAhaKK5U36DÖAhabK5U96SÖAhayK5U16bÖAhaK5U36rÖAé`§K5T06ÖAøa¾K5T36ŽÖAcÖK5U36ÖAcîK5U.6¬ÖAcL5U;6»ÖAcL5U=6ËÖAé`5L5T06ÚÖA\aRL5Ud5Q068×A\asL5U:5T05Q0@F×A›c6Y×A\a¡L5U95T05Q06g×A¼aÂL5a ô-6u×A\aãL5U95T05Q06ˆ×A\aM5U85T05Q06—×A§cM5UD6¦×A§c4M5US6µ×A§cLM5Ud6Ä×A§cdM5Us6Ó×A€a{M5U@6á×A\aM5U=5T05Q06ð×A€a´M5U46þ×A\aÖM5U=5T05Q06ØA¼a÷M5a ô-ð¿6ØA€aN5U46(ØA\a0N5U=5T05Q06:ØA¼aQN5a ô-ð¿6DØA€ahN5U46RØA\aŠN5U=5T05Q06eØA\a¬N5U{5T05Q06xØA\aÎN5Uz5T05Q06‹ØA\aðN5UŒ5T05Q06šØA³cO5U16¦ØA³cO5U06¹ØA\a@O5U}5T05Q06ÌØA\abO5UŠ5T05Q06ߨA\a„O5U‰5T05Q06òØA\a¦O5UŽ5T05Q06ùØA¿c½O5U06 ÙA\aßO5Uˆ5T05Q06ÙA\aP5U‡5T05Q062ÙA\a#P5U†5T05Q06EÙA\aEP5U…5T05Q06LÙA¿c\P5U06_ÙA\a~P5U„5T05Q06fÙA¿c•P5U06rÙAËc¬P5U06ÙAËcÄP5U ÿ6”ÙA\aæP5U”5T05Q06£ÙAŒaQ5U xB6±ÙA\a'Q5U“5T05Q06ÄÙA\aIQ5U“5T05Q06ÓÙAËc`Q5U16ÝÙA¿cwQ5U16ìÙAËcŽQ5U16öÙA¿c¥Q5U16ÚAËc¼Q5U16ÚAËcÓQ5U16#ÚAËcêQ5U26-ÚA¿cR5U16<ÚAËcR5U26OÚA\a:R5U‚5T05Q06YÚA¿cQR5U16lÚA\asR5U‚5T05Q06ÚA\a•R5U5T05Q06ŽÚA×c¬R5U16šÚA×cÃR5U06»ÚA\aäR5UL5T05Q06ÛÚA\aS5UH5T05Q06ëÚAÄbS5U26ùÚA\a?S5UI5T05Q06ÛA\a`S5UL5T05Q06:ÛA\a‚S5UH5T05Q06JÛAÄb™S5U16XÛA\a»S5UI5T05Q06yÛA\aÜS5UL5T05Q06™ÛA\aþS5UH5T05Q06¦ÛAÄbT5U06´ÛA\a7T5UI5T05Q0@ÓÛAãc6æÛA\afT5Ur5T05Q06òÛASc}T5U06üÛA c•T5Ut6ÜAÿb²T5Uv5T06ÜAScÉT5U06 ÜAÿbæT5Uv5T06,ÜAScýT5U066ÜA cU5Un6BÜAÿb2U5Uv5T06QÜAtaIU5U16_ÜA\akU5U=5T05Q06mÜA\aU5U=5T05Q06yÜAta¤U5U06‡ÜA\aÆU5U=5T05Q06•ÜA\aèU5U=5T05Q06¨ÜA\a V5UD5T05Q06»ÜA\a+V5Us5T05Q06ÎÜA\aMV5Ut5T05Q06áÜA\aoV5U5T05Q06ôÜA\a‘V5U5T05Q06%ÝA\a³V5U’5T05Q068ÝA\aÕV5U‘5T05Q06GÝAãcôV5U (öA@hÝAkc6vÝA\a"W5U>5T05Q0@—ÝAPa6¥ÝA\aPW5U>5T05Q06´ÝAScgW5U36ÂÝA\a‰W5U|5T05Q06ÏÝA¼aªW5a ô-H“@6ÛÝAÿbÇW5Uu5T06êÝAScÞW5U26øÝA\aX5U|5T05Q06ÞA¼a!X5a ô-H“@6ÞAÿb>X5Uu5T06 ÞAScUX5U16-ÞA¼avX5a ô-H“@69ÞAÿb“X5Uu5T06GÞA\aµX5U|5T05Q06ZÞA\a×X5U|5T05Q06dÞAScîX5U36qÞA¼aY5a ô-H“@6}ÞAÿb,Y5Uu5T06ÞA\aMY5U=5T05Q06£ÞA\anY5U<5T05Q06¯ÞA_c…Y5U0@ÐÞAkc6ÞÞA\a³Y5U>5T05Q06ñÞA\aÔY5U=5T05Q06ßAÜbëY5T16(ßA\a Z5U<5T05Q06HßAÝ`8Z5T ˆB5Q  ‰B6WßA[__Z5T~?ã] ¸Ýc6hßAavZ5U:6ßA*a•Z5U ë‰B6¬ßAÝ`ÁZ5T ˆB5Q  ‰B6ÃßA[_ùZ5T $ &1$@µB"” ÿÿ?ã]}6ÔßAa[5U:6àA\a'[5U76àA@bK[5U15T d‰B6àAŒaj[5U (öA61àAé`[5T16DàAé`˜[5T16kàAé`¯[5T16~àAé`Æ[5T16‘àAé`Ý[5T16¤àAé`ô[5T16·àAé` \5T16ÊàAé`"\5T16ÞàA@bF\5U45T È“B@ìàAïc Md\ ÇM z\ Ç^AÿCº ¸\BÁ@º ÎBêAº iBMBº z\AC¢ ]BÒB¢ d\BD¢ z\Bî@¢ i8×C¤ ?8­C¥ iCyyi¦ iDèC‹ °¯Afœ¾]E B‹ d\šEóB‹ d\ ›3À]/$D il›4ú¯AÝ`5T ÆóA6ׯAAaª]5U hˆB5T15Q9F°Aa5U:AC| ð]BµB| t BêA| iBMB| ö]ð]AwAi 9^BµBi t BêAi iBMBi ö]Cyyok t GùB}À°A^œ=_H¶}i¬›HP:}¡Zœ6Þ°A@bŒ^5UsIx±A@b¥^5UóU6™±A4bÄ^5T È‘B6¹±A4bã^5T ’B6Ù±A4b_5T °’B6ù±A4b!_5T @’B4²A4b5T x’BJý@i[_B DÎK¾] °A=œ`:Ë]¼œ:×]Lã]úã]Ÿ6O°AÝ`ù_5Us5T ~ˆB5Q"rˆBxˆBóT $E#$-(5RóT $ &3$`!C"F]°Aa5U)5TóUK†\`°AYœ¾`:“\T:Ÿ\ÆL«\ú«\Ÿ6™°AÝ`‡`5T ˆB5QóU†ˆBóU0.(6§°A[_ª`5Ts?ã]ú«\F¹°Aa5U:MAANÂÂ&NÔÔ5O  dOEEéPpoppopoQæÜæQ‘‡‘N*C*C·OÞ8Þ8§N€=€=lQƼÆOâ2â2‚OxxâO!!ÿO°°ïOìì=OZ2Z2dO|3|3WOCC6OÊ2Ê2`O™3™3^Oùù3O..;Oy2y2’O0303‘OK2K2iOD3D3“Oý1ý1‰OÑ Ñ ãOÉ1É1ˆOz z lO1616ÜOXXmO–5–5£O¸4¸4¢O33fO‹2‹2RO:2:2VOú5ú5TO 2 2UO 3 3kOv v æOÐ5Ð5•O"5"5—O½2½2…O˜4˜4}N‡‡¤OÓ"Ó"Oæ!æ!øOBOggCOVVDO##úO]3]3”O:$:$öO.OÚ4Ú4ƒO;4;4„O²5²5›OÂÂ8OiiìOtt0Oñ*ñ*O`/`/O‘&‘&Ob0b0 O››@Od4d4†% U: ; I$ > &I$ >   I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I'I I: ;  : ;  : ;( : ;I8  I: ;  I: ; ( !4G: ; "4: ; I#4: ; I?$4: ; I%.?: ;'I &: ;I': ;I(4: ;I)4: ;I* +.?: ;' ,.: ;'I@—B-: ;I.4: ;I/4: ;I0 U1‰‚12Š‚‘B31X Y415161RUX Y7‰‚18‰‚19.?: ;'I@—B:4: ;I;4: ;I <.?: ;'@—B=: ;I>4: ;I?‰‚•B1@‰‚•B1A‰‚•B1B!I/C D UE41F.: ;' G.: ;'@—BH I.?: ; 'I@—BJ: ; IK4: ; IL1RUX Y M41N O41P.1@—BQ1 R41 S.?<n: ; nT.?<n: ;U.?<n: ; V.?<n: ;nW.?<n: ;% $ > $ > : ; I&I  I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I'I I: ;  : ;  : ;( : ;I8  I: ;  I: ; ( !4: ; I?"4: ; I#4G: ; $.?: ;'@—B%: ;I&4: ;I'4: ;I(‰‚1)Š‚‘B*‰‚1+: ;I,‰‚•B1-‰‚•B1.‰‚1/ 04: ;I1 U24: ;I3.: ;'I 4: ;I54: ;I6 7 8‰‚•B191X Y:1;.?: ;@—B<: ;I=.?: ;'I@—B>4: ;I?.: ;'I@—B@.?: ;I@—BA.: ;' B.: ; C.: ;I@—BD1RUX YE1RUX YF UG41H41I J41K1X YL.: ; 'I@—BM: ; IN4: ; IO.?: ; '@—BP4: ; IQ : ; R.?: ; 'I S: ; IT.1@—BU.?<n: ;V.?<n: ;W.?<n: ; nX.?<n: ; Y.?<n: ;nZ6[.?<n: ; % $ > $ > : ; I&I  I : ;  : ; I8 : ;I8 I !I/ : ; <4: ;I?<4: ; I?<! : ;  I: ;( ( : ;I7I'I: ; I'I : ; : ; : ;I8  : ;I8  I: ; ! : ;"(# I: ; $ I: ;%( &4: ; I'4G: ; (4: ; I?)!I/*.?: ;'I@—B+: ;I,4: ;I-: ;I.4: ;I/4: ;I04: ;I14: ;I2‰‚13Š‚‘B4‰‚15‰‚16.?: ;'@—B74: ;I 8.?: ;'I 9: ;I:: ;I; <4: ;I= >.: ;' ? @‰‚•B1A‰‚•B1B: ;IC.?: ;' D1RUX YE1F‰‚•B1G.: ;'I H : ;I1RUX YJ UK41L1X YM N UO4: ;I P.: ;' Q.?: ; @—BR1RUX Y S41T41U4: ; IV.?: ; '@—BW: ; IX4: ; IY1X Y Z1[: ; I\.1@—B]41 ^41 _.?<n: ;`.?<n: ; na.?<n: ; b.?<n: ;c.?<n: ;n% $ > : ; I&I$ >   I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I: ; I'II : ;  : ; : ;I8  : ; : ; : ;I8  : ;! : ;I" : ;# : ;I$ : ; I8 % I: ; &(' I: ; ( I: ;)( *4: ; I+4G: ; ,4: ; I-4: ; I?..?: ;'@—B/: ;I04: ;I14: ;I2‰‚13‰‚•B14Š‚‘B5‰‚•B164: ;I74: ;I8‰‚19‰‚1:.?: ;' ;: ;I< U=‰‚•B1>.: ;'I ?: ;I@: ;IA4: ;IB.: ;' C4: ;ID.?: ;'I@—BE1RUX YF1G UH41I41J‰‚K L M N41OŠ‚1‘BP1X YQ R.: ;'@—BS1X YT1RUX YU1V.: ;'I@—BW: ;IX.?: ;'@—BY: ;IZ.?: ; '@—B[: ; I\4: ; I]4: ; I^4: ; I_4: ; I`1RUX Y a1RUX Y b.?: ; 'I c: ; Id.1@—Be1f.1@—Bg.?<n: ;h.?<n: ; i.?<n: ; nj.?<n: ;k.?<n: ;n% $ > : ; I$ >   I&I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I I: ;  : ;  : ; : ;I8  I: ;  I: ;( 4: ; I4G: ;  .?: ;'I !: ;I"4: ;I#4: ;I$.?: ;'@—B%: ;I&4: ;I'4: ;I(1RUX Y)1* U+41,‰‚1-Š‚‘B.‰‚1/‰‚•B10‰‚11: ;I24: ;I3.: ;' 4: ;I5.: ;'I 6.?: ;'@—B74: ;I8 9 :1X Y; U<1X Y= >1?41@.?: ;'@—BA‰‚•B1B‰‚•B1C.?: ;@—BD.: ;'@—BE.?: ;'I@—BF.?: ;'I@—BG.: ;'I@—BH.?: ; ' I: ; IJ: ; IK.?: ; 'I@—BL: ; IM: ; IN4: ; IO4: ; IP4: ; IQ.?: ; '@—BR.: ; ' S4: ; IT1RUX Y U4: ; IV.?: ; 'I W.1@—BX41Y.?<n: ;Z.?<n: ; [.?<n: ; \.?<n: ; n% : ; I$ > $ >   I&I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I I: ;  : ;  : ; : ;I8  I: ;  I: ;( 4: ; I4: ; I? .?: ;'@—B!4: ;I"‰‚1#.?: ;'@—B$4: ;I%4: ;I&4: ;I'‰‚1(Š‚‘B)‰‚1*.?: ;@—B+: ;I,: ;I-1X Y.1/ 0411.?: ;' 2: ;I34: ;I4: ;I5‰‚•B16‰‚•B171RUX Y8: ;I9.?: ;'I@—B: ; <.?: ;'I = U>4: ;I?.?: ; '@—B@: ; IA4: ; IB4: ; IC1RUX Y D: ; IE4: ; IF‰‚•B1G.1@—BH1I41J.?<n: ;K.?<n: ;L.?<n: ; nM.?<n: ; % U: ; I$ > &I$ >   I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<!4: ;I4G;4: ;I: ;I!I/ I: ; (( : ;  : ; I : ; I I: ;( ( 7I! I: ; " : ; # : ;$ : ;I8 % I: ;&4: ;I?'4G: ;(.?: ;'@—B)‰‚1*Š‚‘B+‰‚1,.?: ;'I@—B-: ;I.4: ;I/4: ;I0 1 2‰‚13: ;I41X Y516‰‚•B174: ;I8.?: ;' 9: ;I:.?: ;'I ;: ;I<1RUX Y=1RUX Y>.: ;'I ?: ;I@.?: ;'I@—BA.: ;'‡@—BB4: ;IC.: ;' D1X YE: ;IF.: ;'@—BG‰‚•B1H‰‚•B1I1X YJ.: ;' K.: ;'I L.: ;'I@—BM UN O : ;P : ;Q UR41S.1@—BT U41V.?<n: ;W.?<n: ; nX.?<n: ; Y.?<n: ;Z.?<n: ;n% $ > : ; I$ >   I&I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<!& I: ;( ( : ;I7I'5I I: ;  : ;  : ; : ;I8  I: ;  I: ; ( !'I"I#'$4: ; I?%4G: ; & : ;' : ;I( : ;I)!I/*4: ;I+4G: ;,4: ;I?-4G;..?: ;'I@—B/4: ;I04: ;I1 : ;2 : ;3 U4‰‚15Š‚‘B6‰‚17 84: ;I91X Y:1;1< =41>41?Š‚1‘B@‰‚1A.: ;' B: ;IC4: ;ID.: ;'@—BE: ;IF‰‚•B1G.?: ; '@—BH: ; II‰‚•B1J.?: ;'I K.1@—BL1M.?<nN.?<n: ; O.?<n: ;P.?<n: ;Q.?<n: ; nT Ñû /usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/usr/include/sys/usr/include/X11main.cstddef.htypes.hstdio.hlibio.hsys_errlist.htime.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hctype.hyabasic.hstring.herrno.hstdlib.hwait.h `@øOç/Ÿ! 2Ÿ£ <W¬¬`t§¬Ê[NË©?W/utg¡4óW=fÁæ÷JiåKç Zׯƒh Xž†GtfŸŸ 0 ¾X\0X»‚]ÖsZ Jsh§sZsºúsZº¤‘žƒLgwt!CÖ®[ïÙšútt£cwj;gÇgyX•Ys=­IhvK[KYIi%tzJ‚Kr>,9‚YK„ölJ!Ò!Ò!Ò!Ò!Ò!Ò‘ufɤYtž!%f!¹Ö (Y«=ÇJµt!È /‘0¼½¢½¾ ºU.ÇÖJ4/“G†ž ÖÛƒ;l³–Ý ‚CÙ.ÉÁŸ#tÉ=;WT,òK=;W`óY;W žK=;WTžJ, K=;W»=;WjžgY;Wèg= žwXYYÉŸ=‘Ÿ„¶.„ɪŸ-Y2.æXš.?ã.™Xôur.$iX†Xü~.„.ù~X¼\€Xƒ.ý.ÿ~X¼‘\ùX‹.õ.†X„‘Ÿ XÓqtOSÍY˜ ¬uX ¢ƒKŠ‘u«=,”ƒY»nÖrXŽXñptÑ $KW/euÎÚK‘CYz.®XÑ~t¼mX»XÇ~.¹.Ä~X¼r<å†}iGMY]\(t?„:>­[‡UPYY·ãtò1Ëui9=r>K‘.Ÿ†=ƒuƒƒ7k‘%YusYL‹ tŸ;=ûtfs„ƒƒƒ~O†rKwTÖ tìóäM’Iü äø{ytCä‘è&¼äŸ;=%frƒuYN:vƒ„:>/äY@9…ntƒ-0;ÉŠ=Ÿ¹L;ƒ +LVv£"•u ‘TZS]¶'ÉY2åY?Yxž{Y±NuQyJYYK=I=O/I–K/u‘I^+#=s=Û£ØKYLWju­-0=@S3ÙtlJXlfy‚ J/s=Y­’Wuƒ;>kYv;eLYvI=e² žpf'sKYNuu¶ ò4zžPƒ­ƒWu‘¼»ƒI]uy ÖytƒˆXYu-äXŸ. X†8Ù=›‘ƒ‘+–Q-Mƒ^±_hYK°g‘;uÉ»uN~Y!°gK;YæÈuFº«««±zÖ«a ¢Xà}. .Ý}X¼XŸ-YXŸ-Y XŸ-YX埠Ÿ›­­;=tå»ui sŸ-žó-J=;KYH†÷JpXtŸ‚i <it°Ÿ;=ƒ=Y;= ‚YuÈ <ueY/­! ‚Wä)<Í P6@çÑ ä¯rXÑ JY¸rXÈ tY¸ru7<›wÖº< ŸÞ»ÎX²}<ÎfgJr¬_LxYYY¸ÀÉÇ J…[qu §JÊ~X¶Ö•¬Hž»=;Ég“‘/;1f’G#:<Ffàvf ž…¿/ö£{žË=Èå žŸs;véX^ååæçç蟟ŸŸ¡ÞXŸ¦yƒØ‚¦yXw×tY±ypñyY0ŸWu½Ygux[I=ÅX¿yXÜŸŸ Í»âju ©6«…­”¬í~X­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­KÉ­»ñz.Ëqu @VJ*JÑ<»ê~.»=”Y>/J‘˜‘˜»=•a"=•mX-#×xò/â|âž­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ów¬ ZÖ-Ÿ‘ç‘[ר óuIg0X=•b‚-Ì|ä=º0\ÈØsŸ–fs tvXuf‘Ëÿvf<ŸŸ ¡¤¤äf纙~tuÜž žgusYê~ä=•ó|X   (ŸZ¡Ô>;s?‹XÌp¬ÉuËK;Zƒ»ãyò <iX<[qu ä<v. ži„s ñ«žqäÍK ‘»ätsŸôt.sŸk_—»=”òI‚{È=”ôX???Ï}YÖfYmfYºfY_fYhuyfuœfubuñ~fY fYkYbYxfubYaYfY[f‘ fYaYVfYÔfYkYhYžfYNfYyfYhY€fYwfY fYÜfYbYPfY fYfYSf‘kYbY%fYbYbYzfYbYvfYvfYZfYfYË~fYaYWfYbYéfY~fYfujféYÓf/kåö}äYCfY°fYbuð}f Y fYbY fYhYyfYfYsg]òYafYhYhŸvfY‚fYbY‹fYIfYvfYhYhY§fYbYkY½~fYyfY fYWfYfYbYófY‹xf    Ÿ     ¡  ¦    w§}X»¨º‘=”ÝX9(šwºuˆXƒ=\v‚å^å[ÉÇLY’ÇŸö¿£WŸD'Ÿæ;Yn=;u2°×ºòåxXåÄXÊ[sü Xƒst¼ŸŸnX­[uXåTI>üI>¢å#XæuXæXædX"Èæm Ûû /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11function.cctype.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstdlib.hselect.hstring.hmathcalls.h  @à.ažX?”‚!X_J!<ctR ‚x\ENFŸRd .\¬ƒÜ^KæL=Iär X¶ÖzJ¤¢zÖDY"-g;1×>:Ü7ÿM›-ã_YMi.ƒeÛŸ B܃-;L#9ç±x‚Dxž0IgYYYƒOofKqJJŠ~ #ôHØYƒÿät\Y ¬¼ÉƒWËMp¬Ÿ<zXŸvÖ .&ŸW=Y«KYÎvºJofJklºÖYw‚„:ZåWK0G?EjÈ#‚O/WKÇiŸôVʇç K­YI0HiU=”tȃ  t–„ZIgŸkfUäižY­YgK¿#+1»=¿‰KŸIKi¡ŸK„X[æ!“Kõx..tDžõ.tƒ-/®Kç)i.ƒ-/=ËK1x.p žƒ%Õ2FÈ#+1»=¨º£çdv‘e=d>KS¬˜â.\9ç0*u„Y„YYI1[Yf_äuY„Y Y’Y„Å‚ <u< f‚fJfÂPLKKv<­KHy7J]í.°J}^‚åIvg=H$&ÇZÇZÇÌtèæXºÈ[+=vž»IMgÕ»L€MågVLWK×MIŸƒ–gâ òuqJƒX„9iUkÑ<oXòQ‘MŸLIKKü?G4ž­ö¶»É§.eg1¬ôI„óy.X¼:LfO.fž­žLädž?9ƒ0VZ'XYtÂy. =[SD[\tJËËË‘äZhN[䆾.Kƒu,>bQ…%ó#T.Luø‘“îX^bjZì}äHguæZLgôÜXK¾J†uÖû º-Ë/°²wÈiÅILƒ;=ä=[fKŽM†“ê~žKƒg"ŽX*>X.MXXÊŸ«=¼7Xi?®zX®zX®aXIgÊxXhÝXLbXŸe=!KkKhXK"Ì|<´gy.>jX*Ö©×i[ò­æˆX¹fÇJ…uŸZåå±ÖØxXËJEX­:žƒ;=~ºð‚zžŸ­;//Bžs=™uƒ=sÁJ¿<Átg1‚ž{äzXzXzXzXzX¿X=zäÑKôxXKôlX­=Z»XŸW=YØs=;YõtXŸW=YØ‹~XʨX-ŸËY/iÖìf6xtn§w ØXˆJÂu¿ È-ËKæ’’’ƒæy ×JøuX‰ º-ËLLLLL*LLLM±å¾w.ö þ|Ö…Xå”XY‹t øz䧬åÛMOtLLLLLLLô˜wJå”XèzJ¹ÖMÔxÈ‘ø~X)t.Ïò´ ÖwéÈ¢w ¡t‘ž><L&×u;>Igmº:B<þÆHq<z $ x<B Ÿþþµ~J JŸIY&L«Y^•LŸxF tGG 1‡: =W8¢=‡Á¡x¬Dõ×îvÖ  “ º -Ë•#Áä@f K½3tMJ3<M‚ sòÀXAJ?<A‚oºä2JOJ1XO‚YÔvJ­ È=JKtkJ<k‚YYtmºŸ KW1Y½·½Xƺ¼º+Xm.žYoÖŸ`ŸTŸTŸ` žurZZI;\×/òkiyX5ôæÌÍYŠxJDx.Þhò òK tE])ò¤E£)iØd‹º#+1»=¿Ktæççç¢Fg¬æçççžnJf19?qMY;=‘•k;K.…fº’ JK/YÉH>H/\KkjºŸZLtoJXo. #JiYW=YsK­LuKuÛ1G?UMƒ»M;uYsL¿ 1/;»=•OK=MG?G/YmuW.oJÖoJCYI=3gZƒyÖg‡E±KéG1 fuXf¤lä3S6 žÅ[n¬X²NåWgŸyÈYYeZkºÐG1 fuXf¤lä3S6 žÅ[n¬X²%SOYWK‘o<±UM+i+ÖYgeZwtX Jt. ft.JqXJq.fqt0zXPz.lzf ‚wX Jw. fwf‚2TNY¯ÏŸ_ë¡ZegYežY[Yst[ Ö %óuz¬³Y=Zeg\wžÁ"3OSнw. X²2TNŸ½\*Ÿwq^YKe’t¬öE Ùû /usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/usr/include/sys/usr/include/X11io.cstddef.htypes.hstdio.hlibio.hsys_errlist.htime.htime.hselect.hmath.htime.hsignal.hX.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hctype.hyabasic.hstring.herrno.hstring2.h à´@‰  J $ ‚»¼ŸuÖ» ºŸlÖ=Óv¬1+1qP9YW=Z:MÞ.4ztP¢…€„¢­Zd>O×zzfêuJ žu.Êòžƒ„܈yt_z<^g¾U;/M+?Y1YYº$¬ô<iXv:„,>¬k<š† ä"Ö»”8\œ‚f°ž(׃„‚vfJ%ªZ!ôI‡/Xž=T=Ð=sÈ=È=yÈ=Ð=Ê=Ê=Ê=Ê=È>eK™‚#+1»=“ºMŸ¯r¼Hßò#+1u=Ìc#¯ƒÖ=W.xÖY0sYÁ¬¥&ÿã„H?i£]J#.jžNXÍdvtiòIÇMbKwLJŸ>$u=LÉ8f /“÷0Œå±ƒwÖ f=Ë, V>YW=[sujJYyò_Z žgjžMX3.YW=[sug=mòŸZIK< ×ð>ŸËJ÷v"Ö÷=Ÿ»tŸytMòt†wL…Í1+…‡emIÕžY„“H>œ“Ë£)‡gä\8Kƒh.ÝAmJK ä ­–ÌHÉŸHv—<28@íäOòÉ;ufK.KŸw\ŸžYŸq‚2Ÿ3XWæŸ_X3L>ž4zXPŸ ËÛ ‚Ê»­ržÂrº/tmJXm.¬£“ÊåWgŸYƒd?Y;Ke…ʬ¬¬u Xƒ Ëb‚t&ågòåWÙZžmJ<mfjäK žz¬vŸ<<+1Bw.1+OdP°ˆ;-Z/yvÖ× Ö·wZ#å‘K/\Ö]SOŸÌ½ZŸrg‘3hI/-ŸzòLΞ2TNŸ‚ËZ,=g3 ‚mºƒgÐÉ]ƒ„dÃÉv<È.k:+M»==é ÈuMsžƒfšÈttƒZV=g HXóÖ¹‡Yg€?Ÿ¯W<,==?ÈG èY tzå`ääYðž-M=W1[=W1=W1=W1=W;.º.ÇX¿u¬OoO\ ºt‚ò‚ X€wÖ=ןu×ååÝòJ ËYZ:Ôvº¯ ò­wF@%W Ö%KWj‹ž-M[=W1=W1=W1=W1=W&.L.5X± JsX žŸWgŸWY 'YqJf=pÈÈç|½sXËf]<YäÉØ:LrVü6YÚ! º`ämÈ0ÕYYYÊ:Lr\ vVhZ\.Éä»ä£¬ö-g1“[“[[[]gžòjsžzòsòtzòzò˜ò.o.‚•Ü+e=æòë!KsÊ:LÆ>œgXÖ”ž<ó¿É,\‚$J\Xñ*XÊÊdtg;l Üû /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11graphic.cctype.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hX.hXlib.hXutil.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstring.hstdlib.herrno.hwait.h 0Ü@ÿ  wÈ <vªvrv8vHØ JÞf¿è&¬Y1-Éó]¬qK„¬uJ JˆŸÊ®K„lºŸÊ zòK„]<$F°‘K;KWgYƒƒ÷xº ftt Yº=WÌwXZƒuY;u f>¹KrhWu±ÚžY¡Ö‘Þ•Èv;ugŸ-– ž Ju. ¬uX J%MKWqY‘‡ìof$*2»=¿äønJ.YÙå-gkå-glÚXëºû~òå".wïYvoƒ„ZkztzgåÛXztzY;umxÒ=[ ?Ÿ-uc?v<Ÿ-uc?v<Ÿ-u’ƒ¯+oy–ʸn&ø+&»¼»moªg¾××¼vru×[9w/…¼·{J[ww1ÿJ'Ig…zt '9wgåÜX»†»†)ºvwXZ:vglJZ: ×ˆ|¬1/Y-gJXŸ¼äªzºåjX»ãuYô‘gxÕ*u*±ä****l<"†|XåyXå¯ 'I1# äMÊœ>*xš@ÀOSOŸWgYWY;YY=e=‡/¹j‘&»»YIŸƒIKI]t‘&»uWtò(ä•$*2»=u] fø=•y.Chò÷€¢€Yƒeh‚l‚f„Yƒœ†Éç‘87»uWwHh¸geLdyX¤ÖÜä¼åWgŸ;ggØgœ„œƒôiXŸÓž\º87»!h.åWg÷,ƒƒv.=?¬ fÚ/åWKŸWKŸeK䂟=-v; Ö/gt×#[%M‚M0Ež;äVóò ä/Yóó((ŸÄžk>V/W>ŸWgŸWgYWYWgYÛƒˆYP»ó=YI»ÕçºP‚ƒYl_ÁäEYP»ó=väY-_ f>V/W>ŸWgŸWgŸWgŸWgŸWgYWY;YYååxxxfYwUYxTYy)Z®Ykƒˆ((»ó=[G¯·>HMchdge#ºSȃ1n?<äJ14»ó=x¬(Î8 ØtžJ ¬ « J ÕtX ¬ È K.ASAžwJ .Îtžƒ òºËoÖ?.‘ øº X@ŸWKŸWgYWYWgY»Úät„H>Yô…vô“®GB»zÉzX <wJu­Ÿ; òžI%Õ‘W(LòeŸ> w»IYË[%j<»Z.ôKØ‘4wX ¼t<<b<.[3æå`X f²fzÖ J-/»×= tsJwò÷’‡tXþ ºH„t<ü X„t<ý ,ZE£)}ÎtnÚ>V/W>ŸWgŸWgŸWgYWYWgYå#IgØ#IgÙƒˆ: P»= Hv¸geLd4º¼ž„I'¡eóeŸIÉI'»×Sòåä´I'¡eóeŸIÉI »uE:P»!=tJpXÈYöí JÖ=;Ks…f=e)ç[åWKŸKYØËU1žÉ=WuÜÎä±fX‚£Ög‰† ¹X‘À~twCÈ»»$9[ŠÂxJDyt Jt< .tté=òÉg”tfóƒå­‚å wòåÊX3»9.óLš $ Öå. Juf º†åå½-K„½-K ¬=hÆ9…9iå½-;v;;ç9[y)JWt)fóŸYVX+‚UžóZdZH¾Áyf!uðtŽyt!s=ƒsg,==;K;g-=ðÈyžð,tžuku—uŒuyu’uuuŒu2uIu uŒusuŒuÊumuŒuuŒuŒusuŒuŒuŒuŒuŒuŒuŒuŒuŒuŒu2u•u¦u–uou탒3ofxJ`x.rº <ut„u™·û /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11symbol.cctype.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstring.hmathcalls.h °!A²t?¡9==ƒYQ7ƒƒ…ää;=) $L$UJ/Zv;Zv?"É>8„BhÉ®+Zv&0@Ц~tO ¼Hµ~MŸ»NKƒuuz‚ òoˆ-=º"×AJ?<BXK}‚{gÌ×Y‘J‘K­YƒužK¢”K¢s[z’n<gKÂuÿfNK„ƒH;]/»I— Ö•;u.fWäIY=Èh‚ZKXôÌqM0.btË c. ;>dXÏf2)‚®r==gT¬8<­®r==g( %sK JOSOS•YuõsDyž=  40ltÉÊ$>‘n/yÈ% ¬eJH œžò”ƒƒKKKx¬òM ò“YW=•vaYqžÊƒƒguLžÁ=KIvž[’.dXNy»Éyº X žØiâ tY;=2gØdfägÈž“Y;=YeLÍ$Ÿe=æ;uYYgKéK/I^$Ÿe=æuYYgK£K­IÎ$Ÿe=åuYgKyê#JiYW=YeKK¿ @YƒeZO”YW=2’‘gMKsZtžx (MUMŸ’‘»¡Ky¬ 0#+1É=±BzX&zJB?ƒÖlJzLNzºBZì|JsK˜.h ‚zºB t#+1Éu;L÷@T @ÖhJx Ô>Y;=1XÇ|tsKÇ.tXŸWYäœ{Xä<‘Kuæš{XsY/nzJ ä#+1É=±’ƒ=I/‘Í#+1»=¿p`=W0=W0=W5=W0=W0=W0=W30uIYP.YW=†^/%‚Utgƒz.g×2º>:º$qïò\TNŸWgóƒ%ºž¢°geZmº•rÖŸhŸhŸ f twJ žw.w‚Éò꓃“=;K1g· dMyº (“ƒ“ƒeL¶ (”“‘’gzº ä19?qMY;=‘•”YI=YeL¿NYZegYø 1g;Ÿ=u÷D‚z<ÿäÁ¬×Y×ÖÁt¿tÁX¿žXºmyXÙ‚°Y$¨²Hix<¤}X… ¬KW¢‘’Ÿ%$\ òtXÉ!;Y4YƒVò,L#ä $Ÿ5žPtÈy‚ Åò × I > K €Úó}XÈ»»:]ô:L¡.ós^zzžYu==l’t‚5º®K0€¸Þuýg‡zºkXƒ­;-hfxyž Ÿ…‘uºó£ž"È*¬uÈ :L¯²ÊäΔÊ ^Z;g1Úq‚Y0 ttJ Xtf¤À_¬zóX–‹1#91É=uA  ¬Ÿ»´w. ‚0ŸZHBF°Ç¨‚6 J„À‰Ùä®ÖW=ŸPwJ ‚Iw. fŸ¿sKbt&)tWJ)XWžÅ‚‹tõ‚LLY$š²Hix<‰Xw)ºÇ(¤äk+,>"ò¢F\ ‚qX.¿Öó²ÐuƒZvX=!gzXW=ŸzXW=YeZX=‘eLbXIävºæ/NTj‘K=]u-K/L <vX/–Hix< XYv‚/B›û /usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/usr/include/sys/usr/include/X11flow.cstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstring.h @EA)iGMŸ==%j==L ‚.‘­®\0vHZ,„f‚Y;=2g Joäg ä¤ J‘O JgÈŸ/Z[¾PY[°€nºòP€lXf K=K:_H Ju‘•19?qMZ:>‘” =ŸsKŸ;1‡øK¬#e’-‘uÛ ÓK"‘•¡vrLFx–L:÷;u/Ÿ;=.>ˆAo¬]X]pJYJ XóXPt‚óXK…~䇟äqäÊu[!ÉÒæ:>ÈX¸~‚ÈJ1®ÄÉ~ò ?×\rIhL.pž t”xX]sb^ztB/ÀJô…„¯xJwƒp‰tÎ/È jמ‘u;Ÿ»•9vKhtmJ<mfoÖ$¬QJYuIK/Y°g uŒu—È[/:vHZdzXÔ%NTxŸ/ twJ Xw.\»;=ž~XâXž~JY$t[‚KŸ;$.1®¼tÀ~ÈÅtKgus­3œ HéE ÈNæu;­/ƒÕƒ€Þ%u"l‡I[é!?»\­»Ÿ#s=s.ƒXzK ž#9wYKØr==×ó Jwf•@z<;,QLŸ“‘ stddef.htypes.hstdio.hlibio.hsys_errlist.htime.htypes.hstdint.hbison.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hctype.hyabasic.hstring2.hstring.hstdlib.herrno.h `5@íØwEMG“’.Z¬“‘up#w. tŸöñ J=/  @ZAñiº<tžK°‚Ô}‚8x2»si˜tÍ}ä9w3­Ã¬~È CYº1[óu¯ K¼fÙt§|XÙ.«|X[kEÒJ´|X;K1v¯p‚½ rvX4)‚Y<'.YJ'.uK;×uVy¬Y×¹K[9;@žäN[f…ëy¬=uøù~­Éòøøøùù òööõ&òi!YuUÁ<Gä9¬JXV¬1¬P.­­Ÿ¡®¥­ ¬tö öø[qM”g&ñ=ãåØŸx=ôo 0“: ä}¡.àxÉ'uxwº âvÉ׃D Õ}<­òÒ¬nXvÈXJƒ/¬X¬!X„] Ö!uå;=hzXAS º=z-=×å;=0rX <sXfu[º&ÈUž:Yjå.s.   ¹L”!‘×zÖ-ð~#±»wOÙ JOÙË›®>:d@l׳usƒ!;×k– ÈWv¿º¢TYÀžº  ä¢TYuY6žd¬å;ugKX¬XCJ=XPt¢TY/ž\¬Y Xt\p%u[uºo Û%9-Ÿ0Ÿl6[;rM©?ÍŸhƒ/=H¾~=?¢!j>åX X“ òg‚JIKcJf=b‚–i;ŸJ-”fy‚¥k» ÙÙò¿ JIL;svu:v½t3+4Y×¹YW¢‚Ðpž;ug®žºy'Ñäò|äuWX)uWX,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,º'™uW,q[,uWï{,‘É“»º¬Y>Y žXÖýž†xòJº'w[.査xžº'7‘ÉöX¤zÖBzJM“fðtTx”ÊXXz9½ÀwžÈ¬º'Ø<ʃÒX>­½ žv ‚£o<zi¼…yX‘…䜞w[ŸÞX• º«gzsg&ã<zXãJžzXYóYžvžˆxtº'ž÷P‰y䊞èw6º'òò‹º'ÖzPº'ÖzPº'Ö P™Ö™å%q[,uW,q[,uW,uW,uW,uW,uW,uW,º'zžº'vž.æŸgxž.åz[º'>\ÖvP.å¬7‘óÁ‚uW,uW,uW,uW,uWü,uW,uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,uW,uW,uW,q[,uW,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW¼,.æ»yž.å}uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,uW,uW,uWí,f#•äå‘åÕ %wX .eX.æ»už.滞‘suY»sžØ­fžº'wJº'‹º'—º'SP.çgWõ{ÈuW,uW,uW,q[,uW,q[,uW,uW\,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,ut X,yt_,q[,uWü,uW,q[,uW,yt_,q[,uW,uW,uW,uW,yt_,q[,uW,yt_,q[,uW,yt_,q[,uW,uW,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,etX,q[,uW,q[,uW,uW,uW,uW,uWÂF.å™{"uW,uW,uW,„ ¨û /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11bison.cstdlib.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hmalloc.h °¯A‹ƒK’=ÓMU]uIY-iäŽ">öƒ¸‚»Ã%±¾ktž¹>YŸØØØØô¼qJºò <0wÈæêàæÐä1ÓXq.Î.´.Ÿ žkXC}Óhä»–ê‰ÈŸÛKt".‘  ävt <“ciƒšòÚ¦xJ`!‚±mºZSMZ?È ¬ÿZ:>h=IƒWKeYZŸŠcYZ…#‚›"òõ)ºy˜ : l<’K ä\Ê€\eYqÈ‘Xa±)OamfvX3ff¾»¤e=¢WZHÆ_Ÿ‰ü~JÛ‚ô~‚G¡†Vv÷mÖ×[+iisŸW=AT@Ò|ä[ï…w<LWxy•äù.ÖJ‚ò0:1r:>Á#íktý0ƒ-K .ÙÝp¢M9MÈX¤ngf<í ä>xX¼xX¼xX xX xX xX xXvxX xX#xXØxXØxXØxXØxX xX xX xX xX>xX>xX xX>xX>xX xX>xX>xX xX>xX>xX xX xX xX xX xX xX xXÖ xX xX xX xX xX xX xX xXvxX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xXvxXvxX xX xX xX xX xX xXØxX xX xX xX xX xX’xXôxXxXxXxXxX®xXØxXØxX xX xX xX xX xX xX xXæxX0xXæxX0xXØxX’xX&xX xX xX xX xXØxXØxXØxXØxX xX xX xX xX xX xX xX xX xX xX xX xX xX xXhxXhxX xX xX xX  X0xX’xX=xX¡‚Ù{Ö7rX6JC'×Z X9kX7xX/xXz"7xX‚fØxXØxX*xXºz¬ºz¬/xX0vX,y. xXÊxXvxXz##xXækX×YבZ‘ב‘××ZiX/׿vX(xX"xX"xX9xX<xX6xX6xXvxX xX0xX0xXLxXvxX xX xX xX xX<xX<xXvxXz%hxXvvXÖ×1ZvX5tžvxXv XØlXvxXvxXvxXvxXvxXvxXxX¼ÍX¼xXæxX¼îZXŠ%ò®xX¼xX)xX xX xX xX xX xX®xX’xX®xX’xX"xX$xX"xX$xX(xX*xX(xX*xXØxXZxX0xXZxX’xXvxXÖzòZxXZ˜X1xX1xX'xX#xX#xX#xX¼¦ZXÒ%ò„xX&xX„xX0xX>xX¼xX®xX¼xX*ÛpX xXÖJ„xXÖJ„rXò¤ònthxX( ¬hlX±jÖÏòJòz‚&òzØxXæxXºz¬³Èãr¬ xX xX xXØxXÈzžôrXvxX’ X’lXØxXØxX"xX"xX xX xX xXvxX xX xX xX xX’xX xX xX xX xX xXØxX’xXØxXhxXØxX xX xX xX wXŸØwXvxX%xX%xXØxXØxXØxX xXvxXØxXØxXØxXLxXØxXØxXØxXLxXLxXvxX xXØxXvxXØxX>xX>xX xX xX>xX xXvxXØxXØxX xXvxXÖLxXÖLqXgIƒusKuÉv.ÖJ„žXØ.X¼xX0xX¼xX&xX#xXØxXØxXØÀXØxXØxX xX XØxXØ X ¡XòJZrXòJZxX1xX1xX1xX1pXØxXØxXv¥XòJZïoXØ\ÖJÊrXØä~‚ö=ueqºv‚)Ah0vXölȽXªo¬šäñ Èz.ˆq.zžŠžãp.£.÷o.V.z.ü.¦<cLABELcSWITCH_COMPARE_unused2syFREEkEND_filenolibrary_pathmessage__s1_lencARDIMFINISHEDtext_aligncSTRLEtokenaltkHOMEcSTRLTstext_Boolyinc_regbottomkRIGHTreset_shell_mode_delaycSTRINGFUNCTION_OR_ARRAYsyNUMBERstripcREADDATA_shortbufcGBACKCOLOUR2_ISpunctexplanationcurrent_functioncANDSHORTcSTRNEINITIALIZEDcPOP__environ_pad_ylastrefconcatcDIM_LIB_VERSION_TYPEcTESTEOF_flagscMOVEcPUSHDBL__off_tGNU C11 6.3.1 20161221 (Red Hat 6.3.1-1) -mtune=generic -march=x86-64 -g -O2strtokfboundcBEGIN_SWITCH_MARKykeycRETURN_FROM_CALLnegate_IO_FILE_pluslast_inkeycDECIDEsignal_lockclearwincGOSUBcDBLDIV__builtin_fputccSPLIT2__builtin_fputs__builtin_strncpystROOTreorder_stack_before_callcLINK_SUBRforcheckstrrchrlastlineis_boundmissing_endif_lineHATCHED__builtin_strncatyabkeyscTOKENcFORCHECKfirstrefgettimeofdaycPOPSTRSYMmain_file_namekSCRNUPkSCRNDOWNcurrlibdimensioncCIRCLEput_and_count/home/ihm/yabasic/unix/lang_IO_write_endparse_argumentsaddress_idmycontinuecGCOLOUR2cGOTOcSPLITALTcTOKENALT__s2__tznamewinpid_pad_rightfopenINFOcREADpushdblsymstd_diagcONESTRINGfgetccSPLITALT2fgetsXtAddresscARRAYLINKcreate_executecCHECKSEEKoptarg_LIB_VERSIONlastcmdprint_docuamSEARCH_PREpreviousTABSIZEcSTARTFORcPOP_MULTIsys_errlistsrmSUBRgeometrycFORINCREMENTamADD_LOCALmax_explanation_lengthmy_strerroroptoptcRECTmybellcPOKEFILEyydebugcirclestartfortermpidkINSsignal_handlercreate_docu_arrayoptions_donefunction_or_arraycloseprintercBREAK_HEREaddress_mode_ISblankunsigned charcPUSHSTRPTRcCHKPROMPTnamelenfrom_IO_lock_tlogical_shortcutxoffcCHECK_RETURN_VALUEfloatroomttytypecPUSHSYMLISTkDOWNstSTRINGcDOTyabargc_yoffsetstrncmpyabargvdumpfilenamemissing_endif_ISalphacPRINT__builtin_stpcpyduplicateamSEARCHcPUTBITlibfile_chain_lengthswapslenstatestv_usecnext_in_listmystreammyseek_ISprint_ISalnum__builtin_putspushstrptrinfolevel_text_IO_write_ptrcQGOSUB_pad_bottomlibfile_stack_ISspaceremlen__suseconds_tnextrefstackentries__s2_lencPUSHARRAYREFaddmodesobjectClassresetskiponcedebug_countdump_commandscWAITsrmGLOBALopen_maincPOKEcQRESTOREexecution_end_idlokFATALcDATA_ISxdigitcPUTCHARcompilation_startend_itcoreWidgetClassskippercBINDquery_arraydatapointercompositeWidgetClassendreasonadd_switch_stateexitcodestLABEL_begx_begysprintf_IO_save_base_attrscurinizedcTRIANGLEcPUSHFREEamADD_GLOBAL_XDisplaycPOPSTREAMerror_with_line_regtopcargccompilecEND_FUNCTIONcDUPLICATEcargvchtypecMAKESTATICstSWITCH_STRINGcSWAP__pad2cFUNCTIONpokefilesyARRAYdocucountwinheight_pad_xcCLEARSCRinputfile_clear_win_st_notimeoutsigngam_IScntrlcDOCUsrmLABELinter_path_ISuppercMAKELOCALcCLOSEWINcCOLOURget_symXtProcedureArgstFREEfprintfkF10end_reasonskF12kF13kF14kF15kF16kF17kF18kF19fcloseexplicitwidgetClasspopstrsymcFUNCTION_OR_ARRAYkF20interpreter_pathkF22erEOFcSPLITbackpidlibfile_nameacs_map__timezonellencolorConvertArgskCLEAR__sighandler_tdisplaynameCOLSlabelcountlargmousebyoffcSKIPPERmousexmouseysignal_arrivedcDBLMULstSTRINGARRAYREFnew_filecRESETSKIPONCEpop_streamcCHANGESTRINGfindnopcompilation_end_IO_2_1_stderr_stderrpush_sbufdecide_IO_save_end_idcokcSEEK2XtImmediatejumpsrandcPOPSYMLISTstdout__time_t_scrollcOPENWINcmd_typesizetypewinoriginto_bindmy_strdupinitialize_switch_id_stack__builtin_strchrshort unsigned inthold_docucurrentadd_command_with_switch_statescreenConvertArgpargcTEXT1DEBUGxinccPUSHDBLSYMDUMP__off64_tpdatstmREADkBACKSPACE_maxx_maxy_IO_read_base_parentdump_subchkpromptLINESswitch_comparecEXCEPTION_IO_buf_endpopsymlisttrianglemy_malloc_curx_curykENTERcSKIPONCEopterrcANDseekbackkLASTKEYkDELprogname_IO_write_basenote_countcNEXT_CASE_HERE_ISOC_tz_dsttimecreate_arraycCLEARREFSstackheadopen_stringcopyXtConvertArgRecstdscr_SVID_libfile_chain_sync_immedcPUSHSTRSYMcFINDNOPcGBACKCOLOUR__builtin_strcmp_IO_marker_pad_topstackroottimevalclosewinmybindcCOUNT_PARAMSldatstmPRINTlastcBELLflibXtWidgetBaseOffset_IO_2_1_stdout_mymovecUSER_FUNCTIONcSEEKcEXECUTE2long doublecheckopenkF11cCONTINUEinfolevelcRESTOREsearch_labelCOMPILING__builtin_strlenendwinstNUMBERARRAYREF__builtin_strcpycLAST_COMMANDcNEGATEfontheight__errno_locationpushstrsymcheck_compatmessagelinecBEGIN_LOOP_MARKstSWITCH_NUMBERWARNINGstdin_use_keypadkF21kF24__builtin_fwrite_IO_buf_basemyreturnstRET_ADDR_CALLRUNNING_pad_lefterERRORfprog_IO_read_endcCOMPILEfirstdatanewscrstmCLOSED_IO_FILEamSEARCH_VERY_LOCALcDBLADDcreate_docucurscrcMOVEORIGINcERROR_IO_2_1_stdin_fseekreset_prog_modestreams_ISgraphchange_colourcCALLcQCALLread_controlsfullnamekTAB__pad1__pad3__pad4__pad5backgrounderREQUEST_markers_XOPEN_cRETURN_FROM_GOSUBstSTRING_OR_NUMBERprint_to_filesySTRINGwinopenedinitializefyab__isoc99_fscanfcGLOBstrcatmoveoriginstSTRING_OR_NUMBER_ARRAYREFforincrementfind_interpreter__daylighterrorlevelcORSHORTattr_tcPOPDBLSYM_sys_siglistshortnameXtBaseOffsetlibrary_default_ISlowercTEXT2cTEXT3cTOKEN2_WidgetClassRecCOLORSnewcurrkillcDOARRAYcPUSHSTRinclude_stack_ptrclearscreennext_casecEND_LOOP_MARKcEND_SWITCH_MARKcEXECUTEXtPointerproglendo_errortv_secstRET_ADDRlong long unsigned int_cur_columncCONTINUE_HEREmousemodXtAddressModecARSIZEnextassoccGCOLOURwinwidth_leaveokstANYmy_strndupseveritystmWRITEputbitcOPENstackentrycNOPcNOTerrorcodesrmLINKpush_stream_IO_backup_base_IO_read_ptrcPUSHSTREAMsymnameerrorstringdotifykLEFTgetenvcEXITcDBLPOWcLINEcBREAK_MULTIstGOTO_old_offsetcTOKENALT2cCHECKOPENfi_pendingkERRoptindcCLEARWINaddfunstream_modeslong long intmywaitcCLOSEPRN_flags2_IEEE_cSTREQ__ctype_b_loc_XdebugNOTEexitkESCdocuheadkF23_parx_parycCONCATXtResourceQuarkoptionsearch_modesadd_commandclearrefsrun_it_ISdigitmain.ccmdheaderror_countequalsys_nerrcREQUIREmy_freefontnamecSTRGEisboundcSTRGTtesteof_bkgdXtResourceStringmyclose__resultcmdrootbound_programconstraintWidgetClasspopdblsymcFIRST_COMMANDrectObjClasscDBLMINcNEXT_CASEcQGOTOputcharscommandcountcENDmylinenocCLOSEstNUMBERwaitpidshort intESCDELAYprev_vtable_offseterNONEpushsymlistCOLOR_PAIRSprogram_statecOPENPRNinlib_POSIX_calc_psscaletz_minuteswestforegroundyyparsedisplaywarning_countCardinal__builtin_putcharcreate_restorefANDfSQRTfZEROARGSother2decgetcharsfBINfRTRIMnegativetolowerbuffcountfMIDfLOGfASCctrlfCHRfMID2__resfATAN2localtimefLTRIM__isoc99_sscanffDECtcsetpgrpfLOWERdo_systempeek2peek3fMODfTWOARGSsecondfPEEKdatetimemyformatoldstringfCOSstr2buffcurrfTELLcreate_changestringftellcheck_alignmentcreate_functionfunctionsfLOG2fDATEfLEFTfSTR2fSTR3dec2othercreate_boolefINSTR2create_strreloppeekfileatan2fDEC2fASINselectfromtotoken_donesargfEORacosfRANfTRIM__ctype_toupper_locfloorfoundfRINSTRgetbitbuff_chaindotsfATANsplitgetmousexybmcreate_dblrelopfGETCHARcreate_exceptionfHEXisdelbadstreamcontmyrandfFRACfEXPfINKEYcreate_readdatafINSTRpclosecreate_pokestrstrstrtodnewpartfTANstrftimefMOUSEMODfTIMEfRIGHTclear_bufffTHREEARGSfSINfMOUSEBtoupperfMOUSEXfMOUSEYpeekfGETBITdo_globcolonslastdatadargfSYSTEMfUPPERfINTfMINwasdelfSQRdo_system2fONEARGSfABSfSYSTEM2create_strdatafVALgetpidstore_buffbuffrootfSTRatandec2function.casinrecall_buff__ctype_tolower_locpostfRAN2fLENfACOSfPEEK2fPEEK3fPEEK4create_dbldatafSIGfflushfRINSTR2sqrtfMAXpopeninitcolgreen_maskVisualhandlescrollokcurrcharbits_per_pixelreadfdslineprinterprivate_dataonecharwattrsetroot_input_masktermfd_IO_getccoutstrwclear_XrmHashBucketRecreplacemap_entriespromptederrcodemax_keycodelprstreamblack_pixelcreate_onestringwgetnstrxdefaultsbackcharinit_coloroc2ycassume_default_colorshas_modebitmap_bit_ordercurrchmin_maps__fd_maskclassroot_visualndepthsmax_mapsscanline_padsmodevisualidVisualIDsmodescinstrbyte_orderext_datawhite_pixelhas_colorscheckstreamcurs_setinit_pairinitscrred_maskproto_minor_versionio.cdisplay_namepixmap_formatproto_major_versionroot_depthopen_donewaddnstryc2shortwinchsave_undersungetcwscrlhas_streamScreenFormatcreate_myopengetwinkeycolsnumreaddefault_screenwsetscrregwinfdmaxtimeresource_allocmotion_buffermin_keycode_XPrivateinputcurinitgettermkeyblue_maskXPendingbitmap_padyc2ocnformatsDepth__fds_bitscreate_print_XPrivDisplaymax_request_sizeoldstreamfd_set__rawmemchrwrefreshstdioset_escdelaynoechonscreenslast_request_readbitmap_unithexdigitsnvisualslinebufferwaddchfore_XGCreadlinereleasevalid_modesbacking_storecreate_ppsmheightScreenstart_colorcmapwmovecreate_myreadtileolmaxfdvendorqlennocbreakbits_per_rgbdefault_gcprivate10private11private12private13private14private15private16private17private18private19intrflushretkey_XExtDataoldxoldypmode__d0__d1private1private2private3private4private5private6private8private9free_privatecreate_colourXPointername2ycmwidthcurrstrinitialxCursorXPropertyEventsubwindowbit_gravitydetailXUnmapEventgrafinitarc_modefrom_configureXMapWindowXGetImagexcirculaterequestXFreePixmapfnameattribxnoexposeerror_codedefault_charXVisualInfoXSetWindowAttributesXDestroyWindowEventXFreewinxwinyxfocusXSizeHintsforkfdopennumpointsXMappingEventshould_pixelatomgbits_countydestprinterfilenamebackbitXGenericEventCookieobdatamax_byte1xmotioncreate_imagexvisibilitymyfontXKeymapEventXLoadQueryFontXVisibilityEventxkeymapbitcountdestroy_imageXCreatePixmapcreate_linesubwindow_modeXSetForegroundxcirculatebackground_pixmapmin_widthdrawing_modesbacking_pixelremoveevtypeXDrawPointXMapRequestEventaddrgbxgcvaluescard32clip_maskaboveXFocusChangeEventpatchXSelectionEventfill_styleXFillRectangleXReparentEventbadimageXPutImagedirectionchange_fontXDrawStringDrawablegraphics_exposuresnumsyminitialywidth_inctargetmap_installedXLookupColorascentplane_maskbitptmin_aspectreadrgbXErrorEventpbitsxselectionbbits_maxbitstringXMotionEventXUnloadFontXPointXExposeEventxclientgbits_maxdeleteprinterfilemax_char_or_byte2xgraphicsexposeall_chars_existn_propertiesrgb_to_pixelwin_gravityxoffsetXConfigureRequestEventrbits_maxownerXParseGeometrykey_vectorXChangeGCexact_matchxselectionclearmax_aspectlastxmin_char_or_byte2XCreateColormapts_y_originbbits_shifty_rootXSelectionClearEventmax_boundsx_rootfillmajor_codeattributesXCirculateRequestEventbacking_planesline_styleresourceidxdestroywindowXDrawArcyour_event_maskper_charskeyinitialvalidXOpenDisplayXCheckWindowEventrbearingbbits_countxexposecreate_openprinterline_widthis_hintborder_widthXLookupStringxbuttonXCreateWindowXCreateGCwgetchfontiditransformvalue_maskxcookieXKeyEventXCharStructlastydmFILLXMapEventfuncsclip_x_originoverride_redirectbest_matchXFillPolygongreenxerrorclip_y_originXColormapEventcolormap_sizemin_height_XEventxconfigureXGetDefaulttilexcreatewindowrbits_shiftgraphic.cXConfigureEventsame_screenxkeymin_byte1XFontProprequest_codexmaprequestxconfigurerequestbase_widthfill_rulekeysymXGraphicsExposeEventXNextEventmax_heightxresizerequeststippleXCreateWindowEventserialXStoreNamebackground_pixelall_event_masksAtomnewrgbput_pixeldmCLEARXFontStructXDestroyWindowxgenericxgravitymax_widthsend_eventrequestorkeybuffbytes_per_linexerrXKeyPressedEventrbits_countXSelectionRequestEventXSelectInputdrawableadd_pixelXGetKeyboardMappingxmappingXCirculateEventXDrawLinesxcrossingTimeaskedyaltxaltmin_boundsmap_statearg1arg2XDrawLinemkstempXAnyEventXTextExtentsxanyvalsdo_not_propagate_maskxdestXGetWindowAttributesdmNORMALpixel_to_rgblastvalidxcolormapsizehintsputindrawmodeXClientMessageEventXWindowAttributesbackpixelKeySymmessage_typefirst_keycodeextensionxpropertysampleXGetGCValuesXFillArcheight_incget_pixelXNoExposeEventbase_heightxselectionrequestsave_underXCrossingEventforepixeljoin_stylecreate_openwinfirsttextgbits_shiftxreparentlbearingdashesXGenericEventXButtonEventXSetWMNormalHintsXMatchVisualInfots_x_originbluedescentcursorcap_styleXGCValuesXSetBackgroundvisualinfoxunmapborder_pixmapXResizeRequestEventXDrawRectangleXColorsub_imageminor_codeXFlushborder_pixelXGravityEvent_XImagedash_offsetASSIGNSTRINGARRAYpushgotoCALLSTRINGARRAYsignprev_in_stackcurrsympopgotosymbol.cskipfirstesizecreate_symbolindexsymheadcreate_arraylinkcreate_doarraycreate_pushstrsymrootnboundspoplabelsuppliedcreate_requireftypecreate_makestaticcount_argscreate_labelcreate_dblbinarraymodecreate_gotostackdesclinkedoff_to_indcreate_dimpushnamelargerind_to_offpushlabelcurrstackstorelabelototalntotalmatchgotodump_symASSIGNARRAYcreate_pusharrayrefsymstackcreate_pushdblprevstackrvallink_symbolsnextsymprelinkswitch_nestingactualGETSTRINGPOINTERsymbolcountnext_in_stackCALLARRAYstackcountexpectedfreesymcreate_callstepglobalpoppedlabelheadcreate_subr_linklabelrootreorder_stack_after_callcreate_count_paramskeepflow.cpush_switch_idlink_labeladdresscreate_gosubshouldkeptttopto_popftSTRINGfunction_typekept_stringcreate_endfunctionkeep_topmostkept_valuekept_typeftNONEcheck_leave_switchload_pop_multiloop_nestingto_breakpop_switch_idmax_switch_idcreate_mybreakaheadftNUMBERcreate_check_return_valuebbotshort_dumpcreate_makelocal__builtin_strpbrktINTERRUPTyy_fatal_errortSQRtEOPROGtABSend_of_all_importstGOSUBfnumyy_init_bufferyy_scan_bytestPEEKtVALyybytesyy_matchUMINUSisattytSTRyy_scan_buffertTOKEN__a2yy_baseyylvaltSUB__accept1yy_chktTELLtEXECUTEtWAITtREADINGtPOKEtDATAtDATEtENDSUBret_val_yybytes_lentMOUSEByy_deftLEFTyy_state_typetMOUSEXtMOUSEYyy_bs_linenotLENsourcetLEQtLETtINKEYtGETBITtBACKCOLOUR_in_stryy_state_buftINSTRyy_find_actionyy_looking_for_trail_begintMAXfreadyy_is_jamtSYSTEMtDOCUtATANtSPLITALTferrortCIRCLEyy_fill_buffernumber_to_movetRIGHTtANDtPRINTyy_buffer_stack_toptASINyy_delete_bufferyylex_destroytBREAKtBINyyoutyy_buf_postLOOPinclude_depthclearerryyerroryy_more_flagtTHENflex_int16_ttUSINGtENDIFYY_CHARtTEXTtMYEOFtTRIMtGETCHARtPRINTERtMIDtLOGtMINyy_buffer_stack_maxtCHRflex_lineyyset_linenotNEQyyrealloctNEWtPUTBITtFNUMignore_nested_importstUPPERyylinenotDECtSTRSYMoerrnoyy_bpyypush_buffer_stateyy_acclisttLTNtNEXTwheretCOLOURyy_cpYY_BUFFER_STATEtMODtBELLyy_amount_of_matched_texttSPLITtFRACtSYSTEM2yy_nxtnew_buffertCONTINUEyy_ectTRIANGLEtDIMyy_did_buffer_switch_on_eofinclude_stackyy_buffer_stackyy_init_globalsyy_switch_to_bufferinumyy_starttTIMEtSEEKyy_n_charstERRORyyensure_buffer_stackyy_flush_bufferyy_ch_buftNOTyy_state_ptryyinyyget_lengyyset_outtPEEK2do_action_bdebugyy_create_bufferyyallocyyget_texttDOTtIMPORTyy_lpyy_full_lpyyset_inyy_inityy_buf_sizetWHILEwithouttWEND_line_numberyy_ctCURVEtORIGINtDIGITStRTRIMyyget_linenotPUTCHARtEXPORTtENDYYSTYPEyyless_macro_argyystr__accept2__accept3tCASEgrow_sizetOPENyy_is_our_buffertEORyyget_outtSCREENtSENDflex.ctELSEtEXITyylengtLINEyy_scan_stringtRANtCLEARtGEQtEQUyy_acceptyytextyypop_buffer_stateyy_next_statetRUNTIME_CREATED_SUBtASCyy_get_previous_stateyylextPOWtEXECUTE2tSWITCHtMOUSEMODnum_to_readyyget_debugtSYMBOLyy_hold_charyy_more_lentFILLyy_size_ttLTRIM__builtin_calloctRETURNtFORtLOCALimport_libyy_buffer_statetLOWERfullyyset_debug_out_strtrailtDEFAULTyy_at_boltHEXtWINDOWtWRITINGtELSIFtGLOBtEXPtACOSyy_input_fileyy_metayytokentypeyy_actyy_is_interactivetSEPtBINDyyrestartunquotedyy_bs_columnyy_c_buf_ptUNTILtTANyy_get_next_bufferyyfreetSQRT__a0__a1find_ruleyy_full_state__strpbrk_c2tTOKENALTtSIGtSINnum_to_alloctINPUTtGTNtARSIZEyy_load_buffer_statetCLOSEtRESTOREyy_buffer_statustRINSTRtREVERSEleave_libfullreturnflex_uint16_ttREADtSTEPyy_full_matchtCOStARDIMyy_current_statetCOMPILEtREPEATyyget_intRECTyy_flex_debugnew_sizeopen_library__strpbrk_c3yy_try_NUL_transtSTATICtINTyydefaultyypactyymsgyyexhaustedlabmissing_wendyysetstateyyruleyytokenatoimemcpymissing_endsubmissing_until_line__malloc_initialize_hook__malloc_hookyyss_allocmissing_until__free_hookyy_symbol_value_printyyvsayyptryynewstateyyacceptlabyycheckyytranslate__after_morecore_hookyyresultyycharyytypemissing_wend_lineyyreturnmissing_endsub_lineyybottomyyreduceexportedbison.cyydefgotoyyvaluepcurrent_libfileyystateyybackupyytype_uint16yystosyytype_uint8yystacksizeptrdiff_tyyss1yyoutputyyvalyyssayytableyysspyysizeyyerrstatusyypgotoyytopreport_missingyyerrorlabyytype_int16yyr1yyr2strtolyyss__realloc_hookyylenyyvs_allocyyvsmissing_loopyyerrlab1__memalign_hookyyabortlabyy_symbol_printyy_reduce_printyynrhsyytnameyyerrlabmissing_loop_lineyylnoyynewbytesyy_stack_printyynerrsyydestruct__nptrmissing_nextyyvspyybotmissing_next_lineyydefact__morecoreyyrlineh@,h@U,h@0h@T0h@óh@\óh@k@óUŸk@Dk@\Dk@Uk@óUŸUk@_k@U_k@´k@óUŸ´k@Ðl@\nh@„h@P„h@k@whk@îk@wîk@òk@Pòk@Ðl@wh@Ÿh@PŸh@k@‘¸hk@îk@‘¸/l@3l@P3l@Ðl@‘¸¦h@ºh@Pºh@k@Vhk@´k@V´k@Ók@PÓk@îk@Vyl@}l@P}l@Ðl@Vi@i@Pi@°i@\hk@lk@Plk@´k@\ºh@Éh@PÓh@óh@Pˆi@œi@P¥i@µi@PCj@\j@Pgj@‚j@PÉl@Ðl@PØh@óh@1Ÿóh@æi@^hk@´k@^Él@Ðl@1Ÿh@óh@0Ÿóh@Ji@SJi@Oi@sŸOi@ri@Sri@wi@sŸwi@˜i@S˜i@i@sŸi@Âi@SÂi@Çi@sŸÇi@j@Sj@j@sŸj@*j@S*j@/j@sŸ/j@Xj@SXj@]j@sŸ]j@ƒj@Sƒj@†j@sŸ†j@™j@Qk@Dk@0ŸUk@hk@0Ÿhk@tk@S´k@Ðl@0Ÿ7i@æi@òm7i@æi@V7i@Di@_Di@Oi@ŸOi@^i@_Xi@ci@ 0ãAŸci@li@_li@wi@Ÿwi@æi@_µi@¼i@\¼i@Çi@|ŸÇi@Ñi@\æi@ñi@ ôAŸñi@üi@\üi@j@|Ÿj@j@\ j@$j@\$j@/j@|Ÿ/j@k@\mk@xk@pók@ûk@p4l@C@gC@^ô6@Â7@0ŸÂ7@Û7@_ê7@Z8@_¦8@Ó8@_œB@ÌB@0ŸÌB@×B@_®I@ØI@0ŸØI@èI@xÓc”0.ÿŸŒK@ÁK@0Ÿg[@„[@_z8@¯8@2Ÿ C@^E@2Ÿ3H@”H@2Ÿ J@=J@2Ÿ*M@„M@2ŸÔM@öM@2ŸãZ@[@2Ÿ„[@ô^@2Ÿz8@¯8@S C@^C@SºC@²D@S3H@XH@SJ@=J@S*M@„M@SÔM@öM@SãZ@[@S„[@]@S^]@†]@S¡]@^@S+^@Ó^@Sà^@ô^@Sƒ8@‰8@ -pÿŸ‰8@“8@ -s”ÿŸ“8@¯8@ s”ÿŸó[@¶\@4Ÿô]@^@4Ÿ+^@ƒ^@4Ÿ\@E\@5Ÿô]@^@5Ÿ¦]@¬]@pr9@…9@ 'ŸM@*M@ 'Ÿ-;@6;@P6;@î;@Sò:@ÿ:@Ph;@m;@1Ÿm;@‡;@P‡;@‹;@pŸ­;@¹;@0ŸJB@LB@0ŸTB@aB@S^E@8G@S4:@G:@(ŸøL@M@(Ÿj:@x:@pŸßL@øL@pŸ2;@6;@UûH@YI@0ŸK@AK@SAK@FK@sŸFK@ŒK@SL@7L@0Ÿ7L@L@S¶M@ÔM@SCN@¦X@0Ÿ[@g[@0Ÿ€c@™c@U™c@šc@óUŸšc@²c@U²c@³c@óUŸ³c@Âc@UÂc@Ãc@óUŸ€c@™c@T™c@šc@óTŸšc@²c@T²c@³c@óTŸ³c@Âc@TÂc@Ãc@óTŸ³c@Âc@TÂc@Ãc@óTŸ³c@Âc@UÂc@Ãc@óUŸÐg@Ýg@UÝg@èg@Qèg@ûg@óUŸ o@ªo@Uªo@½o@S½o@×o@óUŸ³o@Ëo@PËo@×o@‘hp@p@Up@$p@S$p@%p@U%p@&p@óUŸ&p@7p@U7p@9p@óUŸp@%p@Pr@r@Ur@r@óUŸ€s@”s@U”s@Æs@SÆs@Òs@óUŸÒs@Ùt@SÙt@Mu@óUŸ€s@‰s@T‰s@Ñs@VÑs@Òs@óTŸÒs@Mu@V°s@Æs@St@Ùt@SÙt@Mu@óUŸÀ}@Ê}@UÊ}@ß}@Sß}@ä}@sŸä}@ñ}@SÀ}@Õ}@TÕ}@ð}@\ð}@õ}@óTŸÀ}@Õ}@QÕ}@ð}@Vð}@õ}@óQŸ~@~@U~@-~@^-~@1~@U1~@2~@óUŸ2~@ü~@^ü~@ý~@óUŸý~@@^@@P~@!~@P2~@A~@P2~@ü~@^ü~@ý~@óUŸý~@@^@@PH~@L~@PL~@ö~@Vý~@@VH~@L~@PL~@x~@Vx~@~@P~@˜~@\˜~@­~@P­~@ø~@\ý~@@P@ @\m~@q~@Pq~@õ~@Sõ~@ý~@Pý~@@S@@U@@óUŸ0575U75¸5óUŸE5“5V”5¸5Vb5u5P¡5¸5Pu5’5SŸ5¡5S¶5¸5Sz5”5Pð45U55óUŸ5+5U+505óUŸ 55P%5/5P/505UŸ`4¢4U¢4Ì4óUŸÌ4ï4U°4´4P´4Ë4Sp4¢4a¢4Ì4‘hÌ4ï4aÕ3í3P3Å3Pí34P!4;4PO4]4P›3ì3Ví3]4V€3Ê3 ží3 4 ž 4!4 žð?!4;4 ž;4O4 žð?O4]4 ž0262U62z3óUŸQ2t2U­2´2UÓ2Ü2Uí2ô2U3$3UJ3T3UH2¬2S­2z3S‘2­2‘h–2­2PÀ1Ñ1UÑ1ê1óUŸê1÷1U÷12óUŸ2%2U%2.2óUŸá1é1U2 2U 22bŸ22U22bŸ%2-2U-2.2]Ÿp0y0Uy0¾1óUŸ˜0Ï0aé0'1a:1o1a…1¾1aŽ0’0d’0¾1‘hÏ0è0wè0é0‘`Ô0é0P00U0*0óUŸ*070U70^0óUŸ^0e0Ue0n0óUŸ!0)0UC0K0UL0U0ZŸU0]0U]0^0ZŸe0m0Um0n0[Ÿ /o/Uo/t/óUŸt/†/U†/‹/óUŸ‹/”/U”/ö/óUŸœ/¨/P¨/Æ/\Ç/Ú/PÚ/õ/\+/h/Vh/s/Qt/z/Vz/†/ŭ/Š/óU#L‹/Ä/VÇ/ó/V(/g/s Ÿg/o/uØ# Ÿo/s/ óU#X# Ÿt/y/s Ÿy/†/uØ# Ÿ†/Š/ óU#X# Ÿ‹/Ã/s ŸÇ/ò/s Ÿ//U//óUŸ°.¾.U¾.ú.Vú.û.óUŸÊ.Ñ.PÑ.ù.SP.h.ah.¨.‘hq.u.Pu.§.S§.¨. Àxc-·-U·-.S..óUŸ.=.S=.C.óUŸÀ-Ü-P.+.P-­-v Ÿ­-®-uØ# Ÿ®-.v Ÿ.>.v Ÿ`-o-Uo-w-Qw-Œ-SŒ-Ž-óUŸ~-‚-P‚--V°,Å,UÅ, -óUŸ --U-_-óUŸ,œ,Uœ,¥,S¥,¦,pÈ€+‘+U‘+÷+óUŸ÷+,U,‰,óUŸ€+£+0Ÿ£+â+Vâ+æ+Uç+ö+V÷+,0Ÿ,7,V<,j,Vo,„,V£+÷+‘X,‰,‘X²+á+Sá+æ+Pç+õ+S,6,S<,i,Si,n,Po,ƒ,Sƒ,ˆ,P((U(Q)óUŸQ)])U])~+óUŸB(Œ(VB(O(VO(Î(SÖ(!)S2)E)Sr)—)S£)*S */*S;*Œ*S˜*©*Sµ*~+SÂ)Å)q8$8&2$p"Å)È) q8$8&2$p"(4(0Ÿ4(Ñ(\Ö($)\$)1)T2)H)\H)P)UQ)f)0Ÿf)š)\š)¢)U£)*\* *U *2*\;**\˜*¬*\µ*~+\4(Q)‘Hr)~+‘H2+G+PJ+k+P++C+ ÿŸC+O+Rn(}(PO(T( ~8$8&ŸT(f(Pf(x( ~8$8&Ÿ}(Q):Ÿr)~+:Ÿ—(Q)4Ÿr)˜*4Ÿµ*~+4ŸÖ(Q)4Ÿr)˜*4Ÿµ*~+4Ÿñ(2)9Ÿr)˜*9Ÿµ*~+9Ÿr)˜*<Ÿµ*~+<Ÿ£)˜*9Ÿµ*~+9Ÿ¸)¼) |”8$8&ŸÂ)Ý) q8$8&Ÿµ*Æ* q8$8&Ÿå*++ q8$8&ŸÝ)‚*6Ÿ++~+6Ÿ *‚*;Ÿ++~+;Ÿ;*‚*CŸ++~+CŸÀ'Û'UÛ'å'óUŸå'ð'Uð'ú'óUŸà'å'Põ'ú'PG'`'a‹'–'að >U>VŠóUŸŠV¼U¼ãVãUÞVÞáUá*Vð +a+{‘˜Š‘˜¼a¼;‘˜;IbI£‘˜ãae•‘˜ÃÔ‘˜Þ ‘˜*‘˜ð :T:ƒ\ƒŠóTŸŠ\¼T¼ã\ãTÞ\ÞèTè*\ð 6Q6y^yŠóQŸŠ^¼Q¼·óQŸ·ã^ãQÞ^ÞèQè*^¼ÇPÔùPð :T:fQflqŸlyQŠQ³T³·S·ÏQãTÞèTè \+@0Ÿ@yUŠU·½UÞ 0Ÿ+@0Ÿ@ySŠS· SÞ 0Ÿ*SÕ×P×IXI£‘¨£ãX©X´ÞXìîPî*XdqPq€õ-÷4÷Ÿ=]QÔÞQ+@0Ÿ@yTŠT·ÏTÞ 0Ÿ+@0Ÿ@yRŠR·ÀRÞ 0Ÿð +0Ÿ+y_Š_·0Ÿ·£_ÃØ_Øú0Ÿ 0Ÿ#_ã1Ÿ _e•_Ÿ´_ÃÔ_Þ _ 0Ÿ*_Ytat£ce•cÃÏaÏÔccbtbtãa©a´ÃaÃÔbÔÞa aÜø žà?ø aø  žà?* žà?`…U…E^EHóUŸHWUW†^†‰óUŸ`‰T‰C]CHóTŸH`T`„]„‰óTŸ‚Ä žÄèwèôaa9wÄÎPÎê pžB"Ÿ PÄ0ŸÄÛ~Ÿê9~Ÿ¯P”8$8&2$s",a,!óõ-Ÿ!0a0Uóõ-Ÿ,U,[S[!óUŸ!PSPUóUŸ>[P[bSbkPk’S’—sŸšSsŸNUP>‚a—¸b¸‘X!‘PNUa1FaFVbV[a[‚b‚š‘PDUaŒPV!P>0Ÿ!D0ŸDN1Ÿà D UŒ × Uà $ T$ ‹ ]‹ Œ óTŸŒ × T× á ]á â óTŸà @ Q@ ‰ \‰ Œ óQŸŒ × Q× ß \ß â óQŸà ; R; ‡ V‡ Œ óRŸŒ × R× Ý VÝ â óRŸà 6 X6 † S† Œ óXŸŒ Ü SÜ â óXŸ& ´ U´ Ä \Ä Û U° ¸ U  P Ú ]Ú Û P& 7 0Ÿ7 I SI ¹ sŸ¹ Ä S& 7 0Ÿ7 ° V0[U[kVkuUuÇVÇîóUŸîV•óUŸ•™V™óUŸgVgãóUŸãV[óUŸ[¡V¡óUŸVaóUŸa~V~ÌóUŸÌÐVÐóUŸ¿V¿ËóUŸËŠVŠÀóUŸÀ.V.PóUŸPß Vß &"óUŸ&"—"V—"ï"óUŸï"Ì#VÌ#Ý#óUŸÝ#Á$VÁ$Ò$óUŸÒ$ %V %+%óUŸ+%&V&>&óUŸ>&Õ&VÕ&,'óUŸÕßPîP[k_¤¦P¦í_î _,'_—¦]0[0ŸkŠ0ŸŠ—\}Š^ÇßSPÊÚP.3PUZPt„P¼ÁPgnPn‰SPhuPuS P\aP‘•P•ÌSãçPçSJOPbgP”™PìñPáåPåëSýPPSbfPf‹SÇ#Ì#P"$R$SDÇSîS$S• S.S37SZjSãS[lS˜œSÁgS‰ShS¬SSa‘SÌãS%SObSg”S™¿SËìSñ SX\SÀáSëýSPbS‹ S% G SÖ â S&"z"Sµ#Ç#SÝ#ï#SR$Á$SÒ$ð$S% %SÇß1Ÿ1Ÿé3Ÿ.31ŸUZ1Ÿ¼Á1Ÿëð3Ÿ#3Ÿ#‰1Ÿ¼Á3ŸÝâ3Ÿþ3Ÿ1Ÿ6;3ŸPU3Ÿ˜1Ÿ 1Ÿ\a1Ÿuz3ŸJO1Ÿbg1Ÿ|3Ÿ”™1ŸÆË3Ÿ 3ŸRW3Ÿìñ1ŸSX3ŸÑÖ3Ÿçì3Ÿý3Ÿ3Ÿ).3Ÿ?D3ŸšŸ3ŸÄÉ3Ÿæë1ŸKP1Ÿ†‹1Ÿ˜3Ÿ6 ; 3Ÿa"f"3Ÿµ#Ì#1Ÿ% %1Ÿ)‚] | ö-÷4÷Ÿ&Q&* | ö-÷4÷Ÿ[]¤ª } ö-÷4÷Ÿª¸R  } ö-÷4÷Ÿ QqŸ);S;@s $p $-(Ÿ °S°és $1 $+(Ÿ*P7> } ö-÷4÷ŸEKTKQtŸ¤¸P3T\™éV*7US^Ë\-V[ss˜Sœ¼S¡VaV~ÌVÐV%JSûU\ŠS? Œ ]Ú +!\z"—"SÓ"â"\Ý#å#Uå#ï#w‚V™§}»ÉTbÖ][\_sTÓ"è"]ývq"”8$8&2$r" vq"”8$8&2$p"ý vq"”8$8&Ÿ  t8$8&Ÿ­¶vq"”8$8&2$r"¶¹vq"”8$8&2$p"­¹vq"”8$8&Ÿ¹Ì t8$8&ŸbÖ]Ó"è"]bÖ\Ó"è"\bo\oÖSÓ"è"SœPot v8$8&Ÿt†P†— v8$8&ŸœÖ3ŸÓ"è"3ŸœÖ\Ó"è"\œ§ e|”ÿŸ§³ n|”ÿŸ³¿ v|”ÿŸ¿Ë |”ÿŸÓ"è";ŸûUÝ#å#Uå#ï#w PES\ŠSz"—"SŠ”0Ÿ”žSž¢sŸ¢¬|Ÿ²ÈS«"¶"|Ÿ„ŠPŠÀ]z"‹"P‹"—"]«"»"]”¬P¼ÁPÁÀV«"»"PÈ• àxcŸÈ•\ Sï#"$S+%`%S? Ö Vï"µ#Vð$%V`%&V>&Õ&V? Ö ]ï"µ#]ð$%]`%&]>&Õ&]? L ]L Ñ Sï"°#Sð$ý$S`%o%St%ƒ%Sˆ%Þ%SÞ%ô%Uô%&S&&S>&N&SS&b&Sg&t&Sy&†&S‹&˜&S&ª&S¯&¾&SÃ&Ð&Sn } PL T |8$8&ŸT f Pf x |8$8&Ÿ} Ö 9Ÿï"µ#9Ÿð$%9Ÿ`%&9Ÿ>&Õ&9Ÿï"µ#9Ÿ`%&9Ÿ>&g&9Ÿ¯&Õ&9Ÿ#µ#<Ÿt%&<Ÿ>&g&<Ÿ¯&Õ&<Ÿ#µ#5Ÿˆ%&5Ÿ>&g&5Ÿ¯&Õ&5Ÿ.#µ#AŸˆ%&AŸ>&g&AŸ¯&Õ&AŸC#µ#<Ÿˆ%ô%<Ÿ>&g&<Ÿ¯&Õ&<ŸX#µ#7Ÿˆ%ô%7Ÿ>&S&7Ÿ¯&Õ&7Ÿm#µ#7Ÿˆ%ô%7Ÿ¯&Õ&7Ÿ‚#µ#2Ÿˆ%ô%2Ÿ¯&Ã&2Ÿ‚#µ#]ˆ%ô%]¯&Ã&]‚## o}”ÿŸ#˜# s}”ÿŸ˜#¬# }”ÿŸˆ%ô%4Ÿ¯&Ã&4Ÿ%ô%8Ÿ®%Ã%9ŸÚ !"\»"Ê"\Ì#Ý#\Á$Ò$\ %+%\&>&\Õ&,'\Ú ç \ç !"S»"Ê"SÌ#Ý#SÁ$Ò$S %+%S&>&SÕ&,'S !!Pç ô v8$8&Ÿô !P!! v8$8&Ÿ!&"8Ÿ»"Ê"8ŸÌ#Ý#8ŸÁ$Ò$8Ÿ %+%8Ÿ&>&8ŸÕ&,'8Ÿ1!&"9Ÿ»"Ê"9ŸÁ$Ò$9Ÿ %+%9Ÿ&>&9ŸÕ&,'9ŸF!&":Ÿ»"Ê":Ÿ %+%:Ÿ&>&:ŸÕ&,':Ÿ[!&"<Ÿ»"Ê"<Ÿ%+%<Ÿ&>&<ŸÕ&,'<Ÿp!&";Ÿ»"Ê";Ÿ&>&;ŸÕ&,';Ÿ…!&"8Ÿ»"Ê"8Ÿ&-&8ŸÕ&,'8Ÿš!&"9Ÿ»"Ê"9ŸÕ&,'9Ÿ¯!&"7Ÿ»"Ê"7ŸÕ&,'7ŸÄ!&"5Ÿ»"Ê"5ŸÕ&'5ŸÙ!&"7Ÿ»"Ê"7ŸÕ& '7Ÿî!&">Ÿ»"Ê">ŸÕ&ù&>Ÿà ì Uì õ Sõ ö pÈ ! U! Ú óUŸ ¼ ]¿ Ú ]> ¶ Vß  V  vŸ* Ú VÐ ä ^. º \¿ Ú \L Sä  S* H S‚ Ú S~ 1Ÿ ¶ Pô  1Ÿ * Q< H 1ŸH ‚ Q’ ® 1Ÿ® ¿ PÍ Ó pŸÓ Ú Pô  P * T< H PH ‚ RH ˆ Pä ï P* 7 P‚ ¬ Pð ü Uü  S  pÈ— æ V  è \Å É PÉ å Så é pU+S2kSqýST,V2TVT\vŸ\nVqVÌÖ0ŸÖäPäø0ŸøPI T pD W SW [ P[ p S°ÖUÖ óUŸ  U ! SÖî\õ \ ! \äôPþPô_õ _èìVõ VþVS(Q(lSl|Q|ÔSÔÛsŸÛëSõ Sþ0Ÿ6]6l0Ÿl¼]õ 0Ÿßò~ ÿÿÿÿ1,ÿŸõ ~ ÿÿÿÿ1,ÿŸp•U•óUŸ$U$5S5¦óUŸ•~] ÿÿÿÿ1,ÿŸ p ÿÿÿÿ1,ÿŸ s ‘¤”1,ÿŸ~] ÿÿÿÿ1,ÿŸ5¦~] ÿÿÿÿ1,ÿŸ§«P«]ÅèP]5>]Y`]‘¡]ÀæPPYdPÖÀ\è\5Y\‘¦\p0Ÿ}]}Rã]è]¦0Ÿ›0Ÿ›©^©¶~Ÿ¶¼^ð1Ÿ}‘¸‰´‘¸è‘¸ö S ^´SèSDYS‘¦Sa_arUs´_è_ãìPìô^ôÀ‘°è‘°•ßVèV0¦V»SS5¦S%-RZjRj_n‘¨£´‘¨è‘¨ð 1Ÿ -REjRj_ð1Ÿ%‘¨%–1Ÿ£À1Ÿè‘¨5Y1Ÿ‘¦1ŸÐàUàGVGJóUŸJ_V_bóUŸbfVÐàTàI\IJóT0óT $0*(ŸJa\abóTŸbf\ÐàQà S JóQŸJ^S^fóQŸáPJYP$\$0R04rŸbf\JPbfPJ]VJ]\J]Sà$%U%%]3'E']à$%T%E'‘”à$%Q%E'‘à$%R%é&Vò&E'Vv%í&]ò&3']%Ÿ%‘”Ÿ%§%_§%¬%Ÿ¬%›&_›& &Ÿ &Æ&_ò&3'_V&©&^ò&'^v%3'‘˜n%r%Pr%v%‘œH%M%PM%è&Sè&ò&Pò&E'S•!#S%#Û#Så#í#S8"}"V%#Ç#VÎ!å! wö-÷4÷Ÿå!å"]%#Ç#]å#í# wö-÷4÷Ÿå!"^"å"^%#Ç#^8"}"w%#C#w#¯#P¯#³#R³#Ç#w8"}"‘˜%#C#‘˜´#Ç#PŒ!!õ-÷4÷Ÿ!å! wö-÷4÷ŸÇ#Ú# wö-÷4÷ŸÚ#å# ‘ö-÷4÷Ÿå#í# wö-÷4÷Ÿx!|!õ-÷4÷Ÿ|!å! ‘˜ö-÷4÷ŸÇ#í# ‘˜ö-÷4÷Ÿ`¢U¢ÈSÈYóUŸYgUgnóUŸnzUzóUŸŽSŽÏóUŸÏéSé÷U÷fóUŸfS«óUŸ`û0ŸûB\Y‰0Ÿ‰ÏVÏ0ŸA\f0Ÿ«V`Ã0ŸÃFVY0ŸfVf«0ŸÃÔVÔßQßåqŸåíQû \ QqŸ%Q‰šVš§Q§­qŸ­µQ1>P>ISÁÇPÇÏSPfSP«SBF\AKPKf\š­s8$8&2$p"Ôås8$8&2$p" s8$8&2$p" ¬U¬µSµ¶pÈ@NUNlVlmóUŸ]aPakS =U=\’óUŸ’ \  óUŸ Ù\ D0Ÿ’´0ŸfQfgsŸ«Ã0ŸÃÙQ8‘]’ ] Ù]x‚P‚ŒSÒâPâSðUóUŸðTVpÈ 'U'äóUŸ5dSk²SºâS˜¹PºÏPTdPx—P—³VºÏVÏäPR—q $ @šK$)ÿŸ­¹q $ @šK$)ÿŸR_ p $0+ÿŸ_—ˆuc” $0+ÿŸ­¹ˆuc” $0+ÿŸ0bSbfUpzUzÖVÖÛóUŸÛæVæçóUŸçV¦ÈPçPˆÕSÕÚUÛåSçS +U+1óUŸ 'T'0S01pÈ`xUxüóUŸüUqóUŸ¤žV£óVEVJqVšžõ-÷4÷Ÿžü ‘Hö-÷4÷Ÿq ‘Hö-÷4÷Ÿ0SDSJqSºË0ŸË×q}ŸºÇPÇ \£õ\G\Jq\€‰P‰ô]PËÝs8$8&2$p"åü5Ÿq5Ÿ03Ÿ£ü3Ÿ0]£÷]÷ûU e}”ÿŸ n}”ÿŸ$ d}”ÿŸ$0 }”ÿŸ£ü4ŸµSTSTUVîp à Uà ŒóUŸŒ•U•²óUŸ²½U½›óUŸ `0ŸŒh0Ÿh~P²Ü0Ÿï!0Ÿ!%PU›0Ÿ `0ŸÆ²Sï›Sú PpŸ`sŸ ã 0Ÿã è Pè …^Œ¬0Ÿ¬±P±²^²Ü0ŸÜì^ï›^ Ë 0ŸË Ô PÔ V‹UŒ0Ÿ¦P¦²V²Ñ0ŸÑÜPÜæVï›V/ @ucŸ/<3$@uc"Ÿ<E3$@uc"ŸK²3$@uc"Ÿï3$@uc"Ÿ!›3$@uc"Ÿ/0Ÿ/<Ÿ<E|ŸK²_ï_!›_ÒûPû²wïDwDOPO›w© Ç p2ŸŒ™p2Ÿ²Áp2Ÿ© î SŒÆS²ÜS­ ƒ]Œê]ï›]ÀÌUÌÕSÕÖpÌðU`]`ePe·]ðU\!V!4\4IVe·VðUS!sŸ![SeSsŸ·S„“P“˜ pžB"Ÿ˜· ~žB"Ÿ·ÆPÆÜ pžB"Ÿ®°Pe®0Ÿ®Ô^¤§^®°0Ÿpƒ|”8$8&2$"®¶|”8$8&2$" ËaËáa±Æaõp\‚±\Óê\#‘À} @B‘È}"Ÿ#1P1M‘À} @B‘È}"Ÿ26P6p‘ˆ}±‘ˆ}Ûꑈ}õô\+lTlz‘¨}'J‘¨}‚\Óê\PòwÛêwûÅ_ÅJ‘„}±‘„}Ûê_P×VÛêVôPîP!P®P> ¦ \¦ Ê ]Ê Ï }ŸÏ ð ]> G 0ŸG i Si x Ux ‹ sŸ‹ ¦ S9cQv”QpSvSð ý Uý  óUŸù 2 SD ¦ dŸ¦ » S½ Ç SÙ ù dŸù ¿ SÉ ÷ dŸ÷  S? C PC ¦ VÔ Ø PØ ù V  PŠ ’ PÉ ÷ VD r PÙ ù Pê ÷ Pð 2 0Ÿ2 6 P6 X S½ í 0Ÿù ¿ 0Ÿ÷  0ŸR r Uç ù Uê ÷ U o p $ &Ÿo u R} “ p $ &Ÿ“ ª õ-÷4÷ $ &Ÿ u a} ª aâ   ÿŸ÷   ÿŸó  V  VŽ › V, > V² ¿ V× ê SÀÍUÍôóUŸáåPåóV;U;WóUŸWkUk‡óUŸ‡šUš£T£²óUŸîûQûS%Q%6S6<P<FSÉòS  S_ q P  § U§ ¿ S¿ à UÃ Ä óUŸÄ ã Sã ä óUŸÄ â S : U: @ Q@ N óUŸN ] Q] v óUŸv ƒ U 1 T1 M SN u Su v óTŸv ƒ T^ o óUŸ^ o 0Ÿ€›U›ÚSÚà vO&v'vO&ŸàáóUO&óU'óUO&Ÿá S   vO&v'vO&Ÿ  óUO&óU'óUO&Ÿ S vO&v'vO&ŸóUO&óU'óUO&Ÿ›Ús $ @šK$)ÿŸÚàvO&v'vO& $ @šK$)ÿŸàáóUO&óU'óUO& $ @šK$)ÿŸá s $ @šK$)ÿŸ  vO&v'vO& $ @šK$)ÿŸ  óUO&óU'óUO& $ @šK$)ÿŸ s $ @šK$)ÿŸvO&v'vO& $ @šK$)ÿŸóUO&óU'óUO& $ @šK$)ÿŸ› u $0+ÿŸà v $0+ÿŸàá óU $0+ÿŸá  v $0+ÿŸ   óU $0+ÿŸ  v $0+ÿŸ óU $0+ÿŸá V  óUŸpxUxS…U…†óUŸ†‘S‘’óUŸÀÕUÕVÀÕUÕÙVÙçQçíqŸíõQÙís8$8&2$p"RVY·V·¸óUŸ¸_VR3ŸY_3ŸRVY·V·¸óUŸ¸_VpqŸ PYf lv”ÿŸfl av”ÿŸlt v”ÿŸ R5Ÿt_5Ÿ1R3Ÿt¬3Ÿ¸_3Ÿ1RVt¬V¸_V16wqŸ6< hv”ÿŸ ¦ iv”ÿŸ¦¬ v”ÿŸ<R4Ÿ¸¿4ŸÏ_4Ÿt 3Ÿ¿Ï3Ÿt V¿ÏVt}rqŸ}ƒ ev”ÿŸƒ dv”ÿŸ¿Ï v”ÿŸ™3Ÿ™V“ dv”ÿŸ“™ v”ÿŸ¸¿3ŸÏ_3Ÿ¸¿VÏ_V¸ÀPÏÚ lv”ÿŸÚä uv”ÿŸäó v”ÿŸÀ¿5Ÿó_5Ÿä¿3Ÿó_3Ÿä¿Vó_VäígqŸíó rv”ÿŸóù ev”ÿŸù v”ÿŸ¿6Ÿó_6Ÿ'¿4Ÿ6_4ŸKf3ŸKfVKPcqŸPV yv”ÿŸV\ av”ÿŸ\f v”ÿŸf¿7ŸŠ¿3ŸŠ¿VŠ˜mqŸ˜¢ av”ÿŸ¢¬ gv”ÿŸ¬¿ v”ÿŸ yqŸ & ev”ÿŸ&, lv”ÿŸ,6 v”ÿŸ°°T°0ŸãûTãûUPB`BU`B£BV£B¤BóUŸ¤B¾BV¾BÂBUÂBÃBóUŸÃBTEVTE_EU_E`EóUŸ`E~EVPBB0Ÿ¤B¯B0Ÿ¯BÂBTÃBÏB0ŸÏBÑBTÑBßB0ŸßBáBTáBïB0ŸïBñBTñBÿB0ŸÿBCTCC0ŸCCTCC0ŸC!CT!C/C0Ÿ/C4CT4C?C0Ÿ?CDCTDCOC0ŸOCTCTTC_C0Ÿ_CdCTdCoC0ŸoCtCTtCC0ŸC„CT„CC0ŸC”CT”CŸC0ŸŸC¤CT¤C¯C0Ÿ¯C´CT´C¿C0Ÿ¿CÄCTÄCÏC0ŸÏCÔCTÔCßC0ŸßCäCTäCïC0ŸïCôCTôCÿC0ŸÿCDTDD0ŸDDTDD0ŸD$DT$D/D0Ÿ/D4DT4D?D0Ÿ?DDDTDDOD0ŸODTDTTD_D0Ÿ_DdDTdDoD0ŸoDtDTtDD0ŸD„DT„DD0ŸD”DT”DŸD0ŸŸD¤DT¤D¯D0Ÿ¯D´DT´D¿D0Ÿ¿DÄDTÄDÏD0ŸÏDÔDTÔDßD0ŸßDäDTäDïD0ŸïDôDTôDÿD0ŸÿDETEE0ŸEETEyE0ŸyE~ETgBjBPjB¢BS¤B½BSÃBSESSE_EQ`E~ES?¬?U¬?Ó@Sù@ðASðAòAóUŸòAHBS?±?0Ÿx@‰@P A#AP#ApAV[@¬@ ÿŸ¬@Ã@PK@[@PpAtAPà5ò5Uò5'?S'?=?óUŸ=??SB6U6P=?R?P04<4U<4E4SE4F4pȰ0é0Ué0í0u4 4U°0Ë0TË0ä0‘¸~ä0í0t4 4‘¸~°0í0Q4 4Q°0í0R4 4R 11P11Q#1/1R/111Tu2W3_W3n3Ÿn3¼3_Ê3Ý3_`2¼3VÊ3ð3V–2ð2T·3¼3P11[1‘¼~[1r1Ur1«1Z«1f2^f2¼3‘”~¼3Ê3ZÊ3ð3‘”~'4.4^11g1‘¸~g1o1^o1f2_f2¼3‘œ~¼3Ê3_Ê3ð3‘œ~'4.4_11l1‘´~l1f2]f2¼3‘˜~¼3Ê3]Ê3ð3‘˜~'4.4]11€1‘°~€11U1 2V 2¼3‘ ~¼3Ê3UÊ3ð3‘ ~'4.4V°0æ10Ÿæ1þ1Pþ1¼3‘¨~¼3Ê30ŸÊ3ð3‘¨~4 40Ÿ'4.4P¤2Ü2$tHËc”& $ &xÿ÷-x÷-÷ŸÜ2ð24tHËc”& $ &0Ëcÿ÷-0Ëc÷-÷Ÿ¯2ð2$t@Ëc”& $ &{ÿ÷-{÷-÷Ÿ¶2ð2$t8Ëc”& $ &uÿ÷-u÷-÷Ÿ2R2V2"2SI2M2PM2`2‘ˆ~–2¶2T–2¶2òð\–2¶2òà\–2¶2òÐ\%3n3^ 3n3Só2n3]¶2n3‘ˆ~Û+ ,p ,T,V=/N/pc/v/pÿ+ ,p ,,V,,R,,rŸ,9,Rè,a-]s-Õ-]@0T0]-a-\s-¢-\¥,a-^s-=/^|/À/^@0¤0^¼-=/V|/O0VO0T0‘¬~T0¤0V¼-=/\|/F0\F0K0‘°~K0¤0\¼-Í-SÍ-â-rv $s $-(Ÿ@0M0SM0T0‘´~T0p0rv $s $-(Ÿp0‡0‘ˆ~”v $s $-(Ÿ¼-Í-_Í-â-x| $ $-(Ÿ@0C0_C0K0‘¸~K0T0_T0p0x| $ $-(Ÿp0‡0‘Œ~”| $ $-(Ÿ.š.0Ÿš.=/Sg..0Ÿ.=/_|/–/0Ÿ–/»/_è, -0Ÿ -- p $@M$.ÿŸ-a- v $@M$.ÿŸs-“- v $@M$.ÿŸ´.ë.Pë.ý.RÀ+a-0Ÿs-_.0Ÿ_.s.P=/–/0Ÿ@0‡00Ÿ‡0ž0Pž0¤0‘~,,s8$8&2$p"5-D-s8$8&2$"Ò-â-‘ª~ŸT0Y0‘ª~ŸY0p0Qp0q0‘ª~ŸÒ-â-‘¨~ŸT0^0‘¨~Ÿ^0p0Tp0q0‘¨~ŸÒ-â-‘¦~ŸT0c0‘¦~Ÿc0p0Up0q0‘¦~ŸÒ-Õ-}p"ŸÕ-â-]T0q0] //‘ª~Ÿ/ /Q /!/‘ª~Ÿ //‘¨~Ÿ/ /T /!/‘¨~Ÿ //‘¦~Ÿ/ /U /!/‘¦~Ÿ /!/0Ÿ','U,'ÿ)óUŸÿ) *U *·+óUŸ6')V)ÿ)V*·+V6':'P:')S)ÿ)S*·+Sµ'É'cÉ'Í'aß'ó'aó'÷'eùUùsVstóUŸtQUÑTÑrSrtóTŸtQSÑ"h"Pw¦ñh1hLQhí"g"P‘HÍÒgìñgÑ"f"P‘P¦ñf žð?1fLQ žð¿í"e"P‘XÍÒ žð?ìñ žð¿¶"aƒQa¶"b‡Qb`€U€ªVª«óUŸ`‰T‰©S©«óTŸp&~&U~&Ú&SÚ&ß&Tà&ï&Sõ& 'S‡&™&r8$8&2$p"~&‚& s”8$8&Ÿ‡&²& r8$8&Ÿ™&œ&s”8$8&2$p"œ&£&s”8$8&2$p"ð& U& s Ss óUŸ ž S- < P & P& 1 v8$8&ŸC w V6 C VC y |8$8&Ÿ œ Vœ ž |8$8&Ÿ  Ç UÇ œ$óUŸœ$¨$U¨$Á$SÁ$‘%óUŸ@!!S±!¥#S«#„$SC%^%S  Ç 0Ÿœ$Ö$0ŸÖ$(%S(%,%Q,%C%]ƒ%Œ%SŒ%‘%\  ¹ 0Ÿ¹ !Vš!±!Vœ$±$0Ÿ±$ú$Vÿ$C%Vƒ%‘%V  ï 0Ÿï !\!•!Vš!¦#V«#$V—$œ$Vœ$ò$0Ÿò$(%S(%,%Q,%C%]C%ƒ%Vƒ%Œ%SŒ%‘%\  Ì 0ŸÌ ì Sï !Sš!¬!S„$œ$Sœ$C%0Ÿ^%ƒ%Sƒ%‘%0Ÿ""‘D”0$0& þŸp${$ ‘D”0$0&Ÿ{$„$P7"S"hÖc”2ŸC%^% hÖcØ!í!Pü"#P##pŸ#R#P«#ä#P .U.åóUŸ8YVZíVîåV8<P<XSZìSîåSàîUîóUŸ d‘HøšVŸãVVoVv»Vc£VøüPüSŸtSvST‹óTŸ%Q%‹Y®t $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"q $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ%t÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"q $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ%(t÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ(3¯óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ3NžóT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"q÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"ŸNj¯óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿjr©óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öc0Ëcq÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿr‹¯óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ0\U\mSmoóUŸo›S›óUŸªUª¶óUŸ¶ÖSÈÍPÍV÷QÖVhV¶÷VpUAóUŸARUR^óUŸ^eUeàóUŸàûUû)óUŸ‰?S^ùSùûuÈû)S†uÌ”1ŸLv1Ÿ^àv1ŸàûuÌ”1Ÿ—)v1ŸP\U\lSlmpÈÀÉUÉÎSÎÏóUŸÏLSLMóUŸ ?PÏéP3FPÀïUïaóUŸakUkóUŸßïuÈïóXÀø0ŸøQVar0ŸrD Vç Vh ç Vo ç \o £ Êc£ ç ]o £ ”Êc£ ç ^§ « P« ç S¶Ä0ŸÄ×]] j 0Ÿ&40Ÿ4G^q ~ 0Ÿ–0Ÿ°\… Š 0Ÿ S  P ( SV @ Sç ÛS ¬U¬µSµ¶pȰ½U½~V~óUŸ·V·ºóUŸº VzV·V·ºóUŸº V SUS•]•–óUŸ 6T6“\“–óTŸ FQF‘V‘–óQŸ,U,‡S‡–óUŸ–êSêd óUŸd Ž SŽ ­ óUŸ­ !S!7!óUŸ7!Â!SÂ!Ì!óUŸÌ!ý!Sý!¥"óUŸ¥"Õ"S¿Ž ]!7!]X!„!]›!Ì!]ý!¥"]ouPu‡VE d ‘¸³!Æ!PÆ!Ì!‘¸ý!–"‘¸ "¥"Pà!ý!P±"¹"PP d Qý!"Q'"2"QG"–"Q"'"S'"2"s $ &3$q"Ÿ{"–"s $ &3$q"ŸG"{"s $ &3$q"Ÿð ^ ) ~Ÿ) E ^!7!^³!Ì!0Ÿ–"¥"^  R!1!RøE V!7!V–"¥"VðE S!7!S³!Ì!0Ÿ–"¥"Sð' \) E \!7!\³!Ì!1Ÿ–"¥"\BY0Ÿ–³1Ÿ­ Ç 0Ÿ7!X!1Ÿ­ Ç 1Ÿ7!X!0Ÿ­ å 0Ÿå !Q7!X!0Ÿ„!‹!Q­ å 1Ÿå !T7!X!1Ÿ„!‹!Tà ÷ Pý !PS!X!P„!‹!PðþUþQóUŸðùTùSp̰ÆUÆ S óUŸISISóUŸSzSz€óUŸ€ãSÆ\L\S}\ã\Ó×P×î]îPN]S€P•ã]äís # 7s # ¨ÇP@lUlð]ðùóUŸùUµ]µºóUŸº¢]ŒS\l³\º3\@¢\æýP'?1Ÿ?cQc‚‘Ô~KU‘Ô~U1Ÿ¢‘Ô~u’1Ÿ’St¢1ŸT+8ŸK¢8Ÿ÷ 0Ÿ SVl”V'?0Ÿ?LPu’0Ÿ¤±0Ÿ±Â_ÂÆŸËý_ 0ŸOXOÔ_ÔØŸ+_@¢0Ÿ÷ 0Ÿ Q^l”^@K0Ÿª®P®Þ‘È~oS‘È~l3‘È~@¢‘È~wƒx $v $)ÿŸù1Ÿw›XùVoXSlX3@XW×VùVSlV+KVòöQö_‘Ô~U‘Ô~ÄÝQÝé‘Ô~]0ŸS[0Ÿ<0Ÿ<]RS[R<1Ÿ<]TS[TOPU]PS[Pò«_K¢_ 0ŸþP+^K¢^á‘à~Ÿ+‘à~Ÿá\+\hXhnQnÔXX"0Ÿ"1Ÿ"WRWZPZ‘R‘®Q°¶Q‘¶T!U!%Q%2óUŸT2óTŸêîaî‘h ­U­ÊVÊËóUŸµ¹P¹ÉSpU‡Q‡œSœžóUŸŽ’P’VUISILóUŸLiS ­U­ÒVÒÓóUŸÓòV±µPµÑSÓòS -U-RVRSóUŸSrVrsóUŸs’V15P5QSSqSs’S€ŠUŠ"V"#óUŸ#¨V¨­óUŸ­òV»¾P¾!S#§S­òS³·a·ò‘H£§b§ò‘P #‘XLNaZ\bjlaz|bßò žÿÿÿÿÿÿïð U óUŸ-U-2óUŸ2QUQVóUŸViUinóUŸnyUy~óUŸÐeUe‡óUŸ‡™U™¾‘h¾ÀóUŸÀæ‘h^pQ%pR¢¥P¥¾SÀæS°¼U¼ÅSÅÆpÈ€U©V©ªóUŸ‘”P”¨S`mUmqTqwóUŸ`hThvSvwpÈU=S=QóUŸQ«S«¯óUŸ¯±S±¿óUŸ¿=S=QóUŸªPª®\¯¾P¿ÓPÓ@\„ˆPˆªV¯¸V¸¾p¿ÏVªV¯¸V¸¾pªP¯¾På0Ÿ0ŸêPÐÝUÝáTáòóUŸÐØTØñSñòpÈÀÓUÓS1óUŸ1wSw{óUŸ{SóUŸÐSeŽPÎÐP`dPdz\z{p{Š\ŠŽpÉÍPÍÐ\ÀØ0ŸØ÷P÷ýV1iVŸPiz\z{p{Š\ŠŽpiŽP ­U­±T±·óUŸ ¨T¨¶S¶·pÈ U jSjkóUŸk™SEaEa‘hkˆaˆ™‘hP]U]»S»½óUŸ½õSfhPh¼V½ÎPÎõV08U8MSMNóUŸð a*‘hP)S¤ ® P® Ê SÊ Ë p4 > P> g Sg h pÄ Î PÎ ò Sò ó p€ U © V© ª óUŸ” ˜ P˜ ¨ S`OUOñóUŸñUQ óUŸ`”T”PU óTŸð  U R SR X óUŸX € S U \X O \h € \# 4 P4 O Vh € P½ Ú PÚ ì Q N P 9 Q9 > rUU\UVóUŸTSVSVóTŸ)P)RSRVP˜í S²ÌSÌÞ _GUG V ²óUŸ²5V5FUF…V…óUŸ V Q9VGTG ^ ²óTŸ²5^5FTF…^…óTŸ9^GQG ‘¼ ²óQŸ²5‘¼5FQF…‘¼…óQŸ9‘¼!'\'G ¸ÌcGŠ\²Ü\5A\AF ¸Ìc¢\ÇÊ\SZ\Z _²5_F…_9_hmSm¢´P´Ç\êüPü1\G0ŸGP‘¸5F0ŸG0ŸG ]²5]5F0ŸF…]9]ž0Ÿž 1Ÿ²á0Ÿá1Ÿ590Ÿ°ÛUÛüóUŸ¸ÌPÏâP°¿0Ÿ¿ÔQ’§S§¯ ¸Ìc´S\’S¯£Sø\ ¾0Ÿ¾ïVïôvŸôUV¯£V¾ôSUS¯£Sn‚0ŸQn‚Qí1]d£]#U#DóUŸ(T(DóTŸ@TUTUóUŸ@TTTUóTŸà"é"Ué"%#V%#&#óUŸà"ó"Tó"$#S$#&#óTŸ# #0Ÿ0#Y#UY#†#óUŸ†#‰#U0#]#0Ÿ]#~#T€#†#T†#‰#0Ÿ0#]#1Ÿ]#~#U€#†#U†#‰#1Ÿ=#k#Qq#‰#Q26e6ž‘h!a!~w~‘`wž‘`ÐçUçt]tuóUŸuÐ]ÐçUçoSot}(u|SÐSÐç0ŸçpVuÐVÐç0Ÿçr\uÐ\À×U×p]pqóUŸqÐ]À×U×kSkp}(q|SÐSÀ×0Ÿ×lVqÐVÀ×0Ÿ×n\qÐ\€¨U¨J^JMóUŸMÀ^¦¨U¨CSCJ~(MTSWÀS€¨0Ÿ¨DVMÀV€¨0Ÿ¨F\MÀ\¦¨X€¨0Ÿ¨H]MÀ]U$Q$tStvóUŸNZPZuV`†U†ÍVÍÎóUŸÎÿV`‹T‹°S°ÎóTŸÎýSýÿóTŸ°´vU)óUŸƒ®1Ÿ®ÎP¢¸R¸ÀQÀÇR $ U$ j Sj p óUŸp Ð SÐ Ò óUŸÒ á S  T k Vk p óTŸp ‚ V‚ á óTŸ‚ † P† Ñ VÑ Ò ÐÌcÒ á V µ Vµ Ñ VÑ Ò ÐÌcÒ á VÐ  U ¾ V¾ É UÉ Ê óUŸÊ á Vá æ óUŸæ ô Uô  V  U â Vâ ë óUŸë V+ E P€ É P; Y Põ  P 5 Pß ½ SÊ à Sæ Së SF n PY g PÐüUün^nqóUŸq—^ÐêTê\V]—óTŸñ_Sq•SÐ0ŸPp_q—_ ¯U¯·Q·ÌSÌÎóUŸ¾ÂPÂÍVpU‡Q‡œSœžóUŸŽ’P’VU'Q'aVabóUŸ.2P2`S<YSÀãUã“]“–óUŸ–Ã]ÃÊóUŸÊ]ÝìSñŽS–¾SÊS ^Ê^Ýã1ŸãZVpV–¿VÊV%FPÊãPãý‘H€…U…²óUŸ™P±SàëUëS+óUŸ+=S=BóUŸÀÍUÍÑTÑ×óUŸÀÈTÈÖSÖ×pÈ ˜ U˜ Ç SÇ È óUŸÈ ò Sò  óUŸ 4 S¢ ² P P‚šP£¶P ¼U¼ÊóUŸÊÜUÜ: S: ; óUŸ; U SU ‰ óUŸÝðPU Y PY ‰ Sf z S ‰ SU=S=EóUŸEISIUóUŸU^S^jóUŸ.<PETPUiPP©U©¬r¬ÛóUŸÛUTcXc¡Q¡°Y°ÂRÂÈQÈÛRÛÿXƒ¥R¥ÂQÂÛTãÿP´ÛTƒÛYÛçx°ÛZ©ÛUPc0Ÿc·P·ÂpŸÂÛPÛÿ0Ÿ`ƒUƒ°S°´óUŸ´ S óUŸ1S19óUŸ9GSÂÙP%P9APôP%8Pƒ«\Ú \%4\48pEGPƒ«‘XÚ‘X#%b%9‘Xƒ«VÄ V2V9GV0_U_ßóUŸßäUä`óUŸ9qPquóU#HßäP<ÏSÕÝSß`S›¹PëüPüVP!VPU$V$%pÈ T #S#%pÌÐÙUÙüSüýP@ u Uu z óUŸz ™ U™ ž óUŸž ª Uª ¯ óUŸ¯ ½ U½  óUŸ@ L TL  óTŸ ™ U™ ž óUŸ ž óTŸ08U8QóUŸ4JSJMsŸMPSÀdAèdAUèdA_eA__eADgAWDgAMgA]MgARgA‘ð}ŸRgAÎgAWÀdAèdATèdAÎgAóTŸÀdAèdAQèdAOgA^OgARgAóQŸRgAÎgA^ãdAèdAUèdAZeASÓeAfAPfAfA\æfAgAPgA&gA\”eAÞeA2sŸÞeAáeA3sŸáeAèeA2sŸòeAífA2sŸífAðfA3sŸðfAûfA2sŸ™gAÎgA2sŸ”eAÙeAVÙeAòeA (öAŸòeAèfAVèfA&gA (öAŸ™gAÎgAVueA=gA4Ÿ„gAÎgA4ŸphA‡hAU‡hA·hAVéiAõiAUõiAjAV¨hAéiADŸjA³kADŸËhA¿iAGŸjA¯jAGŸÀjA³kAGŸàhA¿iAGŸEjA¯jAGŸÀjA³kAGŸ dA¨dAU¨dAµdASµdA½dAóUŸ dA¨dAU¨dA´dAScA²cAU²cA+dAóUŸ+dA9dAU9dA–dAóUŸcA¶cAT¶cAÉcASÉcA+dAóTŸ+dA5dAT5dA–dAóTŸcA¶cAQ¶cA*dAV*dA+dAóQŸ+dA9dAQ9dA–dAV¯cA¶cAT¶cAÂcAS@bAWbAUWbA`bAQ`bA‚cAóUŸ{bA±bA0Ÿ±bAÄbAtŸÄbAÖbATébAcAtŸ}aA…aAV—aA›aAU6@+6@U+6@66@Q66@A6@óUŸ`A`AU`A[`AV[`A^`AóUŸ^`Ar`AV`A`AT`AZ`ASZ`A]`A|~Ÿ]`A^`AóTŸ^`Ar`ASM`A^`APh`Aq`AP`A]`A\]`A^`AóT#Ÿ^`Ar`A\`A"`A0Ÿ"`A9`AQ`A`A\`_Aˆ_AUˆ_AÜ_AVÜ_Aß_AóUŸß_Aó_AUó_Aý_AV`_AŒ_ATŒ_AÞ_A|ŸÞ_Aß_AóTŸß_Aó_ATó_Aý_A|Ÿƒ_A“_AHŸ ^A1^AU1^A³^AS³^AÌ^AóUŸ€\A”\AU”\Aþ\ASþ\A]AóUŸ€\A”\AT”\Aÿ\AVÿ\A]AóTŸž\A]A][A¼[AU¼[AÀ[ASÀ[AÄ[AUÄ[AÅ[AóUŸÅ[AÕ[ASÕ[AÙ[AUÙ[AÚ[AóUŸÚ[Aò[AU¼[AÀ[ASÀ[AÄ[AUÄ[AÅ[AóUŸÑ[AÕ[ASÕ[AÙ[AUÙ[AÚ[AóUŸÅ[AÐ[As]A]AU]A]]A\]]A^]AóUŸ^]Ah]A\]A"]AT"]A[]AV[]A^]AóTŸ^]Ah]AV]A#]AHŸ6]A:]AU:]A;]A v $ &#ŸðZAøZAUøZAs[ASs[At[AóUŸt[AŠ[ASp]A‘]AU‘]A£]AV£]AÖ]AóUŸÖ]A^AV`5@›5@ (Îc›5@6@P›5@þ5@Xþ5@ 6@xŸ 6@6@X¿5@6@U1lARlA (ÎcRlAÒlAPÒlAßlAR mAYmAP^mAwmAPwmAmAQmA³mAP˜nA¿nAP(wA?wAPe{Ah{AP‚{A‹{Ar1$pB"”0$0&Ÿ‹{A{A r0$0&Ÿ|A|AP(}AH}APu®A®AP/lA\lA 0ÎcklA»lAS»lAÒlAsŸÒlAômAS˜nA¿nAS;oA}oASŒoA wASwA«wAS«wAÑwAXÑwA¶xASÂxAdyAS€yAü{AS|AM|ASe|A}AS(}A|~AS|~A¢~AX¢~AëASëA€AX€A|€AS|€A¢€AX¢€A AS A3AX3A\ASwAF…ASF…Av…AXv…AË…ASì…A$†AS$†AJ†AXJ†Aþ†AS ‡A›—AS›—AÁ—AXÁ—A®ASä®A§¯AS1lA\lA 0ÎcklAômA]˜nA¿nA];oA‡oA]ŒoA_yA]ryAÞ{A]å{AC}A]C}AH}AXH}A¶~A]½~A§¯A]3mAImARImAYmAYmA¢mAR¢mAômAY˜nA¿nAR;oAnoAYŒoA”uAY¦uAvAYwAwAYwA'wAY(wA?wARCwAxAY$xAõxAY€yA¼yAYíyAòyAY|A`|AY~A¢~AYÂ~AÝ~AYAzAY€A½„AYß„A½…AYì…A†AY­†A÷†AY ‡A¦AY¸A •AY[•A’•AY¤•AÛ•AYí•Aõ•AY–A˜AY˜Au®AYu®A®AR®AÆ®AYä®A§¯AYslAzlA t {B"zlA|lAs”ÿ {B"lA–lA tÀzB"‡wAÑwA0Ÿï€A3A0Ÿ^€A¢€A0ŸÍA€A0Ÿ^~A¢~A0Ÿ†AJ†A0Ÿ/…Av…A0Ÿ¾„AÆ„AP´„Aß„A Ÿ´„Aß„A9Ÿ´„Aß„A=ŸÄ”AÕ”A0ŸÕ”Aå”AR}—AÁ—A0Ÿë”Aõ”ApŸõ”A%•APåxAìxAPìxA€yA‘¤½yA|A‘¤e|A~A‘¤¢~AÂ~A‘¤Ý~AA‘¤e{Ah{AP‚{A‹{Ar1$pB"”0$0&Ÿ‹{A{A r0$0&Ÿ¼{AÛ{AP¼{A|Ap $§"$)ÿŸ¢~A³~Ap $§"$)ÿŸ³~AÂ~A'q ÿÿÿÿ1$ ZB"” ÿÿ $§"$)ÿŸe{A{A1Ÿ±{A|A1Ÿ¢~AÂ~A1ŸyAUyAZòyAzAZzA zAzq"#Ÿ zAzAzq"ŸC{AL{AZ)yAUyATòyAzATzA zAtq"#Ÿ zAzAtq"ŸC{AL{ATõyAùyApŸùyAzAPzAëzAVe|A}AVH}AÃ}AVó}A~AVÝ~AAVõyAzA0ŸzAzAQèzA${A^n}A}A2Ÿ}AÃ}A1ŸÃ}Aó}A^%zA@zAP@zAÐzA\e|A }A\H}Ab}A\ó}Aü}APÝ~AA\IzAPzA*ŸPzA‚zAPŽzA“zA*Ÿ“zA©zAP©zAÍzA ÿŸÝ~A A:ŸIzAPzA0ŸPzAnzA‘¨nzA‚zAQŽzA’zAQ’zA©zA‘¨©zA­zAQ­zAÍzA‘¨Ý~Aò~AqŸò~AAQÃ}AÆ}Aq1%v"ŸÏ}AÓ}ATÃ}AÓ}A|oA!oA ŸtZA®ZAS®ZA°ZA PÎcpZA°ZA8Ÿ|ZA„ZAV|ZAƒZAU°ZA¿ZA8Ÿ€`Aˆ`AUˆ`A`AS`A”`AU”`A•`AóUŸbAbAUbAbAóUŸ bA$bAU$bA%bAóUŸ bA$bAT$bA%bAóTŸ0bA4bAU4bA5bAóUŸÞ0Ÿ "Q"*p1$ÀC"”0$0&t"Ÿ*.!sØ~ $ &1$ÀC"”0$0&t"Ÿ..‘¸o¢² v”0$0&Ÿ²¼ s0$0&Ÿ v”0$0&ŸI[_Ýý‘¸o  ‘¸o ) Q) . P9 H ‘¸o½/Ô/‘¸o$060_60F0‘¸oÞ0Ÿ..‘ÔoÝý‘Ôoî ô Pô  ‘Ôo9 H ‘Ôo}/Ô/‘Ôo60F0‘Ôoœ‘ðoŸœÞVÞ·\<À\À_&‘Øo&à\çÝ\Ýý_ýN\N²‘ào… ˜ \˜ Æ ‘ðoŸÆ  \. h \}/60\60F0_œ‘ðoŸœ·Vä<^<¥V¥´~Ÿö÷V÷vŸcVk®V®»vŸ»ÞVçVVV²‘èoe … ^… ˜ V˜ Æ ‘ðoŸÆ  V . ^. h V}/F0V—‘€sŸ—Þ]ÞÙ‘ÈoÙ^&.^.k‘Èoçõ‘ÈoÝ‘ÈoÝý^ý… ‘Èo˜ Æ ‘€sŸÆ 60‘Èo60F0^F0A1‘Èo—‘€sŸ—Ö]äX]ûû]û}Ÿ7]7[S[k]çõ]_ ]e z Pz … ]˜ Æ ‘€sŸÆ ]  }Ÿ à]èG%]O%½/]Ô/Ù/]Þ/60S60A0]F0A1]ØÈŸØ<‘Ào<oRo‚P‚Šr1$ŸŠ“Q“SÝ‘ÀoÝýSý˜ ‘Ào˜ Æ ÈŸÆ 9 ‘Ào9 H RH 60‘Ào60;0S;0A1‘ÀoùB_B\Pens1$ C"” ÿÿŸJ¢s1$ C"” ÿÿŸ¼á_[_çïs1$ C"” ÿÿŸïõ‘¸o” $ &1$ C"” ÿÿŸ4s1$ C"” ÿÿŸ4Ý_Æ Ø PØ Þ ~"ŸÞ ä Pä  ‘¸o. 4 P4 9 pŸH h _}/½/‘¸oÞ/60_kâ]âçPõ]… ˜ ]Ï/Ô/2ŸpÞ0Ÿ>\^p•TçõT.TY–0Ÿ˜ Æ 0ŸÆ  ^. 1 ^}/½/^œ·b“·.‘Øo“ý#b“#í‘Øo“í… ‘Øo“ . ‘Øo“h | ‘Øo“| a“ ‘Øo“ ’ e“’ ž ‘Øo“ž £ d“£ 鑨o“éîP“î*‘Øo“*/P“/˜‘Øo“˜P“µ‘Øo“µºP“ºY‘Øo“Y^P“^v‘Øo“v{P“{Œ‘Øo“Œ‘a“‘‘Øo“¢f“¢}/‘Øo“F0A1‘Øo“p‡0Ÿ‡°S°Ó_Ó䑸o °B"”ÿŸäk0Ÿçõ0Ÿý0ŸýHSHY _Y e ‘¸o °B"”ÿŸe … 0Ÿ˜ h 0Ÿh }/_}/F00ŸF0A1_b¸]½/Ê/]Ê/Ô/ v|1&#ŸŠ\Ýý\6090\š¿P¿À_ÀÙ s1$# ø"ŸÙs1$# ø‘Ào3$# ø""ŸÝýs1$# ø‘Ào3$# ø""Ÿ60;0s1$# ø‘Ào3$# ø""Ÿ;0F0‘Ào1$# ø‘Ào3$# ø""ŸÀs1$#ŸÝýs1$#Ÿ60;0s1$#Ÿ;0F0 ‘Ào1$#ŸÙ ‘Ào3$#ŸÝý ‘Ào3$#Ÿ60F0 ‘Ào3$#ŸýÅ]ýVVV²‘èoýHSHÅ_$Y0ŸY…vŸØç}""}J$Y$}"U"ESEJs~ŸJ`STaVafóTŸ03 s”0$0&Ÿ3IQ-U-SóUŸ¾U¾ÃSÃÇUÇÈóUŸÈnS-T-óTŸ¾T¾nóTŸpžUž¨S¨¬T¬­óUŸp˜T˜­óTŸ°¼U¼ÚUÚèQè óU†ˆBóU0.(Ÿ°äTäøSø óTŸh@1h@3h@5h@>h@Ph@Rh@Th@mk@ok@tk@yk@ók@õk@÷k@ük@4l@6l@8l@=l@~l@€l@‚l@‡l@m@m@m@pm@ûm@n@5o@7o@9o@>o@q@q@Ðq@ßq@hr@~r@gs@vs@°s@Æs@ t@Mu@|@|@ |@|@_6@d6@h6@v6@„M@M@v6@{6@‚6@6@M@¶M@ë6@î6@ô6@9@œB@`E@3H@”H@®I@=J@ŒK@L@*M@„M@ÔM@öM@¦X@ºZ@ãZ@[@g[@ô^@r9@…9@M@*M@ž9@œB@jE@8G@ßL@M@4:@G:@øL@M@W:@\:@j:@x:@ßL@øL@ûH@YI@K@ŒK@L@´L@¶M@ÔM@öM@¦X@[@g[@`@@P6@ô^@bã—"°"Ó"ï"£¦­³óöýñ÷ûEá#ï#\˜Àz"—"°"»"È™œ£ % ï#"$+%`%? Ö ï"¸#ð$%`%&>&Õ&Ú 0"»"Ó"Ì#á#Á$Ò$ %+%&>&Õ&,'b2e2Ø2Ý2Ï×zˆDFfÐ š ¨·¼ÂHU˜«´ (-16R`¬°µ¸_ `l1< ¦¸ÀÐäÀÏÔÛó'6;B6EJQfuzŠ’¬H@ P ð M[ @ P ð ÏÒ×Üzˆ³À ( V @ ç Û§ ð Ï ì hÀ- 1 6 C ž ‘&–&™&œ&Ò-â-T0q02 22N2V2`2–2¶2½23"3%3¶2½23"3%3S3W3n3!6`6c6m6@?X?ÀìïôX°£iv‡Šª±·ºÀÝâåÀÄÈéâð° · ¿ !@!`!‚ž¨¶ptvÐ38<[Z b f z € ‰ ‡ Œ œ ¤ · œ ¤ · Ë Ø á «5@û5@6@6@¼[A¿[AÀ[AÈ[AÑ[AÔ[AÕ[Aà[A]A]A]A#]Až]A¡]A£]A§]A©]AÕ]A™^A²^A³^AÊ^Aƒ_A_A_A“_A…aAŒaA—aAœaA§aA²aA´aA bAplAÇlAÏlAÕlAvwA}wA‡wAŠwA”wAÇwAÂxAuyAÇyA|Am|A~A¢~AÂ~AÝ~AAyAUyAòyA{A{A${AC{AM{Am|A}AH}A~AÝ~AAzAÐzAÖzAâzAm|A}AH}Ab}Aó}Aý}AÝ~AAIzAÐzAÖzAÝzAÝ~AAÆ}AË}AÏ}AÔ}AM{A{A±{A|A¢~AÂ~Ae{A{A±{AÎ{AÕ{AÛ{Aç{Aî{AU~AX~A^~A˜~AÄAÇAÍA€AU€AX€A^€A˜€Aæ€Aé€Aï€A)A…A%…A/…A\…Af…Al…Aý…A†A†A@†A»”A>•AC•AV•Aí•AB–Aq—AÁ—Aë”Aú”A•A>•AC•AV•At—Aw—A}—A·—A@ZA§¯A`5@6@6@A6@0AEJU&à9 H 6090~ë6090 ´¸ÀÅÉÏÔ6090´¸ÀÅÉÏÔÙ8@T@t@˜@ø@`@@x@ è@ @ H+@ p+@ P5@`5@táA€áA(/CP7C°mc¸mcÀmcÈmcøocpcucÀuc !"ñÿ`5@½XÎc2HÎcB ÎcOÎc[0Îcf(ÎcoÎc| {B‚pB\‰ÀzBM‘`uB\™@DBР ZBЧ6@$¶@ZA­ÌPÎcà@Îcí8Îcø€\A„,ÎcÎcàÍc(#ÍcÈ.ÌÍcGÈÍcc Îcp |B<zÎc•`Bø ñÿ§`@¯®„xc¸€xcÁ¤xc͘xcÙœxcç xcòucþpxc Ðg@+h@Ð%0n@d.ˆxc;hxcF wcÈQ`vc,\Xvcktxcuxxc~xc†ñÿ‘Àmcž0_@ p_@³°_@ÉvcظmcÿÐ_@ °mc*ñÿ5 @=0€@EG€@)Q°‚@2Xð‚@–_HyciXycrÈxc}Pyc†àxce‘ñÿ–à´@²§ˆuc¯°Çc·ÀÇcÀ ¼@ÚϸÇcÖ cß  c'ꀾ@Dó|ucþ@uc8ÐB uc-€yc':xucFpycO€ucXlycañÿk0Ü@‹x(Ëc‚@ËcŽ Ëc˜8Ëc¤HËc°0Ëc»ÀÜ@ÁºÞ@KÅàÞ@pÑðËc¸ËcØ@Éc€è˜ucòPà@vÉc ucÐËc#äËc(èËc£ÈËc-ÀËc4ØËc>@ÊcFDÊcNÀÉc€^`ËcP°Ëch`ÊcÀøËct4Éc„0Éc—(Éc£Éc² Éc¾ÉcÍàËcÖÉcâÌcôÌc@ÈcÀ0Ècà,Bø%ñÿ.°!AV<"A©FÀ$A4Z¸ÌcbÀÌcj€Ìc2y@Ìc2…ñÿŒØÌc–ÐÌc ñÿ¨°¯Af· °A=Î`!C°Ö`°AYè€CÔï€-Cžû ½BV) CÔ  °B¬à±BXÀCÚàCÚ(@µBÔ/€æBV)7 *CX†ñÿ?iCMÀmcñÿY¸mcjÈmcs°mc†(/C™pc¯ÐË@(/ IAb½ÓðZAšçpáA÷ vc%9MAÇü04A*FÓ@WLp]A¯/Ðü@ñ¶Ì@¹Vðë@Zl o@7v`Öc~Š—¬¨Ýc´k §@~¦ TA!ËhÎcÝFûÀÎc° À`A *A›  TAŸ) •PÎ@"> R hÖc] r ÐØ@ç{ — Àuc: uc« @:´ È HvcÑ À9A"Ü ÷ pÓc @YAž  * 6 °«@G ¬ÝcO ÐNA¤a o PØcy %AI… tÎc3“ § À}@5µ @vc¿ Ê €2A"Û ï Ècö WA   &  uc¥°¬@³/ àw@Y; àµ@•B àDAYM Ðuc` ”uch |  ÀÙ@e– ¡ PÊ@¨­ €s@Í´ @/A;~¿ phACÊ lÖcÔ €Öc@ß xÓcè ó  €OA‚ Œuc$ Èc/ < E N W ¤uc^ `'ALh @bABp  Ècw Èc~   ²AÑ.˜ øÌc Э@K¬ µ É °€c@CØ  ü@®è ú ÀÖc |Óc  XA* ðÓ@às€Øc6 °KA.ñtáAC W f €Æ@ºn PRAÑ{ … àLA/ IA#¤ ÐÕ@Wª P¦@f±  aA½ €/AÇ Û  Úcâ Pø@ÅÍ@Ñ@K@®@Öë  bAõ þ 6/ÀUA@Àxc!(IA9A]AXR„Îc_°'A9g Ìcr†“P1A¥À¦@¬ÁÍ`?A3ÙÐAÅâìÈÖcGA±*YA"2E@A§J ˆ@iQ]PLAGlDvcwœuc€ìÌcî€ÓcŽ Î@-ŸÐ7Ar¯ v@:ª`yc¶Å×è0v@0ð)à`A4?bAGp­@XÑ °2AQV€Î@dà¦@:p ÓcÈ} ²@ÝŒ0bA“ð`A hÔc¨`v@4·”ÎcŘÕcÐPu@xZÖ pTA!qо@ épÔcù ,AÇÀ@AÅýË@Ä dA»¯@N /A`_A(°SAc0€ÔcÈ@XØcJ@g@ŒYkŠ|Îcª½ 9A.ÌÀÍ@VÖ8vcßðAäæÈÌcôÐl@ZP8AR'àMAé8ucET`4AcÐÖcl€°0A™ŠÈc“ 5AŽ¡ðÌc§»Èàq@æ€`Aõ4A 0vcaAHÕc* A›5J`ArXk€AÜx ‡” `A¡PÕc©Ð.AH²Æ`ñ@¦Ôr@f݈áAê0a@KPvcÐ`A)<àucA°8AiK Õc€S€áAb ^A¬ëpÂ@ v°Ýc}@Úc ‹`Ýc™«(vc¶€Îc¾ÈÜØÖcçûô@6 LA<cA ‹@Û[€4A&xÎc8@Ç@?àKA.K`ÎcZ[AbkXÕcw‚áAg’«»ðuc´@@ÏpÎcâö  `Õc(@UAv7àÖc@Ðà@ OÐgA—Yt /A:ƒ Öc@¤`É@ž­ Îc¾ào@0Éà°@nÙ€A.äÐ^AôÀÝc÷P%AhÝc LA-pÝc"€í@>_@*.AVk@whÕc°.A ˆPA:àÇc–*A¡ ¤·øÇcÂè ÈcÏxÝcÕÊ@GàpÕcÉP´@ˆìø¨Îc`A¬$.Gðà@C B¤ucNXc@EA%}tÕcP6@¤(‡Ðx@ãŒÎcž€¬@.­´Ýc´ÀkAçCºÐÙ ¼@yåðÁ@sP’@üïöýp@)øuc#`A6KІ@qTkPKARwƒ@6}xÕc‹’˜ÎcjpEA0›r@£,Aœ¨¸ÂÀdAÐP±@J{à/AÏ×cPÔ\A}ä »@ò.0.A*7@p@ŸCй@ÇKÀA¸U‰@i|… ª@ ˜hyc¢³dÎcÀ @AÏã ÷äÌcØ ð9Ab°7A  ®@% í@¹$0Ö@= Ы@¯-ð)A:€9A5š06ArDK°`@~Q°HAKdWm€Õcuˆ‹@˜Îc«°ë@5¹~@Ê@x@ܸÝc°ÈcÊ€¶@Jã0A¥î€³@šp1AèÌc(à A~/`.AC8Pˆ@A9À°A^H€Ýc(Vh@LA ƒ°`AŒ¡PTA¯Á(ÈcÏã¨ucï`Øcø  Î@ŸðÇc#0SAx*Œ@7hØc\0‰@Ê?HÈcR— ÀIA2Xj µ@4w¼@‚À»@5Œ°+AO‘lÎcž´ ¯@nÄ0aAÐÙçñ÷aA@ë@iˆÎcŒ H+@*V;PHAZDàYAQ`rèÇc~’ FAç«@aAЋ¹ÃâDAFïÄP9A+Ðc@iÐu@\ˆÕc"vc6àÌc@ZA:IÕc[JAFflex.cyy_get_previous_stateyy_buffer_stack_topyy_buffer_stackyy_state_bufyy_more_lenyy_c_buf_pyy_startyy_state_ptryy_ecyy_defyy_metayy_baseyy_chkyy_nxtyy_fatal_erroryyensure_buffer_stackyy_buffer_stack_maxyy_hold_charyy_n_charsyy_init_bufferyy_inityy_lpinclude_stackfull.13589end_of_all_imports.13552ignore_nested_imports.13553yy_more_flagyy_acceptyy_looking_for_trail_beginyy_acclistmain.cend_itendreasonexitcodedebug_counterror_countwarning_countnote_countfirst.13195lastline.13194my_malloc.part.1mybindseekbackcommandcountlast.13226buff.13248buff.13252previous.13283docucountdocuheadto_bindcrtstuff.c__JCR_LIST__deregister_tm_clones__do_global_dtors_auxcompleted.6939__do_global_dtors_aux_fini_array_entryframe_dummy__frame_dummy_init_array_entryfunction.cdo_globdec2otherother2decmyrandfromtobuffcountbuffrootctrl.13077buffcurrbuff.13008io.conestring.part.4currstrcoutstrpromptedonechar.part.0cinstrcurrcharlinebufferbackcharlast.12751valid_modes.12857smodes.12858oldstream.12938buffer.12974first.13044r1.13278pr.13280r2.13279graphic.crgb_to_pixelgbits_maxgbits_shiftbbits_maxbbits_shiftrbits_shiftrbits_maxitransformchange_fontmyfontxgcvalues.12959firsttextreadrgb.part.1bitpt.13226first.12905backpixelwinywinxwindowforepixelh.12929w.12928xgcvalues.12927sizehintsevent.12907lastvalid.12993initialvalid.12996lastx.12991initialx.12994lasty.12992initialy.12995bitcountpbits.13219deleteprinterfileprinterfilenameevent.13243sym.13244CSWTCH.329symbol.ccreate_symbolstackdesclink_symbols.part.0symheadsymrootexpected.12829found.12830flow.clabelrootlabelheadbison.cyy_stack_printyy_symbol_print.isra.1yytnameyydestruct.isra.3yypactyytranslateyycheckyydefactyyr2yyr1yypgotoyydefgotoyystosyytableyyrline__FRAME_END____JCR_END____init_array_end_DYNAMIC__init_array_start__GNU_EH_FRAME_HDR_GLOBAL_OFFSET_TABLE_create_myreadassume_default_colorsyy_switch_to_buffer__libc_csu_fini__ctype_toupper_loc@@GLIBC_2.3main_file_namegetenv@@GLIBC_2.2.5search_labelyc2ocyyrestartdotfree@@GLIBC_2.2.5my_mallocbackbitXGetDefaultset_escdelayputchar@@GLIBC_2.2.5yynerrslocaltime@@GLIBC_2.2.5missing_loop_line__errno_location@@GLIBC_2.2.5explanationyyget_outdump_symload_pop_multistrncpy@@GLIBC_2.2.5remove@@GLIBC_2.2.5fontheightstrncmp@@GLIBC_2.2.5yc2short_ITM_deregisterTMCloneTablestdout@@GLIBC_2.2.5myformatstrcpy@@GLIBC_2.2.5prognamecreate_dim__isoc99_fscanf@@GLIBC_2.7execution_endforcheckXGetGCValuesXDrawRectangleXUnloadFontcreate_exceptionyydebugfunction_or_arrayXLookupStringstackrootpushsymlistmissing_untilferror@@GLIBC_2.2.5put_and_counthold_docuXStoreNamecreate_arraylinkisatty@@GLIBC_2.2.5mousexmycontinuehas_colorswaddchfread@@GLIBC_2.2.5mylinenocreate_documymovecount_argsstdin@@GLIBC_2.2.5backpidstrtod@@GLIBC_2.2.5exp@@GLIBC_2.2.5getcharsinit_colorpush_streamdotifystorelabelimport_libwinheightvisualinfois_boundXDrawPointgetpid@@GLIBC_2.2.5check_leave_switchlprstreamforegroundXFillPolygonwaddnstrXPendingXDrawArc_edataclearrefsyyerrormousebmouseyatan@@GLIBC_2.2.5yyparseyyincreate_strdatawattrsetfclose@@GLIBC_2.2.5XParseGeometrycheck_alignmentXCheckWindowEventdisplayinfolevelstpcpy@@GLIBC_2.2.5next_caseclearscreencreate_gosubstrlen@@GLIBC_2.2.5XFillRectanglemyclosecreate_labelinit_pairlink_labelcreate_count_paramsoc2ycmywaityyget_debugmatchgotosystem@@GLIBC_2.2.5yytexttriangleyyreallocwrefreshstrchr@@GLIBC_2.2.5XFreelastdatakeypadcreate_makelocalinitscryy_create_buffermissing_nextget_symlabelcountpclose@@GLIBC_2.2.5XLookupColorcreate_makestaticmybellstrrchr@@GLIBC_2.2.5XFreePixmapquery_arrayclearwinintrflushgettimeofday@@GLIBC_2.2.5winoriginreorder_stack_before_callfindnopfputs@@GLIBC_2.2.5rectconcatstart_colorpush_switch_idprint_docuyylinenoyy_flex_debugcreate_onestringpushstrptrlineprinterXLoadQueryFontXSetWMNormalHintspow@@GLIBC_2.2.5compilelog@@GLIBC_2.2.5strncat@@GLIBC_2.2.5fgetc@@GLIBC_2.2.5yyget_textwsetscrregyyalloccreate_dbldatacreate_colourcreate_pokelibrary_pathswitch_compareyyfreeyyset_linenocmdrootcreate_executemissing_endiflast_inkeystripfputc@@GLIBC_2.2.5compilation_endpoptesteofopen_stringpopgotoyy_scan_bufferskipperlibrary_defaultstackheadsignal_handleracos@@GLIBC_2.2.5__libc_start_main@@GLIBC_2.2.5srand@@GLIBC_2.2.5missing_wendfgets@@GLIBC_2.2.5create_pushstrchkpromptexplicitputbitmax_switch_iddump_commandscalloc@@GLIBC_2.2.5winchpushstrsymcreate_subr_link__data_startXDestroyWindowcreate_requirewinwidthstrcmp@@GLIBC_2.2.5popdblsymmousemodcreate_dblbinyyoutsignal@@GLIBC_2.2.5XOpenDisplayadd_command_with_switch_stateyy_scan_stringcreate_pusharrayrefcheck_compatyyset_inerrorlevelmoveoriginfprintf@@GLIBC_2.2.5yy_scan_bytesftell@@GLIBC_2.2.5closeprinter__gmon_start__XTextExtentsyyget_linenoyabargvpushgotostrtol@@GLIBC_2.2.5change_colournew_file__dso_handleclearerr@@GLIBC_2.2.5error_with_linebound_programyyget_lengmemcpy@@GLIBC_2.14COLSpopstrsymstreams_IO_stdin_usedyypush_buffer_stateyycharlibfile_chaininclude_depthkill@@GLIBC_2.2.5inter_pathmissing_next_linefileno@@GLIBC_2.2.5text_alignselect@@GLIBC_2.2.5circlepop_switch_idopen_mainrecall_buffmissing_wend_linemyseekcreate_callswitch_nestingyy_delete_buffererrorstringXNextEvent__libc_csu_init__rawmemchr@@GLIBC_2.2.5reset_prog_modestdscrcreate_boolemissing_until_linemalloc@@GLIBC_2.2.5fflush@@GLIBC_2.2.5_IO_getc@@GLIBC_2.2.5currentcreate_mybreakcolormapcreate_openwinleave_lib__isoc99_sscanf@@GLIBC_2.7create_pushdblstream_modesungetc@@GLIBC_2.2.5mystreamcurrent_functionmy_strndupcreate_strrelopgettermkeyyypop_buffer_statepopsymlistyylengadd_switch_statecurrlibcreate_lineatan2@@GLIBC_2.2.5mkstemp@@GLIBC_2.2.5strpbrk@@GLIBC_2.2.5my_strerrorcmdheadpoplabeljumpfontnameXCreateWindowfseek@@GLIBC_2.2.5backgroundXSelectInputinlibpop_streaminteractiveXDrawStringfunction_typerealloc@@GLIBC_2.2.5closewinnotimeoutfdopen@@GLIBC_2.2.5__bss_startXCreateGCXDrawLinescreate_check_return_valueerrorcodeisboundmissing_endsubcreate_restoretileolyylexstrftime@@GLIBC_2.2.5scrollokcheckstreambadstreamendwinwgetchmy_strdupXSetForegroundLINESwclearcreate_openprinterwaitpid@@GLIBC_2.2.5tokenalttcsetpgrp@@GLIBC_2.2.5create_gototokenprogram_stateXFlushexportedmy_freepushXCreateColormapXChangeGCopen_libraryykeyyy_flush_buffercreate_myopenpopen@@GLIBC_2.2.5XGetWindowAttributesXGetKeyboardMappingpushnameadd_commandreplacegetwinkeycreate_changestringfopen@@GLIBC_2.2.5nocbreakXPutImagepokefilecurinizedXMatchVisualInfoloop_nestingcreate_doarraystrtok@@GLIBC_2.2.5_Jv_RegisterClassesfi_pendingnegateXMapWindowcreate_readdataputcharslink_symbolsduplicatenoechoequalcreate_endfunctionwgetnstrlastcmdfloor@@GLIBC_2.2.5create_functionmissing_endif_lineputindrawmodefind_interpretercreate_docu_arrayyylvalpushdblsymstrcat@@GLIBC_2.2.5logical_shortcutlibfile_chain_lengthgetbitpushlabelreport_missinglibfile_stackasin@@GLIBC_2.2.5initialize_switch_id_stackyyget_insprintf@@GLIBC_2.2.5resetskiponceexit@@GLIBC_2.2.5print_to_filefwrite@@GLIBC_2.2.5__TMC_END__firstref_ITM_registerTMCloneTablename2ycgeometrydecidegetmousexybmlastrefXFillArcwinopenedwmovesqrt@@GLIBC_2.2.5create_printcreate_ppscheckopenswapmissing_loopstrerror@@GLIBC_2.2.5create_dblrelopyyset_debugcurs_setXCreatePixmapXGetImagewscrlyyset_outcalc_psscaleleaveokmissing_endsub_linereset_shell_modemyreturnforincrementXSetBackgroundfork@@GLIBC_2.2.5displaynamestrstr@@GLIBC_2.2.5reorder_stack_after_callyylex_destroyXDrawLine__ctype_tolower_loc@@GLIBC_2.3create_array__ctype_b_loc@@GLIBC_2.3std_diagdo_erroryabargcstderr@@GLIBC_2.2.5flex_linestartforcompilation_startdump_sub.symtab.strtab.shstrtab.interp.note.ABI-tag.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.got.text.fini.rodata.eh_frame_hdr.eh_frame.init_array.fini_array.jcr.dynamic.got.plt.data.bss.comment.debug_aranges.debug_info.debug_abbrev.debug_line.debug_str.debug_loc.debug_ranges8@8#T@T 1t@t$Döÿÿo˜@˜`N ø@øhV`@`µ^ÿÿÿo@^kþÿÿox@xpzè@訄B@¸ŽH+@H+‰p+@p+à ”P5@P5`5@`5¬£táAtá ©€áA€á¨M ±(/C(/$¿P7CP7¼1ɰmc°mÕ¸mc¸máÀmcÀmæÈmcÈm0˜øocøoïpcpøucu¤ þÀuc¤uh 0¤u[ ÿu°¯w¼'k4'5Ÿ/2aA0ÑXDL)ÕžW;s üîe`Œ8C%Î ˜Ïd import library5 import __IGNORE_NESTED_IMPORTS import library6 sub foo$() return "foo" end sub import __END_OF_CURRENT_IMPORT import library6 import __IGNORE_NESTED_IMPORTS sub bar$() return "bar" end sub import __END_OF_CURRENT_IMPORT import library7 import __IGNORE_NESTED_IMPORTS sub qux$() return "qux" end sub export sub thud$() return "thud" end sub import __END_OF_CURRENT_IMPORT import __END_OF_ALL_IMPORTS import main import library5 import library7 print library5.foo$() print library6.bar$() print library7.qux$() print thud$() if (peek("isbound")) then exit 0 else bind "nested_bind_import" system("chmod 755 nested_bind_import") exit system("./nested_bind_import")/256 endif end rem 00000739 rem nested_bind_import.yab rem 00000022 rem 04 rem __YaBaSiC_MaGiC_CoOkIe__ yabasic-2.78.5/tests/grammar.yab.trs0000664000175100017510000000012213260635163014251 00000000000000:test-result: PASS :global-test-result: PASS :recheck: no :copy-in-global-log: no yabasic-2.78.5/tests/io.yab0000775000175100017510000000067613257074207012446 00000000000000#!./yabasic a=open(peek$("program_file_name"),"r") while(!eof(a)) line input #a a$ l=l+1 wend close a if (l<5) exit 1 if (!open(1,peek$("program_file_name"))) exit 1 while(!eof(1)) input #1 a$ wend close 1 rem bug from 2.700 a$ = dummy$(add$) print a$; rem bug from 2.714 (must be last test) if (!open(1,"nonexistent.yab")) exit 0 exit 1 end sub dummy$(add$) f = open ("out.dat", "w") print #f "tmp" close #f return "" end sub yabasic-2.78.5/tests/switch_goto.yab0000664000175100017510000000015413037204545014350 00000000000000 for i=1 to 2 switch i case 1: goto out end switch label out next i poke "__assert_stack_size",0 yabasic-2.78.5/tests/break.yab.log0000664000175100017510000000004613260635163013665 00000000000000PASS tests/break.yab (exit status: 0) yabasic-2.78.5/tests/library1.yab0000664000175100017510000000001413253541430013534 00000000000000// Library 1yabasic-2.78.5/tests/library6.yab0000664000175100017510000000004213260456162013547 00000000000000sub bar$() return "bar" end sub yabasic-2.78.5/tests/simple.yab.log0000664000175100017510000000007513260635163014074 00000000000000Yabasic, version 2.78 PASS tests/simple.yab (exit status: 0) yabasic-2.78.5/tests/library4.yab0000664000175100017510000000001413253541430013537 00000000000000// Library 4yabasic-2.78.5/tests/library2.yab0000664000175100017510000000001413253541430013535 00000000000000// Library 2yabasic-2.78.5/tests/break.yab.trs0000664000175100017510000000012213260635163013707 00000000000000:test-result: PASS :global-test-result: PASS :recheck: no :copy-in-global-log: no yabasic-2.78.5/tests/switch_continue_break.yab0000664000175100017510000000034613037574644016405 00000000000000for r=1 to 2 i=0 do i=i+1 switch i case 0: case 1: case 2:continue case 3: break 2 end switch poke "__assert_stack_size",0 loop poke "__assert_stack_size",0 if (i <> 3) exit 1 next r exit 0 yabasic-2.78.5/tests/library3.yab0000664000175100017510000000001413253541430013536 00000000000000// Library 3yabasic-2.78.5/tests/grammar.yab0000775000175100017510000000075413257075301013456 00000000000000#!./yabasic # This demo just tests, if the grammar is still okay; # it need not run, only compile. So we exit right away :-) exit 0 # test for bug in version 2.680 if (!eof(1)) exit if (!eof(#1)) exit print #foo bar # test for expression bug from 2.681 if (1<2 and 7) exit # bug in 2.690 print a/(b*c) # variuous forms of i/o close #1:close #a+1:close 1:close a open #1,"a":open #a,"a":open #(a+1),"a" print #1 "a":print #a "a":print #(a+1) "a" input #1 a:input #a a:input #(a+1) a yabasic-2.78.5/tests/bugs.yab.log0000664000175100017510000000004513260635163013540 00000000000000PASS tests/bugs.yab (exit status: 0) yabasic-2.78.5/tests/nested_bind_import.yab0000664000175100017510000000043613260632307015671 00000000000000import library5 import library7 print library5.foo$() print library6.bar$() print library7.qux$() print thud$() if (peek("isbound")) then exit 0 else bind "nested_bind_import" system("chmod 755 nested_bind_import") exit system("./nested_bind_import")/256 endif yabasic-2.78.5/tests/switch_simple.yab0000664000175100017510000000016513037221152014664 00000000000000 switch 1 case 1:x=1:poke "__assert_stack_size",1:break end switch poke "__assert_stack_size",0 if (x<>1) exit 1 yabasic-2.78.5/tests/switch_gosub.yab0000664000175100017510000000054413040043722014512 00000000000000 for i=1 to 2 switch i case 1: case 2: for j=1 to 2 gosub sw continue label sw switch j case 1: case 2 poke "__assert_stack_size",3 tested=tested+1 return end switch next j end switch next i poke "__assert_stack_size",0 if (!tested=4) error "Stacksize not tested enough: "+str$(tested) yabasic-2.78.5/tests/bugs.yab0000775000175100017510000000017613025160552012762 00000000000000#!./yabasic for a=1 to 10 if (a=1) continue if (a=2) continue next a if (2<0+1) exit 1 exit 0 print token$(undefined$,"x") yabasic-2.78.5/tests/long_variable_name.yab.trs0000664000175100017510000000012213260635163016427 00000000000000:test-result: PASS :global-test-result: PASS :recheck: no :copy-in-global-log: no yabasic-2.78.5/tests/bind_import0000755000175100017510000217626413260635161013576 00000000000000ELF>_@@hð@8 @&#@@@@@øø88@8@@@ i i °m°mc°mcôp ÈmÈmcÈmc00TT@T@DDPåtd(/(/C(/C$$QåtdRåtd°m°mc°mcPP/lib64/ld-linux-x86-64.so.2GNU GNUožŽ¡{ÐÀÅ€7)*ÕWÃF®¢ÀB@€ˆ„¢¥­(ŒBEÕì»ã’|fUa'ƒ|Ø+ŒØqX £‡ ¨d—|¸ñ9ò‹î!cëÓïú ŸmŠ"ì!1ƒŠV *NÛ¾Í__tíWÑØ˜6Þö»gNò¥´kX°f¡­iöþ¸õ—Ãû^=×^Ÿixªœ´ôŽHMJúzA=|ýv( Âæ8dÂ˼˜/1å|#4¦f‡Ð­ª2!Ÿü—ŒÇñbAÝ€är:-ìµÈPÜèß7 P/«¡’ƒ B=ÊK ¿‡®D[ HrËtI‹K– ‘AÀucr¤uc…ÀÝc§Ðucßàucäðucy¤ucëøucPˆ@Ak H+@¦vc`€c@CetáAlibSM.so.6_ITM_deregisterTMCloneTable__gmon_start___Jv_RegisterClasses_ITM_registerTMCloneTable_fini_initlibICE.so.6libm.so.6atan2acosfloorexplogasinatanpowsqrtlibX11.so.6XFillArcXGetWindowAttributesXSetForegroundXChangeGCXDrawPointXMatchVisualInfoXDrawArcXGetKeyboardMappingXNextEventXFlushXDestroyWindowXMapWindowXCreatePixmapXLoadQueryFontXSetWMNormalHintsXGetDefaultXDrawLineXGetImageXCreateWindowXFreeXDrawRectangleXLookupStringXGetGCValuesXPutImageXPendingXLookupColorXSelectInputXUnloadFontXDrawStringXCreateColormapXFreePixmapXSetBackgroundXParseGeometryXFillPolygonXStoreNameXOpenDisplayXDrawLinesXCreateGCXFillRectangleXCheckWindowEventXTextExtentslibncurses.so.6COLSstdscrLINESscrollokassume_default_colorswsetscrregwaddchset_escdelaynoechoinit_colorwgetchwscrlwaddnstrhas_colorsendwinwrefreshleaveokwinchwclearwmoveinit_pairinitscrstart_colorwgetnstrwattrsetlibtinfo.so.6reset_shell_modenocbreakreset_prog_modekeypadnotimeoutcurs_setintrflushlibc.so.6fflushstrcpy__rawmemchrexitsprintfsrandfopenstrncmpstrrchr__isoc99_sscanfftellsignalstrncpyforkputcharselectreallocstdinstrpbrkpopengetpidkillstrftimemkstempstrtodstrtokstrtolisattyfgetcfgetscallocstrlenungetcglobstrstr__errno_locationfseekclearerrstdoutfputc__isoc99_fscanffputsmemcpyfclosetcsetpgrpmallocstrcatremove__ctype_b_locgetenvstderrsystemstrncatfilenopclosefwritefreadgettimeofdaywaitpidlocaltimestrchrfprintffdopen__ctype_toupper_loc__ctype_tolower_loc_IO_getcstrcmpstrerror__libc_start_mainferrorstpcpyfree_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.7GLIBC_2.3} ui Š”‘––ii ¡ui Šii «øocSÀuc¢Ðuc¥àuc¦ðuc§øuc©vc¬pc pc(pc0pc8pc@pcHpcPpcXpc `pc hpc ppc xpc €pcˆpcpc˜pc pc¨pc°pc¸pcÀpcÈpcÐpcØpcàpcèpcðpcøpcqcqc qc!qc" qc#(qc$0qc%8qc&@qc'Hqc(Pqc)Xqc*`qc+hqc,pqc-xqc.€qc/ˆqc0qc1˜qc2 qc3¨qc4°qc5¸qc6Àqc7Èqc8Ðqc9Øqc:àqc;èqc<ðqc=øqc>rc?rc@rcArcB rcC(rcD0rcE8rcF@rcGHrcHPrcIXrcJ`rcKhrcLprcMxrcN€rcOˆrcPrcQ˜rcR rcT¨rcU°rcV¸rcWÀrcXÈrcYÐrcZØrc[àrc\èrc]ðrc^ørc_sc`scascbscc scd(sce0scf8scg@schHsciPscjXsck`sclhscmpscnxsco€scpˆscqscr˜scs sct¨scu°scv¸scwÀscxÈscyÐsczØsc{àsc|èsc}ðsc~øsctc€tctc‚tcƒ tc…(tc†0tc‡8tcˆ@tc‰HtcŠPtc‹XtcŒ`tchtcŽptcxtc‘€tc’ˆtc“tc”˜tc• tc–¨tc—°tc˜¸tc™ÀtcšÈtc›ÐtcœØtcàtcžètcŸðtc øtc¡HƒìH‹¥D#H…Àtèó HƒÄÃÿ5’D#ÿ%”D#@ÿ%’D#héàÿÿÿÿ%ŠD#héÐÿÿÿÿ%‚D#héÀÿÿÿÿ%zD#hé°ÿÿÿÿ%rD#hé ÿÿÿÿ%jD#héÿÿÿÿ%bD#hé€ÿÿÿÿ%ZD#hépÿÿÿÿ%RD#hé`ÿÿÿÿ%JD#h éPÿÿÿÿ%BD#h é@ÿÿÿÿ%:D#h é0ÿÿÿÿ%2D#h é ÿÿÿÿ%*D#h éÿÿÿÿ%"D#héÿÿÿÿ%D#héðþÿÿÿ%D#héàþÿÿÿ% D#héÐþÿÿÿ%D#héÀþÿÿÿ%úC#hé°þÿÿÿ%òC#hé þÿÿÿ%êC#héþÿÿÿ%âC#hé€þÿÿÿ%ÚC#hépþÿÿÿ%ÒC#hé`þÿÿÿ%ÊC#héPþÿÿÿ%ÂC#hé@þÿÿÿ%ºC#hé0þÿÿÿ%²C#hé þÿÿÿ%ªC#héþÿÿÿ%¢C#héþÿÿÿ%šC#héðýÿÿÿ%’C#h éàýÿÿÿ%ŠC#h!éÐýÿÿÿ%‚C#h"éÀýÿÿÿ%zC#h#é°ýÿÿÿ%rC#h$é ýÿÿÿ%jC#h%éýÿÿÿ%bC#h&é€ýÿÿÿ%ZC#h'épýÿÿÿ%RC#h(é`ýÿÿÿ%JC#h)éPýÿÿÿ%BC#h*é@ýÿÿÿ%:C#h+é0ýÿÿÿ%2C#h,é ýÿÿÿ%*C#h-éýÿÿÿ%"C#h.éýÿÿÿ%C#h/éðüÿÿÿ%C#h0éàüÿÿÿ% C#h1éÐüÿÿÿ%C#h2éÀüÿÿÿ%úB#h3é°üÿÿÿ%òB#h4é üÿÿÿ%êB#h5éüÿÿÿ%âB#h6é€üÿÿÿ%ÚB#h7épüÿÿÿ%ÒB#h8é`üÿÿÿ%ÊB#h9éPüÿÿÿ%ÂB#h:é@üÿÿÿ%ºB#h;é0üÿÿÿ%²B#h<é üÿÿÿ%ªB#h=éüÿÿÿ%¢B#h>éüÿÿÿ%šB#h?éðûÿÿÿ%’B#h@éàûÿÿÿ%ŠB#hAéÐûÿÿÿ%‚B#hBéÀûÿÿÿ%zB#hCé°ûÿÿÿ%rB#hDé ûÿÿÿ%jB#hEéûÿÿÿ%bB#hFé€ûÿÿÿ%ZB#hGépûÿÿÿ%RB#hHé`ûÿÿÿ%JB#hIéPûÿÿÿ%BB#hJé@ûÿÿÿ%:B#hKé0ûÿÿÿ%2B#hLé ûÿÿÿ%*B#hMéûÿÿÿ%"B#hNéûÿÿÿ%B#hOéðúÿÿÿ%B#hPéàúÿÿÿ% B#hQéÐúÿÿÿ%B#hRéÀúÿÿÿ%úA#hSé°úÿÿÿ%òA#hTé úÿÿÿ%êA#hUéúÿÿÿ%âA#hVé€úÿÿÿ%ÚA#hWépúÿÿÿ%ÒA#hXé`úÿÿÿ%ÊA#hYéPúÿÿÿ%ÂA#hZé@úÿÿÿ%ºA#h[é0úÿÿÿ%²A#h\é úÿÿÿ%ªA#h]éúÿÿÿ%¢A#h^éúÿÿÿ%šA#h_éðùÿÿÿ%’A#h`éàùÿÿÿ%ŠA#haéÐùÿÿÿ%‚A#hbéÀùÿÿÿ%zA#hcé°ùÿÿÿ%rA#hdé ùÿÿÿ%jA#heéùÿÿÿ%bA#hfé€ùÿÿÿ%ZA#hgépùÿÿÿ%RA#hhé`ùÿÿÿ%JA#hiéPùÿÿÿ%BA#hjé@ùÿÿÿ%:A#hké0ùÿÿÿ%2A#hlé ùÿÿÿ%*A#hméùÿÿÿ%"A#hnéùÿÿÿ%A#hoéðøÿÿÿ%A#hpéàøÿÿÿ% A#hqéÐøÿÿÿ%A#hréÀøÿÿÿ%ú@#hsé°øÿÿÿ%ò@#hté øÿÿÿ%ê@#huéøÿÿÿ%â@#hv逸ÿÿÿ%Ú@#hwépøÿÿÿ%Ò@#hxé`øÿÿÿ%Ê@#hyéPøÿÿÿ%Â@#hzé@øÿÿÿ%º@#h{é0øÿÿÿ%²@#h|é øÿÿÿ%ª@#h}éøÿÿÿ%¢@#h~éøÿÿÿ%š@#héð÷ÿÿÿ%’@#h€éà÷ÿÿÿ%Š@#héÐ÷ÿÿÿ%‚@#h‚éÀ÷ÿÿÿ%z@#hƒé°÷ÿÿÿ%r@#h„é ÷ÿÿÿ%j@#h…é÷ÿÿÿ%b@#h†é€÷ÿÿÿ%Z@#h‡ép÷ÿÿÿ%R@#hˆé`÷ÿÿÿ%J@#h‰éP÷ÿÿÿ%B@#hŠé@÷ÿÿÿ%:@#h‹é0÷ÿÿÿ%2@#hŒé ÷ÿÿÿ%*@#hé÷ÿÿÿ%"@#hŽé÷ÿÿÿ%@#héðöÿÿÿ%@#héàöÿÿÿ% @#h‘éÐöÿÿÿ%@#h’éÀöÿÿÿ%ú?#h“é°öÿÿÿ%ò?#h”é öÿÿÿ%ê?#h•éöÿÿÿ%â?#h–é€öÿÿÿ%Ú?#h—épöÿÿÿ%Ò?#h˜é`öÿÿÿ%Ê?#h™éPöÿÿÿ%Â?#hšé@öÿÿÿ%º?#h›é0öÿÿÿ%²?#hœé öÿÿÿ%¢:#fH‹ñ˜#H‹Ú˜#H‹ «˜#LcŒ˜#L¤#L‹¦˜#H‹ÐHQ‹@0˜#H‰v˜#‰1ÉM9ÐsfA¶@·„Ét @й {BëC¿„ pB=œ~@оÀzBLcÈ@¶÷C·Œ `uBñLcÙG¿œ@DBD9ØuƉÉIÿÀHƒÂ·„ ZB±‰Büë•„ÉtH‰ü—#ÃHƒìH‰úH‹=Õ?#¾ÌóA1Àè9úÿÿ¿èÏýÿÿf.„DAWAVI‰÷AUATUS‰ý¿'Hƒì8èÓúÿÿH…À„¿'H‰þœ#è¹úÿÿH…À„ H‰Áž#ÆH¸/usr/libÆõœ#H‰Î#ÆÏ#I‹?Ç®ž#Ǩž#Ç¢œ#è!GH‰B?#èåAƒý‰„œ#Ž´I‹»A¼è÷ÿÿDtB<õè€8I‰ÅI‹I‰EI‹èÝ8¾&öAH‰Çè@üÿÿH…ÀtI‰DÝø1ÿ¾&öAè*üÿÿA‰ÜHƒÃH…ÀuãƒýŽ1 IcÄILŸ„I‹ÇH‰TÁðHƒÀ9ÅïB<õE1ÿEd,þèú7ƒ=Ë›#H‰œ#ÇÊ#A•ÇAD$ÿHÇD$½‰D$ëDÇF>#ƒÅD9å¹HcÅE…ÿL4ÅI‹\Å…Ñ ºH‰Þ¿)öAè(…À…>#ºþÿÿÿH‰Þ¿2öAèu(…À…c ºH‰Þ¿8öAè[(…ÀA‰Ç…F ºH‰Þ¿OöAè>(…À…fÿÿÿ¶<-ˆD$…‡ €{-…} €{…s ƒÅA¿D9åŒGÿÿÿ‹Ú#DZœ#…Ò…!Hƒ|$„H‹5^=#H‹?=#H…ötHÇ/=# öAº öAH‹|$è*€=™š#„L¸ Óc‹HƒÀ‘ÿþþþ÷Ñ!Ê €€tè‰ÑÁé÷€€DÑHHHDÁ‰ÑÑH£ÓcƒèH˜¶ Óc€ú/„5€ú\„,¿Õcèn÷ÿÿ¿'èÄ÷ÿÿH…À„Œ¾€îA¿ÆH‰ÿ›#èâ)è-ûÿÿ¾@g@¿èžöÿÿ¾@g@¿ èöÿÿ¾@g@¿è€öÿÿ¾@g@¿èqöÿÿ¾@g@¿èböÿÿ¾@g@¿èSöÿÿÇA›#Ç“>#Ç…>#Çw>#Çi>#èÌê¿,è÷ÿÿH…À„±HÇ@HÇ@¿tH‰í#H‰î#èÑöÿÿH…À„gH|$ 1öHÇ@HÇ@H‰Ò™#èuôÿÿH‹L$(HºÏ÷Sã¥›Ä it$ èH‰ÈHÁù?H÷êHÁúH)Ê<è%õÿÿ¿÷Aè;5¿BH‰÷›#è*5H‰Û›#èñÇ H‹i™#Ç=#H‰Xš#è+1ö¿÷AºèŠìH‹x H‰ÃH…ÿtèyðÿÿ¿÷AèÏ4H‰C Ç›# Ç›#dÇm›#dèØ¯¸HÇÅ ÕcÇ… ÖcHƒÀHƒø ußH‹8:#Ç~š#HÇsŒ#H‰ì™#¸ÀÎc€HÇHƒÀH=pÓcuíHÇâ’#÷AHÇG“#"÷A»HÇ?“#*÷AHÇÄ’#®ŠBHÇÁ’#4÷AHÇž“# ŽBHÇ›“#?÷AHǘ“#'ŽBHÇ•“#F÷AHÇ’“#1ŽBHÇ“#P÷AHÇŒ“#8ŽBHlj“#W÷AHÇf’#b÷AHÇc’#a÷AHÇ`’#V4BHÇ]’#g÷AHÇJ”#o÷AHÇG”#n÷AHÇD’#t÷AHÇI”#†÷AHÇN”#—÷AHÇs”#ª÷AHÇ8’#¯÷AHÇU’#¶÷AHÇR’#¿÷AHÇ’#Ç÷AHÇD’#Ô÷AHÇA’#Ï÷AHÇ’#&÷AHÇó“#Ý÷AHÇ@’#¯ŒBHÇ=’#á÷AHÇ:’#ê÷AHÇ“#ò÷AHÇ“#ù÷AHÇ“#øAHÇ“#øAHÇ “#øAHÇ“#øAHÇ“#øAHÇ“#'øAHÇï‘#/øAHÇ<“#9øAHÇ9“#EøAHÇþ’#PøAHÇ“#ZøAHÇð’#gøAHÇ‘#røAHÇš‘#|øAHÇŸ‘#‰øAHÇœ‘#˜øAHÇñ’#¢øAHÇþ’#¶øAHÇû’#°øAHLj’#ÈøAHÇe’#ÑøAHÇR’#ÛøAHÇW’#ßøAHÇÌ’#ŽBHÇÉ’#çøAHÇÞ’#÷AHÇÛ’#è‹BHÇØ’#â‹BHÇÕ’#-ŽBHÇÒ’# ùAHÇÏ’#rŒBHÇÌ’#ùAHÇÉ’#÷‹BHÇÆ’#jŒBHÇÃ’#ðøAHÇÀ’#öøAHǽ’#üøAHǺ’#ùAHÇ·’#ùAHÇ´’#ùAHDZ’#ùAHÇ®’#ùAHÇ«’#)ùAHǨ’#1ùAHÇ¥’#8ùAHÇ¢’#CùAHÇŸ’#BŽBHÇœ’#Š‹BHÇ™’#ŒBHÇ–’#QùAHÇ“’#PùAHǘ’#YùAHÇ…’#bùAHÇŠ’#]ùAHLJ’#qùAHÇ„’#lùAHÇ’#vùAHÇ~#÷ŠBHÇ{#äŠBHÇx#€ùAHÇ]’#*ŒBHÇj’#{ùAHÇg’#‰ùAHÇD’#ùAHÇA’#›ùAHÇV’#œŒBHÇS’#¢ŒBHÇP’#¦ùAHÇÍ’#«ùAHÇÊ’#ÂŒBHÇ7’#¶ùAHÇL’#¿ùAHÇI’#cŒBHÇÆ’#ÐŒBHÇÃ’#áŒBHÇ0’#hŒBHÇ…’#ÇùAHÇ‚’#ÏùAHÇ’#ØùAHÇ|’#äùAHÇ’#nŒBHÇþ‘#vŒBHÇû‘#ñùAHÇø‘#÷ùAHÇõ‘#ýùAHÇò‘#úAHÇï‘# úAHÇì‘#úAHÇé‘#úAHÇF‘#&úAHÇc‘#ÈùAHÇø#.úAHÇõ#RŠBHÇ’#:‹BHÇ#ª‹BHÇŒ#¼ŒBHÇ1‘#ÝŠBHÇ^Ž#8úAHÇ[Ž#AúAHÇXŽ#JúAHÇ¥Ž#WúAHÇ¢Ž#iúAHÇŽ#yúAHÇ|Ž#‰úAHÇ)Ž#—úAHÇ&Ž#¦úAHÇ#Ž#°úAHÇ Ž#¿úAHÇŽ#'‹BHÇŽ#ËúAHÇŽ#ÖúAHÇŽ#äúAHÇy#îúAHÇ‘#øúAë@HƒÃHû–„ÿHƒ<ÝÀÎcuäH‹ ݸÎcH‹=‘#‰Ú¾ïA1ÀèwñÿÿH‹5ð#¿èæ ë´B<õè÷,ƒ=È#H‰™’#ÇÇ’#•ÀAƒüD¶ø…ðôÿÿéêf„Hc¡’#H‹b’#H‰ßL4Ðè-I‰ƒ„’#éáôÿÿ€ºH‰Þ¿VöA莅ÀA‰Ç„“ƒÅD9åJO‹t5L‰÷èÚêÿÿA¸Hƒø¿aöAL‰ÁL‰öH‰ÃHNÈH9Éó¦—Á’À)ÁD¾ùE…ÿ„”Hƒû¹¿göAHNËL‰öH9Éó¦—Á’À)ÁD¾ùE…ÿ…uÇÇ#é0ôÿÿfDºH‰Þ¿xöAèÞ…À…¶ºH‰Þ¿|öAèÄ…À…œºH‰Þ¿ˆöA誅À…%ºH‰Þ¿ŒöAè…ÀA‰Ç…ºH‰Þ¿˜öAès…À…ÖºH‰Þ¿¢öAèY…ÀA‰Ç„ȃÅD9årK‹|5E1ÿè•+H‰4#écóÿÿf„ƒÅD9åK‹|5èj+H‰Sƒ#é8óÿÿHƒûL‰Â¾löAHNÓL‰÷L‰D$èqçÿÿ…ÀA‰ÇL‹D$„-HƒûL‰Â¾röAHNÓL‰÷èIçÿÿ…ÀA‰Ç…ÑÇ ˜#@ÇbŽ#éËòÿÿHƒû¹¿?üAHNËL‰öH9Éó¦—Á’À)ÁD¾ùE…ÿ… Ç#Ž#éŒòÿÿf¾–ûA¿HÇ‹‘#ĉBHLj‘#…ûAHÇ…‘#|ûAHÇ‚‘#üúAHÇ‘#ûAHÇ|‘#ûAHÇy‘# ûAHÇv‘#BHÇs‘#ûAHÇp‘#,ŠBHÇm‘#ûAHÇj‘#ûAHÇg‘#ûAHÇd‘#ûAHÇa‘# ûAHÇ^‘##ûAHÇ[‘#&ûAHÇX‘#)ûAHÇU‘#,ûAHÇR‘#/ûAHÇO‘#2ûAHÇL‘#6ûAHÇI‘#:ûAHÇF‘#>ûAHÇC‘#BûAHÇ@‘#FûAHÇ=‘#JûAHÇ:‘#NûAHÇ7‘#RûAHÇ4‘#VûAHÇ1‘#ZûAHÇ.‘#^ûAHÇ+‘#bûAHÇ(‘#fûAHÇ%‘#jûAHÇ"‘#nûAHÇ‘#xûAHÇ‘#ûAHÇ‘#ˆûAHÇ‘#ŽûAHÇ‘#’ûAHÇ‘#(öAÇ6Ž#è9‹#Ž#…À…1ÀÇŽ#èºj…Àtƒ=×#~¾®ûA¿èþƒ=¿#~è°01Ò1ö¿è¢(‹ ä0#‹ö-#¾ ñAH‹=Ê‹#1ÀèCìÿÿH‹5¼‹#¿è²¿pÔcèéÿÿH‹=±0#H…ÿ„áè …ÀL‹š0#H‹ #.#H‹$.#„–H‹=o‹#¾PñA1ÀèãëÿÿH‹5\‹#¿èRè̓ÅD9åXK‹|5E1ÿèÄ'H‰¥#é’ïÿÿHƒûL‰Â¾Ä‰BHNÓL‰÷L‰D$èËãÿÿ…ÀA‰ÇL‹D$…-üÿÿÇíŠ#éVïÿÿÆ€ ÓcéÈðÿÿH‹=ÙŠ#¾€ñA1ÀèMëÿÿH‹5ÆŠ#¿è¼è7ƒ=xŒ#ŽÞ‹T-#…Û…Yƒ=‘Š#ǃŒ#¿ƒ=B-#H‹=_‹#½H‰=KŒ#…þH;=FŒ#„hƒ=U/#…[ƒ=@Š#Õ‹Aÿ=“‡Íÿ$ŰýA¾€Ôc¿ Ócèèâÿÿé ïÿÿ¿@ïAè9ãÿÿ¿èïAè/ãÿÿ¿ ðAè%ãÿÿ¿`ðAèãÿÿ¿¨ðAèãÿÿ¿ððAèãÿÿé§ýÿÿ„Ø<íèà%ƒ=±‰#H‰‚‹#ǰ‹#ÇŽ‹#„ëH‹a,#H‹=2,#H‰D$è&H‰,#éÇîÿÿÇf‰#éÏíÿÿƒÅD9å˜K‹|5èß%H‰¸}#é­íÿÿÇ1‹#‹5O.#¿¨òA1Àè'äÿÿD‹ 8.#D‹5.#¾óA‹ ..#‹,.#1ÀH‹=ÿˆ#ÇíŠ#èpéÿÿH‹5éˆ#¿èß¿pÓcè5æÿÿH‹¾‰#H‹·ˆ#¾PóAfïÀH‹=·ˆ#fïÉH)ÂH+¹Š#òH*ÊòH*À¸èéÿÿH‹5Žˆ#¿è„èÿƒ=tˆ#)H‹H‰=GŠ#H;=HŠ#„/‹7ƒþSuÔƒ=Hˆ#|H‹ƒÃèjáÿÿƒ=ó*#H‹= Š#t¸‰Ø™÷ý…Òu¯¿ÏûA1ÀèãÿÿH‹=ˆ#H‹W*#¾è}äÿÿH‹=Ö‰#ë‚¿è $I‹¿H‰èú#ƒ=ˇ#H‰œ‰#Çʉ#•À„ÀÇ£‰#…þÿÿH‹5^*#HÇD$H…ö…úìÿÿH‹Ý)#Çs‰#ºöAHÇ*#öAH‰D$éßìÿÿH‹O`H‹W0‹7¿ÅûAè¥H‹=.‰#é ýÿÿH‹O`H‹W0¿ìûAè‡H‹=‰#é¹þÿÿ…Ûu ¿õûAèMàÿÿƒ=Ö)#t$¿ðñA1ÀèâÿÿH‹Q)#H‹=ú†#¾èpãÿÿƒ=±ˆ#Ç׈#‡²ýÿÿ‹›ˆ#ÿ$ÅPBƒ=u)#dzˆ#…|ýÿÿ¾GüA¿è¦ézýÿÿ¿pH‰D$èâH‹D$é€íÿÿ¿(H‰D$èÉH‹D$é6íÿÿ¿'H‰D$è°H‹D$é[ìÿÿºH‰Þ¿¨öAèt…À…ºH‰Þ¿±öAèZ…ÀA‰Ç„‚ ƒÅD9åñK‹t5¿ ÓcE1ÿèÑÞÿÿéfêÿÿ¿'H‰D$è=H‹D$éÙèÿÿ¿'H‰D$è$H‹D$éÚèÿÿH‹O`H‹W0¿ÅûAèH‹=‘‡#éfýÿÿƒÅD9å’K‹|5è&"H‰G(#éôéÿÿ¾üA¿è{éOüÿÿ¾*üA¿ègé;üÿÿ¾`òA¿èSé'üÿÿ¾€òA1ÿèBéüÿÿèˆ'H‹=‡#H‹H‰=‡#é¼úÿÿè̇H‹=õ†#H‹H‰=ê†#é úÿÿèp’H‹=Ù†#H‹H‰=Ά#é„úÿÿè$H‹=½†#H‹H‰=²†#éhúÿÿ舂H‹=¡†#H‹H‰=–†#éLúÿÿ1Àè…H‹=ƒ†#H‹H‰=x†#é.úÿÿ1ÀèìfH‹=e†#H‹H‰=Z†#éúÿÿ1Àè®WH‹=G†#H‹H‰=<†#éòùÿÿ1Àè WH‹=)†#H‹H‰=†#éÔùÿÿè´{H‹= †#H‹H‰=†#é¸ùÿÿèØwH‹=ñ…#H‹H‰=æ…#éœùÿÿè|zH‹=Õ…#H‹H‰=Ê…#é€ùÿÿè°zH‹=¹…#H‹H‰=®…#édùÿÿ1ÀèÂvH‹=›…#H‹H‰=…#éFùÿÿèækH‹=…#H‹H‰=t…#é*ùÿÿèzrH‹=c…#H‹H‰=X…#éùÿÿè.^H‹=G…#H‹H‰=<…#éòøÿÿH‹è~H‹='…#H‹H‰=…#éÒøÿÿèb\H‹= …#H‹H‰=…#é¶øÿÿè–{H‹=ï„#H‹H‰=ä„#éšøÿÿèJnH‹=Ó„#H‹H‰=È„#é~øÿÿè®7H‹=·„#H‹H‰=¬„#ébøÿÿèr8H‹=›„#H‹H‰=„#éFøÿÿèöæH‹=„#H‹H‰=t„#é*øÿÿèª7H‹=c„#H‹H‰=X„#éøÿÿè>èH‹=G„#H‹H‰=<„#éò÷ÿÿè‚çH‹=+„#H‹H‰= „#éÖ÷ÿÿèçH‹=„#H‹H‰=„#éº÷ÿÿèê_H‹=óƒ#H‹H‰=èƒ#éž÷ÿÿè^H‹=׃#H‹H‰=̃#é‚÷ÿÿè²bH‹=»ƒ#H‹H‰=°ƒ#éf÷ÿÿèÆçH‹=Ÿƒ#H‹H‰=”ƒ#éJ÷ÿÿèÚÙH‹=ƒƒ#H‹H‰=xƒ#é.÷ÿÿèþµH‹=gƒ#H‹H‰=\ƒ#é÷ÿÿèRŸH‹=Kƒ#H‹H‰=@ƒ#éööÿÿè±H‹=/ƒ#H‹H‰=$ƒ#éÚöÿÿ1ÿ1ÀèV°H‹=ƒ#H‹H‰=ƒ#éºöÿÿè¾H‹=ó‚#H‹H‰=è‚#éžöÿÿ莿H‹=ׂ#H‹H‰=Ì‚#é‚öÿÿè2¯H‹=»‚#H‹H‰=°‚#éföÿÿ覾H‹=Ÿ‚#H‹H‰=”‚#éJöÿÿèú©H‹=ƒ‚#H‹H‰=x‚#é.öÿÿè^¥H‹=g‚#H‹H‰=\‚#éöÿÿè¡H‹=K‚#H‹H‰=@‚#éöõÿÿèvšH‹=/‚#H‹H‰=$‚#éÚõÿÿ誘H‹=‚#H‹H‰=‚#é¾õÿÿèî>H‹=÷#H‹H‰=ì#é¢õÿÿèræH‹=Û#H‹H‰=Ð#é†õÿÿè#H‹=¿#H‹H‰=´#éjõÿÿèz"H‹=£#H‹H‰=˜#éNõÿÿè~H‹=‡#H‹H‰=|#é2õÿÿè2H‹=k#H‹H‰=`#éõÿÿèv_H‹=O#H‹H‰=D#éúôÿÿèªWH‹=3#H‹H‰=(#éÞôÿÿ1ÀèÌH‹=#H‹H‰= #éÀôÿÿèPÿH‹=ù€#é¯ôÿÿè¿þH‹=è€#H‹H‰=Ý€#é“ôÿÿ¿èØH‹xèeH‹=¾€#H‹H‰=³€#éiôÿÿ¿èä×ò,@ ǹ##‰¯##H‹=ˆ€#é>ôÿÿÇ##é/ôÿÿè_óH‹=h€#H‹H‰=]€#éôÿÿèûH‹=L€#H‹H‰=A€#é÷óÿÿèwUH‹=0€#H‹H‰=%€#éÛóÿÿ1ÀèÙQH‹=€#H‹H‰=€#é½óÿÿèmùH‹=ö#é¬óÿÿèüïH‹=å#H‹H‰=Ú#éóÿÿèÀÏH‹=É#H‹H‰=¾#étóÿÿèTÏH‹=­#H‹H‰=¢#éXóÿÿèøóH‹=‘#H‹H‰=†#é<óÿÿèŒÛH‹=u#H‹H‰=j#é óÿÿè óH‹=Y#H‹H‰=N#éóÿÿèäÕH‹==#ÇH‹H‰=,#éâòÿÿèBÞH‹=#H‹H‰=#éÆòÿÿè†ÙH‹=ÿ~#H‹H‰=ô~#éªòÿÿè:ÚH‹=ã~#H‹H‰=Ø~#éŽòÿÿ¿ è ÖH‹=Â~#H‹H‰=·~#émòÿÿèMÙH‹=¦~#H‹H‰=›~#éQòÿÿèáàH‹=Š~#H‹H‰=~#é5òÿÿèEßH‹=n~#H‹H‰=c~#éòÿÿèiýH‹=R~#H‹H‰=G~#éýñÿÿèÝÿH‹=6~#H‹H‰=+~#éáñÿÿèþH‹=~#H‹H‰=~#éÅñÿÿèµH‹=þ}#H‹H‰=ó}#é©ñÿÿè)[H‹=â}#H‹H‰=×}#éñÿÿèMH‹=Æ}#H‹H‰=»}#éqñÿÿè‘H‹=ª}#H‹H‰=Ÿ}#éUñÿÿè5H‹=Ž}#H‹H‰=ƒ}#é9ñÿÿèé.H‹=r}#H‹H‰=g}#éñÿÿè+H‹=V}#H‹H‰=K}#éñÿÿèAçH‹=:}#H‹H‰=/}#éåðÿÿè%ÏH‹=}#H‹H‰=}#éÉðÿÿèÙÛH‹=}#H‹H‰=÷|#é­ðÿÿè=ÚH‹=æ|#H‹H‰=Û|#é‘ðÿÿè1èH‹=Ê|#H‹H‰=¿|#éuðÿÿH‹ S#º9¾¿PçAè_ÛÿÿH‹ 8#ºF¾¿çAèDÛÿÿH‹ #ºH¾¿ØçAè)ÛÿÿH‹ #ºI¾¿(èAèÛÿÿH‹ ç#º¾¿;öAèóÚÿÿH‹ Ì#º/¾¿xèAèØÚÿÿH‹ ±#º4¾¿¨èAè½ÚÿÿH‹ –#ºU¾¿àèAè¢ÚÿÿH‹ {#º@¾¿8éAè‡ÚÿÿH‹ `#ºF¾¿€éAèlÚÿÿH‹ E#º;¾¿ÈéAèQÚÿÿH‹ *#ºL¾¿êAè6ÚÿÿH‹ #º?¾¿XêAèÚÿÿH‹ ô#º4¾¿˜êAèÚÿÿH‹ Ù#ºF¾¿ÐêAèåÙÿÿH‹ ¾#ºF¾¿ëAèÊÙÿÿH‹ £#ºN¾¿`ëAè¯ÙÿÿH‹ ˆ#ºG¾¿°ëAè”ÙÿÿH‹=m#º€Ôc¾øëA1ÀèÌÕÿÿH‹5U#¿ è ÕÿÿèF¿¨ñA1ÀèºÓÿÿH‹#H‹=¬x#¾è"ÕÿÿéîÿÿºH‰Þ¿¾öAè»…À„‡ƒÅD9åµK‹|5èýH‰Îl#éËÜÿÿAHcÑH‹=Tx#H‹ÕÀÎc¾(òAH˜L‹ÅÀÎc1Àè¶ØÿÿH‹5/x#¿è%H‹=þy#é´íÿÿH‹=’#ºçA¾ÌóA1ÀèñÔÿÿè|ºH‰Þ¿ÇöAè…ÀA‰ÇtIƒÅD9å}-K‹|5E1ÿè^H‰'l#é,Üÿÿ¾ÈíA¿è³è.¾ðíA¿èŸèƒ=W#…ÃH‰Þ¿ÍöAè@Ôÿÿ…ÀtAºH‰Þ¿ÒöAè*Ðÿÿ…Àt+H‰Þ¿ØöAèÔÿÿ…ÀtºH‰Þ¿ÞöAèÐÿÿ…À…¯ºH‰Þ¿ÒöAÇè#èßÏÿÿ…ÀA‰Ç„õºH‰Þ¿ÞöAèÂÏÿÿ…ÀA‰Ç„¶9l$Ž˜K‹|5Çž#E1ÿèfH‰o#é4Ûÿÿƒ=»v#…æÿÿHƒ|$…æÿÿHƒ=a#…æÿÿHƒ=;#uH‰ßè!H‰*#H‹=##¾Bè9ÖÿÿH…ÀH‰D$„ŒH‹#¾\H‰ßè·ÑÿÿH…ÀH‰#tQHƒÀH‰#Hƒ=#…œÚÿÿHÇï#ýöAéŒÚÿÿ¾ íA¿è莾xíA¿èÿèz¾/H‰ßèMÑÿÿH…ÀuH‰©#ëŸèZÎÿÿ‹8è³ÖÿÿH‹l#H‹=Åu#H‰Á¾åöA1Àè6ÖÿÿH‹5¯u#¿è¥ÇŸ#Ç‘#è €|$-…·þÿÿH‰Ú¾8îAH‹=ru#1ÀèëÕÿÿH‹5du#¿èZèÕ¾îA¿èFèÁH{Çó#ƒíè»H‰Ä#é‰ÙÿÿH{ÇÑ#ƒíè™H‰¢#égÙÿÿ¾0ìA¿èîèi¾èìA¿èÚèU¾¨ìA¿èÆèA¾íA¿è²è-L‰ò¾hìAé'ÿÿÿ¾HíA¿è‘è f.„f1íI‰Ñ^H‰âHƒäðPTIÇÀpáAHÇÁáAHÇÇP6@è·ÐÿÿôfD¸¯ucUH-¨ucHƒøH‰åv¸H…Àt]¿¨ucÿàf„]Ã@f.„¾¨ucUHî¨ucHÁþH‰åH‰ðHÁè?HÆHÑþt¸H…Àt ]¿¨ucÿà]ÃfD€=Q#uUH‰åènÿÿÿ]Æ>#óÃ@¿ÀmcHƒ?u듸H…ÀtñUH‰åÿÐ]ézÿÿÿf.„Hƒì‹=Š#ƒÿ„’~&¾è±Ðÿÿ‹=o#Ht$ 1ÒèÒÿÿÇY#ÿÿÿÿ‹'#…ÀtEƒ=8#tP¿Òèi¿áAèîmH‹g#¾H‰çèŠÏÿÿƒ=ë#u‹=û#è†Óÿÿƒ=‡g#tìƒ=ê#tãë°èÝÑÿÿëÚ¿èaÓÿÿATUI‰üS‰ÓHƒì€>-t>…ÛxJH‰÷H‰t$èMÍÿÿH‹t$HcÐL‰çH‰ÅèZËÿÿ…À”Â1À9ëžÀHƒÄ[!Ð]A\À~-u¼€~HƒÞÿë²÷ÛL‰çHcÓè#Ëÿÿ…À”ÀHƒÄ[¶À]A\ÃfAUATUS‰ûHƒì9=:r#ŒˆI‰ô‹5#‰Õ…ö…õƒûw‰Øÿ$Å`üA€A½|óAH‹5ƒ#L‰ïè›Íÿÿ…íx‹és#ƒø„pƒø„¿H‹=X#1ÀL‰â¾ÊóAè¹Îÿÿƒ=ºs#uƒû ¿è1è;rs#}‰js#ƒû~-‹#…Àt;‰q#~ HƒÄ[]A\A]ÃHƒÄ[]A\A]é!ÏÿÿÇ^s#Ç`#ÇR#t³H‹ É#º3¾¿¸áAèÕÑÿÿè°ýÿÿèkÒÿÿƒû†ÿÿÿéÿÿÿD¿²óAH‹5Œ#è§Ìÿÿ…í‰ÿÿÿH‹=x#L‰â¾ÊóA1ÀèÙÍÿÿé4ÿÿÿ@ƒý#¿¡óAë¿fƒá#A½…óAé´þÿÿfDƒÍ#¿ŽóAë—f.„¿ªóAë†f„ƒ©#¿™óAélÿÿÿ€H‹az#H‹H…Ò„†þÿÿ‹ ã#…Éu;-E#tH‹=Ì#‰é¾ºóA1Àè.Íÿÿ‰-(#Dz#éJþÿÿf„H‹ùq#‹hP…íŽ/þÿÿH‹@XH‹ë—D‹òq#ƒøt-ƒøtºÿÿÿÿé–ýÿÿfDH‹¹q#‹PP…Ò~âé}ýÿÿD‹â#émýÿÿf.„AUATUSHƒìþ•L‹%™o#‡³HcöH…ÒH‰ËLl$ H‹ õÀÎc„ÿI‰ÐM‰éH‰ú¾áóAL‰ç1ÀèßÏÿÿH…Ût €;…™HcD$ H‹ t#IÄH‹t#H9H„¡¹t[AÆD$IƒÄfA‰L$þH‹ís#H‹XH9Ús#„Ž1ífƒýK…ítº,IƒÄfA‰T$ÿƒ;‡ß‹ÿ$ŘüAfDL‰ê¾`ôAL‰ç1Àè>ÏÿÿfDHcD$ IÄH‹[H;us#Et‰Åëœ@ƒø~UüL‰çL‰é¾zôA1ÀèþÎÿÿHcD$ Iĸ]bAÆD$fA‰$H‹5_n#¿èUþÿÿHƒÄ[]A\A]Ãf.„L‰ê¾PôAL‰ç1Àè®Îÿÿéqÿÿÿf„L‰ê¾IôAL‰ç1ÀèŽÎÿÿéQÿÿÿf„L‰ê¾BôAL‰ç1ÀènÎÿÿé1ÿÿÿf„L‰ê¾5ôAL‰ç1ÀèNÎÿÿéÿÿÿf„L‰ê¾,ôAL‰ç1Àè.Îÿÿéñþÿÿf„L‰ê¾$ôAL‰ç1ÀèÎÿÿéÑþÿÿf„òC L‰ê¾ôAL‰ç¸èæÍÿÿé©þÿÿH‹SH…Ò„õL‰é¾ôAL‰ç1ÀèÁÍÿÿé„þÿÿ@H‹SL‰é¾ôAL‰ç1Àè¢ÍÿÿéeþÿÿDL‰ê¾ôAL‰ç1Àè†ÍÿÿéIþÿÿL‰ê¾pôAL‰ç1ÀènÍÿÿé1þÿÿf„Ll$ ‰ñH‰ú¾ÐóAL‰ç1ÀM‰èèDÍÿÿénýÿÿ€HcD$ L‰éH‰Ú¾øóAIÄ1ÀL‰çèÍÿÿéEýÿÿfDAÇ$t[]bAÆD$éþÿÿDH‰úM‰è¾ïóAL‰ç1ÀèãÌÿÿéÿüÿÿL‰ê¾ôAL‰ç1ÀèÌÌÿÿéýÿÿ€S‰û1ö‰ßèÉÿÿƒ=%n#tmƒû wfÿ$ÝýA€¾ðáA1ÿè üÿÿ¾ âA1ÿèüÿÿ‹#…Àt8¾HâA1ÿèêûÿÿ¾pâA1ÿèÞûÿÿ¾˜âA1ÿèÒûÿÿ[¾ÀâA1ÿéÅûÿÿD[ÿèDÌÿÿ@Hƒì‰úH‹=£k#¾èâA1ÀèÌÿÿH‹5k#1ÿHƒÄé…ûÿÿDAWAVAUATUSHƒì‹\m#…À…9H‹-#H‰þI‰üH‰ïèÈÿÿ…À‰ÃH‰é„ßL‹-Û #L‰æL‰ïèðÇÿÿ…À‰Ã„À¾­ôAH‰ïèÙÊÿÿH…ÀH‰$„zH‹=¥ #¾­ôAè»ÊÿÿH…ÀH‰D$„œ¾°ôAL‰çè ÊÿÿH…ÀH‰Å„̓=Éj#~éúfDH‰î‰ÇèöÆÿÿH‹<$è½Æÿÿƒøÿuèƒ= d#ŽäA½@Úc1ÛA¾DI‹E¾­ôAH‹8è7ÊÿÿH…ÀI‰Ä„SI‹EH‹=`j#¾ÍôAH‹P1ÀèÐÊÿÿL‹=Ij#A¾?@„ÿtIƒÇH‰îƒÃèqÆÿÿA¾?@„ÿuèA¿0ãA¿ DIƒÇH‰îƒÃèIÆÿÿA¾?@„ÿuèL‰çèÆÿÿƒøÿtH‰î‰ÇƒÃè#ÆÿÿL‰çèëÅÿÿƒøÿuæA¼ãA¿ IƒÄH‰îƒÃèùÅÿÿA¾<$@„ÿuçAƒÆIƒÅD95c#ÿÿÿA¼ôA¿ €IƒÄH‰îƒÃè¹ÅÿÿA¾<$@„ÿuçA¼ôA¿ @IƒÄH‰îƒÃè‘ÅÿÿA¾<$@„ÿuçH‹|$èMÅÿÿƒøÿt$„H‰î‰ÇƒÃècÅÿÿH‹|$è)ÅÿÿƒøÿuäH‰éº¾¿ÙôAèÉÿÿS¾ßôAH‰ï1À»èÖÅÿÿH‹§ #¾éôAH‰ï1ÀèÀÅÿÿH‹=‘ #èdÃÿÿ¾ßôAH‰ÂH‰ï1Àè¢Åÿÿ‹Ør#¢h#¾ñôAH‰ï1Àè‡ÅÿÿºûôA¾éôAH‰ï1ÀèsÅÿÿH‹<$èÚÂÿÿH‹|$èÐÂÿÿH‰ïèÈÂÿÿë*L‰éH‹=\h#¾ˆãAL‰â1ÀèÍÈÿÿH‹5Fh#¿è<øÿÿHƒÄ‰Ø[]A\A]A^A_þXãA¿1ÛèøÿÿëÜè“Àÿÿ‹8Mcö1ÛèçÈÿÿJ‹õ@ÚcH‹=øg#H‰Á¾°ãA1ÀH‹èfÈÿÿH‹5ßg#¿èÕ÷ÿÿ1ÿè.ÂÿÿëH‹ e #H‹f #M‰àH‹=´g#¾³ôA1Àè(ÈÿÿH‹5¡g#¿è—÷ÿÿéÜüÿÿè Àÿÿ‹81ÛèdÈÿÿH‹% #H‹=vg#H‰Á¾°ãA1ÀèçÇÿÿH‹5`g#¿èV÷ÿÿéÿÿÿèÌ¿ÿÿ‹81Ûè#ÈÿÿH‹Ü #H‹=5g#H‰Á¾°ãA1Àè¦ÇÿÿH‹5g#¿è÷ÿÿH‹<$èlÁÿÿéËþÿÿè‚¿ÿÿ‹81ÛèÙÇÿÿH‹=òf#H‰ÁL‰â¾ØãA1Àè`ÇÿÿH‹5Ùf#¿èÏöÿÿH‹<$è&ÁÿÿH‹|$èÁÿÿé{þÿÿ1ÛéýÿÿAWAV¾OBAUATI‰ÿUSHƒìèUÆÿÿH…À„ H‹mg#E1íI‰ÆH…ÛI‰ÜuéµfƒýtdM‹d$M…ätZIc$H‹<ÅÀÎcH‰ÅèíÀÿÿA9ÅDLèý•vÎH‹=7f#‰ê¾#õA1Àè©ÆÿÿH‹5"f#¿é…„H‹[H…ÛtJH‹f#E‰è¾äAL‰÷ÆHc‹SPÿ5æe#‹KLL‹ ÅÀÎc1ÀQÿsH‹KXÿqH‰Ùè¶ÂÿÿHƒÄ ƒ;u­L‰÷èÀÿÿH‹=®e#¾õAL‰ú1ÀèÆÿÿH‹5˜e#¿HƒÄ[]A\A]A^A_é€õÿÿèû½ÿÿ‹8èTÆÿÿH‹=me#H‰ÁL‰ú¾ØãA1ÀèÛÅÿÿé-ÿÿÿfDAUATºUSHcÞH‰ÞI‰üHƒìè“Ãÿÿ…À…ÛH‹=$e#L‰â¾'‰Åè•ÁÿÿH…À„ L‹-e#L‰ïè¿ÿÿAÆDÿH‹ðd#¾päAH‹=¼f#1Àè]ÅÿÿH‹5®f#¿èÌôÿÿºH‰ÞL‰çèÃÿÿ…Àu½HƒÄ‰è[]A\A]ÃfDè½ÿÿ‹8ètÅÿÿH‹5#H‹=^f#H‰Á¾;õA1Àè÷ÄÿÿH‹5Hf#¿èfôÿÿHƒÄ‰è[]A\A]Ãf„è˼ÿÿ‹81íè"ÅÿÿH‹ã#H‹= f#H‰Á¾;õA1Àè¥ÄÿÿH‹5öe#¿èôÿÿHƒÄ‰è[]A\A]À¾@äA¿èñóÿÿé9ÿÿÿff.„S‰ÿH‰ûHƒÇHƒìèÁÿÿH…ÀtHƒÄ[Ãf‰ßH‰D$èøÿÿH‹D$HƒÄ[Ãf„ATUI‰üSHcÞ{è®ÿÿÿH‰ÚH‰ÅL‰æH‰Çè¼ÿÿÆDH‰è[]A\ÃH…ÿtSH‰ûè¾ÿÿH‰ß‰Æ[ëºf.„1ö¿(öAë§€AUATA‰ýUSH‰õI‰ÔHƒìƒ="c#H‹e#‹3#H…í‰CPH‹öl#D‰+H‰CX‹#‰Ct €}…úHÇC0ƒÀHÇCÇCLHÇC(HÇC@L‰ç‰¿#èBÿÿÿH‰C`H‹—l#Hƒx „ÌH…ítH‹xg#H‹qd#H…ÀtH‰P8H‰ag#¿tè/ÀÿÿH…ÀH‰Ã„³H‹Dd#HÇCHÇCHÇC HÇC8HÇC@H‰CHÇC0H‰ d#H‰XH‰d#HƒÄ[]A\A]ÃH‰ÑH‰ò‰þ¿YõAèFòÿÿéÑþÿÿH‰ïèxþÿÿH‰C0‹æ#H‹¿c#éðþÿÿfH‹±c#ƒ:p…$ÿÿÿH‰P H‰P(éÿÿÿ¿pèöõÿÿé>ÿÿÿHƒì1Ò1öèSþÿÿHƒÄH‰Çéڀ髹ÿÿf.„ATUI‰ôSH‹bk#H‰ýH…Ûuë@„H‹[0H…Ût/H‹;H‰îèü½ÿÿ…Àuè‹*a#…À¸HDØH‰Ø[]A\À¿<èξÿÿH…ÀH‰Ã„éH‹ã#HÇC0ÇCH…ÀtH‰X0H‰ïH‰Á#èdýÿÿH‰H‰Çèi»ÿÿM…ä‰Ct1L‰çèIýÿÿH‰ÇH‰CèM»ÿÿHÇC(‰CH‰ØHÇC []A\ÃfH‰ïè(»ÿÿ…À‰ÂLcà ë*DIƒìB¶L%ÿ€ù\t€ù/tB€|%.DƒêuÞE1ähÿ)Õ}èfüÿÿL‰æH3UH‰ÇH‰CHcíHcÒè˸ÿÿH‹CÆD(H‹{égÿÿÿ¿8è_ôÿÿéÿÿÿf.„US‰õ¾.H‰ûHƒìèÛºÿÿH…Àt>ºÈH‰Þ¿ wcèt¸ÿÿ…ít¾@H‰ß賺ÿÿH…À„ÚHƒÄ¸ wc[]ÃfDH‹‘i#ºÈ¿ wcH‹pè.¸ÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰Â¾ /BÁê©€€DÂHQ‰ÇHDÊ@ǺÇHÙ£wc¿ wcH)Êè:»ÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰ÂH‰ÞÁê©€€DÂHQ‰ÇHDÊ@ǺÇHÙ£wc¿ wcH)Êèèºÿÿéÿÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰Â¾bõA¿ wcÁê©€€DÂHQ‰ÃHDÊúÇHÙ£wcH)Êèºÿÿ¹ wc‹HƒÁ‚ÿþþþ÷Ò!Ð%€€€€té‰ÂH‹5ˆY#¿ wcÁê©€€DÂHQ‰ÃHDÊúÇHÙ£wcH)Êè8ºÿÿéyþÿÿƒ=%^#H‰øCS¾.H‰ûè¹ÿÿH…Àt9Hpº,¿`vcèž¶ÿÿ¾@¿`vcè߸ÿÿH…Àt*Ƹ`vc[óÀº,H‰Þ¿`vcèf¶ÿÿëÆ@¸`vc[ëׄHƒìH‹}b#H‹nb#H9Ðuë'€H‹@H9Ðtƒ8uòH‹@‹PPH‹@X‰WPH‰GX¿膶H‹p¿HƒÄéTíÿÿ@Hƒì¿èb¶H‹xèYî1ÀèÒ;1Ò1ö¿HƒÄéàùÿÿ…ÿS@•Ç1Ò1ö@¶ÿƒÇèÉùÿÿ1ö¿(öAH‰ÃèúüÿÿH‰Çè‚ùÿÿH‰C[Ãff.„AUATUSHƒìH‹§a#€H‹@ƒ8u÷H‹h¾°äAƒ}uIL‹eH‰ûL‰çèA·ÿÿI‰Å‹C€|,ÿ$”Áƒø”Â8ÑtNƒøL‰â¾åAt,H‹=u\#1Àèî¼ÿÿH‹5g\#HƒÄ¿[]A\A]éSìÿÿH‹=I\#¾ØäA1Àè½¼ÿÿëÍH‹{èÒ¶ÿÿA|èHøÿÿH‹sH‰ÇI‰Åè©¶ÿÿL‰æH‰ÇèÞ´ÿÿH‹}è5´ÿÿ¾ÇEL‰ïèÕH…ÀH‰ÃL‰ê¾dõA„aÿÿÿèX´H‹±]#H‰ÇÇH‰PèÏÏH‰˜]#HƒÄL‰ï[]A\A]éÖ³ÿÿfD‹’e#…ÀtÃDS1ÒH‰û1ö¿Sè>øÿÿH‹Oþ"H‰XH…ÒtH‰B@H‰;þ"ƒP#[Ãf.„H‰A#ëÝ€US¾¿sHƒìè;ÌH‰Ã‹#x‰;Áçè5÷ÿÿ¿(öAH‰ÅH‰C0è”÷ÿÿH‰EH‹ñÿ"ºH…Àt €H‹pH‹K0H‹@@H‰4HƒÂH…Àu纾¿€õAèë®H‰X HƒÄ[]ÃAWAVAUATUSHƒìH‹=Cý"ÇD$ÇD$ H…ÿt€?u!¾ºõA1ÿ1íèsêÿÿHƒÄ‰è[]A\A]A^A_Ãf¾BèºÿÿH…ÀI‰Ä„ʾçÿÿÿH‰ÇE1íèêôÿÿ…À»ûôA½u"ëQf.„¾9ÐAEíHƒÃHûõAtL‰çè¶ÿÿƒøÿuÝHƒÃ1íHûõAuä…ít¾àÿÿÿL‰çèôÿÿ…Àu1íé_ÿÿÿfL‰çè(´ÿÿéPÿÿÿ1Àº|Óc¾ÇóAL‰çè²ÿÿ…À„h¾àÿÿÿL‰çèJôÿÿ…Àt½ƒ=‹Y#w‹ƒY#ÿ$ÅpýAA¾¨õAH‹=K[#L‰ò¾ëõA1Àèä¹ÿÿH‹55[#¿èSéÿÿ¾ÓÿÿÿL‰çèöóÿÿ…À„eÿÿÿHT$ 1À¾ÇóAL‰çè ²ÿÿ…À„ù‹T$ H‹=ïZ#¾°åA1À苹ÿÿH‹5ÜZ#¿èúèÿÿ‹D$ ¾ÓÿÿÿL‰çDhD)îè’óÿÿ…À„ÿÿÿ‹D$ xèîôÿÿ‹L$ L‰âH‰ÇH‰…û"qè5µÿÿH…À„™H‹mû"H‹=vZ#¾æA1À»ÆÿÿÿD)ëè ¹ÿÿH‹5[Z#¿èyèÿÿ‰ÞL‰çèóÿÿ…À„ŽþÿÿHT$1À¾ÇóAL‰çè3±ÿÿ…À„8‹T$H‹=Z#¾`æA1Àè´¸ÿÿH‹5Z#¿è#èÿÿ‹D$L‰çƒÀ)ÉÞèÀòÿÿ…À„/þÿÿƒ=ýW#þL‰%Äú"é|ýÿÿ€A¾£õAécþÿÿA¾›õAéXþÿÿA¾–õAéMþÿÿA¾‘õAéBþÿÿÇÞa#ǤW#A¾®õAé#þÿÿA¾ÝŠBéþÿÿA¾‹õAé þÿÿ€èû¯ÿÿ‹81íèR¸ÿÿH‹ú"H‹=dW#H‰Á¾HåA1ÀèÕ·ÿÿH‹5NW#¿èDçÿÿéÌüÿÿ¾ÒõA¿1íè.çÿÿé¶üÿÿ¾xåA¿1íèçÿÿé üÿÿ¾àåA¿1íèçÿÿéŠüÿÿ¾ˆæA¿èîæÿÿH‹ gù"º¾¿ÿõAès·ÿÿƒ|$~\臸ÿÿE1öI‰Çë&€ƒú t2ƒú t-Aƒý „§AƒÆD9t$~)L‰ç衲ÿÿHcÐI‹I‰ÕöDP@tÉH‹5úø"D‰ïè²²ÿÿëÂH‹5éø"¿ 蟲ÿÿ¾ÀæA¿èPæÿÿ¿èæA1ÀèD±ÿÿH‹ø"H‹=6V#¾謲ÿÿ‰ÞL‰çèÒðÿÿ…À…þÿÿ1íé ûÿÿ¾0æA¿1íèæÿÿéŠûÿÿ‹D$ƒèA9ÆIÿÿÿH‹ fø"º¾¿ÿõAèr¶ÿÿé)ÿÿÿf.„ATUSH‰û¾?@„ÿt!I‰ôH‰ÕL‰æHƒÃèܱÿÿƒE¾;@„ÿuè[]A\Ãf.„AVAU¾BATUI‰þSè+µÿÿH…ÀtH‰Ç辯ÿÿ[L‰÷]A\A]A^éÞñÿÿfD¿öAè^­ÿÿH‰ÇH‰ÅèÓ¯ÿÿL‰÷H‰Ãèȯÿÿ|è?ñÿÿH}¾:H‰Ãèþ¯ÿÿH…ÀI‰Äu éIl$¾:H‰ïèÞ¯ÿÿH…ÀI‰ÄtfM‰åH‰îH‰ßI)íL‰êèr­ÿÿB€|+ÿ/BÆ+tH‰ßè]¯ÿÿº/f‰L‰öH‰ßè µÿÿ¾BH‰ßè\´ÿÿH…Àt—H‰Çèï®ÿÿH‰Ø[]A\A]A^ÃL‰óH‰Ø[]A\A]A^ÃéKµÿÿf.„ATI¼€UH‰õSH‰ûƒ=AT#[¶E„Àu1À€;[]A\”ÀÃfDÿÿÿf.„HƒÃ€;„'ÿÿÿH‰îH‰ßèÿÿÿ…Àtä[¸]A\Ãf.„fïÉATUS‰ûHƒì f.ȇ胳ÿÿf(È¿E1ä¸fïöf(Áò*óf.Îòt$s éóD‰Øòd$Xò^Äf.ÄsëxòL$èýîÿÿòL$H‰ÅHcÃëÆDHcÛfDf(éòL$ò^l$f(Åè÷²ÿÿf(ÐòD$òL$òYÂòT$ò\Èò1‰òXÁèȲÿÿò,ÀòT$f(ÊH˜¶€žBˆDHƒëƒûÿu”E…ätÆE-HƒÄ H‰è[]A\ÀfW ‰A¼èu²ÿÿ¿f(ȸéðþÿÿ‰Ãé#ÿÿÿf.„AWAVI‰þAUATA‰õUSHƒìƒþt ƒþ…ÎL‰÷èv¬ÿÿ…ÀH‰ÅfïÀŽ fïÛM‰÷òA*Ýò\$è`³ÿÿH‹EÿIcífïÀMdë&@H-žBH9è}8fïÀIƒÇM9üòH*ÀòX$tOI¾òYD$¿žB‹4ƒò$èJ¬ÿÿH…Àu½H‹=NQ#L‰ñD‰ê¾¯B1Àè¼±ÿÿH‹55Q#¿è+áÿÿfïÀHƒÄ[]A\A]A^A_ÄH‹= Q#‰ò1À¾Bè{±ÿÿH‹5ôP#¿èêàÿÿHƒÄfïÀ[]A\A]A^A_ÀSèZ²ÿÿ‰ÃHÁãèO²ÿÿfïÀã€ÿ?%ÿH ØòH*À[ò^W‡Ã@f.„ATUA‰ôS‰ÓH‰ýè«ÿÿA9܉ÚŸÁÁêÑu`A9Ä}[E…ä¾PÿDHæ9ÃMÚ‰ßD)çƒÇèjìÿÿD9ã|GIcÌH‰ÆH)Î@¶T ˆHƒÁ9Ë}ðƒÃD)ãHcÛÆ[]A\ÃfD¿è&ìÿÿÆ[]A\Ã1ÛëÛf.„AWAVAUATUS½&öAHƒì(D‹7D‰ðƒàûƒø „‡¿èᨿI‰ÅèÔ¨I‹}1Ò¾H‹XèУH…À„L‹` M…䄃Aƒ|$(&AFݾ3ƒø‰D$†?@„ö„’E1íI‰ÞA¿ë D9ùt@€ÿAƒÝÿIƒÆA¾6A‰Ï@„öt2H‰ïèªÿÿH…À@•ǃ|$@¶ÏwÉHƒøA‰ÏAƒÝÿIƒÆA¾6@„öu΃|$AE‰Á‰D$–D$¶D$@ÇuAEÆD$A‰Í‰D$A‹$E1ÿE1ö…À~!DI‹T$0AƒÆJ‹<:IƒÇèÚ¦ÿÿE94$äI‹|$0èʦÿÿ‹D$<Åèªêÿÿ¿(öAI‰ÆI‰D$0H‰D$èëÿÿI‰D¶3E„ö„»I‰ßÇD$ÇD$A¾öH‰ïè4©ÿÿH…À„Ë€|$u ëzfL9ûvIƒÇA¾7H‰ïè ©ÿÿH…ÀuæHcD$H‹L$I‰ÞM)þL‰ÿL{AvLÁL‰D$èMêÿÿL‹D$ƒD$I‰BÆ0D¶3E„öt*ÇD$HƒÃD¶3émÿÿÿDƒ|$uŠE„öuÚ@‹D$A‰$è¦fïÀÇòA*Åò@ HƒÄ([]A\A]A^A_ÄE„ö„,ÿÿÿÇD$ë“D¾8B¿E1íèFÝÿÿë¤H‰û¿èW¦D‹3H‹hé`ýÿÿ@„öA½…¾ýÿÿÆD$ÇD$E1íé4þÿÿI‹}E1íèËîÿÿH‹=ôL#H‰Â¾ÊB1Àèe­ÿÿH‹5ÞL#¿èÔÜÿÿé/ÿÿÿÆD$ÇD$E1íéçýÿÿf.„AWAVAUATA¼&öAUSHƒìD‹7D‰ðƒàûƒø"„2¿Aƒî%蜥H‹hHÇ@èë¤ÇI‰Ç¾uH‰ë@„ötZE1íë"L‰çè8§ÿÿH‰ÚH…ÀuP¾rHƒÃ@„ö„M…íuÚAƒþA–ÅL‰çè §ÿÿH…À„©E„í… HƒÃ¾3@„öuÚA½(öAëP@€;tGÆHƒÃAƒþv.¾r@„öuë#HƒÃ¾3@„ötL‰ç謦ÿÿH…Àuç€M…í¸(öALDèL‰ïè,èÿÿI‰G¶„ÀtHƒÃˆEHƒÅ¶„ÀuîÆEHƒÄ[]A\A]A^A_ÃH‰ÚI‰ÝéÿÿÿDH‰û¿èk¤D‹3L‹`éµþÿÿDf.„S¿èE¤¿H‹Xè7¤H‹xH‰Þè«öÿÿ‰Ãè„£fïÀÇò*Ãò@ [ÃDf.„ATU¿Sèò£¿H‹hèä£L‹`H‰ïèX¥ÿÿL‰çH‰ÃèM¥ÿÿ|èÄæÿÿL‰æH‰ÇH‰Ãè&¥ÿÿH‰îH‰Çè[£ÿÿè£ÇH‰X[]A\ÀS1Ò‰û1ö¿hèçÿÿ‰XH[Ãf.„AVAUATUSD‹oH¿èZ£Aƒý1ÀHƒÄ8[]A\A]A^A_ÃfDƒÇ뺃Á벸0Çùê"+- #H^f‰òê"ë @Æ?HƒÃ¾3¿Èxcè| ÿÿH…ÀuçLL$,LD$#HL$(HT$$¾úBH‰ßèf£ÿÿƒøtqLD$,HL$#HT$(1À¾ BH‰ßèC£ÿÿƒøtNLD$,HL$#HT$(1À¾üBH‰ßè £ÿÿƒøt+LD$,HL$#HT$(1À¾ýBH‰ßèý¢ÿÿƒø… ÿÿÿ@¾t$#¿BèÑŸÿÿH…À„ñþÿÿHcD$,€<…âþÿÿòD$L‰æH‰ï¸è3¥ÿÿ¸éÄþÿÿ7L‰çHÿ‰D$Lcè‰L$è0Ÿÿÿ…ÛA‰ÀH˜ÆD‹L$„7ò"{1Àò ({„ƒÀò^Á9Øuõòl$¸‰L$D‰D$f(ÍfT 5{f.Áf(ÍòXÈDGøf(ÁòL$èf¤ÿÿòL$D‹D$f(ÐHcL$ò\Èf. ¾z†SfïÀò,úC¶,BˆD-…ÿ„Ûƒùÿ‰L$,tA¹gfffò zë(DHcñA¶4<#„¨…ÿt>E1ÿˆD5ƒéƒùÿt?E…ÿtØ…ÿ…8HcÁƒéƒùÿÆD-„!HcñA€<4#„fƒéÆD5 ƒùÿu¡E1ÿÇD$,ÿÿÿÿE…ÿ…„…ÿ…|‹T$,…ÒHcÂxfÆD Hƒè…Àyó‹t$ò ×yƒÆD9ÆHcÖ}.@òYÁfïÒò,Àò*ÐH˜¶€BˆDHƒÂA9Ðò\ÂÖM…ö„ A€>„A€~„õE…ÀŽì1ÒëHè€8.„øƒÂD9ÂÍHcÂHL€9,uÛA¶ƒÂˆHcÂëÍDòt$A¿fW5Tyòt$é$üÿÿf„HcñA¶4<#…Ÿþÿÿò^щøA÷鉸ÁøÁú)Â’À)ÇHc×ò,ú…ÿu…Òއ¶‚BˆD5éfþÿÿE1ÿ뻋D$ÆD 0ƒèE…ÿ‰D$,„˜…Àx‹|$H˜ÆD-Wýé’þÿÿ¸éÜûÿÿL‰æH‰ï膚ÿÿ¸éÇûÿÿA¶NƒÂˆéùþÿÿfïÿò_ùf(Çé ýÿÿÆD5 éåýÿÿL‰çE1íèœÿÿA‰ÀH˜¹ÿÿÿÿÆDÇD$òxéþüÿÿ‰L$,é þÿÿ‰Âé þÿÿòëwéáüÿÿfDAWAVAUATUSH‰ýHƒì(‹_HƒûA'ƒû</E1äƒû+4ƒû<ƒûC‡ÿ$ÝBD¿ èšI‰Æ¿ èù™I‰Ä¿ èì™I‰Å¿ èß™I‰ÇëµòA,N òA,T$ òA,u òA, èÜFH‰Ãf„è ™ÇH‰XHƒÄ([]A\A]A^A_ÃòA,N òA,T$ òA,u òA, è´yH‰Ãë¿I‹mH‰ïèãšÿÿòA,\$ …ÛI‰ÅŽ›M‹gL‰çèÅšÿÿ9ÃM؃ë…Û‰\$x7HcÃMcíIÄëf.„ƒëIƒìƒûÿ‰\$tL‰êH‰îL‰ç袘ÿÿ…ÀuÞfïÀƒÃò*ÃòD$ëTI‹oòA,\$ H‰ïèXšÿÿ9Ã…Û¸I‹uOÃH˜H|ÿè¡ÿÿH…À„÷ fïÀH)èHƒÀòH*ÀòD$èò—òD$Çò@ HƒÄ([]A\A]A^A_ÃI‹òA,E òA,T$ pÿTþè¥îÿÿH‰ÃéþÿÿI‹_H‰ßèÁ™ÿÿòA,u H‰ßƒî‰Âè~îÿÿH‰ÃévþÿÿM‹gM‹mI¾,$L‰ã@„ít-@¾Å€úw 艠ÿÿH‹‹¨ˆHƒÃH¾+@„íuÔA€<$e…, A€|$n… A€|$v… A€|$… L‰ïè­–ÿÿH‰ÇèÛÿÿH‰ÃéíýÿÿòAG òA_E òD$éïþÿÿM‹eI‹oL‰çèö˜ÿÿH‰ïI‰Åèë˜ÿÿXÿ…Û‰\$ˆ^þÿÿHcÃMcíHÅëƒëHƒíƒûÿ‰\$„>þÿÿL‰êL‰æH‰ïèΖÿÿ…ÀuÚé'þÿÿI‹u€>„b I‹_H‰ßèlŸÿÿH…À„M fïÀH)ØHƒÀòH*ÀòD$éQþÿÿI‹_H‰ßè\˜ÿÿòA,M ‰ÆPÿH‰ß)ÎèíÿÿH‰ÃéýÿÿòAG è„™ÿÿò$òAE èt™ÿÿò $ò^ÈòL$éùýÿÿòAW òA] f(ÊfïÀò^Ëò,Áò*ÀòYÃò\ÐòT$éÆýÿÿM…ä„Ö I‹T$I‹uH‹=$=#òAG è©öÿÿ…À…i ¿(öAè—ÙÿÿI‹UH‹=ü<#H‰Ã¾B1ÀèmÿÿH‹5æ<#¿èÜÌÿÿéGüÿÿòAE òA]G òD$éIýÿÿfïÀòA,G òA,U 1Ðò*ÀòD$é(ýÿÿfïÀòA,G òA,U Ðò*ÀòD$éýÿÿfïÀòA,G òA,U !Ðò*ÀòD$éæüÿÿI‹òA,U 1öƒêè¹ëÿÿH‰Ãé±ûÿÿòAG òAM èPšÿÿòD$é®üÿÿI‹òA,u èêÿÿòD$é”üÿÿ¿è!ØÿÿòAO H‰Ãf(Áò $è:œÿÿò,Àò $=ÿ‰D$‡” ÆC‹D$ˆé3ûÿÿI‹oH‰ïèW–ÿÿXÿ‰\$èkÿÿHcÓH‹8ë…Òx‰L$H‰ÊH¾tHJÿöDw uäÆDH‹H¾EöDB tHƒÅH¾EöDB uðH‰ïèè×ÿÿH‰ÃéÀúÿÿI‹oH‰ïèä•ÿÿXÿ‰\$èøœÿÿH‹0HcÃë …Àx‰T$H‰ÐH¾LHPÿöDN uäÆDH‰ïè—×ÿÿH‰ÃéoúÿÿI‹¾èñèÿÿòD$éoûÿÿI‹oH‰ïèz•ÿÿxèòÖÿÿH‰ÃèzœÿÿºÿÿÿÿDƒÂH‹‰T$HcÒH¾t‹ ±ˆ HcL$€< H‰ÊuÙéúÿÿI‹oH‰ïè(•ÿÿxè ÖÿÿH‰Ã舒ÿÿºÿÿÿÿƒÂH‹‰T$HcÒH¾t‹ ±ˆ HcL$€< H‰ÊuÙé´ùÿÿèÿ›ÿÿI‹_H‹ë fDHƒÃH¾öDB uñH‰ßè©ÖÿÿH‰ÃéùÿÿòAG ¿è±æÿÿH‰ÃéiùÿÿI‹GfïÀ¶ò*ÀòD$éhúÿÿòAG ¿èæÿÿH‰Ãé7ùÿÿI‹HT$1À¾8Bè²—ÿÿƒø‰D$fïÀ„*úÿÿòD$éúÿÿfïÉòAG f.ȇs èÌ™ÿÿòD$éúùÿÿòAg 1Àò$$èèÿÿòY$òD$éØùÿÿfïÀòAO f.Á‡V f.Èv•ò-õoòl$é«ùÿÿòAG fTpòD$é’ùÿÿòAG òYÀéZÿÿÿfïÒòAG f.ÐòQÈvò $謙ÿÿò $òL$éUùÿÿfïÀòAO f.Áò $f(Á‡Ýèú˜ÿÿò $ò\ÈëÈH‹=˜8#òAG ¾Î/B¸è™ÿÿH‹=|8#èÕÿÿH‰Ãéß÷ÿÿ‹QÞ"I‹…Ò…Úè(“ÿÿ‰Ã‹8Þ"…Àtè÷•ÿÿ¾¿è•ÿÿ¾¿èù”ÿÿè’ÿÿ1ÿ‰Æèk—ÿÿfïÀò*ÃòD$鑸ÿÿI‹_¾BHÇÄÝ"XycDzÝ"H‰ßèr—ÿÿH…ÀI‰Å„ðfD1Ûë@ˆƒàxcHƒÃHƒûd„L‰ïA‰Ü蹓ÿÿƒøÿ‰ÅuÚHcÃÆ€àxc¿xH‹\Ý"è§ÓÿÿH‹PÝ"H‰H‹ ÖÜ"H‹H‰H‹ ÑÜ"H‰HH‹ ÎÜ"H‰HH‹ ËÜ"H‰HH‹ ÈÜ"H‰H H‹ ÅÜ"H‰H(H‹ ÂÜ"H‰H0H‹ ¿Ü"H‰H8H‹ ¼Ü"H‰H@H‹ ¹Ü"H‰HHH‹ ¶Ü"H‰HPH‹ ³Ü"H‰HX‹ ±Ü"‰H`¶ «Ü"ˆHdH‹D‰`hHÇ@pH‹ƒ“Ü"HƒÀpƒýÿH‰Ü"…çþÿÿL‰ïèï‘ÿÿ1ÀèHîÿÿH‰ÃéöÿÿòAG èÕÿÿòD$é÷ÿÿòAG èo”ÿÿòD$éýöÿÿòAG è¹’ÿÿòD$éçöÿÿòAG 胒ÿÿòD$éÑöÿÿòAG è­–ÿÿòD$é»öÿÿòAG èg–ÿÿòD$é¥öÿÿI‹LD$1É1Ò1öèˆîÿÿfïÀò*D$éYüÿÿI‹E1ÀHL$ëÚI‹HT$E1À1É1öèVîÿÿfïÀò*D$òD$éJöÿÿI‹Ht$E1À1É1Òè,îÿÿfïÀò*D$òD$é öÿÿòAG èŒH‹=7#H‰ÆH‰ÃèJŽÿÿéåôÿÿ¿dè‹ÑÿÿH|$H‰Ãè¾’ÿÿH|$èÄÿÿºlBH‰Á¾dH‰ßè”ÿÿ1ÿ蘒ÿÿH‰ßH‰ÅèÍÿÿ‰ê+57#H<¾uB1Àè••ÿÿé€ôÿÿ¿dè&ÑÿÿH|$H‰ÃèY’ÿÿH|$è_ÿÿºZBH‰Á¾dH‰ß躓ÿÿéEôÿÿ1ÀèþãÿÿòD$éLõÿÿ1öòA, ‰|$è"#…À…)ôÿÿHcD$ö… ÖcH‰Â…ãH‹=4#¾LB1Àè•ÿÿH‹5z4#¿èpÄÿÿHÇD$éëôÿÿòA,_ …ÛH‹=£Ö"…ÜèXÿÿfïÀò*Àé›úÿÿòAG è ÿÿòD$é®ôÿÿM‹oM¾eL‰ëE„ät1@A¾Ä€úw è©•ÿÿH‹B‹ ˆHƒÃL¾#E„äuÓ¿áõA¹ L‰îó¦…]‹Ä3#ƒø„؃ø„óƒø„Øƒø„«…À…,¿löAè"ÐÿÿH‰ÃéúòÿÿM‹gI¾,$L‰ã@„ít5f„@¾Å€úw è •ÿÿH‹‹¨ˆHƒÃH¾+@„íuÔ¿B¹ L‰æó¦„›¿˜B¹ L‰æó¦„{¿¢B¹ L‰æó¦„®¿­B¹ L‰æó¦„ª¿ºB¹ L‰æó¦„¨¿ÆB¹ L‰æó¦„‚¿çB¹ L‰æó¦„m¾*öAL‰çèdÿÿ…À„W¾Ä‰BL‰çèOÿÿ…À„1¾ÖBL‰çè:ÿÿ…À„ ¾ÞBL‰çè%ÿÿ…À„ÒA€<$#„­¾íB¿èCÂÿÿfïÀéšøÿÿf.„I‹èÇŒÿÿH…ÀˆfïÀòH*ÀépøÿÿòAG 赋ÿÿòD$éƒòÿÿ¾°B¿èëÁÿÿéeñÿÿH‹=ß1#¾yBH‰Ú1ÀèP’ÿÿH‹5É1#¿è¿Áÿÿ¿(öAé+óÿÿDA¼dé úÿÿ¾`B¿è–ÁÿÿfïÀéí÷ÿÿ¿@B¹ L‰æó¦„ãòÿÿ¾íB먿B¹ L‰îó¦„\¿ B¹ L‰îó¦„[¿Ä‰B¹L‰îó¦„Ú¿B¹L‰î󦄱¿+B¹ L‰îó¦„û¿8B¹L‰îó¦„Ñ¿*öA¹L‰îó¦„AA€}o…ûA€}s…ðA€}…å¿÷AèCÍÿÿH‰ÃéðÿÿH‹=¡0#è,ÍÿÿH‰ÃéðÿÿfïÀò*Ø3#éãöÿÿH‰<$躑ÿÿH‹<$éøÿÿ1ö‰ßèØ…ÀfïÀ…¼öÿÿHcÃö… Öc„H‹<Å ÕcéñûÿÿH‹=70#f(Á¾<B¸è¤ÿÿH‹50#¿èÀÿÿéïÿÿò öffWÁ) $èIÿÿf( $fWÁòD$énðÿÿò5­fòt$é[ðÿÿfWºfèÿÿò $òXÈòL$é:ðÿÿH‹<Å Õc褌ÿÿéýÿÿfïÀò*2#éîõÿÿH‰ÂfïÀHÑêƒàH ÂòH*ÂòXÀéÐõÿÿ¿úBèöËÿÿH‰ÃéÎîÿÿ1Òé(òÿÿfïÀò*32#é¦õÿÿfïÀò*²Ñ"é•õÿÿH‹=./#‰Ú¾B1Àò$è›ÿÿH‹5/#¿è ¿ÿÿò$é`õÿÿH‹=Q2#è„ËÿÿH‰Ãé\îÿÿH‹=-2#èpËÿÿH‰ÃéHîÿÿ¿ÈöA¹L‰î󦄿ÆB¹ L‰îó¦t¾çBL‰ïèe‹ÿÿ…À…%ýÿÿ‹Ÿ0#…ÒŽÐüÿÿH‹X0#ƒêH‹8HƒÀ‰€0#H‰A0#éâïÿÿH‹=Ñ"èðÊÿÿH‰ÃéÈíÿÿH‹=)0#èÜÊÿÿH‰Ãé´íÿÿfïÀò*@0#é“ôÿÿfïÀò*‡Ð"é‚ôÿÿH‹EXH‹xè¥ÊÿÿH‰Ãé}íÿÿH‹=ÎÐ"è‘ÊÿÿH‰Ãéiíÿÿ¿Ä‰BèÊÿÿH‰ÃéWíÿÿ¿aöAèmÊÿÿH‰ÃéEíÿÿ¿?üAè[ÊÿÿH‰Ãé3íÿÿ¿göAèIÊÿÿH‰Ãé!íÿÿH‹= "#è5ÊÿÿH‰Ãé íÿÿ¿ÏBè#ÊÿÿH‰ÃéûìÿÿH|$èáŠÿÿH‹D$H+…/#fïÀòH*ÀéÇóÿÿfïÀò*S-#é¶óÿÿfïÀò*>/#é¥óÿÿ1ö¿ÏBèÙ†ÿÿé”óÿÿ@Hƒì¿èB†fïÉò@ f.ÈwCò,ÀfïÉò*ÈHcÐò\ÁòYÐcòH,ÀH‰$I‰à1É1Ò1ö1ÿH‰D$èZŠÿÿHƒÄÃD1À1Òë×f.„Hƒì¿è…ÿÿH‹=ëÎ"HƒÄérŠÿÿf1Ò1ö@€ÿSS‰ût@€ÿDt¾Û¿Oè@Éÿÿ‰XL[þۿPè+Éÿÿ‰XL[ÃfDAVAUATUSHƒìƒLs„B¿A½E1äèW…ò@ òD$¿èB…H‹hL¾uH‰ëE„öt.A¾Æ€úw è©ÿÿH‹B‹°ˆHƒÃL¾3E„öuÓ¿¢B¹ H‰îó¦u E„í…¹¿ÈöAH‰îó¦—Á’ÂM…ä•À8Ñu*„Àt&L‰çè.ÈÿÿH‰÷#HƒÄ[]A\A]A^Ãf.„¿aB¹H‰îó¦tG¿B¹ H‰îó¦uv„ÀtrL‰çèòS…Àt·H‹=Ÿ.#HƒÄL‰æ[]A\A]A^ºé΃ÿÿfDM…ät;HƒÄL‰ç[]A\A]A^é_Äÿÿ€¿è„L‹`M…äA”ÅéÂþÿÿfD¿ B¹ H‰îó¦u„ÀtHƒÄL‰ç1À[]A\A]A^éÝY¿áõA¹ H‰îó¦u)„Àt%èSŒÿÿI¾$H‹‹ƒèd<‡N¶Àÿ$Å( B¿”B¹H‰îó¦u„ÀtH‹5§Ì"HƒÄL‰ç[]A\A]A^éó…ÿÿ¿›B¹ H‰îó¦u"E„ítòH,|$HƒÄ[]A\A]A^镆ÿÿD¿§B¹H‰îó¦u E„í…Ñ€}#¾(BtH‹=ô)#¾»BH‰ê1ÀèeŠÿÿH‹5Þ)#¿HƒÄ[]A\A]A^éȹÿÿò,D$‰¤,#HƒÄ[]A\A]A^ékAH‹=¤)#¾fBºd1ÀÇŠ)#è ŠÿÿH‹5‚)#¿ë¢Çm)#éÕýÿÿÇ^)#éÆýÿÿÇO)#é·ýÿÿÇ@)#é¨ýÿÿ¾‚BéWÿÿÿH‹.#H‹÷-#¹ÿÿÿÿH9Ðt H‹@ƒÁH9Ðuôò,T$9Ê„lýÿÿH‹=ü(#¾ØB1Àèp‰ÿÿH‹5é(#1ÿé ÿÿÿfUSHƒìƒLStt¿1íèèòH òL$¿èÓò,X 1ö‰ßè…Àu1HcÃö… ÖctDH…ítoH‹4Å ÕcHƒÄH‰ï[]é„ÿÿf„HƒÄ[]Ãf„¿èvH‹hë“H‹=I(#‰Ú¾PB1À軈ÿÿH‹54(#HƒÄ¿[]é$¸ÿÿ@fïÀòT$f.Âw f.è^vHƒÄ¾pB¿[]éñ·ÿÿH‹4Å Õcò,|$HƒÄ[]é„ÿÿ€S1Ò‰û1ö¿èÄÿÿ‰XH[Ãf.„Hƒì‹GH…ÀuU¾¿èf„ÿÿ¾¿èW„ÿÿ¾¿èH„ÿÿ¾¿è9„ÿÿ¾¿HƒÄé&„ÿÿfD¾@g@¿è„ÿÿ¾@g@¿è„ÿÿ¾@g@¿èóƒÿÿ¾@g@¿èäƒÿÿ¾@g@¿HƒÄéуÿÿUSH‰úH‰û1ö¿lHƒìè¨ÃÿÿH‰ßH‰ÅèmÃÿÿH‰EHƒÄ[]ÃfUSHƒìƒ?lH‹oXtH‹GH‰E HƒÄ[]ÃfH‰ûH‹€?uLH‹E(Hƒ=ØË"H‰E t$ƒ8ptH‹n(#ë@H‹@ƒ8pH‰E tH9ÐuîH‰CÇmHƒÄ[]ÃD¾ èÞŸH…Àu©H‹SH‹=>&#¾ÎBè´†ÿÿH‹5-&#HƒÄ¿[]é¶ÿÿf.„S1Ò1ö¿pHƒìòD$è·Âÿÿ¿H‰Ãè ÂÿÿH‹#Ë"H‰CòD$H…ÒtH‰Z@H‰ Ë"òÇCLdHƒÄ[ÄUS1Ò1öH‰ý¿pHƒìèYÂÿÿH‰ÃH‹ÏÊ"H…ÀtH‰X@H‰ïH‰¼Ê"èÂÿÿÇCLsH‰CHƒÄ[]ÃDS‰û1Ò¾Û1ö¿oè Âÿÿ‰XL[ÀATUSH‹_X‹oLH‹C H…ÀuëBf.„H‹@@H…ÀH‰C t+ƒ8puîH;XXuè@¾Õ;PL¾˜Bt*[]A\¿éì´ÿÿ@[]A\¾äB¿éÕ´ÿÿDèK}@€ýdI‰Ät2ÇH‹C H‹xè?ÁÿÿI‰D$H‹C H‹@@H‰C []A\Ãf„ÇH‹C H‹PH‹@@òòAD$ H‰C []A\Ãf.„@€ÿ=‰øtX~&<{¿Yt<}t9<>¸XDø1Ò1öéöÀÿÿfD¸aDø1Ò1öé6¿ÿÿfDI¾D$¿žBIl$A‹4‡èÙsÿÿH…À„äH-žBHƒøÔAÁæIl$Dðˆé2ÿÿÿDÆ é%ÿÿÿÆ éÿÿÿ„Æ é ÿÿÿ„Æ éýþÿÿ„Æ éíþÿÿ„ÆéÝþÿÿ„ÆéÍþÿÿ„Æ\é½þÿÿ„Æ?é­þÿÿ„Æ'éþÿÿ„Æ"éþÿÿ„Æ\A¶D$HƒÃˆéqþÿÿD‰ðˆégþÿÿ1Àˆé^þÿÿf„S1Ò‰û1ö¿qè´ÿÿ‰XL[Ãf.„Hƒì¿èÒpfïÀf.@ sHƒÄÃfH‹5q#¿HƒÄé‹§ÿÿf.„S1Ò‰ó1öè4´ÿÿ‰XH[ÃDf.„‹b¹"S‰ÁÁù‰Ê1Â)ÊúÒtV…ÀHc‹… Öc~ƒã¾Bt‰Ø[Ãf.„ƒãu+¾¸ BH‹=#1ÀèˆwÿÿH‹5#¿è÷¦ÿÿ‰Ø[û‰Ø[ÀAUATUSHƒìH‹= #H;=¹"tvH‰|$è|xÿÿH‹|$H‰Åë"f‰Ö¿) Bè”qÿÿH…Àu$CƒøvH‹=È #è›rÿÿHcÐH‹EH‰ÓöPu˃û tƒûÿtHƒÄ‰Ø[]A\A]Ã@HƒÄ1Û‰Ø[]A\A]ÃL‹%Yã"M…ät I¾,$@„íuYèÕþÿÿ…À„›‹¼"Æ@ã"H‹Q #…Àt H;^¸"„„¾'¿  cèyrÿÿH¾-ã"Ç' #A¼  cèœwÿÿL‹(ë)€‰Þ¿) Bè´pÿÿH…À…@ÿÿÿ…Û„SÿÿÿI¾,$IƒÄAöDm@¾ÝL‰%©â"uÇéÿÿÿL‹%›â"I¾,$룿èjvÿÿH‹=ã·"¸ÿÿÿÿH…ÿt·º'¾  c¿Øè„uÿÿ1ÿè=vÿÿ1ö¿  cèárÿÿH…ÀtÆ Æ@‹§·"ƒè9ØH‹=‘·"¾è7vÿÿH‹=€·"èëoÿÿé ÿÿÿfDS‰ûè˜ýÿÿ…Àt6H‹5% #H;56·"t ‰ß[éìrÿÿ@H‹áá"H=  cv HƒèH‰Îá"[Ãff.„USHƒì‹_LèBýÿÿ…À„°C«ƒø ‡žÿ$ÅÈB€¿è–m¿H‰Ãè‰m¿H‰Åè|mƒ=Q¶"dH‹=N#„•H…Û„H‹SH‹uò@ è½Íÿÿ…À…UH‹UH‹=#¾B»dè‹tÿÿH‹5#¿èú£ÿÿf.„‰æµ"HƒÄ[]ÿ1Ûèôl¿H‰Åèçlƒ=¼µ"dH‹=¹#…Æ HƒÇé_ÿÿÿ€¿è¶lò@ fïÉò,Àò*Èf.ÁŠ[…Uò ÝPf.È‚Cf.ÓP‚5ƒ=Jµ"dH‹=G#¹öAº(öA¾- BHDÑHcÈ1Àèªsÿÿé0D¿è6lH‹hè­ûÿÿ…À„ÿÿÿH‰ïè]ôÿÿéÿÿÿ„‹Ò¸"…À„‚H‹µ"H9#urH‹=;µ"½ÿÿÿÿH…ÿt¿/‹0µ"ƒè9èŽu1ÒècsÿÿH‹= µ"èwmÿÿé¢þÿÿfH‹‰#Æ H‹#Æ@H‹-t#èûÿÿ…À„wþÿÿé]ÿÿÿfH‹Y#‹[´"Æ ‹R´"Áø1Â)Â;I´"H‹6#uµÆ@ H‹)#Æ@먃=´"dH‹=#¸öAº(öA¾3 BHDиèurÿÿH‹-î#è‰úÿÿ…À…Üþÿÿ»déçýÿÿ€H‹É#èdúÿÿ…ÀtßH‰ßèóÿÿëÕfD1Òénýÿÿ¾ƒíè¼rÿÿH‹=´"éãþÿÿGÿƒø vhÿÒt`S‰ó‰ú…Û¹ ¾è BtH‹=>#1Àèßqÿÿ‰M#¸[ÃfH‹=I#1ÀèÂqÿÿH‹5;#¿è1¡ÿÿ¸[Ãf.„1ÀÃf.„AWAVAUATUSHƒì‹GL‰ÃA‰ÅƒãAƒå¨…E…í…Ò¿Bèh­ÿÿH‰Å¿èëiH‹xèR­ÿÿ…ÛI‰Æ¸…ÉfD‹… Öc‰ÃE…À„ÃHƒÀHƒø uãH‹d#H¹reached Hºmaximum H‰H‰PH¹number oHºf open fH‰HÇ@ ilesH‰PÆ@$Ç4#M…ötL‰÷è³®ÿÿH…í„jHƒÄH‰ï[]A\A]A^A_é”®ÿÿ@¿OBè–¬ÿÿH‰Å¿8 B艬ÿÿ…ÛI‰Æ¸„9ÿÿÿ¿èÿhò,X èUhE…íH‰$HÇ@ Çt‹=`#…ÿ…X¾‰ßèþÿÿ…À…HcË … ÖcH‰D$…É…ÅH‹=>±"E1ÿ€?ué‰J‹<ýHucIƒÇ€?„sH‰îMcçèlÿÿ…ÀuÜE…í…“H‰îL‰÷èønÿÿH…À„°H‹L$H‰Í ÕcfïÀB‹¥ÐBH‹L$Çû#ò*É ÖcH‹$ò@ é®þÿÿfD¿èþgH‹xèe«ÿÿE…íH‰Å…Æþÿÿéïýÿÿ@HƒÄ[]A\A]A^A_þOBL‰÷è3nÿÿH…ÀH‰y´"„H‰™°"éfÿÿÿ„H‹=Q#‰Ú¾E B1ÀèënÿÿÇU# éþÿÿ@H‹)#Hºcannot oH¹pen prin¾sH‰Hºter: alrH‰HH‰PH¹eady priHºnting grH‰HH‰P Ç@(aficf‰p,Çæ#é­ýÿÿDH‹=¹#H‰ê¾^ B1ÀèRnÿÿǼ#éƒýÿÿH‹‘#Hºlready iH¹stream aH‰PºeH‰Ç@n usf‰PÇx#é?ýÿÿèúeÿÿ‹8è¹ÿÿH‹=D#H‰ÁL‰ò¾åöA1ÀèÚmÿÿÇD#é ýÿÿH‹#H¹could noH‰H¹t open lÇ@terH‰HH¹ine prinÇ#H‰HéÅüÿÿDUS¿Hƒìèfò,X ‰ÚÁú‰Ð1Ø)Ð=ÒtG1ö‰ßè@ûÿÿ…Àu:Hcë‹­ Öc…ÒtN;Ä®"t.H‹<í Õcè gÿÿHÇí ÕcÇ­ ÖcHƒÄ[]ÃH‹=a²"è¼gÿÿÇ~®"ÿÿÿÿëÇH‹=i #‰Ú¾{ BèÝlÿÿH‹5V #HƒÄ¿[]éFœÿÿfDAUATUSHƒìƒ?x„¿” B賨ÿÿI‰Å¿è6eò@ ¿òD$è!eò,h èwdHÇ@ ÇI‰ÄI¾]„Ût"èˆmÿÿL‰êDH‹HƒÂ‹ ™ˆJÿH¾„Ûuë¿” B¹L‰îó¦—Ã’À)þۅÛt-A€}e…šA€}n…A€}d…„A€}u}»L‰ïèè©ÿÿ‰êÁú‰Ð1è)Ð=ÒtN1ö‰ïè½ùÿÿ…ÀuAHcÅö… Öc„¸H‹<Å ÕcòD,l$‰ÚIcõèiÿÿ…À…Áò ×AòAL$ HƒÄ[]A\A]ÃD¿š B¹L‰î󦻗’À8„fÿÿÿH‹=§ #L‰ê¾( B1Àè@kÿÿǪ # HƒÄL‰ï[]A\A]é$©ÿÿ@¿è¶cH‹xè§ÿÿI‰ÅéeþÿÿDH‹=Q #‰ê¾Ÿ B1ÀèëjÿÿÇU # HƒÄ[]A\A]ÃH‹=' #D‰é‰ê¾X B1Àè¾jÿÿÇ( # é'ÿÿÿDf.„‰øUSÁø1ö‰ý‰ÃHƒì‰=¬"1û)Éßènøÿÿ…Àu4ûÒt:HcÛ…íHÇþ"HÇþ"H‹Ý Õc~=H‰þý"HƒÄ[]ÀH‹¬"H‰âý"H‹ã«"H‰Ìý"HƒÄ[]ÃDH‰¹ý"HƒÄ[]ÃfS¿è•bò,X ƒ=e #~&H‹=` #¾€ B‰Ú1ÀèÒiÿÿH‹5K #¿èA™ÿÿ‰ß[éÿÿÿf„USH‰ý¿Hƒìè=bò,X 1ö‰ßè÷ÿÿ…ÀuK‹UH‰Ø÷Ø…ÒDØèza‹”ª"fïÀƒ=å#Çò*Âò@ (‰rª"HƒÄ‰ß[]é¥þÿÿDHƒÄ[]Ãf„H‹=©#‰Ù¾¨ B1ÀèiÿÿH‹5”#¿芘ÿÿë°„US¿Hƒìèaò,X ûÒt31ö‰ßèÊöÿÿ…ÀuèÑ`…ÛH‰ÅÇu"HÇ@ HƒÄ[]ÃDè«`H‰ÅÇHcÛö ÖctEH‹<Ý Õcèèeÿÿƒøÿt#HÇE H‹4Ý ÕcHƒÄ[]‰ÇéöeÿÿfDò  >òM ë•ò>òE HƒÄ[]Ãff.„US‰û‰õ¾Û1ÒHƒì1ö¿kèU¤ÿÿ‰hH‰XLHƒÄ[]ÄAUATI‰üUSHƒìÆl­"D‹oHE…ítn½€yc1Û@èóïÿÿ…À…»Æƒ€ycƃ€ycAƒ|$LsuQè°_¿€ycH‰ÃÇè­£ÿÿH‰CHƒÄ[]A\A]ÃfDè#ðÿÿƒø t ƒø …èïÿÿ…ÀuäAƒ|$Lst¯è__ÇHÇ@ H‰Ã€=Ǭ"t¬HT$1À¾8B¿€ycè¯dÿÿƒøu‘òD$òC HƒÄ[]A\A]Ã@è«ïÿÿ…ÀˆES•ÁE…ít„ÉtHƒÅƒøÿt&ú'HcÚéÿÿÿE…íuƒø t ƒø t„ÉuÔHƒùvh‰Çè9ñÿÿE…íÆƒ€yc…=ÿÿÿèÄîÿÿ…À„0ÿÿÿè7ïÿÿƒø téƒø täPƒú†ÿÿÿ‰Çèúðÿÿé ÿÿÿPƒú†ýþÿÿ‰ÇèâðÿÿézþÿÿDƒøÿ…‹þÿÿHcÚéƒþÿÿ€H‹ ¨"H9êù"tÀH‹±Ò"H…Àt€8uç‹Ñù"…ÀuÝHƒìè$îÿÿ…ÀuHƒÄÿ9öAHƒÄéÊæÿÿf.„USH‰ý1Ò1ö¿nHƒìè ¢ÿÿH‰ïH‰ÃèΡÿÿH‰CHƒÄ[]ÃSH‰ûèÇíÿÿ…ÀtH‰ß[ézæÿÿf.„[Ã@f.„S1Ò‰û1ö¿~诡ÿÿ‰XH[Ãf.„USH‰ýHƒìH¾„Ût$èzfÿÿH‰ê€H‹HƒÂ‹ ™ˆJÿH¾„Ûu뿲 B¹H‰îó¦—À’Â)оÀ…Àt?¶U¸b)Ðt@¿¸ B¹H‰îó¦t{ƒúwuB€}htd¿¾ B¹H‰îó¦uk¸HƒÄ[]À€}luº€}au´€}tàë¬@ƒúru¿€}eu¹€}d„3€}du©€}u£¸ë²€}iu–€}uHƒÄ¸[]Ã…À„¹H‰î¿Ã Bó¦¸@—Æ’Á@8΄nÿÿÿƒúg…€}ru€}eu €}„Oÿÿÿ¹H‰î¿É Bó¦¸@—Æ’Á@8΄+ÿÿÿ¹H‰î¿Ð Bó¦¸@—Æ’Á@8΄ÿÿÿƒúcu€}yu€}au €}„ìþÿÿ¹H‰î¿Õ Bó¦¸@—Æ’Á@8΄Èþÿÿƒúm¸ÿÿÿÿ…ºþÿÿ€}a…°þÿÿ€}g…¦þÿÿ1À€}•À÷؃Èé“þÿÿ€}„Ïþÿÿé¾þÿÿ€}l…æþÿÿ€}u…Üþÿÿ€}„_þÿÿéÍþÿÿ¹H‰î¿É Bó¦¸@—Æ’Á@8΄;þÿÿƒúy…ÿÿÿ€}eu€}lu €}„þÿÿ¹H‰î¿Ð Bó¦¸@—Æ’Á@8΄øýÿÿéÿÿÿ‹GH…Àu‹¨"…À…ëóÃf„‹¨"…Ò„âƒø„YATUSH‰ûèm[ÿÿ„À¿„ ƒ{H„Æè[H‹hH¾]„Ût!ècÿÿH‰ê@H‹HƒÂ‹ ™ˆJÿH¾„Ûuë¿èÉZL‹`I¾$„Ût!èGcÿÿL‰â@H‹HƒÂ‹ ™ˆJÿH¾„ÛuëL‰çè“üÿÿ…À‰ÃˆÑH‰ïèüÿÿA‰ÄA4ÜÁæ[]A\H‹=¼£"é—[ÿÿ€H‹=©£"1öé‚[ÿÿf¾ B¿é!‘ÿÿè;ZH‹hH¾]„Ût#è¹bÿÿH‰êfDH‹HƒÂ‹ ™ˆJÿH¾„ÛuëH‰ïèüÿÿ…À‰Ãˆ¸s@éwÿÿÿèëYƒ{H„‘¾é`ÿÿÿ€H‹=£"¾éïZÿÿ€H‹=‘#L‰â¾Ð B1ÀèaÿÿH‹5{#¿èqÿÿH‰ïè‰ûÿÿH‹=b#A‰ÄH‰ê¾ð B1ÀèÐ`ÿÿH‹5I#¿è?ÿÿéÜþÿÿf.„¿èFYé`ÿÿÿH‹=#H‰ê¾Ð B1Àè‹`ÿÿH‹5#¿èúÿÿéÿÿÿD1À…ÿtOƒÿ¸tEƒÿt;ƒÿ¸t6ƒÿ¸t,ƒÿ¸t"ƒÿ¸t1Àƒÿ•À÷؃ÈÃD¸óÃf„AVAUD‹-m¥"ATUSE…ít$H‹=å¡"è ^ÿÿ[]A\A]A^H‹=Ñ¡"éFÿÿH‹=wÛ"H…ÿtKºnfïɾQB¸ògò$ò* –é"ò\L$òß"ò\ÃòYÂòXËòYÊèwCÿÿHƒÄ[ÃH‹©Þ"H‹5²Þ"H‹=«é"èF@ÿÿò, $òD,D$H‹ƒÞ"H‹5,é"H‹=…é"è @ÿÿH‹=yé"è”EÿÿH‹=ÍÚ"ºyH…ÿ…Rÿÿÿë–D¾;B¿è vÿÿHƒÄ[ÃS1Ò‰û1ö¿ƒè¯‚ÿÿ‰XHÇ@L[ÃUSHƒì(D‹kÚ"E…҄‹_Hƒûÿ„N…Û‹oL…ÃD‹ `Û"E…É„D‹LÛ"E…À„}ò3Û"Ç5Û"ò Û"ò$ò Û"òL$òD$òèÚ"ò øÚ"òD$òâÚ"ò $òÅÚ"ÇÛÚ"ò »Ú"Ht$H‰çèVîÿÿHt$H|$èGîÿÿƒå„®ò, $H‹"Ý"HƒìH‹5'Ý"H‹= è"ò,D$ PòD,L$ òD,D$èfFÿÿH‹ïÜ"H‹5˜ç"ò,L$H‹=ëç"ò,D$(òD,L$ òD,D$‰$è/FÿÿH‹=Èç"èãCÿÿH‹=Ù"ºyY^H…ÿtUfïɾ`B¸ò%ÒÜ"ò$ò* 9ç"f(ÙòT$ò\L$òYÄò\\$òYÔòYÌòYÜèAÿÿH‹=»Ø"èæAÿÿHƒÄ([]À¾;B¿èùsÿÿHƒÄ([]Ãf¿è=ò@ ¿òD$èñ<òH ƒûòL$… ‹=kÙ"…ÿ…_òD$ÇSÙ"ò ?Ù"Ç=Ù"ò Ù"òÙ"òÙ"éZÿÿÿÇÙ"Ç Ù"HƒÄ([]ÃDò, $H‹|Û"HƒìH‹5yÛ"H‹=ræ"ò,D$ PòD,L$ òD,D$è¸DÿÿH‹IÛ"H‹5êå"ò,L$H‹==æ"ò,D$(òD,L$ òD,D$‰$èDÿÿH‹=æ"è5BÿÿH‹=n×"XZH…ÿ„¨þÿÿºnéIþÿÿf„¿èÆ;ò@ ¿òD$è±;ò@ ‹6Ø"òL$ò$òD$…Àò Ø"òØ"…:ýÿÿéýÿÿ„òè×"‹ò×"òD$òÜ×"ò$òD$ë²€USHƒì‹¬Ö"…À„\‹H‰û-ƒàý…¹¿è;ò,@ ¿‰D$ èü:ò,@ ¿‰D$èé:ò,x ÿÿ‰|$‹L$D‹D$ ‡ËAøÿ‡¾ùÿ‡²D‰Â‰Îè8êÿÿHcè‹H‰-ÔÙ"H‰ê-ƒø†H‹5”Ù"H‹=ä"èx@ÿÿH‹5Ù"H‹=Šä"H‰êè¢BÿÿëX¿èV:H‹hLD$ HL$HT$1À¾uBH‰ïè?ÿÿƒøtH‹=á"¾¨BH‰ê1ÀèyAÿÿH‹5òà"¿èèpÿÿHƒÄ[]ÉúH‹=×à"¾`B1ÀèKAÿÿH‹5Äà"¿èºpÿÿHƒÄ[]þ;B¿è¡pÿÿHƒÄ[]Ãf.„‹|$ÿÿ‡qÿÿÿ‹L$ùÿ‡aÿÿÿD‹D$ Aøÿ†ÌþÿÿéJÿÿÿf„H‹5Ø"H‹=‚ã"è]?ÿÿH‹=vã"H‹5gØ"H‰êè‡AÿÿH‹=ÀÔ"H…ÿ„/ÿÿÿfïÀ¾~B¸ò*D$ò^Ûèæ<ÿÿfïÀH‹=‹Ô"¾B¸ò*D$ò^³è¾<ÿÿfïÀH‹=cÔ"¾œB¸ò*D$ ò^‹è–<ÿÿH‹ ?Ô"º ¾¿«Bè+@ÿÿH‹=$Ô"èO=ÿÿé’þÿÿf.„USHƒì(‹GL¿‰Åƒà‰Ãƒåès8òX ¿ò\$è^8ò@ ¿òD$èI8Ht$ò@ H|$òD$èOèÿÿ‹¡Ó"…À„…Û„I…í…!òl$H‹×"HƒìòL$ H‹5×"f(ÅH‹=â"ò\ÍòXÅòD,ÁòH,èòD$hZjò\Åò,ÈUA‰éèÈ8ÿÿHƒÄòl$òL$ H‹±Ö"òD$H‹5Tá"ò\ÍH‹=©á"hZò\ÅjUA‰éòD,Áò,Èè|8ÿÿHƒÄ H‹=á"èœ=ÿÿH‹ ÕÒ"H…É„Kº¾¿²Bè¸>ÿÿ¹nfïÀƒûH‹=¥Ò"ò uÖ"ÒòT$ƒâõò*Öà"ò\D$ƒÂyòYѾµB¸òYÁòYL$è´:ÿÿH‹=]Ò"èˆ;ÿÿHƒÄ([]Ã…í„Àòt$H‹ÓÕ"HƒìòL$ H‹5ÊÕ"f(ÆH‹=¿à"ò\ÎòXÆòD,ÁòH,èòD$hZjò\Æò,ÈUA‰éèÿ=ÿÿHƒÄòt$òL$ H‹pÕ"òD$H‹5 à"ò\ÎH‹=`à"hZò\ÆjUA‰éòD,Áò,Èè³=ÿÿHƒÄ éÓf.„¾;B¿èálÿÿHƒÄ([]Ãf.„òd$H‹óÔ"òL$H‹5öÔ"f(ÄHƒìò\ÌH‹=ãß"òXÄòD,ÁòH,èòD$hZjò\Äò,ÈUA‰éè'=ÿÿHƒÄòd$òL$ H‹Ô"òD$H‹53ß"ò\ÌH‹=ˆß"hZò\ÄjUA‰éòD,Áò,ÈèÛ<ÿÿHƒÄ H‹=`ß"è{;ÿÿH‹ ´Ð"H…É„*ÿÿÿº¾¿²Bè—<ÿÿ¹yéÚýÿÿDò|$H‹Ô"òL$H‹5Ô"f(ÇHƒìò\ÏH‹=ûÞ"òXÇòD,ÁòH,èòD$hZjò\Çò,ÈUA‰éè¿5ÿÿHƒÄò|$òL$ H‹°Ó"òD$H‹5KÞ"ò\ÏH‹= Þ"hZò\ÇjUA‰éòD,Áò,Èès5ÿÿHƒÄ éòüÿÿf.„USHƒìH‹GL¿‰Åƒà‰Ãƒåè34ò@ ¿òD$(è4ò@ ¿òD$ è 4ò@ ¿òD$èô3ò@ ¿òD$èß3ò@ ¿òD$èÊ3Ht$ò@ H‰çò$èÓãÿÿHt$H|$èÄãÿÿH|$ Ht$(èµãÿÿòH,D$(òH,T$‹=ùÎ"f‰D$:òH,D$ f‰T$2f‰D$8òH,D$f‰T$>f‰D$6òH,D$…ÿf‰D$4òH,$f‰D$0f‰D$<„ž…Û„…í…¦H‹/Ò"H‹58Ò"HL$0H‹=,Ý"E1ÉA¸è®8ÿÿH‹Ò"H‹5°Ü"HL$0H‹=Ý"E1ÉA¸è†8ÿÿH‹=ïÜ"è 9ÿÿH‹ CÎ"H…É„1º¾¿²Bè&:ÿÿ¹nfïɃûH‹=Î"ò5ãÑ"Òò$ƒâõò* EÜ"f(éƒÂyf(ÙòYÆò\l$(òd$ ò\\$òT$ò\L$òYæ¾BòYÖ¸òYîòYÞòYÎèù5ÿÿH‹=¢Í"èÍ6ÿÿHƒÄH[]ÃfD…í„(HƒìH‹Ñ"H‹5Ñ"jH‹= Ü"A¹A¸HL$@è·2ÿÿH‹èÐ"H‹5‰Û"HL$@H‹=ÝÛ"A¹A¸Ç$è…2ÿÿXZéƒfD¾;B¿èihÿÿHƒÄH[]ÃfHƒìH‹…Ð"H‹5ŽÐ"jH‹=…Û"A¹A¸HL$@è/2ÿÿH‹5Û"H‹QÐ"HL$@H‹=UÛ"A¹A¸Ç$èý1ÿÿY^H‹=4Û"èO7ÿÿH‹ ˆÌ"H…É„vÿÿÿº¾¿²Bèk8ÿÿ¹yé@þÿÿH‹ñÏ"H‹5òÏ"HL$0H‹=æÚ"E1ÉA¸èh6ÿÿH‹ÉÏ"H‹5jÚ"HL$0H‹=¾Ú"E1ÉA¸è@6ÿÿéµýÿÿf.„AUATUSHƒìH¾/@„ít}L¾gE„äts@¾ÅH‰û€úw èÙ8ÿÿH‹‹¨A¾ìA‰Åˆ…€=vM@ˆkA¾õ¿ÌBèë1ÿÿH…Àt&@¾õ¿ÐBèØ1ÿÿH…À•ÀHƒÄ[¶À]A\A]Ã@HƒÄ1À[]A\A]Ãèk8ÿÿH‹B‹, ë¥fAUATUS1íHƒìH‹=ˆ„ç-‡ƒø†E1í1ÛH…í„»H‰ïèÿÿÿ…À¸HEÅHDÝI‰ÄH‰ïèùþÿÿ…À…¡M…íL‰å„yM…ä„LH…ÛtH‰ßè¿rÿÿH‰Çè‡áÿÿ…Àtb¿è9/¿H‹Xè+/ò@ ¿òD$(è/Ht$(ò@ H|$ òD$ èßÿÿD‹mÊ"E…Òu8¾;B¿èÁeÿÿHƒÄH[]A\A]ÃfDM…í„kÿÿÿL‰ëéhÿÿÿ€H‰ßè00ÿÿHƒìH‹=õÍ"‰ÂLd$8H‰ÞI‰ÅATLL$,LD$(HL$$èr2ÿÿ¶EfïÀAXAYÿÿ…ÀŽö‰Ç¾OBèªÿÿH‰ÇH‰µ"H…ÿÇc¹"uoè\ÿÿ‹8èelÿÿH‹V¹"H‹=ÇÀ"H‰Á¾ˆB1Àè8!ÿÿH‹5±À"¿è§PÿÿH‹=@µ"ë,fDH‰Ç¾OBèK ÿÿH‰ÇH‰!µ"Ç÷¸"H…ÿt‘¾B1ÀèVÿÿH‹'c"H‹=ø´"¾B1Àè<ÿÿfïÉH‹=á´"fïÀ¾(Bò¨¸"1Àò* Ã"ò*nÃ"òYÊòYÂò,Éò,ÐèùÿÿH‹=¢´"¾DB1ÀèæÿÿH‹=´"¾bB1ÀèÓÿÿH‹=|´"¾xB1ÀèÀÿÿH‹=i´"¾ŒB1Àè­ÿÿH‹ V´"º¾¿BèB ÿÿH‹ ;´"º¾¿¤Bè' ÿÿH‹ ´"º¾¿µBè ÿÿH‹ ´"º¾¿ÆBèñÿÿH‹ ê³"º¾¿×BèÖÿÿH‹ ϳ"º¾¿èBè»ÿÿH‹ ´³"º ¾¿ùBè ÿÿH‹ ™³"º ¾¿Bè…ÿÿH‹ ~³"º ¾¿BèjÿÿH‹ c³"º ¾¿#BèOÿÿH‹ H³"º¾¿.Bè4ÿÿH‹ -³"º¾¿?BèÿÿH‹ ³"º¾¿RBèþÿÿH‹ ÷²"º¾¿cBèãÿÿH‹ ܲ"º¾¿uBèÈÿÿH‹ Á²"ºU¾¿¸Bè­ÿÿò}¶"H‹=ž²"¾B¸f(Ðf(ÈfWÔôèÏÿÿH‹ x²"º%¾¿XBèdÿÿH‹ ]²"º)¾¿€BèIÿÿH‹ B²"º¾¿†Bè.ÿÿH‹ '²"º¾¿¢BèÿÿH‹ ²"º¾¿½BèøÿÿH‹ ñ±"º¾¿ØBèÝÿÿH‹ Ö±"º¾¿óBèÂÿÿH‹ »±"º2¾¿°Bè§ÿÿH‹  ±"º9¾¿èBèŒÿÿH‹ …±"º¾¿(BèqÿÿH‹ j±"º*¾¿HBèVÿÿH‹ O±"º¾¿Bè;ÿÿH‹ 4±"º¾¿*Bè ÿÿH‹ ±"º¾¿EBèÿÿH‹ þ°"º¾¿xBèêÿÿH‹ ã°"º6¾¿˜BèÏÿÿH‹ Ȱ"º¾¿`Bè´ÿÿH‹ ­°"º¾¿|Bè™ÿÿH‹ ’°"º'¾¿ÐBè~ÿÿH‹ w°"º!¾¿øBècÿÿH‹ \°"º!¾¿ BèHÿÿH‹ A°"º¾¿’Bè-ÿÿH‹ &°"º#¾¿HBèÿÿH‹ °"º ¾¿¥Bè÷ÿÿH‹ ð¯"º)¾¿pBèÜÿÿH‹ Õ¯"º¾¿±BèÁÿÿH‹ º¯"º¾¿ÍBè¦ÿÿH‹ Ÿ¯"º¾¿éBè‹ÿÿH‹ „¯"º¾¿ BèpÿÿH‹ i¯"º¾¿! BèUÿÿH‹ N¯"º¾¿= Bè:ÿÿH‹ 3¯"º!¾¿ BèÿÿH‹ ¯"º¾¿ÈBèÿÿH‹ ý®"º¾¿èBèéÿÿH‹ â®"º¾¿BèÎÿÿH‹ Ç®"º¾¿(Bè³ÿÿH‹ ¬®"º9¾¿HBè˜ÿÿH‹ ‘®"º¾¿(Bè}ÿÿH‹ v®"º*¾¿ˆBèbÿÿH‹ [®"º¾¿T BèGÿÿH‹ @®"º¾¿p Bè,ÿÿH‹ %®"º¾¿Œ BèÿÿH‹ ®"º¾¿¨ BèöÿÿH‹ ï­"º¾¿Ä BèÛÿÿH‹ Ô­"º¾¿à BèÀÿÿH‹ ¹­"º¾¿ü Bè¥ÿÿH‹ ž­"º¾¿!BèŠÿÿH‹ ƒ­"º!¾¿¸BèoÿÿH‹ h­"º¾¿àBèTÿÿH‹ M­"º¾¿Bè9ÿÿH‹ 2­"º9¾¿ BèÿÿH‹ ­"º¾¿(BèÿÿH‹ ü¬"º¾¿/!BèèÿÿH‹=á¬"ò±°"¾@!B¸èÿÿ[H‹=¬"Ç0Z"éãÿÿHÇ¥¬"1ÿé÷ÿÿfD¿èH‹xèuTÿÿǃ¬"H‰\°"é—öÿÿDf.„USH‰ûº HƒìH‹5ë¯"H‹=äº"èÿÿ€H‹5ѯ"H‹=ʺ"¹@Ècº èûÿÿ…À„E1À¹0ÈcºdH‰Þ¿@Ècèyÿÿƒ=¬"„üH‹5…¯"H‹=~º"1Òè§ÿÿ‹ñ«"ƒø„Ѓø„oE1Àºd¹0ÈcH‰Þ¿@Ècè%ÿÿHcЃøÆ„¶5¬"H‹='º"HL$ºèˆÿÿH‹H‰ÇH‰{«"èÖÿÿH‹o«"H‚øÿÿH=÷‡èH¾‚Ø-A…ÀŽØH‹4Å×cH‰ßè\ÿÿ¾}!B¹H‰ßó¦uA¸Èc¹ ÈcºÈc¾ÈcH‰ßèÞnÿÿHƒÄ[]À¶5]«"H‹=‚¹"HL$ºèãÿÿH‰ÅH‹H‰ïH‰Óª"è.ÿÿƒ=ת"…ÅþÿÿH‹ºª"HÿÿHƒúvH-éÿHƒø‡¡þÿÿH‰ïèõÿÿéHþÿÿè›ÿÿH¾H‹öDP@„Ôþÿÿéfÿÿÿ¾w!BH‰ß1Àè5ÿÿé$ÿÿÿ‹ªª"Ht$ H|$‰D$‹šª"‰D$ èÀÿÿ‹ —ª"D‹L$ H‰ßD‹D$‹ˆª"¾d!B1ÀƒáèåÿÿHƒÄ[]ÃfD‹Rª"Ht$ H|$‰D$‹Bª"‰D$ èEÀÿÿ‹ ?ª"D‹L$ ¾Q!BD‹D$‹.ª"H‰ß1Àƒáèÿÿéªþÿÿ„USH‰ýHƒìH‹=`W"èûÿÿ‰ÃƒÀ=iwÿ$ň!B„è‹ÿÿH‹HcÓöDQ@„‚ˆ]ÆEHƒÄ[]Ã@H‹5Q¸"H…ötèHƒÄH‰ï[]é] ÿÿDH‹51¹"ë߀H‹5¹"ëÏ€H‹5¸"ë¿€H‹5é·"므H‹5É·"럀H‹5Á·"ë€H‹5á·"é|ÿÿÿ@H‹5¸"élÿÿÿ@H‹5é·"é\ÿÿÿ@H‹5a¸"éLÿÿÿ@H‹5Á·"é<ÿÿÿ@H‹5Ñ·"é,ÿÿÿ@H‹5¹·"éÿÿÿ@H‹5‰·"é ÿÿÿ@H‹5q·"éüþÿÿ@H‹5)¸"éìþÿÿ@H‹5é·"éÜþÿÿ@H‹5Ñ·"éÌþÿÿ@H‹5é·"é¼þÿÿ@H‹5Ñ·"é¬þÿÿ@H‹5¹·"éœþÿÿ@H‹5‰·"éŒþÿÿ@H‹5q·"é|þÿÿ@H‹5Y·"élþÿÿ@H‹5A·"é\þÿÿ@H‹5)·"éLþÿÿ@H‹5·"é<þÿÿ@H‹5ù¶"é,þÿÿ@H‹5á¶"éþÿÿ@H‹5ɶ"é þÿÿ@H‹5±¶"éüýÿÿ@H‹5™¶"éìýÿÿ@H‹5·"éÜýÿÿ@H‹5·"éÌýÿÿ@H‹5¶"é¼ýÿÿ@H‹5¶"é¬ýÿÿ@H‹5éµ"éœýÿÿ@ûþv ÆEétýÿÿƒû „–ýÿÿ~,ƒût9ƒûH‹5µµ"„gýÿÿHƒÄ‰ÚH‰ï[]¾w!B1Àépÿÿƒû H‹5¦¶"„@ýÿÿë×H‹5¶"é2ýÿÿfATUA‰üSH‰õ¿8èÜMÿÿH‰ïH‰ÃD‰ HÇ@è6NÿÿHÇC H‰CH‰ØHÇC(HÇC0HÇC[]A\Ãf.„ƒÿH‰ð‡Œ‰ÿÿ$ý 0BHºstring f¹hH‰H¾or switcf‰HH‰pÃHºor switcH¹number fH‰VºhH‰f‰VútoÇa goÆFf‰VÃ@H¹a stringÆFH‰ÃfDHºa refereH¹nce to aA»yH‰Hº string H‰NH‰VÇFarrafD‰^Ã@H¹a numberÆFH‰ÃfDHºa refereH¹nce to aAºayH‰Hº numericH‰NH‰VÇF arrfD‰VÆFÃH¹a labelH‰ÃfHºa returnH¹ addressA¹ubH‰Hº for gosH‰NH‰VfD‰NÆFÀH¹a returnHº addressA¸eH‰H‰VH¹ for a sHºubroutinH‰NfD‰F H‰VÃDH¹nothingH‰Ãf.„Hºthe root¿kH‰H¾ of the Ç@stacH‰pf‰xÃ@H¹anythingÆFH‰ÃfDHºa stringH‰H¾ or a nuÇ@mberH‰pÆ@ÃH¹referencHºe to a sH‰H‰VH¾tring orH‰pH¹ an arra¾yH‰Hf‰p À‰ú¾3õAH‰Ç1ÀéGÿÿ€HƒìH‹NH‹WH‹=­®"¾ô-B1Àè!ÿÿH‹5š®"¿HƒÄéŒ>ÿÿff.„Hƒì¿è’JÿÿH‹£§"H…Òt&H‰BH‰PHÇ@HÇH‰€§"HƒÄÃH‰y§"ëÕ€H‹a§"AVAUATUS1íH‹H…ÛuOéšfH‹S¾.BH‹=®"1ÀèyÿÿH‹5ò­"¿èè=ÿÿH‹{ƒÅè\LÿÿL‹cH‰ßèPLÿÿM…äL‰ãtPHƒ{u±‹…Àuƒ=°­"ŽH‹{ è%Lÿÿ뻃ø„§ƒøuªƒ=‡­"~¡H‹S¾e.Bétÿÿÿƒ=m­"~&H‹=h­"¾è0B‰ê1ÀèÚ ÿÿH‹5S­"¿èI=ÿÿH‹=z¦"H‹_è¹KÿÿHÇCH‰b¦"[]A\A]A^ÃH‹SH‹=­"¾,.Bè‹ ÿÿH‹5­"¿èú<ÿÿéGÿÿÿDƒ=å¬"OL‹k A‹U(…Ò~/ƒêL‰èIL•º¯HƒÀH9ÈuôA€}8stUI‹}0è,KÿÿL‰ïè$Kÿÿé·þÿÿ€H‹SH‹=¬"¾H.B1Àè ÿÿH‹5z¬"¿èp<ÿÿL‹k A‹U(…Ò‰ë¶f…Ò~§BÿE1äL4ÅfDI‹E0J‹< IƒÄè·JÿÿM9æuêéxÿÿÿf.„HƒìH‹G81ÒH…ÀtHÇ@ H‹@8ƒÂH…ÀuìH‹=õ«"¾1B1Àèi ÿÿH‹5â«"¿HƒÄéÔ;ÿÿ@AWAVAUATUSHƒìH…ÿ„nƒúL‹%ç¤"„H‹â¤"‰T$ A‰öH‰ýE1íÇD$H‰$I‹$ƒD$M‰çH…Ûuë^fDL{H‹[H…ÛtKAƒÅD;3uêH‹sH‰ïèÿÿ…ÀuÚL‹cM…䄳ƒ=2«"L{AHƒÄL‰à[]A\A]A^A_ÃfD‹D$ ƒø„Àƒø„¿L;$$„ïL‹$$éfÿÿÿAƒþ¸¦8B¹(öAHDÈHƒìM‹D$‹D$H‹=ɪ"H‰êE‰é¾81BP1Àè6 ÿÿXZH‹5­ª"¿è£:ÿÿM‹'ékÿÿÿI‹D$H…ÀLEàéáþÿÿƒ=ª"ŽÞD‹L$H‹=qª"Aƒþ¸¦8B¹(öAE‰èHDÈH‰ê¾ˆ1B1ÀèÍ ÿÿë—E1äéÿÿÿH‰îD‰÷èhøÿÿƒ=-ª"I‰ÄI‰ŽõþÿÿAƒþ¸¦8B¹(öAHDÈH‰ê¾‚.BëFE1äƒ|$ …ËþÿÿH‰îD‰÷è øÿÿƒ=å©"I‰ÄI‰Ž­þÿÿAƒþ¸¦8B¹(öAHDÈH‰ê¾œ.BH‹=¼©"1Àè5 ÿÿH‹5®©"¿è¤9ÿÿéoþÿÿM‹'égþÿÿ€ƒ=…©"H‰wóÃé»úÿÿf.„AWAV¾·.BAUAT¿USI¾ UNKNOWNI½ ARRAY:Hƒìè?9ÿÿH‹p¢"H…Û„=€H‹!©"I‰ßH½ NUMBER:ÆH‹H…ÀuUéô@ƒø„·ƒø…ŽL‹%ç¨"L‰çèÿÿM‰,I‹H‹=Ѩ"H‹pè( ÿÿI‹LxH‹@H…À„¤‹ƒøt-«…ÀuGL‹% ¨"L‰çè8ÿÿIH¸ STRING:H‰ÆBë¦L‹%y¨"L‰çèÿÿIH‰*ÆBë‰@H‹Y¨"º:L‰0f‰Pémÿÿÿ„L‹%9¨"L‰çèÑÿÿ¹E:LàÇ FREf‰HÆ@é;ÿÿÿfDH‹5 ¨"¿èÿ7ÿÿH‹[H…Û…ÊþÿÿHƒÄ¾Ì.B¿[]A\A]A^A_éÕ7ÿÿDH‹ ¡¬"H‹AH…Àt0H‹PH…Òt'H‹rH‰pH‹pH‰rH‰PH‰BH‰QH‹PH‰BÃf¾á.B¿é7ÿÿHƒìH‹M¬"H‹PH…ÒtLH‹xH…ÿt‹HÿƒùvƒèƒøvH‹BH‰¬"HƒÄÃè»EÿÿH‹ ¬"HÇ@H‹PëÕfD¿(è6CÿÿH‰ÂHÇ@HÇ@ ÇH‹Ϋ"HÇBH‰BH‰Pë—@AUATUS‰ûHƒìH‹¥«"H;–«"„@H‹hD‹eH‰-‰«"A9Üt&ƒû t!ƒû t2ƒû „Ƀû… Aƒü …–HƒÄH‰è[]A\A]ÄAD$óƒøvàD‰àƒàýƒøtÕƒûA”ž€Ìc‰ßèØôÿÿ¾@ÌcD‰çèËôÿÿH‹=4¦"1À¹@Ìcº€Ìc¾ /Bèžÿÿ‰Øƒà÷ƒøt\ƒûtWH‹5¦"1ÿè6ÿÿH‹-Òª"éoÿÿÿDƒûA”ÅAƒüuE„í…Tÿÿÿë„„AD$þƒàý…gÿÿÿé7ÿÿÿDè3þÿÿE„íH‰ÅuKÇ¿(öAè+BÿÿH‰EH‹5¥"¿è†5ÿÿéûþÿÿ¾ü.B1ÿèt5ÿÿH‹Eª"é¨þÿÿ„ÇHÇ@ ë¹USH‰ýHƒìèÂýÿÿH‰ïH‰ÃèÇAÿÿÇH‰CHƒÄ[]ÃfDS¿è5Aÿÿ‹¯"H‰Ã¾*/BH‰Ç1Àè}ÿÿH‰ßƒ“"è¾èiýÿÿÇH‰X[Ãf.„Hƒì¿èâýÿÿH‹x¾HƒÄé€#S¿èÅ@ÿÿ‹?"H‰ÃH‰Ç¾*/B1Àè ÿÿH‰ß¾ƒ"èI#èôüÿÿÇH‰X[ÄHƒì1ÿèuýÿÿH‹xHƒÄé„S¿èU@ÿÿ‹Ïœ"H‰ÃH‰Ç¾*/B1Àèÿÿƒ¶œ"è‘üÿÿÇH‰X[ÃDH‹Ѩ"H‹@H‹xé¼ff.„S1Ò1ö¿?HƒìòD$è‡@ÿÿ¿H‰ÃèÚ?ÿÿòD$H‰CòHƒÄ[ÃfDSH‰ûèüÿÿH‹SòÇò@ [ÃfUSH‰ûHƒìèòûÿÿHƒ{0H‰ÅtXH‹C H…Àtgƒ=T£"~,H‹S0H‹=K£"¾C/B1Àè¿ÿÿH‹58£"¿è.3ÿÿH‹C òÇEòE HƒÄ[]þ0/B¿è3ÿÿë—€H‹{0º¾è÷ÿÿHƒÀ0H‰C ë±f.„SH‰û¿HƒìèÞûÿÿò@ H‹C H…ÀtPƒ=¥¢"~8H‹S0H‹=œ¢"¾W/B1ÀòD$è ÿÿH‹5ƒ¢"¿èy2ÿÿH‹C òD$òHƒÄ[ÃDH‹{0º¾òD$èwöÿÿHƒÀ0òD$H‰C ëÈ€S1Ò‰óH‰þ¿CèÞ>ÿÿ‰XH[Ãf„ATU¾@SL‹g0H‰ûL‰çèèüþÿH…À„¯Æ‹sHºH‹{0H‰ÅèöÿÿH…Àt;H‹{0èšCÿÿH‹=á"H‰Â¾È1B1Àè4ÿÿ[]A\H‹5©¡"¿éŸ1ÿÿ€ÆE@‹sHºH‹{0è³õÿÿÆE‹sHºH‹{0I‰Äè›õÿÿÆE@ƒ=\¡"L‰` []A\ÃD[L‰æH‰Ç]A\éòÿÿ‹sHºL‰çè`õÿÿH…À…Tÿÿÿ‹sHH‹{0ºèFõÿÿ‹sHH‹{0ºI‰Äè2õÿÿë™S1Ò‰óH‰þ¿è®=ÿÿH‹œ"‰XHH‰P[Ã@f.„ATUºSH‰û‹wHH‹0èèôÿÿH…Àt;H‹{0èzBÿÿH‹=£ "H‰Â¾2B1Àèÿÿ[]A\H‹5‰ "¿é0ÿÿ€‹{HèùÿÿH‹xº¾èôÿÿH‹{0º¾H‰ÅèwôÿÿH…ÀI‰ÄtH…ít*Hƒ} t#ƒ=( "H‰h[]A\Ã[H‰îH‰Ç]A\éQñÿÿ¾k/B¿½sèü/ÿÿƒ{H¸d¿@Dèè<ÿÿHH(@ˆh8Ç@(HÇ@0H‰Â@ÇHƒÂH9Êuñƒ=®Ÿ"I‰D$ ~…H‹S0H‹= Ÿ"¾82B1Àèÿÿ[]A\H‹5‰Ÿ"¿é/ÿÿDf.„S1Ò‰óH‰þ¿è<ÿÿ‰XH[Ãf„USH‰ýHƒìèÂ÷ÿÿH‰Ã‹EHH‹}0‰èÁ;ÿÿH‰CHƒÄ[]ÃfDS1Ò‰û1ö¿@èÏ;ÿÿ‰XH[Ãf.„H‹Ñ£"‹wHH‹@‹9ð„ÖSHƒìƒø„šƒø¹4Bt%ƒø¹#4Btƒø¹€/Btƒø¹/B¸›/BHEȃþº4Bt/ƒþº#4Bt%ƒþº€/Btƒþº/Btƒþ¸›/Bº­/BHEÐH‹=kž"¾h2B1ÀèßþþÿH‹5Xž"HƒÄ¿[éI.ÿÿf„H‰|$è¶öÿÿH‹|$H‰Ã‹GHƒøt&ƒøt‰HÇCHƒÄ[óÃÇHÇC ëéÇ¿(öAè€:ÿÿH‰CëÓf.„@€ÿ-tz @€ÿ*tb@€ÿ+u<1Ò1ö¿6é~:ÿÿfD@€ÿ/t*@€ÿ^u1Ò1ö¿:é^:ÿÿfDóÃfDóÃfD1Ò1ö¿9é::ÿÿf.„1Ò1ö¿8é":ÿÿf1Ò1ö¿7é:ÿÿfUSH‰ý¿Hƒì(è]öÿÿòH ¿òL$èHöÿÿò@ òD$è˜õÿÿH‰Ã‹Eƒè6ƒøwEòD$òL$ÿ$Ř0B€fïÒf.Âz u f.у¢f.Ї€è«øþÿòD$òd$Çòc HƒÄ([]ÃDf(Ñò,ýfT”Óf.Úwnò^ÁòD$ë½fòXÈòL$ë¯@ò\ÁòD$ëŸ@òYÈòL$ë@ò,ÁfïÒò*Ðf.Êz„hÿÿÿHƒÄ(¾Ñ/B¿[]é#,ÿÿH‹=œ"ò™ü¾µ/B¸è‚üþÿH‹5û›"¿èñ+ÿÿò-qüòl$éÿÿÿ@f.„H‹¡ "H‹@ò@ fW¨Òò@ ÃfUSH‰ýHƒìè"ôÿÿH‰ÃH‹E H…Àt>H‹H…ÀH‰CtÇHƒÄ[]ÃD¿(öAèþ7ÿÿÇH‰CHƒÄ[]ÃDH‹}0º1öèxïÿÿHƒÀ H‰E ë¨@f.„USH‰ýHƒìè¢óÿÿH‰ÃH‹E H…ÀtH‹8èž7ÿÿÇH‰CHƒÄ[]ÃDH‹}0º1öèïÿÿHƒÀ H‰E ëÈ@f.„H‹G0H…ÀtAUSH‰ûHƒìH‹o H…ít5H‹}H…ÿt è'9ÿÿH‹k ¿è¹óÿÿH‹xè 7ÿÿH‰EHƒÄ[]óÃ@º1öH‰Çè¡îÿÿHh H‰k ë²€USH‰úH‰û1ö¿eHƒìè7ÿÿH‰ßH‰ÅèÍ6ÿÿH‰EHƒÄ[]ÃfUSH‰ýHƒìè¢òÿÿH‹}H‰Ãè¦6ÿÿÇH‰CHƒÄ[]ÃDHƒìH‹Íž"H‹@ò@ òD$èaòÿÿòD$Çò@ HƒÄÃf.„S‰óH‰úH‰þ¾Û¿èj6ÿÿ‰XLÇ@Hÿÿÿÿ[Ã@f.„AWAVAUATI‰ýUSH숋oL…€=‡˜èûþÿH‹HcÕD‹‘A‹UH…Òˆ1ÒD9Å•ƒÂI‹}0¾èdíÿÿI‹}0¾H‰D$è±H…À„¸I‹}0èß:ÿÿH‹=™"H‰Â¾Ð2B1ÀèyùþÿH‹5ò˜"HĈ¿[]A\A]A^A_é×(ÿÿ€‹GHA‰èº…À‰{ÿÿÿH‹Ž"H‹@H…Àt:‹ƒú„¾1É¿ÿÿÿÿë@‹ƒú„ H‹@ƒúE÷ƒÁH…ÀuãAÇEHÿÿÿÿ¾ 2BéoÿÿÿE‹uH¾í/BAƒþ [ÿÿÿH‹D$L‹` M…ä„–E‹|$(E9þt:I‹}0èø9ÿÿH‹=!˜"D‰ùH‰ÂE‰ð¾3B1ÀèŒøþÿH‹5˜"¿èû'ÿÿE‹}HHD$PHP(fDÇHƒÀH9ÐuñE…ÿŽ@E1ÿE1ö1íëfDB‰TÿÿÿAƒìé5ÿÿÿH‹I|"ƒ8 t@H‹@ƒ8 u÷H‰0|"óÃ@f.„Hƒì¿èRÓÿÿò@ ¿ò$è>Óÿÿò` ¿òd$è)Óÿÿò$òH H‹Ð~"fïÛf.ÈH‹@òP r%f.Âròl$f.ërò=“°òx HƒÄÃf.Ðrf.Árf.\$sÙòX HƒÄÃfH‹q~"H‹@H‹Pò@ òXB ò@ ÃHƒìè÷ÑÿÿH‹H~"H‹RH‹RH‹JH‹IòA ò\B Çò@ HƒÄÃfDUSHƒìH‹=ûs"H…ÿt^H‹÷s"HPÿH;ôs"v HƒÄ[]ÃHXH,ÝH‰îèŒ×þÿH…ÀH‰ºs"tSHT(À¹1ÀH‰­s"H‰×óH«HƒÄ[]þ¿èQÕþÿH…ÀH‰s"tHÇzs"HÇws"냿°9Bè0ÛþÿSH‰ûèGÿÿÿH‹Hs"H…ÀtsH‹Ls"HÐH‹H9ÚtZH…Òt"¶s"H‹ s"ˆH‹H‰JH‹ ýr"H‰J H‰H‹C H‹H‰èr"H‹CH‰q"H‰Îr"H‰·~"¶ˆÎr"[Ã@H…ÛtõH‹Ôr"HÁàëµfDH…ÿt[H‹¬r"SH…ÀtH‹¯r"HÐH;8t.‹G(H‰û…Àu H‰ß[éëÏþÿH‹èßÏþÿH‰ß[éÖÏþÿfDHÇëÉ€óÃ@f.„H…ÿtFH‹GHÇG ÆH‹GÆ@H‹%r"H‹WÇG0ÇG@H…ÀH‰Wt H‹ r"H;<ÈtóÃH‹G H‰Å}"H‰Îq"H‰Ïq"H‹H‰…p"¶ˆÄq"ÃAUATUSH‰ûH‰õHƒìèkÏþÿH‰ßI‰ÄD‹(è]ÿÿÿH‹žq"H‰+ÇC<H…Àt H‹˜q"H;ÐtÇC4ÇC81ÀH…ítH‰ïè Ôþÿ‰ÇèöÏþÿ…ÀŸÀ¶À‰C,E‰,$HƒÄ[]A\A]Ãff.„ATUI‰üS¿H‰õèÔþÿH…Àt6HcõH‰ÃH~H‰pèÔþÿH…ÀH‰CtÇC(L‰æH‰ßè*ÿÿÿH‰Ø[]A\ÿè9BèµØþÿ„H‹Ñp"ATUH‰ýSH…Àt]H‹Îp"HÐH‹;H…ÿtJH‰îèâþÿÿH‹[]H‹B A\H‰ˆp"H‹BH‹H‰rp"H‰[|"H‰,o"¶ˆkp"Ãf.„è[üÿÿL‹%\p"H‹ep"¾@H‹=ùn"IÄèÿÿÿM…äH‰ÇH‰¸HDøéwÿÿÿH…ÿ„¡SH‰ûèüÿÿH‹ p"H‹p"HÁàH…ÉtMH‹p"H4ÕH1Hƒ8t4D¶Öo"H‹=¿o"HƒÂH‰Üo"DˆH‹H‰xH‹=«o"H‰x HD1H‰H‹C H‹H‰‘o"H‹CH‰Fn"[H‰vo"H‰_{"¶ˆvo"óÃ@ATUH‹-no"SH…ítlH‹qo"LdÝI‹<$H…ÿtWè–üÿÿH…ÛIÇ$tEHƒëH‹DÝH‰Ao"H…Àt0H‹P H‰o"H‹PH‹H‰ëz"H‰ôn"H‰µm"¶ˆôn"[]A\ÃDf.„Hƒþ††ATULfþS€|7þug€|7ÿu`H‰ý¿Hè³ÑþÿH…ÀH‰Ãt^L‰`H‰hH‰ÇH‰hL‰` Ç@(HÇÇ@,Ç@0Ç@<Ç@@èûÿÿH‰Ø[]A\Ã[1À]A\Ãf„1Àÿ:Bè ÖþÿATLfUSH‰ýH‰óL‰çè*ÑþÿH…ÀtC1ÒH…ÛtfD¶Lˆ HƒÂH9ÓuïÆDÆL‰æH‰ÇèÿÿÿH…ÀtÇ@([]A\ÿH:BèµÕþÿ¿‹8Bè«Õþÿ@f.„SH‰ûè—ÍþÿH‰ßH‰Æ[ékÿÿÿf.„‹ö"Ãf„H‹Al"ÄH‹)l"ÄH‹‘|"ÄH‹9y"ĉ=¦"Ãf„H‰=ñk"ÄH‰=Ùk"Ä‹Æk"Ãf„‰=¶k"Ãf„USHƒìH‹-ûl"H…íuë)@è3úÿÿHÇègýÿÿH‹èl"H\ÅH‹;H…ÿuÛH‰ïè+ÊþÿH‹=”l"HDZl"èÊþÿHÇyl"HǦl"1ÀHÇ‘l"HÇfl"ÇXl"ÇJl"HÇ/l"Ç!l"HÇúj"HÇçj"HƒÄ[]Ãé+Ïþÿf.„éëÏþÿf.„é{Éþÿf.„USH‰ú1À¾©8BHƒìH‹=)q"HL$ èŸÑþÿH‹¸w"¶< „í„À„åHcD$ P‰T$ H‹òp"Æ"H‹-‡w"¶]„Û„³è–Òþÿ¾ë8€HcT$ J‰L$ ¶}H‰õH‹ ®p"HƒÆ@ˆ<H-?w"¶]„ÛtoH‹H¾ËöDJ@uÁHc|$ ¾Ó¾²8BH=up"1ÀèîÐþÿ‹D$ ƒÀPH˜‰T$ H‹Wp"Æ"HcD$ H‹Gp"ÆH‹5üÿÿHc—y"¾¹8BH‰ïH‰j"è3ÿÿH‰Ý€ÝcHcüh"P‰óh"Hcdy"H‹Õ€ÝcH‰Å@ÚcH‹my"Ç[y"H‰Ly"HƒÄ[]ÃD¾@èÖøÿÿHcy"H‰ï¾¹8BH‰i"è» ÿÿH‰Ý€ÝcHc„h"P‰{h"Hcìx"H‹ Õ€ÝcH‹<ÕàÍcH‰ Å@Úcè_öÿÿévÿÿÿf.„SH‰ûèwÉþÿH‰ßH‰ÆèLûÿÿ[H‰Çé3öÿÿAWAVI‰ÿAUATA‰ÖUSHìØH…ötHÇÍcL‰ûë„H…ÀtHƒÃD¾#¿Ã8BD‰æD‰åècÉþÿE„äuÞºÈH‰ÞH‰çI‰åèûÆþÿëf„@„ít*HƒÃD¾#D‰åD‰æ¿Ã8Bè#ÉþÿH…ÀtÞ@„ítL)ûÆDþ¾.L‰ïèÉþÿH…À…㿹8B¹L‰î󦄦»½¾8BºÈL‰î¿ÍcèzÆþÿ¾.¿Ícè»ÈþÿH…À„î¾B¿ÍcèsÍþÿH…ÀI‰Ä…dE…öt ƒë½(öAu¬»½¾8BºÈ¾ Óc¿ÍcèÆþÿ€=óf"t\A¼ÍcA‹$IƒÄ‚ÿþþþ÷Ò!Ð%€€€€tç‰Â¿ä8BÁê©€€DÂIT$‰ÁLDâÁIÜÍcA¾´$ÿÌcèÈþÿH…À„.¿Íc‹HƒÇ‚ÿþþþ÷Ò!Ð%€€€€té‰ÂL‰îÁê©€€DÂHW‰ÁHDúÁHßÍcHÇÍcèZÇþÿ¾.¿ÍcI‰Äè¨ÇþÿH…À„í¾B¿Ícè`ÌþÿH…ÀI‰ÄuUE…ötƒë½(öA…÷þÿÿH‹=~l"ºÍc¾ç8B1ÀèíÌþÿH‹5fl"¿è\üþÿëf.„‹Bl"E1ä…ÒtKHÄØL‰à[]A\A]A^A_ÃfDH‹=!l"L‰ê¾x:B1ÀE1äèÌþÿH‹5l"¿èþûþÿë¹@¾È8B¿èéûþÿ뤸/fA‰„$Ícé¿þÿÿH‰î¿Ícè'ÌþÿéþÿÿH‰îL‰çè‡ÄþÿéÿÿÿfD‹‰u"E…Àx:Hƒìƒ=•k"7IcÀH‹Å€ÝcH‰uu"‹@‰œ "1ÀE…ÀŸÀ‰fu"HƒÄóÄIcÀH‹=Vk"¾˜:BH‹Å€ÝcH‹HH‹.u"H‹P1Àè³ËþÿH‹5,k"¿è"ûþÿD‹ût"ë‚f„ATUH‰ýSHƒìH¾„Û„iè´ÌþÿH‹ë€HƒÅH¾]öDX uð¿9B¹H‰î󦄋 e"…Ò…å¿9B¹H‰îó¦„0¿09B¹H‰îó¦„Ë‹Íd"…Û…­HcVt"‹ "Ç^t"H‰ÁH‹Å€ÝcƒÁƒù‰ /t"‰P¯‹8j"…À„ýH‰l$H‰ïLcá1öè¶ÿÿHcÿs"J‰å€ÝcHcxc"H‹Õ€ÝcHƒùc‰ dc"H‰Å@ÚcÅH…Ò„êƒ=Úi"t»H‰¼s"HƒÄ‰Ø[]A\þà:B¿»è¬ùþÿÇîc"HƒÄ‰Ø[]A\À¿è¦ÂÿÿH‹hH¾]éþÿÿ„¾;B¿»è\ùþÿƒ-5s"è ýÿÿÇŽc"HƒÄ‰Ø[]A\ÃHt$1ÒH‰ïèlúÿÿH…ÀH‰šb"„zÿÿÿ¾@H‰ÇèŸòÿÿH‰ÇèwðÿÿH‹Èc"‹ Úr"H…À„†H‹Âc"H‹ÐLcáH‹|$J‰åàÍcé¤þÿÿHƒÄ»‰Ø[]A\þH;B¿»è¬øþÿÇêb"HƒÄ‰Ø[]A\ÃH‹=h"H‰ê¾€;B1ÀèÉþÿH‹5zh"¿èpøþÿéÉþÿÿ1Àé~ÿÿÿH‹=]h"H‰ê¾H9B1ÀèÎÈþÿH‹5Gh"¿è=øþÿHcr"H‹Å€ÝcéQþÿÿH‹="h"ºd¾°;B1Àè‘ÈþÿH‹5 h"¿èøþÿéYþÿÿH‹T$H‹=ïg"¾Ø;B1ÀècÈþÿH‹5Üg"¿èÒ÷þÿé+þÿÿf.„AWAVAUATUSHƒì(D‹5Wb"E…ö„¶[b"H‹Db"H‹-Ub"L‹%^b"‹ b"D‹ !b"…ÒÇõa"tH‰ÚH+n"Çãa"‰Ùa"ˆJ‹DåI‰ÝH‹àa"DH0HrH‰5Éa"D‰ÈD‰ D‹ ¬a"HcÈLV·” `uBD¶3¶¶ {Bë%@¿„ pB=œ~¶¶ÀzBHcÈ·” `uBòHcú¿¼?@DB9øuΉÒL‰ÖHƒÃ·Œ ZBMR·” `uBH‰È‰Nüfú› u”Icé¿” |BHƒîD‹a"H‰5a"E1Ò1ÿE1ä‰ a"ëU€HHcÉD¿Œ |BA9Ñ~>HcÊD¿Œ `BD‰ÉöÅ@uPE…ÛuKöÅ „R€åßA¼€Í@D¿ÙƒÂ¿…Òu®HcVüHƒëHƒîAºH‰Ð¿” |BëØ€E9ÙuÉ@„ÿ…ž E„Ò…‰ €å¿Çd`"D¿ÉL‰èH‰ßH‰s`"H)èH)ÇH‰Vl"H‰=—o"¶Æˆc`"Aùׇ4 D‰Èÿ$Å€=BHƒ=$`"Ç&`"„ D‹-`"E…íu Ç`"Hƒ=Î^"„£Hƒ=¸^"„‚H‹-`"H…턘L‹%`"J‹DåH…À„ƒH‹XH‹P H‹H‰«k"H‰¼_"H‰u^"¶H‰£_"ˆ­_"ébýÿÿE„ä…Ô?@„ÿ…Ú?E„Ò„ýþÿÿH‰5^_"éñþÿÿH‹ù"H‰"^"ékÿÿÿH‹ö"H‰^"éJÿÿÿèUëÿÿH‹-V_"L‹%__"¾@H‹=ó]"J\åèîÿÿH‰éLÿÿÿ¿èÂþÿH…ÀH‰õ^"…Ûþÿÿ¿X"H‹ ñH‹5 d"€|ÿ ”¶҉Q0éUùÿÿH‹9g"¸]H…Ò„@ùÿÿH‹5X"H‹ ýW"H‹ ñH‹5Êc"€|ÿ ”¶҉Q0éùÿÿƒ= ]"~/H‹÷f"H‹=]"¾_9BH‹P1Àèp½þÿH‹5é\"¿èßìþÿƒ-¸f"xjD‹%Ç\"E…äu0H‹‹W"H…Àt}H‹W"H‹<Ðè¾äÿÿHc‡f"H‹<ÅàÍcè äÿÿèåðÿÿÇÃf"ÿÿÿÿƒ-äU"¸(éwøÿÿ‹lf"…Û…H ¸)é_øÿÿ¿8=Bèõ¾þÿH‰5éV"éköÿÿ‰ÚV"éWöÿÿ1ÿëŠH‹f"H…Àt'H‹ W"H‹ëV"H‹ÊH‹ ¸b"€|ÿ ”À¶À‰B0¶ÃV"Ç1f"M‰èÇ”V"ˆHckV"HÇÀe"I)ÀL‰nb"A¶L‰sV"AƈyV"¸(é¬÷ÿÿH‹e"H‹=Ab"H…Àt €|ÿ H‹XV"H‹ aV"H‹Ê”À¶À‰B0ÇV"èý÷þÿH‰že"¸éY÷ÿÿH‹=e"H…Àt'H‹ !V"H‹ V"H‹ÊH‹ ×a"€|ÿ ”À¶À‰B0ÇÇU"¸é÷ÿÿH‹öd"H‹-ÏU"L‹%ØU"H…ÀtH‹ ”a"J‹Tå€|ÿ ”À¶À‰B0ÇU"‹]U"H‹zU"¶ƒU"éEóÿÿH‰ØH+Ta"H‹=…U"H‹ nU"ƒèLù‰D$¶TU"ˆI‹D‹J@E…É„’L‹ 3U"L‹RH‹ U"O$ I9ă0OL H‹5÷`"L9ȇD‹BàÿÿH‹5?"H‹ û>"H‹ ñH‹5ÈJ"€|ÿ ”¶҉Q0éàÿÿH‹öM"¸ŒH…Ò„ýßÿÿH‹5Ñ>"H‹ º>"H‹ ñH‹5‡J"€|ÿ ”¶҉Q0éÑßÿÿH‹µM"¸ŽH…Ò„¼ßÿÿH‹5>"H‹ y>"H‹ ñH‹5FJ"€|ÿ ”¶҉Q0éßÿÿH‹tM"¸H…Ò„{ßÿÿH‹5O>"H‹ 8>"H‹ ñH‹5J"€|ÿ ”¶҉Q0éOßÿÿH‹3M"¸†H…Ò„:ßÿÿH‹5>"H‹ ÷="H‹ ñH‹5ÄI"€|ÿ ”¶҉Q0éßÿÿH‹òL"H‹=£I"H…Àt €|ÿ H‹º="H‹ Ã="H‹Ê”À¶À‰B0èißþÿH‰ M"¸éÅÞÿÿH‹©L"H‹ZI"H…Òt €|ÿ H‹ q="H‹5z="H‹ ñ”¶҉Q0¾éŠÞÿÿH‹nL"¸=H…Ò„uÞÿÿH‹5I="H‹ 2="H‹ ñH‹5ÿH"€|ÿ ”¶҉Q0éIÞÿÿH‹-L"¸CH…Ò„4ÞÿÿH‹5="H‹ ñ<"H‹ ñH‹5¾H"€|ÿ ”¶҉Q0éÞÿÿH‹ìK"¸BH…Ò„óÝÿÿH‹5Ç<"H‹ °<"H‹ ñH‹5}H"€|ÿ ”¶҉Q0éÇÝÿÿH‹«K"¸DH…Ò„²ÝÿÿH‹5†<"H‹ o<"H‹ ñH‹5"€|ÿ ”¶҉Q0éÔÿÿH‹÷A"¸H…Ò„þÓÿÿH‹5Ò2"H‹ »2"H‹ ñH‹5ˆ>"€|ÿ ”¶҉Q0éÒÓÿÿH‹¶A"¸ H…Ò„½ÓÿÿH‹5‘2"H‹ z2"H‹ ñH‹5G>"€|ÿ ”¶҉Q0é‘ÓÿÿH‹uA"¸ H…Ò„|ÓÿÿH‹5P2"H‹ 92"H‹ ñH‹5>"€|ÿ ”¶҉Q0éPÓÿÿH‹4A"¸ H…Ò„;ÓÿÿH‹52"H‹ ø1"H‹ ñH‹5Å="€|ÿ ”¶҉Q0éÓÿÿH‹ó@"¸ H…Ò„úÒÿÿH‹5Î1"H‹ ·1"H‹ ñH‹5„="€|ÿ ”¶҉Q0éÎÒÿÿH‹²@"¸OH…Ò„¹ÒÿÿH‹51"H‹ v1"H‹ ñH‹5C="€|ÿ ”¶҉Q0éÒÿÿH‹q@"¸NH…Ò„xÒÿÿH‹5L1"H‹ 51"H‹ ñH‹5="€|ÿ ”¶҉Q0éLÒÿÿH‹0@"¸MH…Ò„7ÒÿÿH‹5 1"H‹ ô0"H‹ ñH‹5Á<"€|ÿ ”¶҉Q0é ÒÿÿH‹ï?"¸ H…Ò„öÑÿÿH‹5Ê0"H‹ ³0"H‹ ñH‹5€<"€|ÿ ”¶҉Q0éÊÑÿÿH‹®?"¸'H…Ò„µÑÿÿH‹5‰0"H‹ r0"H‹ ñH‹5?<"€|ÿ ”¶҉Q0é‰ÑÿÿH‹m?"¸&H…Ò„tÑÿÿH‹5H0"H‹ 10"H‹ ñH‹5þ;"€|ÿ ”¶҉Q0éHÑÿÿH‹,?"¸%H…Ò„3ÑÿÿH‹50"H‹ ð/"H‹ ñH‹5½;"€|ÿ ”¶҉Q0éÑÿÿH‹ë>"¸$H…Ò„òÐÿÿH‹5Æ/"H‹ ¯/"H‹ ñH‹5|;"€|ÿ ”¶҉Q0éÆÐÿÿH‹ª>"¸"H…Ò„±ÐÿÿH‹5…/"H‹ n/"H‹ ñH‹5;;"€|ÿ ”¶҉Q0é…ÐÿÿH‹i>"¸ H…Ò„pÐÿÿH‹5D/"H‹ -/"H‹ ñH‹5ú:"€|ÿ ”¶҉Q0éDÐÿÿH‹(>"¸H…Ò„/ÐÿÿH‹5/"H‹ ì."H‹ ñH‹5¹:"€|ÿ ”¶҉Q0éÐÿÿH‹ç="¸H…Ò„îÏÿÿH‹5Â."H‹ «."H‹ ñH‹5x:"€|ÿ ”¶҉Q0éÂÏÿÿH‹¦="¸H…Ò„­ÏÿÿH‹5."H‹ j."H‹ ñH‹57:"€|ÿ ”¶҉Q0éÏÿÿH‹e="¸#H…Ò„lÏÿÿH‹5@."H‹ )."H‹ ñH‹5ö9"€|ÿ ”¶҉Q0é@ÏÿÿH‹$="¸#H…Ò„+ÏÿÿH‹5ÿ-"H‹ è-"H‹ ñH‹5µ9"€|ÿ ”¶҉Q0éÿÎÿÿH‹ã<"¸#H…Ò„êÎÿÿH‹5¾-"H‹ §-"H‹ ñH‹5t9"€|ÿ ”¶҉Q0é¾ÎÿÿH‹¢<"¸#H…Ò„©ÎÿÿH‹5}-"H‹ f-"H‹ ñH‹539"€|ÿ ”¶҉Q0é}ÎÿÿH‹a<"¸\H…Ò„hÎÿÿH‹5<-"H‹ %-"H‹ ñH‹5ò8"€|ÿ ”¶҉Q0é<ÎÿÿH‹ <"¸[H…Ò„'ÎÿÿH‹5û,"H‹ ä,"H‹ ñH‹5±8"€|ÿ ”¶҉Q0éûÍÿÿH‹ß;"¸[H…Ò„æÍÿÿH‹5º,"H‹ £,"H‹ ñH‹5p8"€|ÿ ”¶҉Q0éºÍÿÿH‹ž;"¸ZH…Ò„¥ÍÿÿH‹5y,"H‹ b,"H‹ ñH‹5/8"€|ÿ ”¶҉Q0éyÍÿÿH‹];"¸ZH…Ò„dÍÿÿH‹58,"H‹ !,"H‹ ñH‹5î7"€|ÿ ”¶҉Q0é8ÍÿÿH‹;"¸ZH…Ò„#ÍÿÿH‹5÷+"H‹ à+"H‹ ñH‹5­7"€|ÿ ”¶҉Q0é÷ÌÿÿH‹Û:"¸eH…Ò„âÌÿÿH‹5¶+"H‹ Ÿ+"H‹ ñH‹5l7"€|ÿ ”¶҉Q0é¶ÌÿÿH‹š:"¸cH…Ò„¡ÌÿÿH‹5u+"H‹ ^+"H‹ ñH‹5+7"€|ÿ ”¶҉Q0éuÌÿÿH‹Y:"¸dH…Ò„`ÌÿÿH‹54+"H‹ +"H‹ ñH‹5ê6"€|ÿ ”¶҉Q0é4ÌÿÿH‹:"¸aH…Ò„ÌÿÿH‹5ó*"H‹ Ü*"H‹ ñH‹5©6"€|ÿ ”¶҉Q0éóËÿÿH‹×9"¸aH…Ò„ÞËÿÿH‹5²*"H‹ ›*"H‹ ñH‹5h6"€|ÿ ”¶҉Q0é²ËÿÿH‹–9"¸aH…Ò„ËÿÿH‹5q*"H‹ Z*"H‹ ñH‹5'6"€|ÿ ”¶҉Q0éqËÿÿH‹U9"¸bH…Ò„\ËÿÿH‹50*"H‹ *"H‹ ñH‹5æ5"€|ÿ ”¶҉Q0é0ËÿÿH‹9"¸bH…Ò„ËÿÿH‹5ï)"H‹ Ø)"H‹ ñH‹5¥5"€|ÿ ”¶҉Q0éïÊÿÿH‹Ó8"¸bH…Ò„ÚÊÿÿH‹5®)"H‹ —)"H‹ ñH‹5d5"€|ÿ ”¶҉Q0é®ÊÿÿH‹’8"¸`H…Ò„™ÊÿÿH‹5m)"H‹ V)"H‹ ñH‹5#5"€|ÿ ”¶҉Q0émÊÿÿH‹Q8"¸`H…Ò„XÊÿÿH‹5,)"H‹ )"H‹ ñH‹5â4"€|ÿ ”¶҉Q0é,ÊÿÿH‹8"¸`H…Ò„ÊÿÿH‹5ë("H‹ Ô("H‹ ñH‹5¡4"€|ÿ ”¶҉Q0éëÉÿÿH‹Ï7"¸VH…Ò„ÖÉÿÿH‹5ª("H‹ “("H‹ ñH‹5`4"€|ÿ ”¶҉Q0éªÉÿÿH‹Ž7"¸XH…Ò„•ÉÿÿH‹5i("H‹ R("H‹ ñH‹54"€|ÿ ”¶҉Q0éiÉÿÿH‹M7"¸XH…Ò„TÉÿÿH‹5(("H‹ ("H‹ ñH‹5Þ3"€|ÿ ”¶҉Q0é(ÉÿÿH‹ 7"¸WH…Ò„ÉÿÿH‹5ç'"H‹ Ð'"H‹ ñH‹53"€|ÿ ”¶҉Q0éçÈÿÿH‹Ë6"¸UH…Ò„ÒÈÿÿH‹5¦'"H‹ '"H‹ ñH‹5\3"€|ÿ ”¶҉Q0é¦ÈÿÿH‹Š6"¸TH…Ò„‘ÈÿÿH‹5e'"H‹ N'"H‹ ñH‹53"€|ÿ ”¶҉Q0éeÈÿÿH‹I6"¸fH…Ò„PÈÿÿH‹5$'"H‹ '"H‹ ñH‹5Ú2"€|ÿ ”¶҉Q0é$ÈÿÿH‹6"¸SH…Ò„ÈÿÿH‹5ã&"H‹ Ì&"H‹ ñH‹5™2"€|ÿ ”¶҉Q0éãÇÿÿH‹Ç5"¸RH…Ò„ÎÇÿÿH‹5¢&"H‹ ‹&"H‹ ñH‹5X2"€|ÿ ”¶҉Q0é¢ÇÿÿH‹†5"¸YH…Ò„ÇÿÿH‹5a&"H‹ J&"H‹ ñH‹52"€|ÿ ”¶҉Q0éaÇÿÿH‹E5"¸PH…Ò„LÇÿÿH‹5 &"H‹ &"H‹ ñH‹5Ö1"€|ÿ ”¶҉Q0é ÇÿÿH‹5"¸QH…Ò„ ÇÿÿH‹5ß%"H‹ È%"H‹ ñH‹5•1"€|ÿ ”¶҉Q0é߯ÿÿH‹Ã4"¸>H…Ò„ÊÆÿÿH‹5ž%"H‹ ‡%"H‹ ñH‹5T1"€|ÿ ”¶҉Q0éžÆÿÿH‹‚4"¸>H…Ò„‰ÆÿÿH‹5]%"H‹ F%"H‹ ñH‹51"€|ÿ ”¶҉Q0é]ÆÿÿH‹A4"¸=H…Ò„HÆÿÿH‹5%"H‹ %"H‹ ñH‹5Ò0"€|ÿ ”¶҉Q0éÆÿÿH‹4"¸<H…Ò„ÆÿÿH‹5Û$"H‹ Ä$"H‹ ñH‹5‘0"€|ÿ ”¶҉Q0éÛÅÿÿH‹¿3"¸;H…Ò„ÆÅÿÿH‹5š$"H‹ ƒ$"H‹ ñH‹5P0"€|ÿ ”¶҉Q0éšÅÿÿH‹~3"¸HH…Ò„…ÅÿÿH‹5Y$"H‹ B$"H‹ ñH‹50"€|ÿ ”¶҉Q0éYÅÿÿH‹=3"¸GH…Ò„DÅÿÿH‹5$"H‹ $"H‹ ñH‹5Î/"€|ÿ ”¶҉Q0éÅÿÿH‹ü2"¸FH…Ò„ÅÿÿH‹5×#"H‹ À#"H‹ ñH‹5/"€|ÿ ”¶҉Q0é×ÄÿÿH‹»2"¸5H…Ò„ÂÄÿÿH‹5–#"H‹ #"H‹ ñH‹5L/"€|ÿ ”¶҉Q0é–ÄÿÿH‹z2"¸4H…Ò„ÄÿÿH‹5U#"H‹ >#"H‹ ñH‹5 /"€|ÿ ”¶҉Q0éUÄÿÿH‹92"¸3H…Ò„@ÄÿÿH‹5#"H‹ ý""H‹ ñH‹5Ê."€|ÿ ”¶҉Q0éÄÿÿH‹ø1"¸3H…Ò„ÿÃÿÿH‹5Ó""H‹ ¼""H‹ ñH‹5‰."€|ÿ ”¶҉Q0éÓÃÿÿH‹·1"¸2H…Ò„¾ÃÿÿH‹5’""H‹ {""H‹ ñH‹5H."€|ÿ ”¶҉Q0é’ÃÿÿH‹v1"¸1H…Ò„}ÃÿÿH‹5Q""H‹ :""H‹ ñH‹5."€|ÿ ”¶҉Q0éQÃÿÿH‹51"¸0H…Ò„<ÃÿÿH‹5""H‹ ù!"H‹ ñH‹5Æ-"€|ÿ ”¶҉Q0éÃÿÿH‹ô0"¸:H…Ò„ûÂÿÿH‹5Ï!"H‹ ¸!"H‹ ñH‹5…-"€|ÿ ”¶҉Q0éÏÂÿÿH‹³0"¸:H…Ò„ºÂÿÿH‹5Ž!"H‹ w!"H‹ ñH‹5D-"€|ÿ ”¶҉Q0éŽÂÿÿH‹r0"¸9H…Ò„yÂÿÿH‹5M!"H‹ 6!"H‹ ñH‹5-"€|ÿ ”¶҉Q0éMÂÿÿH‹10"¸9H…Ò„8ÂÿÿH‹5 !"H‹ õ "H‹ ñH‹5Â,"€|ÿ ”¶҉Q0é ÂÿÿH‹ð/"¸8H…Ò„÷ÁÿÿH‹5Ë "H‹ ´ "H‹ ñH‹5,"€|ÿ ”¶҉Q0éËÁÿÿH‹¯/"¸/H…Ò„¶ÁÿÿH‹5Š "H‹ s "H‹ ñH‹5@,"€|ÿ ”¶҉Q0éŠÁÿÿH‹n/"¸0H…Ò„uÁÿÿH‹5I "H‹ 2 "H‹ ñH‹5ÿ+"€|ÿ ”¶҉Q0éIÁÿÿH‹-/"¸LH…Ò„4ÁÿÿH‹5 "H‹ ñ"H‹ ñH‹5¾+"€|ÿ ”¶҉Q0éÁÿÿÇ‘"éÀÿÿ‰Š"éÀÿÿH‹Ò."H‹ƒ+"H…Àt €|ÿ H‹š"H‹ £"H‹Ê”À¶À‰B0èy†þÿH¾3H‹º öDq@@¾ÆDÂé™ÀÿÿH‹}."¸+H…Ò„„ÀÿÿH‹5X"H‹ A"H‹ ñH‹5+"€|ÿ ”¶҉Q0éXÀÿÿH‹<."¸*H…Ò„CÀÿÿH‹5"H‹ "H‹ ñH‹5Í*"€|ÿ ”¶҉Q0éÀÿÿH‹û-"¸H…Ò„ÀÿÿH‹5Ö"H‹ ¿"H‹ ñH‹5Œ*"€|ÿ ”¶҉Q0éÖ¿ÿÿf„USH‰õH‰ûº ¾HƒìH‹ 3Æ!¿hˆBèI„þÿH9ëw#@¿H‹=Æ!1À¾ÆóAHƒÃèv€þÿH9ÝsáH‹5úÅ!HƒÄ¿ []éªþÿf.„HcÆþ¨SH‹ Å`!CºrˆB¸xˆBH‰ûHMо~ˆB1Àè!€þÿH‰Þ¿)[écþÿH…ÿ¸†ˆBHDø‹:-"…Àu óÄH‰úH‹=vÅ!S1À‰ó¾ˆBè×þÿH‹=`Å!‰Þèyÿÿÿ[H‹5QÅ!¿ éþÿ€‹¦"…Àu D‹Ã"E…ÛtjS‰û袲þÿH‹›""Æ‹=¦"…ÿ…Š‹5ˆ"…ö…œ‹ r"…É…΋\"…Ò…à‹F"…À…’fH‹5I""€>u4[óÃD‹="E…ÒuŠD‹ !"E…É…zÿÿÿD‹"E…À…jÿÿÿëÏf‰ß[é²þÿ„‹ "H‹=ó!"¾È‘B1Àèg‚þÿë•D‹Ú"H‹=Ó!"¾’B1ÀèG‚þÿérÿÿÿf‹¢"H‹=³!"¾°’B1Àè'‚þÿéRÿÿÿf‹’"H‹=“!"¾@’B1Àè‚þÿé2ÿÿÿf‹j"H‹=s!"¾x’B1ÀèçþÿéÿÿÿfAWAVAUATUSHì‹u+"…À…L¬$ÐHl$@1Ò1Û…ÀÇL+"ÇJ+"þÿÿÿf‰T$@I‰ìÇD$$HÇD$ÈL‰l$‰\$…P‹D$=ø„ç,HcØD¿¼€CAÿ1ýÿÿtZ‹ø*"ƒøþ„'…ÀŽ@=A¾ H˜D¶°€-C‹Æ*"…À…bC>=ªwH˜¿” ½BA9Ö„tD·´ CE…ö„âIcƶ˜ °BH‰D$¸)ØI‰ßH˜òALÅ‹f*"òL$(…À…\Aþ«wD‰óÿ$Ý`•Bf„H‹L$JýI‰îMÿI)ÅM)þ·œ à±BL‰èòT$(LhA¿6òPƒXÿÿÿH˜¿”ÀCòúªwHcÒf;´ ½B„û¿„àC‰D$·D$H‹L$InfA‰FH‰ÈHÀITþH9Õ‚äI‰íM)åIÑýIƒÅHù'‡N+H='º'HFÐH’H‰ÓH‰T$H|èü|þÿH…ÀI‰Ç„+Kl-L‰æH‰ÇH‰D$(M4_IÁåH‰êèP|þÿH‹t$HL‰êL‰÷H‰D$0è7|þÿHD$@I9ÄtL‰çèwþÿ‹ )"Il/þOl.ø…À…ÝH‹D$0IDþH9Ń +‹à("L‰t$L‹d$(…À„°ýÿÿ‹T$H‹=Á!¾ÀˆB1Àè{{þÿé”ýÿÿfDHc©("¾þÿÿÿ9ðt=¾†˜‹|$$…ÿ„¢ƒ|$$u9ƒøŽ[¿Ê‰BèûÿÿÇ`("þÿÿÿëfDH‰îL‰çèMúÿÿD¿¼€CAÿ1ýÿÿtAƒÇAÿªwMcÿfCƒ¼? ½Bt7I9ìtz·´@µB¿Ü‰BHƒíIƒíè°úÿÿ‹ ö'"H¿]…Ét¤ë—€G¿¼?€æBE…ÿ~»‹Ð'"H‹Õ'"I]…ÒI‰E…›)I‰ÝI‰îD‰|$ÇD$$éÓýÿÿDL‰å1ÛA½HcŽ'"ƒøþt=¾vu¿ü‰Bè#úÿÿ‹i'"HÝ…Àt!ééH¿E¿ŠBHƒí·´@µBèõùÿÿL9åuàHD$@I9ÄtL‰çè.uþÿHÄD‰è[]A\A]A^A_Ã…Ïþÿÿ1ÛA½¶°€-Cë‚€‹|$$Hcж²€-C…ÿ…^þÿÿ¿½‰BƒÎ&"èa«ÿÿéˆþÿÿ@‹¾&"…À…èÅ´ÿÿ…À‰­&"ÀûÿÿD‹5œ&"Ç–&"E…ö„ËûÿÿH‹ Ö¾!º¾¿åˆBE1öèß|þÿé¨ûÿÿf.„H‹=©¾!ºûˆB¾ˆB1ÀèyþÿH‹=‘¾!D‰öè©øÿÿH‹5‚¾!¿ è8xþÿéaûÿÿH‹T$H‹=d¾!¾£ˆB1ÀèÈxþÿéýÿÿH‹D$H‹=D¾!AVÿ¾è’B·Œ *C1Àèœxþÿ…Û„†CÿL‰d$0H‰l$8HƒÀH‰ÁH‰Ø»H÷ØI‰ÌHDEH‰ÝH‰Ã€H‹=é½!‰ê¾‰B1ÀèKxþÿH¿kH‹=Ͻ!HƒÅ·´@µBèÞ÷ÿÿH‹5·½!¿ èmwþÿI9ìu¸L‹d$0H‹l$8Aþ«w5D‰óÿ$ÝÀ¢B‹-"…Û… 'I‹EH‰ÇèÁ’ÿÿ1Ò1ö¿裷þÿD‹ %"E…É„ÀúÿÿH‹=I½!ºµ‰B¾ˆB1ÀI‰îè¥wþÿH‹D$H‹=)½!·œà±B‰Þè:÷ÿÿH‹5½!¿ èÉvþÿD‹®$"JýMÿM)þI)ÅE…ÀL‰è„yúÿÿL‰öL‰çL‰l$è…öÿÿH‹D$é_úÿÿH‰îL‰çèmöÿÿé#ýÿÿ„H‹ ©¼!º¾¿“ˆBèµzþÿ‹;$"éÉøÿÿf.„¿„€æB…À‰D$~N‹D$$ƒøƒÐÿ‰D$$‹$"…À…„%H‹$"Çó#"þÿÿÿIƒÅI‰îI‰Eéúÿÿ¿„€æB‰D$éúÿÿA‰ÆA÷Þé5ùÿÿL‹t$L‰d$(éÎúÿÿH‹ ¼!º¾¿ÓˆBè zþÿéÞüÿÿòAEfWJPòD$(éoþÿÿòAeòd$(é^þÿÿòA]ò\$(éMþÿÿ¿èCÿÿé>þÿÿ¿è4ÿÿé/þÿÿ¿ è%ÿÿé þÿÿ¿èÿÿéþÿÿ1ÿè ÿÿéþÿÿ¿èûÿÿéöýÿÿ1ÿ读þÿ1Ò1ö¿Qèµþÿ1Ò1ö¿=èsµþÿéÎýÿÿ1Ò1ö¿#è`µþÿé»ýÿÿ1Ò1ö¿$èMµþÿé¨ýÿÿ1Ò1ö¿è:µþÿé•ýÿÿ1Ò1ö¿ è'µþÿé‚ýÿÿ¿èØÏþÿésýÿÿ¿1èÉÏþÿédýÿÿ¿0èºÏþÿéUýÿÿ¿/è«ÏþÿéFýÿÿ¿(öAè¼}ÿÿ¿è’Ïþÿé-ýÿÿ¿(öAè£}ÿÿ¿èyÏþÿéýÿÿ¿èjÏþÿéýÿÿ¿(öAè{}ÿÿ¿èQÏþÿéìüÿÿ¿(öAèb}ÿÿ¿è8ÏþÿéÓüÿÿ¿è)ÏþÿéÄüÿÿ¿(öAè:}ÿÿ¿èÏþÿé«üÿÿ¿(öAè!}ÿÿ¿è÷Îþÿé’üÿÿ¿èèÎþÿéƒüÿÿ¿(öAèù|ÿÿ¿èÏÎþÿéjüÿÿ¿(öAèà|ÿÿ¿è¶ÎþÿéQüÿÿ¿è§ÎþÿéBüÿÿ¿è˜Îþÿé3üÿÿ¿è‰Îþÿé$üÿÿ¿èzÎþÿéüÿÿ¿?èkÎþÿéüÿÿ¿5è\Îþÿé÷ûÿÿ¿>èMÎþÿéèûÿÿ‹r¹!…À… $¿4è0ÎþÿéËûÿÿ¿,è!Îþÿé¼ûÿÿ¿$èÎþÿé­ûÿÿ¿!èÎþÿéžûÿÿ¿ èôÍþÿéûÿÿ¿èåÍþÿé€ûÿÿ¿9èÖÍþÿéqûÿÿ¿8èÇÍþÿébûÿÿ1ÿè»ÍþÿéVûÿÿ¿è¬ÍþÿéGûÿÿ¿7èÍþÿé8ûÿÿ¿èŽÍþÿé)ûÿÿ¿èÍþÿéûÿÿ¿èpÍþÿé ûÿÿ¿èaÍþÿéüúÿÿ¿èRÍþÿéíúÿÿ¿èCÍþÿéÞúÿÿ¿2è4ÍþÿéÏúÿÿ¿è%ÍþÿéÀúÿÿ¿èÍþÿé±úÿÿ¿-èÍþÿé¢úÿÿ¿èøÌþÿé“úÿÿ¿ èéÌþÿé„úÿÿ¿ èÚÌþÿéuúÿÿ¿ èËÌþÿéfúÿÿ¿ è¼ÌþÿéWúÿÿ¿ è­ÌþÿéHúÿÿI‹}ð1öèµþÿ¾H‰Çè uÿÿé+úÿÿI‹}ð1öèµþÿ¾H‰Çèƒuÿÿéúÿÿ¿}èDòþÿéÿùÿÿ¿>è5òþÿéðùÿÿ¿{è&òþÿéáùÿÿ¿<èòþÿéÒùÿÿ¿!èòþÿéÃùÿÿ¿=èùñþÿé´ùÿÿ1Ò1ö¿;èF±þÿé¡ùÿÿ¿^è—vÿÿé’ùÿÿ¿/èˆvÿÿéƒùÿÿ¿*èyvÿÿétùÿÿ¿-èjvÿÿéeùÿÿ¿+è[vÿÿéVùÿÿI‹}1öè+´þÿ1ÒH‰Æ¿<èܰþÿé7ùÿÿI‹u1Ò¿Mèǰþÿé"ùÿÿ1Ò¾(öA¿è±°þÿé ùÿÿ1Ò¾(öA¿è›°þÿéöøÿÿ1Ò¾(öA¿è…°þÿéàøÿÿ1Ò¾(öA¿èo°þÿéÊøÿÿòAEè¿oÿÿéºøÿÿ1Ò1ö¿ièL°þÿé§øÿÿ1Ò1ö¿yè9°þÿ锸ÿÿ¿}è ïþÿé…øÿÿ¿>èûîþÿévøÿÿ¿{èìîþÿégøÿÿ¿<èÝîþÿéXøÿÿ¿!èÎîþÿéIøÿÿ¿=è¿îþÿé:øÿÿ¿!è óþÿé+øÿÿè6nÿÿ¿&èŒóþÿéøÿÿ1Ò1ö¿詯þÿèÄmÿÿéÿ÷ÿÿè nÿÿ¿|è`óþÿéë÷ÿÿ1Ò1ö¿è}¯þÿè˜mÿÿéÓ÷ÿÿI‹}ð¾èÅÿÿéÀ÷ÿÿI‹}ð1ö蕲þÿ1ÒH‰Æ¿>èF¯þÿé¡÷ÿÿ¿èWµþÿ1Ò1ö¿Qè)¯þÿ1Ò1ö¿=è¯þÿév÷ÿÿ¿#èÌÉþÿég÷ÿÿ¿"è½ÉþÿéX÷ÿÿ¿Cè®ÉþÿéI÷ÿÿ¿BèŸÉþÿé:÷ÿÿ1Ò1ö¿%èÌ®þÿé'÷ÿÿ1Ò1ö¿&è¹®þÿé÷ÿÿ1Ò1ö¿!覮þÿé÷ÿÿ1Ò1ö¿"è“®þÿéîöÿÿ¿:èDÉþÿéßöÿÿ¿è5ÉþÿéÐöÿÿ¿è&ÉþÿéÁöÿÿ¿èÉþÿé²öÿÿ¿èÉþÿé£öÿÿ¿èùÈþÿé”öÿÿ¿èêÈþÿé…öÿÿ¿)èÛÈþÿévöÿÿ¿(èÌÈþÿégöÿÿ¿'è½ÈþÿéXöÿÿ¿&è®ÈþÿéIöÿÿ¿%èŸÈþÿé:öÿÿ¿*èÈþÿé+öÿÿ¿èÈþÿéöÿÿòÄGèmÿÿ¿èeÈþÿéöÿÿò¨Gèólÿÿ¿èIÈþÿéäõÿÿ¿@è:ÈþÿéÕõÿÿ¿6è+ÈþÿéÆõÿÿ¿èÈþÿé·õÿÿ¿;è Èþÿé¨õÿÿ‹¢²!ƒ "‰… "éõÿÿ1Ò1ö¿ è"­þÿ1Àèlÿÿè6kÿÿéqõÿÿ1Ò1ö¿ ƒ-5 "èü¬þÿè×kÿÿ1Ò1ö¿/èé¬þÿ1Ò1ö¿3èÛ¬þÿƒ-ø "é/õÿÿ‹ý "‹ ó "¾è”B…ÒucK?A½H÷Ûéƒòÿÿ1Ò1ö¿2ƒ¼ "蓬þÿ¿0è)®þÿ‹ã±!ƒ° "‰¦ "èkÿÿéÌôÿÿ‹¢ "‹ ˜ "¾¸”B…ÒtH‹="1Àè pþÿH‹5‚"¿èxŸþÿéyÿÿÿ1Ò1ö¿ è"¬þÿè=jÿÿéxôÿÿƒ-M "è|gÿÿèçjÿÿèrjÿÿ1Ò1ö¿/èô«þÿ1Ò1ö¿3èæ«þÿƒ- "é:ôÿÿ1Ò1ö¿2ƒî "èÅ«þÿ¿0è[­þÿ‹±!ƒê "‰à "è3jÿÿéþóÿÿƒ-à "èrjÿÿ1Ò1ö¿/è„«þÿ1Ò1ö¿3èv«þÿƒ-“ "éÊóÿÿ‹ "‹ † "¾ˆ”B…Ò„—þÿÿéõþÿÿ@1Ò1ö¿2ƒ\ "è3«þÿ¿0èɬþÿ‹ƒ°!ƒH "‰> "è¡iÿÿélóÿÿA‹E…Àx^°!1Ò1ö¿,èðªþÿéKóÿÿ1Ò1ö¿,èݪþÿé8óÿÿ1Ò1ö¿*èʪþÿ1Ò1ö¿ 輪þÿ1Ò1ö¿+讪þÿé óÿÿA‹E…Àˆýòÿÿ÷¯!éòòÿÿA‹E…Àˆæòÿÿà¯!éÛòÿÿ1Ò1ö¿/èmªþÿ1Ò1ö¿=è_ªþÿ1Ò1ö¿5èQªþÿ謆ÿÿé§òÿÿèR†ÿÿ1Ò1ö¿4è4ªþÿéòÿÿI‹}1öèd­þÿ¿H‰ÃèwfÿÿH‹xH‰Þè jþÿ…À„còÿÿ¾—‰Bé·ýÿÿf„¿èFfÿÿéAòÿÿòáCè4iÿÿé/òÿÿƒ- "é#òÿÿ‹"‹ ÷"¾X”B…Ò„ðüÿÿéNýÿÿD1Ò1ö¿/è’©þÿ1Ò1ö¿3è„©þÿƒ-¡"éØñÿÿèãdÿÿèNhÿÿèÙgÿÿéÄñÿÿ1Ò1ö¿èV©þÿèqgÿÿ1Ò1ö¿'èC©þÿI‹}Ð1öèx¬þÿ1ÒH‰Æ¿>è)©þÿè”gÿÿI‹}Ð1öèY¬þÿ1ÒH‰Æ¿<è ©þÿ1Ò1ö¿)èü¨þÿI‹}Ð1öè1¬þÿ1ÒH‰Æ¿>èâ¨þÿI‹}Ð1öè¬þÿ1ÒH‰Æ¿<èȨþÿ1Ò1ö¿(躨þÿ1Ò1ö¿ 謨þÿèÇfÿÿéñÿÿI‹}ø1öè׫þÿH‰Çèfÿÿ1Ò1ö¿è¨þÿè gÿÿ¿0èªþÿéÍðÿÿ1Ò1ö¿2ƒ"èX¨þÿ‹²­!ƒ"‰…"é ðÿÿ¿èVlÿÿI‹}ð1öèk«þÿ¾H‰Çè^jÿÿéyðÿÿ¿è/lÿÿI‹}ð1öèD«þÿ¾H‰Çè7jÿÿéRðÿÿ¿èlÿÿI‹}1öè«þÿ1öH‰Çè“€ÿÿI‹}1öè«þÿ1ÒH‰Æ¿dè¹§þÿéðÿÿ¿èÊkÿÿI‹}1öèߪþÿ¾H‰ÇèR€ÿÿI‹}1öèǪþÿ1ÒH‰Æ¿>èx§þÿéÓïÿÿI‹}è¾襪þÿ¾H‰ÇèhhÿÿI‹}è¾芪þÿ¾SH‰Çè½pÿÿé˜ïÿÿI‹}è¾èjªþÿ¾H‰Çè-hÿÿI‹}è¾èOªþÿ¾DH‰Çè‚pÿÿé]ïÿÿI‹}¾è/ªþÿ1öH‰Çèõgÿÿé@ïÿÿI‹}¾èªþÿ¾H‰ÇèÕgÿÿé ïÿÿI‹}è1öèõ©þÿ¾H‰ÇèhÿÿI‹}è1öèÝ©þÿ¾sH‰ÇèpÿÿéëîÿÿI‹}è1öèÀ©þÿ¾H‰Çè3ÿÿI‹}è1ö訩þÿ¾dH‰ÇèÛoÿÿé¶îÿÿI‹}1öè‹©þÿ1öH‰ÇèÿÿéœîÿÿI‹}1öèq©þÿ¾H‰Çèä~ÿÿéîÿÿÇm"épîÿÿÇ^"éaîÿÿÇO"éRîÿÿÇ@"éCîÿÿI‹}1öÇ;"è©þÿH‰Çè–¥þÿI‹}1öH‰"èô¨þÿH‰Çè|¥þÿH‰D$(éîÿÿI‹}1öÇú"èͨþÿH‰ÇèU¥þÿI‹}1öH‰Ø"賨þÿH‰Çè;¥þÿH‰D$(éÁíÿÿƒ-¦"éµíÿÿ‹›"‹ ‘"¾(”B…Ò„‚øÿÿéàøÿÿ€1Ò1ö¿è"¥þÿH‹; "H‹T "1ö¿HH‰P81Òè¥þÿ‹5d"1ÿèõyÿÿ1Ò1ö¿IÇJ"èݤþÿHÇú "è=}ÿÿè8cÿÿé#íÿÿ¿èÙhÿÿ1Ò1ö¿=諤þÿéíÿÿ‹ø"…À…;I‹}¾J蚆ÿÿ1Ò1ö¿Gè|¤þÿ1Ò1ö¿èn¤þÿH‹§ "H‰ˆ "H‰y "è¤}ÿÿé¯ìÿÿ‹©©!ƒŽ"‰„"èWbÿÿ¾ð“B¿è¨äÿÿ‹Š"…À„zìÿÿ¾z‰BéÎ÷ÿÿI‹}è1öèE§þÿH‰ÇèÍ£þÿH‰D$(éSìÿÿI‹}è1öè(§þÿH‰Çè°£þÿH‰D$(é6ìÿÿ1Ò1ö¿AèÈ£þÿé#ìÿÿI‹}è1öèø¦þÿ¾SH‰Çè+mÿÿéìÿÿI‹}è1öèÛ¦þÿ¾SH‰ÇèmÿÿééëÿÿI‹}è1ö辦þÿ¾DH‰ÇèñlÿÿéÌëÿÿI‹}è1ö衦þÿ¾DH‰ÇèÔlÿÿé¯ëÿÿI‹}1ö脦þÿH‰Çè £þÿH‰D$(é’ëÿÿI‹}1öèg¦þÿH‰Çèï¢þÿH‰D$(éuëÿÿI‹}1öèê_þÿòD$(é_ëÿÿòAmòl$(éNëÿÿ1ö¿vè¢îþÿé=ëÿÿ¾¿uèŽîþÿé)ëÿÿ1ö¿vè}îþÿéëÿÿI‹}1öº ècþÿfïÀò*Àèûaÿÿ¾¿uèLîþÿéçêÿÿ1ö¿vè;îþÿéÖêÿÿI‹}1öè«¥þÿ1ÒH‰Æ¿<è\¢þÿ¾¿uè îþÿé¨êÿÿ¿Uèžçþÿé™êÿÿ¿uèçþÿéŠêÿÿ¿dè€çþÿé{êÿÿ¿sèqçþÿélêÿÿ¿sèbçþÿé]êÿÿòAEè"ßþÿéMêÿÿI‹}ètßþÿé?êÿÿòAEèßþÿé/êÿÿI‹}èVßþÿé!êÿÿ¿sè—ßþÿI‹}è1öèì¤þÿ¾H‰Çèÿqÿÿéúéÿÿ¿sèpßþÿI‹}1öèŤþÿ1ÒH‰Æ¿dèv¡þÿéÑéÿÿ¿dèGßþÿI‹}è1ö蜤þÿ¾H‰Çè¯qÿÿéªéÿÿ¿dè ßþÿI‹}1öèu¤þÿ1ÒH‰Æ¿>è&¡þÿééÿÿ‹5"¿sè¡üþÿI‹}è1öèF¤þÿ¾H‰ÇèYqÿÿéTéÿÿ‹5b"¿sètüþÿI‹}1öè¤þÿ1ÒH‰Æ¿dèÊ þÿé%éÿÿ‹53"¿dèEüþÿI‹}è1öèê£þÿ¾H‰Çèýpÿÿéøèÿÿ‹5"¿dèüþÿI‹}1öè½£þÿ1ÒH‰Æ¿>èn þÿéÉèÿÿ1Ò1ö¿è[ þÿé¶èÿÿèÁ[ÿÿ1ÀèŠ_ÿÿèµ[ÿÿè°^ÿÿé›èÿÿ1Ò1ö¿ è- þÿèH^ÿÿéƒèÿÿèŽ^ÿÿéyèÿÿ1Ò1ö¿ ƒ­ü!è þÿè^ÿÿéZèÿÿƒ-Gþ!éNèÿÿ‹<þ!…Ò„&óÿÿ‹ *þ!¾•Béyóÿÿè;^ÿÿé&èÿÿè1[ÿÿ1Àèú^ÿÿè%[ÿÿè ^ÿÿé èÿÿ1ö1Ò¿|èŸþÿ¿èÓýþÿòk^èæ^ÿÿ1ö¿uè:ëþÿéÕçÿÿ1ö1Ò¿|ègŸþÿ¿èýþÿò5^è°^ÿÿ1ö¿uèëþÿéŸçÿÿ1ö1Ò¿|è1Ÿþÿò ^è„^ÿÿ1ö¿uèØêþÿésçÿÿ¿èIýþÿòá]è\^ÿÿ1ö¿uè°êþÿéKçÿÿ¿è!ýþÿò¹]è4^ÿÿ1ö¿uèˆêþÿé#çÿÿ¿èùüþÿò‘]è ^ÿÿ1ö¿uè`êþÿéûæÿÿ1ö¿uèOêþÿéêæÿÿI‹}1öº èÚ^þÿfïÀò*ÀèÍ]ÿÿ1ö¿uè!êþÿ鼿ÿÿI‹}1öè‘¡þÿ1ÒH‰Æ¿<èBžþÿ1ö¿uèöéþÿ鑿ÿÿò ]è„]ÿÿ1ö¿uèØéþÿésæÿÿI‹}èêfÿÿ¿sè`ãþÿé[æÿÿ¿9öAèÑfÿÿ¿sèGãþÿéBæÿÿ1ö¿vè–éþÿé1æÿÿò©\è$]ÿÿ¾¿uèuéþÿéæÿÿ1ö¿vèdéþÿéÿåÿÿ1ö1Ò¿|è‘þÿòi\èä\ÿÿ¾¿uè5éþÿéÐåÿÿ¿èÖØþÿéÁåÿÿ‹5Ãû!…ö…¼ I‹EH‰Çè·xÿÿé¢åÿÿ‹=¤û!…ÿ…° I‹EH‰Çè8xÿÿéƒåÿÿD‹ „û!E…É…såÿÿ¾H“B¿èDþÿé_åÿÿ€D‹Yû!E…À…Håÿÿ¾p“B¿èþÿé4åÿÿ@I‹}ègxÿÿ1Ò1ö¿=蹜þÿéåÿÿ1Ò1ö¿1覜þÿ¿.è<žþÿD‹¹ú!E…Ò…ìäÿÿ¾9‰B¿è½þÿéØäÿÿ„I‹}èxÿÿ1Ò1ö¿=èYœþÿé´äÿÿ1Ò1ö¿1èFœþÿI‹}1öº è–\þÿ‰Çè/ÿÿ‹Mú!…Û…äÿÿD‹:ú!E…Û…qäÿÿ¾‰B¿èBþÿé]äÿÿD1Ò1ö¿1èê›þÿ¿èà€ÿÿ‹þù!…À…2äÿÿD‹5ëù!E…ö…"äÿÿ¾‰B¿èóŽþÿéäÿÿfD1Ò1ö¿€èš›þÿéõãÿÿ¾“B¿èÜÿÿéáãÿÿA‹E…ÀˆÕãÿÿÏ !éÊãÿÿƒ=k"½ãÿÿéžîÿÿ„K?E1íH÷Ûéáÿÿ¿=è÷µþÿé’ãÿÿ¿3èèµþÿéƒãÿÿ¿.èÙµþÿétãÿÿ1Ò1ö¿fè›þÿéaãÿÿI‹}H…ÿ„¹ èÏcÿÿéJãÿÿI‹u1Ò¿NèÚšþÿé5ãÿÿI‹}è1öè žþÿ¾H‰ÇèkÿÿéãÿÿI‹}1öèíþÿ1ÒH‰Æ¿gèžšþÿéùâÿÿI‹}1öèÎþÿ1ÒH‰Æ¿cèšþÿéÚâÿÿ1Ò1ö¿xèlšþÿéÇâÿÿ1Ò1ö¿wèYšþÿé´âÿÿ1Ò1ö¿QèFšþÿ¿OBècÿÿ¿è’åþÿéâÿÿ1Ò1ö¿Qèšþÿ¿Bèõbÿÿ¿èkåþÿéfâÿÿ¿ è\åþÿéWâÿÿ¿èMåþÿéHâÿÿ¿è>åþÿé9âÿÿI‹}ð1öèþÿ¾H‰Çè!jÿÿéâÿÿ¿3育þÿé âÿÿ¿.ès²þÿéþáÿÿ¿;èd²þÿéïáÿÿ¿=èU²þÿéàáÿÿI‹}ð1ö赜þÿ1ÒH‰Æ¿dèf™þÿéÁáÿÿÇ3ñ!é²áÿÿÇ$ñ!é£áÿÿÇñ!é”áÿÿÇñ!é…áÿÿÇ÷ð!éváÿÿ1Ò1ö¿ è™þÿécáÿÿI‹}èš þÿéUáÿÿ1Ò1ö¿ èç˜þÿéBáÿÿfïÀè9Xÿÿ1Ò1ö¿ è˘þÿé&áÿÿ1Ò1ö¿踘þÿéáÿÿ¿DèIÏþÿéáÿÿ¿Sè:Ïþÿéõàÿÿ¿dè+Ïþÿéæàÿÿ¿sèÏþÿé×àÿÿ¿è-³þÿ1Ò1ö¿=è_˜þÿéºàÿÿ¿è³þÿ1Ò1ö¿=èB˜þÿéàÿÿòE2èWÿÿ¿èæ²þÿ1Ò1ö¿=è˜þÿésàÿÿò2èfWÿÿ¿è¼²þÿ1Ò1ö¿=èî—þÿéIàÿÿ1Ò1ö¿{èÛ—þÿé6àÿÿ1Ò1ö¿zèÈ—þÿé#àÿÿ1Ò1ö¿Œèµ—þÿéàÿÿ¿èÆ7ÿÿéàÿÿ1ÿèº7ÿÿéõßÿÿ1Ò1ö¿}臗þÿéâßÿÿ1Ò1ö¿Šèt—þÿéÏßÿÿ1Ò1ö¿‰èa—þÿé¼ßÿÿ1Ò1ö¿ŽèN—þÿ1ÿè·ÿÿé¢ßÿÿ1Ò1ö¿ˆè4—þÿéßÿÿ1Ò1ö¿‡è!—þÿé|ßÿÿ1Ò1ö¿†è—þÿéißÿÿ1Ò1ö¿…èû–þÿ1ÿèdÿÿéOßÿÿ1Ò1ö¿„èá–þÿ1ÿèJÿÿé5ßÿÿ1ÿèÿÿé)ßÿÿ¿ÿÿÿÿèÿÿÿéßÿÿ1Ò1ö¿”謖þÿéßÿÿ¿xBè}_ÿÿ1Ò1ö¿“è–þÿéêÞÿÿ1Ò1ö¿“è|–þÿé×Þÿÿ¿è­ÿÿ¿èÓÿÿé¾Þÿÿ¿è”ÿÿ¿èºÿÿé¥Þÿÿ¿è{ÿÿé–Þÿÿ¿èlÿÿé‡Þÿÿ¿è]ÿÿ¿èƒÿÿénÞÿÿ¿èDÿÿé_Þÿÿ1Ò1ö¿‚èñ•þÿ¿èWÿÿéBÞÿÿ1Ò1ö¿‚èÔ•þÿé/Þÿÿ1Ò1ö¿èÁ•þÿéÞÿÿ¿èBÿÿé Þÿÿ1ÿè6ÿÿéÞÿÿ‹ô!…À„œ1Ò1ö¿è…•þÿH‹žý!H‹·ú!1ö¿HH‰P81Òèe•þÿ‹5Çó!¿èUjÿÿ1Ò1ö¿IèG•þÿé¢Ýÿÿ‹¤ó!…À„G1Ò1ö¿è&•þÿH‹?ý!H‹Xú!1ö¿HH‰P81Òè•þÿ‹5hó!¿èöiÿÿ1Ò1ö¿Ièè”þÿéCÝÿÿ‹Eó!1Ò1ö…À„‡¿èÇ”þÿH‹àü!H‹ùù!1ö¿HH‰P81Òè§”þÿ‹5 ó!1ÿèšiÿÿ1Ò1ö¿I茔þÿéçÜÿÿ‹éò!…Ò…©I‹EH‰Çè­ÐþÿéÈÜÿÿ1Ò1ö¿rèZ”þÿéµÜÿÿ1ÿèŽòþÿ¿tè¤Ùþÿ1ö¿vèøßþÿé“Üÿÿ1ÿèlòþÿ1ö¿vèàßþÿé{Üÿÿ1ÿèTòþÿ¿nèjÙþÿ1ö¿vè¾ßþÿéYÜÿÿ¿èšþÿ1Ò1ö¿=èá“þÿ1Ò1ö¿=èÓ“þÿé.Üÿÿ1ÿèç™þÿ1Ò1ö¿=蹓þÿ1Ò1ö¿=è«“þÿéÜÿÿ1Ò1ö¿蘓þÿéóÛÿÿ1Ò1ö¿sè…“þÿéàÛÿÿ1Ò1ö¿tèr“þÿéÍÛÿÿ1Ò1ö¿è_“þÿéºÛÿÿ1Ò1ö¿èL“þÿé§ÛÿÿDZ"é˜ÛÿÿÇ¢"é‰Ûÿÿ1Ò1ö¿’è“þÿévÛÿÿ1Ò1ö¿‘è“þÿécÛÿÿ¿(öAè9ÏþÿéTÛÿÿD‹Uñ!E…Û…I‹EH‰ÇèHnÿÿ1Ò1ö¿èÊ’þÿé%ÛÿÿD‹5&ñ!E…ö…«I‹EH‰Çè¹mÿÿ1Ò1ö¿è›’þÿéöÚÿÿ¿èÌðþÿ1ö1Ò¿|è~’þÿòVQèÑQÿÿ1ö¿uè%ÞþÿéÀÚÿÿ¿è–ðþÿ1ö1Ò¿|èH’þÿò Qè›Qÿÿ1ö¿uèïÝþÿéŠÚÿÿ¿è`ðþÿòøPèsQÿÿ1ö¿uèÇÝþÿ1Ò1ö¿|èù‘þÿéTÚÿÿ1ö1Ò¿|èæ‘þÿ¿èðþÿò´Pè/Qÿÿ1ö¿uèƒÝþÿéÚÿÿ1Ò1ö¿ è°‘þÿé Úÿÿ1Ò1ö¿ è‘þÿéøÙÿÿ1ÿèÍþÿéìÙÿÿD‹íï!E…Ò…¿I‹EH‰Çèàlÿÿ1Ò1ö¿èb‘þÿé½Ùÿÿ1Ò1ö¿ èO‘þÿéªÙÿÿ‹ ¬ï!…É…’I‹E¾H‰Çè;sÿÿé†Ùÿÿ1Ò1ö¿ è‘þÿésÙÿÿH‹=É–!º ‰B¾ˆB1Àè(QþÿH‹=±–!D‰öèÉÐÿÿH‹5¢–!¿ èXPþÿé?Úÿÿ¿ë‰B1ÛA½èÁ‚ÿÿé—Öÿÿ1ÛE1íéÖÿÿH‹=k–!º ‰B¾ˆB1ÀI‰ÝI‰îèÄPþÿIcÇH‹=J–!·´@µBè]ÐÿÿH‹56–!¿ èìOþÿD‰|$ÇD$$éøÓÿÿM‰ü1ÛA½é%Öÿÿ¿è@þÿ雨ÿÿ¾d‰B¿èlƒþÿ¿(öAèYÿÿé}ØÿÿI‹}¾èO“þÿéQØÿÿI‹}¾è<“þÿéFýÿÿ¾O‰Bé«ãÿÿ¾˜“Bé¡ãÿÿI‹}¾è“þÿéðüÿÿI‹}¾è“þÿéHûÿÿI‹}¾èï’þÿé2þÿÿI‹}¾èÜ’þÿé_þÿÿI‹}¾èÉ’þÿé5òÿÿI‹}¾è¶’þÿéAòÿÿ¾È“B¿袂þÿéãÛÿÿI‹}èôlÿÿé·êÿÿf.„DAWL=§Œ!AVAUATA‰þUH-žŒ!SI‰õI‰ÔL)ýHƒìHÁýèJþÿH…ít"1Û„I‹ßHƒÃL‰âL‰îD‰÷ÿÐH9ÝuèHƒÄ[]A\A]A^A_Ãf„óÃHƒìHƒÄÃ---Program done, press RETURN--- ---Immediate exit to system, due to a fatal error. floating point exception, cannot proceed.segmentation fault, cannot proceed.keyboard interrupt, cannot proceed.received signal HANGUP, cannot proceed.received signal QUIT, cannot proceed.received signal ABORT, cannot proceed.Can't malloc %d bytes of memory import __END_OF_CURRENT_IMPORT import __IGNORE_NESTED_IMPORTS cannot bind a program when called interactivelywill not overwrite '%s' with '%s'could not open '%s' for reading: %scould not open '%s' for writing: %sLine %4d, Address %p: %-*s (lib %s, ptr %p, tag 0x%x%s) Could not read from end of embedded programNext line from end of embbeded program to be processed is: '%s'need a string as a function nameexpecting the name of a string function (not '%s')expecting the name of a numeric function (not '%s')Couldn't open '%s' to check, if it is bound: %sCould not read length of name of embedded programLength of name of embedded program is %dCould not read name of embedded programName of embedded program is '%s'Could not read length of embedded programLength of embedded program is %dDumping the embedded program, that will be executed:End of program, that will be executed---Press RETURN to continue with its parsing: yabasic 2.78.5, built on x86_64-unknown-linux-gnu Usage: yabasic [OPTIONS] [FILENAME [ARGUMENTS]] FILENAME : file, which contains the yabasic program; omit it to type in your program on the fly (terminated by a double newline) ARGUMENTS : strings, that are available from within the yabasic program --help : print this message --version : show version of yabasic -i,-infolevel [dnwefb] : set infolevel to debug,note,warning,error,fatal or bison -e,--execute COMMANDS : execute yabasic COMMANDS right away --bind BOUND : bind interpreter with FILENAME into BOUND --geometry x+y : position graphic window at x,y --fg,--bg COL : specify fore/background color of graphic window --display DISP : display, where window will show up --font FONT : font for graphic window --docu NAME : print embedded docu of program or library --check : check for possible compatibility problems -- : pass any subsequent words as arguments to yabasic --librarypath PATH : directory to search libraries not found in current dir (default %s) no infolevel specified (type 'yabasic --help' for help)there's no infolevel '%s' (type 'yabasic --help' for help)no foreground colour specified (type 'yabasic --help' for help)no background colour specified (-h for help)no geometry string specified (-h for help)name of bound program to be written is missingno commands specified (-h for help)no library path specified (-h for help)no display name specified (-h for help)no font specified (-h for help)no filename specified (-h for help)unknown or ambiguous option '%s' (type 'yabasic --help' for help)This is yabasic 2.78.5, compiled on x86_64-unknown-linux-gnu at Mon Apr 2 22:11:46 2018, configured at Sun Apr 1 14:49:49 UTC 2018command %d has no description (command after %s) This is yabasic version 2.78.5, compiled on x86_64-unknown-linux-gnu at Mon Apr 2 22:11:46 2018 Copyright 1995-2018 by Marc Ihm, according to the MIT License Enter your program and type RETURN twice when done. Your program will execute immediately and cannot be saved;create your program with an external editor, if you want to keep it.Type 'man yabasic' or see the file yabasic.htm for more information,or go to www.yabasic.de for online resources. read %d line(s) and generated %d command(s)Successfully bound '%s' and '%s' into '%s'Could not bind '%s' and '%s' into '%s'---Program parsed, press RETURN to continue with its execution: ---End of embbedded documentation, press RETURN Command %s (%d, right before '%s') not implementedProgram stopped due to an errorProgram terminated due to FATAL errorCheck for possible compatibility problems done Program will not be executed, %d possible problem(s) reported %d debug(s), %d note(s), %d warning(s), %d error(s)compilation time %g second(s), execution %g---Fatal---Error---Warning---Note---Debug---Dump---Info in %s, line %d: %s %s Illegal %d %n%s %s (%s) %n%s %s %n'%s' %ngoto%n%s()%nARRAY()%n'%s'%n%g%nlabel%nretadd%nretaddcall%nfree%nroot%nswitch_string%nswitch_number%nunknown%n;+%d%n import main import __END_OF_ALL_IMPORTS rbwbbinding %s and %s into %s import %s end rem %08d rem %s rem %02d __YaBaSiC_MaGiC_CoOkIe__Dumped to '%s'Illegal command type %dCouldn't seek within '%s': %screating@subroutine '%s' not definedmain.docu$FATALINFODUMPWARNINGNOTEDEBUGDEBUG+BISONinter_path is not set !Could not read infolevelSet infolevel to %s PATHcommand linestandard input -version-help-?Available OPTIONS: -check-infoleveldebugnotefatalbison-fg-foreground-bg-background-geometry-bind-execute-librarypath-display-font-doc-doc_-docu-docu_could not open '%s': %sYabasiclbyabos$unixFIRST_COMMANDFINDNOPEXCEPTIONcLINK_SUBRTOKEN2TOKENALT2SPLIT2SPLITALT2QGOTOQGOSUBQCALLRETURN_FROM_GOSUBRETURN_FROM_CALLCHECK_RETURN_VALUESWAPDECIDEANDSHORTORSHORTSKIPPERRESETSKIPONCEEND_FUNCTIONDOARRAYDBLADDDBLMINDBLMULDBLDIVDBLPOWNEGATEPUSHDBLSYMREQUIRECLEARREFSPUSHSYMLISTPOPSYMLISTMAKELOCALCOUNT_PARAMSMAKESTATICARRAYLINKPUSHARRAYREFARRAYDIMENSIONARRAYSIZEUSER_FUNCTIONSTRINGFUNCTION_OR_ARRAYPUSHFREEPOPDBLSYMPOPPUSHDBLPOKEFILESTREQSTRNESTRLTSTRLESTRGTSTRGEPUSHSTRSYMPOPSTRSYMPUSHSTRCONCATPUSHSTRPTRCHANGESTRINGQRESTOREREADDATAONESTRINGCHECKOPENCHECKSEEKEXECUTE$SEEK2cPUSHSTREAMcPOPSTREAMMOVEMOVEORIGINCLEARSCROPENWINGCOLOURGCOLOUR2GBACKCOLOURGBACKCOLOUR2TEXT1TEXT2TEXT3CLOSEWINCLEARWINOPENPRNCLOSEPRNTESTEOFDUPLICATESTARTFORFORCHECKFORINCREMENTBEGIN_SWITCH_MARKEND_SWITCH_MARKBEGIN_LOOP_MARKEND_LOOP_MARKSWITCH_COMPARENEXT_CASENEXT_CASE_HEREBREAK_MULTIBREAK_HERECONTINUE_HEREPOP_MULTICHKPROMPT???leftrightdelinshomef0f1f2f3f4f5f6f7f8f9f10f11f12f13f14f15f16f17f18f19f20f21f22f23f24backspacescrndownscrnupenteresctabcalling parser/compilerCouldn't parse programexecuting---Press RETURN to continue skipping---No embbeded documentationProgram ended normally.Program ended with a warningProgram not executedpa@°b@hb@àb@Èb@ðb@ b@hf@Hf@ f@f@ f@àe@Àe@ e@€e@`e@€f@€f@€f@@e@°d@Àg@–g@€g@¢g@Àg@Àg@®g@Àg@hg@Àg@Àg@tg@î{@ã{@¹{@®{@£{@˜{@z@Ä{@ON@ON@U@U@U@U@ìT@ÝT@²T@ˆT@lT@[T@ON@=T@!T@T@T@éS@ÍS@±S@•S@•S@yS@]S@ŠX@nX@RX@6X@X@X@þW@þW@âW@âW@þW@þW@âW@âW@ÆW@ªW@ŽW@rW@VW@ON@:W@W@ON@ON@W@ON@ON@ON@ON@æV@æV@æV@æV@æV@ÊV@®V@V@qV@UV@9V@V@ûU@ßU@ÃU@U@U@§U@‹U@ìT@ON@oU@ON@^U@^U@@U@$U@ÑQ@µQ@ON@™Q@™Q@™Q@}Q@}Q@}Q@}Q@}Q@}Q@aQ@aQ@aQ@aQ@aQ@aQ@EQ@)Q@ Q@ñP@ÕP@¹P@P@P@eP@IP@IP@)P@ P@ON@ñO@ÕO@ÕO@·O@›O@O@cO@cO@GO@)O@ O@íN@ÏN@³N@—N@CN@{N@AS@%S@ S@íR@ÑR@ÑR@ÑR@µR@™R@}R@aR@AR@%R@ R@ R@ R@ R@íQ@_N@2N@N@YJ@YJ@ N@öM@öM@globbing '%s' on '%s'0123456789abcdefNot a base-%d number: '%s'array '%s()' is not definedMB%d%c+%d:%04d,%04d%u.%u%c%nfeEgG%u.%c%n0123456789'%s' is not a valid format%lfcan't convert %g to character%w-%m-%d-%Y-%a-%b%H-%M-%S-%dcouldn't execute '%s'winwidthwinheightfontheightscreenheightscreenwidthargument2.78.5isboundsecondsrunninginvalid peekunknowntextalignwindoworiginprogram_file_nameprogram_namelibraryenvironmentstream %d not openeddumpswitching infolevel to '%c'invalid infolevelstdoutrandom_seed__assert_stack_sizeinvalid poke: '%s'can't find label '%s'run out of data itemslogical shortcut takenCannot convert base-%d numbersonly one dimensional arrays alloweddon't use quotes when peeking into a filestream %d not open for readingfunction called but not implementedassertion failed for number of entries on stack; expected = %d, actual = %ddon't use quotes when poking into fileStream %d not open for writingstream poke out of byte range (0..255)type of READ and DATA don't matchmixing strings and numbers in a single switch statement is not allowed«ž@pž@ ž@†¡@é@¿@•@‡@d@N@8@"@ @öœ@àœ@x›@›@öŸ@[Ÿ@Ÿ@½ž@p¡@EŸ@P¡@áš@†š@wš@´š@^š@1š@š@ë™@¹™@‡™@o™@¡™@˜@ì˜@š˜@<™@0˜@½—@u—@†¡@[—@?—@#—@—@á–@À–@á•@¸•@{•@•@C–@–@©–@•@z”@S”@†¡@.”@µ“@1“@C–@†¡@“@Æ’@Õ©@#ª@ª@Aª@Aª@Aª@Aª@Aª@Aª@Aª@ª@Aª@Aª@Aª@Aª@Aª@Aª@Aª@Aª@2ª@@°@`°@ˆ°@¨°@°@Я@²@±@@²@p²@б@ø±@à?€ÿÿÿÏA$@ð?𿀄.Aào@€ÿÿÿÿÿÿÿneed to call 'clear screen' firststream %d not open for writing or printinginvalid stream: %d (can handle only streams from 1 to %d)seek mode '%s' is none of begin,end,herecould not position stream %d to byte %dpopping %d from stack, switching to itpushing %d on stack, switching to %dunknown foreground colour: '%s'unknown background colour: '%s'waiting for input failed %s%ld%s%g/usr/bin/lprinvalid stream number %d'%s' is not a valid filemodestream %d already closedbeginherestream %d not openblackwhitebluegreenyellowcyanmagentaillegal screen string%c:%s:%s,%c:???:???,`»@p»@p»@p»@p»@P»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@@»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@p»@0»@p»@p»@p»@p»@ »@»@p»@p»@p»@»@p»@p»@p»@p»@p»@p»@p»@ðº@p»@p»@p»@àº@p»@к@p»@Ⱥ@p»@Hº@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@à¿@¿@¿@¿@¿@¿@¿@¿@¿@¿@À@¿@¿@¿@¿@`À@ðÀ@ ¿@{®Gáz„?àCàÃtransforming (%g,%g) into (%g,%g)could not load font '%s', trying 'fixed' insteadCould not get any TrueColor visualCreating a %d bit True Color mapwith %d, %d and %d bits for red, green and blue respectivelyCould not find foreground color '%s' Could not find background color '%s' couldn't create backing pixmaparguments to command colour must be between 0 and 255 (not %d,%d,%d)string argument to command colour must be three numbers between 0 and 255, separated by commas (not '%s')%g %g %g %g %g %g (%c) (%c) TRI Found two possible alignments: '%s' and '%s'There should be a specification for a text alignment (e.g. 'ct')The Quick Brown Fox Jumped Over The Lazy Dog 0123456789/Helvetica findfont setfont newpath 0 0 moveto (%s) false charpath flattenpath pathbbox 3 -1 roll pop pop sub abs %g exch div /Helvetica findfont exch scalefont setfont Invalid mode for bitblit: '%s', only 'solid' and 'transparent' are allowedInvalid bitmap (must start with 'rgb X,Y:', where X and Y are >0)showpage grestore %%%%Trailer /tmp/yabasic-postscript-output-XXXXXXcould not open file '%s' for printing: %s/CLYN {(y) eq {1 setgray} {rgb /r get rgb /g get rgb /b get setrgbcolor} ifelse} def /DO {CLYN N M 0 %g RL %g 0 RL 0 %g RL closepath fill (n) CLYN} def /LI {CLYN N M L stroke (n) CLYN} def /CI {mark 6 1 roll cir /fi 3 -1 roll put N cir /x get cir /y get cir /r get 0 360 arc closepath cir /fi get (y) eq {fill} {stroke} ifelse (n) CLYN cleartomark} def /AT {mark 5 1 roll txt /txt 3 -1 roll put N txt /x get txt /y get M txt /txt get false charpath flattenpath pathbbox txt /xa get (c) eq {2 div sub} if txt /xa get (l) eq {pop} if txt /xa get (r) eq {sub} if txt /txt get show cleartomark /RE {mark 7 1 roll rec /fi 3 -1 roll put N rec /x1 get rec /y1 get M rec /x1 get rec /y2 get L rec /x2 get rec /y2 get L rec /x2 get rec /y1 get L rec /x1 get rec /y1 get L closepath rec /fi get (y) eq {fill} {stroke} ifelse /TRI {mark 9 1 roll tri /fi 3 -1 roll put N tri /x1 get tri /y1 get M tri /x2 get tri /y2 get L tri /x3 get tri /y3 get L closepath tri /fi get (y) eq {fill} {stroke} ifelse fixedcould not get itCould not change font to '%s'%02x%02x%02x6x10Window already openwinheight less than 1 pixelwinwidth less than 1 pixelcould not open display: %syabasicCould not create windowcouldn't fork childGot no window to draw%g %g (%c) DO %g %g %g %g (%c) LI %d,%d,%drgb /r %g put rgb /g %g put rgb /b %g put (n) CLYN %g %g %g (%c) (%c) CI clrctbamong the last two arguments%g %g (%c) (%s) AT Got no window to clearshowpage lcrtbcinvalid window origin%g %g %g %g (%c) (%c) RE Cannot bitblit to printersolidtransparentrgb %d,%d:%nCouldn't get bits from windowInvalid bitmaprgb %d,%d:lpr %scouldn't print '%s'Got no window to close%%!PS-Adobe-1.0 %%%%Title: %s grafic %%%%BoundingBox: 0 0 %i %i %%%%DocumentFonts: Helvetica %%%%Creator: yabasic %%%%Pages: (atend) %%%%EndComments gsave /txt 4 dict def /rec 6 dict def /tri 8 dict def /cir 5 dict def /rgb 3 dict def rgb /r 0 put rgb /g 0 put rgb /b 0 put 0 setgray /M {moveto} def /RL {rlineto} def /L {lineto} def /N {newpath} def /S {stroke} def cir /cl 3 -1 roll put cir /r 3 -1 roll put cir /x 3 -1 roll put cir /y 3 -1 roll put cir /cl get (y) CLYN txt /xa 3 -1 roll put txt /y 3 -1 roll put txt /x 3 -1 roll put pop exch pop exch sub txt /x get exch txt /y get M } def rec /cl 3 -1 roll put rec /y2 3 -1 roll put rec /x2 3 -1 roll put rec /y1 3 -1 roll put rec /x1 3 -1 roll put rec /cl get CLYN tri /cl 3 -1 roll put tri /y3 3 -1 roll put tri /x3 3 -1 roll put tri /y2 3 -1 roll put tri /x2 3 -1 roll put tri /y1 3 -1 roll put tri /x1 3 -1 roll put tri /cl get CLYN 30 30 translate %g setlinewidth MB%dd+%d:%04d,%04dMB%du+%d:%04d,%04dkey%xMBÍA°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°AHA8A(AAXAèAØAÈA˜AxAhA¸A¨Aè AØ AÈ A¸ A¨ A˜ Aˆ Ax Ah AX AH A AøAˆA8 A( A Aø A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°AØA8!AØA°A!A°A°A°A°A!AA°A°A°AøA°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A(!A#(ÿÿ&ÿÿÿÿÿÿÿÿÿÿÿÿÿ'ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ%$ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ&ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ  !"ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿØ£p= —@ð…@…ëQ¸…ñ?ìQ8?linking symbol '%s' to '%s'removing linked symbol '%s'removing string symbol '%s'removing array symbol '%s()'removing numeric symbol '%s'created local symbol %s%screated global symbol %s%shead of symbol stackroot of symbol stackNothing to swap on stack !Popped too much.expected '%s' but found '%s'***%dinvalid pushdblsymreading symbol '%s'writing symbol '%s'creating dummy arraystring arraynumeric arraysomething strangenothingDivision by zero, set to %gresult is not a real numbermore than 10 indicesindex %d (=%d) out of rangex"A"A¨"Aè"A#A@#AP#A#AØ#Að#A $A8$A`$A("AP"A7A7A 7AØ6A6ADA÷CA×CA­CA+DAremoved symbol list with %d symbolsremoved references from %d symbolsfound symbol '%s%s', linked to %s after searching %d symbol(s) in %d stack(s)found symbol '%s%s' after searching %d symbol(s) in %d stack(s)static variable '%s' already defined within this subroutine'%s()' already defined within this subroutinecreating 0-dimensional dummy array '%s()'invalid subroutine call: %s expected, %s suppliedonly numerical indices allowed for arraysarray '%s()' conflicts with user subroutinecannot change dimension of '%s()' from %d to %darray index %d is less or equal zeroonly indices between 1 and %d allowed'%s()' is neither array nor subroutinearray parameter '%s()' has not been supplied%d indices supplied, %d expected for '%s()'ÿÿÿÿÿÿïa stringa numbersubroutine returns number %gRETURN without GOSUBnumparamsExecuting in:sub %s() called in %s,%dmain programno more switch ids to popduplicate subroutine '%s'converting '%s' to '%s'GOTO into a switch-statementsubroutinelabelcan't find %s '%s'duplicate %s '%s'(no command skipped)subroutine returns %s but should return %ssubroutine returns string '%s'subroutine returns something strange (%d)expecting only string or number on stackRETURN from a subroutine without CALLlocal variable '%s' already defined within this subroutinemore than 100 nested switch statementsnot in library, will not create link to subroutineGOTO out of multiple switch-statementsGOTO between switch-statementswhile trying to load pop_multi; preceding command is rather '%s'loading previous pop_multi-command with %dinvalid number of levels to break: %d; only 1,2 or 3 are allowedbreak has left program (loop_nesting=%d, switch_nesting=%d)continue has left program (loop_nesting=%d)search for next case has left program (loop_nesting=%d, switch_nesting=%d)bad buffer in yy_scan_bytes()%s at %n0x%02xmain.yab "'`invalid library name 'main'\/could not open library '%s'__END_OF_ALL_IMPORTS__END_OF_CURRENT_IMPORT__IGNORE_NESTED_IMPORTSimporting library '%s'closing file '%s' %lgflex scanner jammedinput in flex scanner failedout of dynamic memory in yyensure_buffer_stack()out of dynamic memory in yy_create_buffer()out of dynamic memory in yy_scan_buffer()out of dynamic memory in yy_scan_bytes()library name '%s' contains '.'End of library '%s', continue with '%s', include depth is now %dEncountered special import __END_OF_ALL_IMPORTSEncountered special import __END_OF_CURRENT_IMPORTEncountered special import __IGNORE_NESTED_IMPORTSCould not import '%s': nested too deep (%d)Cannot import more than %d librarieslibrary '%s' has already been importedout of dynamic memory in yylex()short-if has changed in version 2.71invalid import statement; please check documentation.fatal flex scanner internal error--end of buffer missedinput buffer overflow, can't enlarge buffer because scanner uses REJECTout of dynamic memory in yy_get_next_buffer()fatal flex scanner internal error--no action foundwAkxA$xAÑwACwA¢€A€A€AA;oA;oA~A|A­†AJ†Av…Aß„A„A3„AåƒA¤ƒAcƒA"ƒAá‚A ‚A_‚A‚AÝAœA¿ A~ A= AüŸA»ŸAzŸA9ŸAøžA·žAvžA5žAôA³ArA1AðœA¯œAnœA-œAì›A«›Aj›A)›AèšA§šAfšA%šAˆA͇AŒ‡AK‡A ‡Af¯A%¯Aä®Aä™A£™Ab™A!™Aà˜AŸ˜A^˜A˜A4®Aó­A²­Aq­A0­Aï¬A®¬Am¬A,¬Aë«Aª«Ai«A(«AçªA¦ªAeªA$ªAã©A¢©Aa©A ©AߨAž¨A]¨A¨AÛ§Aš§AY§A§AצA–¦AU¦A¦AÓ¥A’¥AQ¥A¥AϤAޤAM¤A ¤AË£AŠ£AI£A£AÇ¢A†¢AE¢A¢AáA‚¡AA¡A¡A(vAçuA¦uAXuAuAÖtA•tATtAtAÒsA‘sAPsAsAÎrArALrA rAÊqA‰qAHqAqAÆpA…pADpApAÆoAŒoA.AíA¬AkA*AéŽA¨ŽAgŽA&ŽAåA¤AcA"AáŒA ŒA_ŒAŒAÝ‹Aœ‹A[‹A‹AÙŠA˜ŠAWŠAŠAÕ‰A”‰AS‰A‰AшAˆAOˆA@”Aÿ“A¾“A}“A<“Aû’Aº’Ay’A8’A÷‘A¶‘Au‘A4‘AóA¸AoAÁ—A×–AŠ–A$—AB–A¤•A[•A”A®A€yAÂxAivAivAivAivAivAª%!¹/%?!?@/@M#"!s/M#"!s¹a!!1#"a§~1"!"/}!$Û3!a±!$#"1S"3µ"6$6S'|$$LaS6'·q1'(qµ;4$'(§N$$')S6N·()§„'C;(„'D(DC'DF)N))(3¸F¶º.(GOG(.C´O)N)G)³P<¸FRºP..R.O²QPWRGTQ<RWZ®T..Z.O=TU PVRQU« YRV[·XW^YZU[·X=^TU> © QV X¨ =V ‚W8YZ[U\‚^_5U> \ _V `X 4V &\`Y][lb&^‚\]`lb`&_c&fl&bdc\f&]]]d&‚\]e`kb`&_de&kl&bcf¹&]]]e&*¹]*gbi*edkg*im*cf*hjnme *hjn*g i*ek*hp*h*+»jpmhno+»xygior+xys+hr+hsjvmhnp++voox+zsr+tys+zsstuvp++,zutoox},srzÃys}uss,Ã,vu,Æ,zut,,Æ,,z,€,|}u,€,|u,{,u,,€{,,,~,-}ƒW-{~--ƒ||-ˆ-†€{ƒˆ†~-w…W-{--w…||-‡†-0ˆŒw{‡ƒw0~Œ”…X­w­0”0w00†­ˆ”‹wŒ‡0wÍ‹…ÐXwÒÍ0ÔÐ0wÒ00Ô­”Œ‡0;;‹;;;;;;;;;;;;;;;;;;;;ŠŽ‹•ŠŽ‘•×Y’‘ŽŠ×;‰’Š–•؉–‘؉Y‰‰ŽŠ’‰Š‰•‰‰‰–‘—“š‰‰‰™—“š˜’‰™‰“˜‰‰“‰–›Z™—šž›œ“Ÿ˜ž œŸ¢“¡ “˜›¢Z¡™—šœ£Ÿ“ž˜k£ œ¡¤¥¢¦m˜›º¤¥¦£ÅœºŸžÅk ºœ¥¡¸¢¤¼màÅæ¸¦î¼£àïæòîö÷ïºò¥ö÷¤½¼Å¸¦±±½±±±±±±±±±±±±±±±±±±±±¼½¸¾¿ÀÂÁÄÉ̾¿ÀÂÁÄÉÌÇÂıÁ½Ç¾ÈÀÊË¿ÎÈÇÏÊËÉÎÌÈÏÓÂÄÁÓ¾ÏÀÑÏ¿ÓÊÕËÇÑÉÙÌÕÎÈÚÑÙÛÖÚÏÕÖÛÏÕÊÓËÖÖÜÚÞÛÝÎÙáÜÑÞßÝäáÖøÕßåäÕÓâøáåÚãÛâÙÝÜÞãßçâÖéèãçäåêéáèñâêíÝÜÞñßùèíâëçìñùãäåëìéðóâôêðëóìôèíõçñúðûõôéüúûêóüýëþìõíÿýþðÿôúóüõþÿ ú  ü  þÿ                !" !"#$#%'¶(¶$!%'()"$&#%')+&(¶*¶!+,&)*,"$#&%'.-/0(1.*-/0&)1567,8-/&567.89:;=>*?9:0;=>@?B,C9-/@IB.CDE6FIG>?DE0FGJHKBO9DJHKCMOF6GMN>?EHPEMNOSVBQRDSVCKRQFNGQMETHEWPROUTQWZSPUKPQZXNQMY[X\]PRTY[W\]SPX_UPa^Y\b_c[a^bcTW^deXUdeY\fga[hifgcjhbi^lknjdelknofapqiocpnbqrltpdekrtfsuvwixysuvnwrxylzpsk{xz~w{y€z~vr€„~‚sƒ„{x‚†wƒ…y‡z†v…€‡„~ˆ†{‰Š‚ˆ…‹ƒ‰ŠŒŽ‹‘€Œ„Ž‘’†ˆ‚‹’…ƒ‰“”—•–Ž˜“”—•–™˜šˆœ‹™›š‰œž›ŸŽ•–ž Ÿ£™¥¢› ¤£šž¥¢¤§¨¦•–Ÿ ¢§¨¦™©£¤›š©ž¢¦ª¤«­¬Ÿª ¢«­¬¯²£³¤´»¯²¢³¦´¤»¼«½ª¬²¾¼³½¿¯À¾ÁÃÄ¿ÀÂÁÃÄūƪ¬Ç²ÅÁ³Æ¯ÈǾÊÉÌ¿ÈÍÂÃÊÉÌÍÎÐÑÅÁÒÎÏÐѾҿÏÔÂÃÉÕÖÔÏ×ÕÖÅÑØÙÐ×ÏÔØÙÜÝßÉÏÏÜÝßÏÖÕ×ÑàÞÐØÏáÔàÞáâÏÏÝÜßãâÖÕ×äåæãØÞçèäåæáçèéÝÜßêãçéìïðäêÞíìïðñòáíéèñòóãêçøôíäóùúöøôû÷üùúöéèû÷üýêþøýíôöþó÷ÿ ùý  ÿ    ø ô ö óþ÷ ùýÿ  þÿ  ! #%!&#%&!()*+%-(/)*+0-/103!21436%-204)7689?A7B189?A3CBF7-DC0)AF2DE1GH9B3DEIGHJ7KCILAJ2KGMLOEP9BMQDOIPRUQCVS\RUOMGVS\QE]^_RVLeI]^_`ea``\OMSa`SQ_dRVbcf]^dghbcfa\ghSi`Scb_ijdop]^fqjroptaqvrw`txcbviwudxrufuyjzq{u|yz€{|i‚€xyr„‚…jq|„‡…†zŠ€‡Ž†‹„xŠyŒŽ‹Œ|†z‡‹Œ€’‘Ž„’“”•‘—’“”•–†—‡˜‹Œ–™”Ž˜‘š™›–š›š—”˜‘™–š˜™žžžžžžŸŸŸŸŸŸ      ¡¡¡¡¢¢¢¢¢¢££££££¤¤¤¤¤¥¥¥¥¥¦¦¦¦¦¨¨¨©©©«««««¬¬¬¬¬­­œœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœ   !"#$%%&'()*%+,-./01%%2% !"#$%&'()*%+,-./01%%3@CA4F5GHI¡KKDK6KDLL@LA@LAK_KKi`s LaLLjtDbKkDKlKpmL¶‰L_Lni`o ˆaNOjKbÛ§kÒ±lLPpm¦QRSKn¨oFq­LNOKÛrs±Ò½DLPK¦QRSKyKLWKqLzL§Krs{KT½DLU|LV¨KKyCWW}XLLz³~³D{´CT·€U|2VDKWK}XKFKG~L:DL´L·€D´YKXDKZ[L\žL]Ÿ¸:2K^¹;K»DKLYX¼LK®LZ[\žL]Ÿ¸Y¾K^K¹;K»ºL¬LK¼LKKKÃKLÆ¿LLLYL¾ÀZcªdeºÁfĨg=ÂhKÃ®ÅÆÇ¿KLÎK¬ÀZcLdeLÁfKÄgªÂhKÈLÅKÇKKLÎÉLÐLLÑtJÏKuKá<vÓKLÈLwÊËÌLxÉÍKÐKÔÑtÏÖLuLá<vÓÕÙKwÊËÌ×x‚LÍEƒKÔK„BØÖàL…LK†ÕÙ‡KKKL>×=‚LLLƒÚœÞ„Ø;à;…ÛK†:܇KKßLâÝãKLLKKÚ=ÞLKˆLLK‰Û:LŠÜ8LßKâÝã8拌Lœœ=äåõˆKèç‰KöéŠLêëœLKðœ拌K÷LìäåõKLèçøKöéLíêëLŽðœîAK÷ïì‘’LL“”ø•K–Ký휜LŽLîK>’ÿL“”œ•K–—ýKk˜ùL™šœLûü›>KœKœÿœúLœLþ—KKk˜ùœ™šLLûü›KœKKñúLòLþLKlFó­¡œLœ¢œô£¤DKñ¥òKœLKlóKL¡KœL¢ôL£¤LDœœ¥°±°°°°°°°°°°°°°°°°°°°°KKœKKœKLLKLLKœLKmLœKLL°KLœKKLœœLLœm œœœœ œ   KKKœ KLLLKœ Lœ L  Knœ#K $KLKKLœ!LKLœLKKœL"%LnL# $&K*œ)(!}L+œ',KK-K~"%KLLœL.K&L*œ)(œL}+6'0,K-/K~K@`L1KL.LKLœKLKmœLœ6L0LL/œKœ7@51°±L°°°°°°°°°°°°°°°°°°°°785KKKK<KKKLLLLLLLLœœKœœ>?°=8L9Kœ;KK:KœLBKLLDLGœCLœL>?œ=K9Iœ;KJ:LEKFBLœDKGLHCKKœLKœPœLINKLJOEMFQLKTKUKHSKLKLKLKœLRKNLKLOMKLZœLTKULSœWVXLYœK[œRKœK]L^_KLZLœKœ\LKWVXLYKbL[KaKiL]^_LœLcKœK\KdœœLeLfLbgKaœœiKhKLœkcKLœLœdœjLKeKflgKKLœLœKhLLKkKnLKœKLjLoœLrLlKpœqKœuKLKtKLnsLKLvLyowKLrœKpœqLKœuL{tœxLsœz~v|}yKwKKœKœLœLKLƒL{œxKL€zœ~‚LKKK„†KKLLLKœƒLLKœœL€KˆL‚…‡LL‰„†KœKKKœœKLŠLLL‹ŒLKˆœœ…‡ŽKL‰KKKL‘œLLŠL‹ŒK’”K“•˜ŽLœKL™Kœ‘LK–šLœœL’œ”“—•˜KœKKK™œKL›LLL–šLœKKKœKŸ—LLLžLKKœKKK›KLL LLLKLKœK£ŸLKLžLKK¢KLK¤¥LL LœL®KK¦œK£¨LLL§LL«¢¬KK¤¥©­PªLL´KK¦¸Kœœ¨LL§¯L¹«³¬º²œ©K­ªKµ»´KLœ¸LK¼¶Lœ¯·¹LK³º²œœKKLKKµ»½LL¿LL¼¶ÀK¾·KKÁÃKLKÂLLœœLœL½œœ¿ÄKKœœÀ¾œœLLÁÃKËÅÂKœKœLLÇKLÆLÄKKKLœœÈÉLLLKÊÅKœœKÌLœÇLÏÆLœœKÎÓМÈÉÍLœLÊKKKœKÌKKLLLÏLÑLLΜKМÒÍKœÖLœKÕœLלKØLœÔKKÑLKœÜKLLÒKLÙÖLœKÕLK×KœØLÔœLÞLÝœâÜßKœäœÙKKàLãKáœLLKœKLKÞKÝLâLßLKLäKåœàçLãáLœæêKëîKKèKéLLLLLKLKåœKœçLKLœæLêKKLKèìíéLLKLKïœKKñLKLðòLLœœLœKKKìíóôöLLLïKœøùñœœðLò÷ûœKúœKKKœóLôöLLLKKøKùKœKLL÷LûLúLKýKœüþKLLKÿKKLKKKLœLLœLLLKýœüþKL LÿKLœ KKK L  LLLœœLœKKœ KLKLL œœL LK  KKœœLœKLLKKLœœLLKKKœœLLLœ"KKœLLœœœL$œ!KLKK'L KKLLLœœ#LLœœK!œK%(L,K.&L KœLLLKK#L*œ)œLLœœK%+(KK-&LK5KLLKKKLLL*)LLLKœœœ+Kœ3L-01œL/2KKKK46KKLLLL@œLLœœ3œL0K1?/72œKL496Kœ8LKKKKLAœœLLLLKœ?7KœKœL9KKL8LDKELLKAKKLBCKLKLLGKœLKLœKFLDHLEILJœKKBCKKNLKLGKLLLKLFœLœHKLIKJœKKLTœLKLOLPLMKLœKK[KœLKQLLLLSKLœœKUOKLPM\LœRLœœœœKQKKV]S_LKLLKUKœ^LK\LRLaœKLœK`KV]LK_LbLKKœL^KKKLLedaLLLf`KKKgjcKbLLLsœœLKKœtoedhLLifrœœKgjKKKpqLKKLLLœvoLLhKuixwrœœLKyKpqzKLKLL‚vœLKLKuƒKxwL{LsyLœKztK|K€KLKKLœLKLœLLœ{‚L„…œœKƒK|œ€‡‹LKLK†œœKŠLKLKŒ„L…KLœLKœœœL‡‹LK†ŽŠKLLK’ŒKKLKKLœKLL‘LLKLœŽKL“K–’L•Kœ”LK—œœL‘œœLœœœœœ›œœ“œ˜–™•œœ”œœš—œœœœœœœœœœœœ›œœœœœ™œœœœœœš777777999999<<<<<<??????MMMM©©©©©©««««««¯œ¯¯¯¯²œ²²²²µœµµµµ3334œ44°œ°°°°ÚœÚÚÚÚõõ œœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœœžžŸŸœœœœœ œœœœœœœœœœœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœ¢£œœœ¤œ¥œœœ  œœœœ¦œœœœœœ§¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœ¢œ£œœœ¤œ¥¨œœ¦©¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡ª¨©¡¡¡¡¡¡¡œ¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡«¡¡¡œœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¬œ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡­¡¡¡¡¡¡¡¡¡¡¡¡œ¡««¡¡¡œœœœœœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡¡¡œ¡¡¡¡¡¡¬¬¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡œ¡¡¡¡¡¡­¡¡¡¡¡¡¡¡¡¡¡¡œœœœœœœ¡¡¡¡¡¡œ¡œœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡œ¡¡œ¡¡¡¡œ¡œ¡¡¡¡¡¡œ¡¡¡¡œœœœœ¡œ¡¡¡¡¡¡¡¡¡¡¡¡¡œ¡¡¡¡¡œ¡¡œœœœœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœœœ¡¡¡¡œœ¡¡¡¡¡¡¡¡œœœ¡¡œœ¡¡¡¡œœ¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡¡œœœœœœœœœœœœœœœœœKùéåãá› ØÕ› K› ½>²C› A› }› › uµóQ4TdcŠRx¥·Å§è)]ðW›w› ’yl—› U› ß› _› _b› › ÉÖ×ì› › › › aÁõ š27B=$@d|DgrrŒ“ Ž½Í¿Î¢~ÈÏïã°øü#‹òó_S0lÐQD]pÑŒ€˜~ ð¹óñúôý6¦÷5@<7NWRUY^dbq~ÅNU› ?› ¡› ÅùòíAš±…é¹ÙÚÛÝÜ5Þ‹Cëõßøùà¿ûÿÃÆÉ.#'7;9BŸ>OUDK¡`fdk~€t¤¨Šp«ŒŽ™­®Hzž ¥®°´µº¾ÀÃÓÅÏÖÚæßïê Ø!"&+01?@=ADMTWjXZguqzŒŠŽ‘á»›œŸ¨©«› ¬­¯¶› ¸ºÃÄÆÈÒ¿ÑÓ®âãÖí×ñí î !1-› 046DEPQTV[a`› bknq|ˆ~‰ŠŒŽšŸ«› ¤¯ª°¶º³ÃÀÅÓØÙÝâ› äòèæïþÿ  $*&-)978CPSUT› ^•_ac‡4—Õ/Öenpuy{~|€‰Œ–›š› œŸ¨±ª«¯› º¾¿ÅÊË‘ÔÕæÖåêóúÿ›  › %&16<@5:;?AJOZ\[› çw› ÜH]`afpw› €› › |‚ƒŒ’–— £œ§¢©› ­› °³› ¿ÂÃÄ› Æ› ÉÍÔÛ×Ý› àçêë› –ê 3ì› íð÷þ û      $ › ' ) - 2 8 › 3 7 ^“î:› 9 D E F T S e f b J g k l v  `› j› ‚ † ˆ l Ÿ ‘ ” ¢ ¤ ¦ ¨ …|› ­ © ¹ › » ½ Æ Ä › › Ê Ï Ô Ø Í á ç ê í î ð ñ ú ô ÿ  › K Q W ] a g m s y  |‚ † QŒ ’ ”    !"#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKL "&),/258;>ADGJMPSVY\_behknqtwz~€‚‡ˆŠŒŽ‘’““”•–——˜™›œžŸŸ ¡¢£¤¦¨©ª«¬­®¯°±²³´µ¶¸¹º»¼½¾¿ÁÂÃÄÅÆÇÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÛÜÝßàáâãäåæçèéêëìíîïðñòóôõ÷øùúûüýþÿ     !"$%&'()*+,-/013468:;=?ABCDEGHIKLMNOPQRSTUWXY[]^_abcdfgiklnoqrstuvwxy{|}~€‚ƒ„…†‡ˆ‰ŠŒŽ’“”•—˜™›œžŸ ¡¢£¤¥§¨©ª«¬®®¯°²³µ·¸º¼¾ÀÁÂÄÆÇÈÉÊËÌÍÏÐÑÒÔÖ××רÙÚÛÝÞßáãäåçèêìíîïðñòóõöøùúüýÿ    !"$&'()+-/01235678:<=>?@ABCEFHJLMNOQSTUVWXZZZZZZZ\^`abdefgijkmoprtvwxyz{}‚ƒ„…‡ˆ‰Š‹ŒŽ‘’”–—˜™šœžŸ¡£¤¦¨©ª«¬­®¯±³µ¶·¸¹»¼¼¼¼½½½¾ÀÂÃÄÆÈÉËÍÏÐÒÔÕרÚÛÜÝßàâãåçéêìîðñóõ÷øúüýþÿ         "#%'()+-.....01235789:;=>@BCDDEEFGIJKKKMOQRSTVWXY[\]]^_abcdeghijklmnprsuvwxyz||@ÒÐÑÐÑÑÅÐÑÐÑÆÐÑÆÐÑÆÈÐÑÆÐÑÇÈÐÑÆÐÑÃÐÑÂÐÑÄÐÑPÐѯÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐÑÍÐѽÐÑÐÑ@ÐÑÐÑ ÇÈÐÑÑÑÑÑÑÑÏÏ¾È ÈÇÈÀ¿ÁÎÍÍÍÍÍ+Í®ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ)ÍÍÍÍÍÍÍÍDÍÍÍÍÍÍÍ>ÍÍÍÍÍÍÍÍÍÍÍÍÍÍ:ÍÍ[ÍÍÍÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ*ÍÍÍÍÍÍÍÍÍÍÍÍ@  ÇÈÈ ÍŽÍÍZÍͪÍÍÍÍÍÍÍÍmÍÍÍÍÍÍÍÍÍÍ„ÍÍÍ­ÍÍSÍÍbÍÍUÍ Í]ÍÍÍÍ͈ÍÍÍ#ÍÍÍÍÍÍÍÍÍÍÍŒÍÍÍžÍ|ÍÍ͉ÍÍÍÍ“ÍÍ’ÍÍÍvÍÍ\ÍÍÍÍÍÍÍÍÍ‘ÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍ‚ÍÍÍ‹ÍÍÍÍ6ÍÍ͆ÍÍÍÍÍÍÍÍÍÍÍŸÍÍÍÍÍÍ^ÍÍ…Í͇̓ÍÍ{ÍzͬÎÍÍÍ&Í©ÎÍÍÍÍÍÍÍXÍÍÍÍ@ÍÍÍÍÍÍVÍÍÍhÍÍÍͼÍÍ4Í«ÎÍÍÍÍÍÍÍcÍÍ(ÍÍÍ–ÎÍ/ÍÍEÍÍ͵ͷÍÍÍÍWÍlÍÍ ÍÍÍÍÍÍÍÍÍGÍÍÍŠÍÍ.Í¡ÎÍÍÍHÍjÍ?ÍÍÍÍÍËÍÍÍÍwÍ1ÍÍÍÍÍÍÍ$ÍÍgÍFÍLÍÍÍÍdͳÎÍÍÍAÍCÍ"ÍÊÍÍÍÌÍÍÍÍ5ÍÍÍQÍœÍÍ=Í”Î8ÍÍÍÍÍÍxͶÎIÍÍÍÍÍTÍ ÍÍÍÍÍÍÍÍÍyͺÍÍÍÍʹθÍÍ›Î3ÍÍJÍ0ÍÍÍÍÍÍÍoÍeÍMÍÍÍÍÍBÍÍ!ÍiÍÍÍ Í¢Î͗ΙΥÍͣͤÍÍ`ÍÍpÍÍÍÍ2ÍÍRÍÍ•ÎÍšÎͰͻÎ9ÍÍ%Ͳ͹Î͘Î_ÍÍÍÍÍnÍqÎÍÍ'ÍÍÍsÎÍÍÍÍÍaÍÍ,ÍÍYÍKÍÍͱÎÍ-Í}ÍÍÍrÎ<ÍÍÎÍÍͧ̀ÍÍÍÍÍfÍÍÍNÍÍÍÍ;ÍÍÍ€ÍtÍkÍÍÍÍOÍÍuÎÍÍ€Í7ÍÍÍ ¦ÍÍÍÍÍÍÍÍͨÍÍ~ÍÍÍÍÍÍÍ-DTû! @iW‹ ¿@Stack nowtokennterm%s %s (Deleting%s Starting parse Stack size increased to %lu Entering state %d Reading a token: Now at end of input. Next token isShifting $%d = break outside loop or switchcontinue outside loopcan not return valueString not terminatednested functions not allowed'for' and 'next' do not match-> $$ =syntax errorError: discardingError: poppingmemory exhaustedCleanup: discarding lookaheadCleanup: popping$end$undefinedtFNUMtSYMBOLtSTRSYMtDOCUtDIGITStSTRINGtFORtTOtSTEPtNEXTtWHILEtWENDtREPEATtUNTILtIMPORTtGOTOtGOSUBtLABELtONtSUBtENDSUBtLOCALtSTATICtEXPORTtERRORtEXECUTEtEXECUTE2tCOMPILEtRUNTIME_CREATED_SUBtINTERRUPTtBREAKtCONTINUEtSWITCHtSENDtCASEtDEFAULTtLOOPtDOtSEPtEOPROGtIFtTHENtELSEtELSIFtENDIFtUSINGtPRINTtINPUTtRETURNtDIMtENDtEXITtATtSCREENtREVERSEtCOLOURtBACKCOLOURtANDtORtNOTtEORtNEQtLEQtGEQtLTNtGTNtEQUtPOWtREADtDATAtRESTOREtOPENtCLOSEtSEEKtTELLtAStREADINGtWRITINGtORIGINtWINDOWtDOTtLINEtCIRCLEtTRIANGLEtTEXTtCLEARtFILLtPRINTERtWAITtBELLtLETtARDIMtARSIZEtBINDtRECTtGETBITtPUTBITtGETCHARtPUTCHARtNEWtCURVEtSINtASINtCOStACOStTANtATANtEXPtLOGtSQRTtSQRtMYEOFtABStSIGtINTtFRACtMODtRANtVALtLEFTtRIGHTtMIDtLENtMINtMAXtSTRtINKEYtCHRtASCtHEXtDECtBINtUPPERtLOWERtMOUSEXtMOUSEYtMOUSEBtMOUSEMODtTRIMtLTRIMtRTRIMtINSTRtRINSTRtSYSTEMtSYSTEM2tPEEKtPEEK2tPOKEtDATEtTIMEtTOKENtTOKENALTtSPLITtSPLITALTtGLOB'-''+''*''/'UMINUS'('')'';'',''#'$acceptstatement_list$@1$@2$@3$@4$@5$@6$@7$@8clear_fill_clausestring_assignmenttoopen_clauseseek_clausestring_scalar_or_arraystring_expressionstring_function$@9$@10string_arrayrefcoordinatesconstsymbol_or_linenodimliststringfunction_or_arraycall_list$@11callscall_itemfunction_definition$@12$@13$@14endsubfunction_nameexportlocal_listlocal_itemstatic_liststatic_itemparamlistparamitemfor_loop$@15$@16$@17$@18nextstep_partnext_symbolswitch_number_or_string$@19sep_listcase_list$@20default$@21do_loop$@22while_loop$@23$@24wendrepeat_loop$@25untilif_clause$@26$@27$@28$@29endifshort_if$@30else_partelsif_part$@31$@32maybe_theninputlist$@33readlistreaditemdatalistprintlistusinginputbody$@34$@35$@36$@37$@38promptprintintrohashed_numbergoto_listgosub_listif statement starting at line %d has seen no 'endif' yetfor-loop starting at line %d has seen no 'next' yetwhile-loop starting at line %d has seen no 'wend' yetrepeat-loop starting at line %d has seen no 'until' yetdo-loop starting at line %d has seen no 'loop' yetReducing stack by rule %d (line %lu): can not import a library in a loop or an if-statementno use for 'local' outside functionsno use for 'static' outside functionsa value can only be returned from a subroutineinstr() has changed in version 2.712do not define a function in a loop or an if-statement%d end-sub(s) are missing (last at line %d)%d next(s) are missing (last at line %d)%d loop(s) are missing (last at line %d)%d wend(s) are missing (last at line %d)%d until(s) are missing (last at line %d)%d endif(s) are missing (last at line %d)p³Ap³AðÔAp³AÖÔA¿ÔAp³Ap³Ap³Ap³Ap³Ap³A«ÔA˜ÔAp³Ap³Ap³Ap³Ap³AHÔAìÓAŒÓAp³ApÓAÐÓAÓAp³AHÓAp³Ap³Ap³AþÒAßÒAÐÒA¨ÞA•ÞA‚ÞAßAãÞAöÞAØÛAÀÜA­ÜAšÜArÜAGÜA%ÜA ÜAëÛAÝAp³AùÜAp³AæÜAÓÜA*ÝAÝAp³Ap³A=ÝA¹ÛA]ÛAþÚAŸÚAp³A“ÚA„ÚAqÚA^ÚAAÚA2ÚAÚA ÚAûÙAâÙAÉÙA¶ÙA™ÙA†ÙAwÙAkÙAQÙA7ÙA$ÙAÙAþØAäØAÑØA¾ØA«ØAŸØAØA}ØAjØAWØA-ØAØAæ×AÉ×Aº×A«×Aœ×A×Az×A^×AK×A=×A*×A×A ×AýÖAîÖAßÖAÀÖA±ÖA¢ÖA“ÖA„ÖAgÖAp³Ap³AXÖAIÖA:ÖAÖAìÕAÙÕAÆÕAˆÕAkÕA§ÕAp³AVÕA?ÕA,ÕAp³AÕAÕAÿÔAéÂAÚÂAËÂA¼ÂA ÂA„ÂAuÂAfÂAWÂAHÂA9ÂA*ÂAÂA ÂAýÁAîÁAßÁAÐÁAÁÁA²ÁAŸÁAŒÁAyÁAfÁAWÁAHÁA9ÁA*ÁAÿÀAàÀAÍÀAµÀA¡ÀA‰ÀAuÀAfÀAWÀAHÀA9ÀA*ÀAÀA ÀAù¿Aæ¿AÖ¿AÀ¿Aª¿A”¿A~¿Ai¿AJ¿A;¿A,¿A¿A¿Aÿ¾Aì¾AݾAξA¿¾A°¾A¡¾A’¾Ap³Ap³Au¾AX¾Ap³AI¾A:¾A+¾A¾A ¾Aþ½Aï½Aà½AѽA½A³½A¤½A•½A†½Aw½Ah½AY½AJ½A>½A/½A ½A½A½Aó¼Aä¼AÕ¼A¸¼A©¼Aš¼A‹¼A|¼Am¼A^¼AO¼A6¼A¼A¼Aõ»AÜ»AÍ»A´»A›»AŒ»As»AZ»AK»A<»A-»A»A »AøºAåºAÒºAªºA›ºAºA€ºAqºAbºASºABºA1ºAºAAÍA+ÍAÍAñÌAÔÌA·ÌAšÌA}ÌAMÌA0ÌAjÌAp³Ap³Ap³Ap³Ap³Ap³AñËAšËA}ËAËAëÊAßÊAžÊA]ÊANÊA?ÊA0ÊA!ÊAp³Ap³AÊAêÉAµÉA€ÉAp³Ap³A`ÉACÉAÉAÍÈAp³Ap³Ap³AŒÈANÈA'ÈAÈAÓÇAžÇAÜÆAÈÆA ÆA}ÆAqÆA_ÆAp³APÆAÆAùÅAÅÅA®ÅA—ÅAp³Ap³Ap³AhÅAUÅAp³A4ÅAp³AøÄAp³AÖÄA¢ÄAfÄAÄAp³AÔÃA(ÄA˜ÃAp³AqÃA/ÃAÃAøÂAzÐApÐAp³ARÐAFÐA'ÐAÐAp³Ap³Ap³AÐAêÏAp³Ap³Ap³Ap³A×ÏAp³A¨ÏA{ÏALÏAÏAp³Ap³AöÎAÏÎA¦ÎAÎAqÎAaÎASÎACÎAp³Ap³Ap³A4ÎA%ÎAÎAÎAøÍAÊÍA¹ÍAˆÍAwÍAcÍARÍA¡ÒAÒAoÒA^ÒAEÒA-ÒAÒAäÑA¶ÑA¥ÑA}ÑAUÑA-ÑAÑAËÐA•ÐALÞAÞAàÝAªÝAp³Ap³A{ÝAu¸ALÝA´ÞA ¸A ¸AðÔA ¸AÖÔA¿ÔA ¸A ¸A ¸A ¸A ¸A ¸A«ÔA˜ÔA ¸A ¸A ¸A ¸A ¸AHÔAìÓAŒÓA ¸ApÓAÐÓAÓA ¸AHÓA ¸A ¸A ¸AþÒAßÒAÐÒA¨ÞA•ÞA‚ÞAßAãÞAöÞAØÛAÀÜA­ÜAšÜArÜAGÜA%ÜA ÜAëÛAÝA ¸AùÜA ¸AæÜAÓÜA*ÝAÝA ¸A ¸A=ÝA¹ÛA]ÛAþÚAŸÚA ¸A“ÚA„ÚAqÚA^ÚAAÚA2ÚAÚA ÚAûÙAâÙAÉÙA¶ÙA™ÙA†ÙAwÙAkÙAQÙA7ÙA$ÙAÙAþØAäØAÑØA¾ØA«ØAŸØAØA}ØAjØAWØA-ØAØAæ×AÉ×Aº×A«×Aœ×A×Az×A^×AK×A=×A*×A×A ×AýÖAîÖAßÖAÀÖA±ÖA¢ÖA“ÖA„ÖAgÖA ¸A ¸AXÖAIÖA:ÖAÖAìÕAÙÕAÆÕAˆÕAkÕA§ÕA ¸AVÕA?ÕA,ÕA ¸AÕAÕAÿÔAéÂAÚÂAËÂA¼ÂA ÂA„ÂAuÂAfÂAWÂAHÂA9ÂA*ÂAÂA ÂAýÁAîÁAßÁAÐÁAÁÁA²ÁAŸÁAŒÁAyÁAfÁAWÁAHÁA9ÁA*ÁAÿÀAàÀAÍÀAµÀA¡ÀA‰ÀAuÀAfÀAWÀAHÀA9ÀA*ÀAÀA ÀAù¿Aæ¿AÖ¿AÀ¿Aª¿A”¿A~¿Ai¿AJ¿A;¿A,¿A¿A¿Aÿ¾Aì¾AݾAξA¿¾A°¾A¡¾A’¾A ¸A ¸Au¾AX¾A ¸AI¾A:¾A+¾A¾A ¾Aþ½Aï½Aà½AѽA½A³½A¤½A•½A†½Aw½Ah½AY½AJ½A>½A/½A ½A½A½Aó¼Aä¼AÕ¼A¸¼A©¼Aš¼A‹¼A|¼Am¼A^¼AO¼A6¼A¼A¼Aõ»AÜ»AÍ»A´»A›»AŒ»As»AZ»AK»A<»A-»A»A »AøºAåºAÒºAªºA›ºAºA€ºAqºAbºASºABºA1ºAºAAÍA+ÍAÍAñÌAÔÌA·ÌAšÌA}ÌAMÌA0ÌAjÌA ¸A ¸A ¸A ¸A ¸A ¸AñËAšËA}ËAËAëÊAßÊAžÊA]ÊANÊA?ÊA0ÊA!ÊA ¸A ¸AÊAêÉAµÉA€ÉA ¸A ¸A`ÉACÉAÉAÍÈA ¸A ¸A ¸AŒÈANÈA'ÈAÈAÓÇAžÇAÜÆAÈÆA ÆA}ÆAqÆA_ÆA ¸APÆAÆAùÅAÅÅA®ÅA—ÅA ¸A ¸A ¸AhÅAUÅA ¸A4ÅA ¸AøÄA ¸AÖÄA¢ÄAfÄAÄA ¸AÔÃA(ÄA˜ÃA ¸AqÃA/ÃAÃAøÂAzÐApÐA ¸ARÐAFÐA'ÐAÐA ¸A ¸A ¸AÐAêÏA ¸A ¸A ¸A ¸A×ÏA ¸A¨ÏA{ÏALÏAÏA ¸A ¸AöÎAÏÎA¦ÎAÎAqÎAaÎASÎACÎA ¸A ¸A ¸A4ÎA%ÎAÎAÎAøÍAÊÍA¹ÍAˆÍAwÍAcÍARÍA¡ÒAÒAoÒA^ÒAEÒA-ÒAÒAäÑA¶ÑA¥ÑA}ÑAUÑA-ÑAÑAËÐA•ÐALÞAÞAàÝAªÝA ¸A ¸A{ÝAu¸ALÝA´ÞA       ¨©ª«¬ª­­­­­­­­­­­­­­­­­­®­¯­­­­­­­°­±­­­­­­­­­­­²­³­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­´´´´´µµµµµµ¶¶·····¸¸¹¹ºººººº»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»¼¼¾½¿½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½½ÀÁÂÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÃÄÄÄÅÅÆÆÇÇÇÇÈÉËÊÌÌÌÍÍÏÐÑÎÒÒÓÓÔÔÔÔÕÕÖÖÖÖ××ØØØØÙÙÙÚÚÚÚÜÝÞßÛààááââäãååææçèçéêéìëííïðîññóòôôö÷øùõúúüûýýþÿþ            !"#(+123456:;GHIJKLRSTWXY[\]`cefz{|“–©ª­´µ·¸¼ÈÉÎÔÛãëîòõûE£E£ÜïóÆÆÆ <=>?JM^_bdhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•—˜™š›œž£º»½ÃÅÈÉ®¯£º££ºäì½79:§²º½ǽº½º½žŸÄÅÆRZ§º½RZgQ½Â 2ÂÂ8RSTYX½µ¼Èɺººg£££££º*«UVaEE½Ê˺Ê£ª££!"££½££££££££££££££££££££££££££££££££££££££££££££££££££££££££££££½º½@ABCDEŸ<=@ABCDEFžŸ ¡ÕÖרºÊʺ½æªöü£7££º½7§ ££¦¦¦££¦ÅŦ½º½ ¦¦º¦Â³ ¦¶¦Â ¶¶¹¹¹¤½º¦¦)½ºÏ¤º½ÌͤE½*ôÊʽ½½ZºÀÁÀÁ½½½½½½½½½½½½½½½½¤½ººººº½½½¤½½º½º½ºº¤º¤º¤º¤ºººººººººº¤¤º¹º¹º¤¤ººººººº°±¿¾½½½½½½½½½½½££¦££¦¤¤)å'*í,ª½£º½0 ¥¦££Êʽ½ÊÊĦOPZº½½ º¶½½£¦¦¦¤¤º½º½¬¦¶¶Ӧݤ£¤¤¦¦¦¤¤¦¦¤££¤¤¦¦¶¦¤¤¤¤¤¤¦¤¤¦¤¤¤¤¤¤¤¦¤¤¦¦¦¤¦¦¤¦¤¤¤¤¤¦¤¤¤¤¤¤¤¤¤¤¦¦¤¤¤¤¤¦¦¤¦¦¤¦¦ÆÆ½½ÊÊÖÊÊØ)ç÷/¦½¤¦¤£ºº½½  ½¤¤££¦¦¤¤½NN¦¦¦Â¦¦Ê½½½­½ÂÂÐͽ𽽽½ºZº¤¤½½Â½½½½½½½½½º½ºººÁºÁºº¦¦¤¤¤¤%&骽¦7ºº ¦¤££¦Êʽ½¦ººº½½¤¤¤¤¦¶£ ª¤¤¤¤¤¤¤¦¤¤¤¶¤¤¤¤¤¤¦¤¤¤¦¤¤¦¤¦¤¤¦¤¤¦¤¤ÆÆæ)$ø¤½£¤¦½ Êʤ¤º¦¦EEE½ÂÙÚ½*ñº½½º½½ººèê.þ9:¤½7º¤¤¤ººººº¤££¤¦ ᤦ¤¤¤¤¤¤ªª½-ý£¦£¤E¤¤ÑÚ½Þ½,ªùº½½ºªª¤ÿ*/ú¤¦¤¦*Òߪº½ *तâþ" ÓÔ )*îï S7F P E Ÿ¤EUV Ÿ£$%&#a¦/8/-*£EF799:*@ABCDE RST%&YMS SF*@ABCDEŸ9¤Ÿ¦¤c ¡*¦³­®£@ABCDE!"<=£§@ABCDEF<=@ABCDEFz{|žŸ ¡AŸCDEF'¦*Ÿ¦r ¡uXòóÊ˧žŸ ¡Q³£³£²Ÿ£žŸŸÞ¹¦¤¤¦ä域g¬­  ¦¦žŸžŸŸŸ*ÐÒ¤¦ûüýžŸ ¡Ÿ¤£¦¦¤ËžŸ ¡Ÿ@ABCDE¦žŸ ¡ô¤Ÿ¦£ÌH¤J¦þŸ£ŸŸ¤Ÿ¦¦¦¤£¦ Ÿ¤¤¦ !"#$%&'EuŸ-./01¦3Ÿ5ŸŸ¦¤Eƒ„¦Cˆ‰!ŸŸŸ¤¤¤¦¦ @ABCDEZ[\]^_`abcdŸŸ£C¤¤¦¦Ÿ¤u¦u¤š¦v£{ABCDEF¥¦<=†‡@ABCDEFCDEF“Ÿ•bŸd¤²¦¤µ£Ÿ @ABCDEŸ¨©¤Ÿz{|Ÿ¤Ÿ€‚7„Ÿ†‡ˆ¦¤OPŽ’£Ÿ•Ÿ—˜¤š¤œŸ¤£¤žŸ ¡!"Ÿ$%%&¤£žŸ ¡žŸ ¡<=@ABCDEFŸŸ£ŸŸ¤¤Ÿ¤¤9:¤££ñDEF,Ÿ£££¤W£Ÿ£<=¤£@ABCDEFŸŸ£ŸŸ¤¤T¤¤1££ŸŸ£78¤¤;*cdŸ£/£E¤££££I££££££žŸ ¡£¦|£XYZ£a£a£)£bžŸ ¡£hi£k£Fnop¦£¦££££££z{Ç}žŸ ¡£¦„££‡£££££££,£’“”£–—ÜÝ£££££Ÿ<=0£@ABCDEFö££<=££@ABCDEF£££££,)¤¦Ç¦Ç¤<=¤É@ABCDEF<=¤£@ABCDEF£Þߦ££ãä¤*+¦éꤣ££ö¦ö¦¦¦¦£¦¤ ¤¤¤$žŸ ¡£¦ã䣦¤012žŸ ¡¤¤9¤>)/¤¤£!£¤¤&NžŸ ¡ON¤¤¦¤¦žŸ ¡¦¤¤7¦¤=¤¤@££¦¤‘£)¤¤$£M)¤¤EEET¤.7¤££[-]£<=£E@ABCDEF¤¶¤$na//hÀ#&è䊡Ñÿÿ¼ÿÿÿÿÿÿÿÿÑ—«ÿÿÿÿ‘‘²ÿÿÿÿ’<=ÿÿ¹@ABCDEF<=ÿÿÿÿ@ABCDEF©ÿÿÿÿ¬ÿÿÑÿÿÿÿ¶ÿÿ¶ÿÿÿÿÿÿÿÿÛ¹ºÀÿÿÀÃÿÿÞŸ ¡ÿÿÿÿ¤ÿÿ¦ÿÿÿÿÑÿÿÑÿÿÿÿÿÿõÿÿÿÿÿÿÿÿÿÿØÿÿÿÿÿÿÿ<=ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿ¦ÿÿÿÿžŸ ¡ÿÿ()*+,ÿÿÿÿÿÿÿÿÿÿ2ÿÿ4ÿÿ6789:;<=>?@ABCDÿÿÿÿGÿÿIÿÿKÿÿÿÿÿÿOPQRSTUÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿxÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ’ÿÿ<=>?ÿÿÿÿÿÿ›ÿÿÿÿÿÿÿÿÿÿÿÿJÿÿMÿÿ¨©RÿÿÿÿÿÿÿÿÿÿÿÿÿÿZÿÿÿÿÿÿ^_ÿÿÿÿbdÿÿÿÿghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£ÿÿÿÿÿÿ§bÿÿdÿÿÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•4—˜7šÿÿœÿÿÿÿÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿbÿÿdÿÿÿÿÿÿÿÿÿÿhžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿstÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿ’ÿÿ•ÿÿ—˜ÿÿš™œÿÿÿÿÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿÿÿÿÿÿÿª«ÿÿžŸ ¡±ÿÿÿÿ´¦ÿÿ·¸ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÌÿÿÎÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿ@ABCDEFÿÿåæçÿÿÿÿÿÿbÿÿdÿÿ<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿŽÿÿÿÿ’ÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿ1žŸ ¡ÿÿÿÿÿÿÿÿ¦žŸ ¡ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿIÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿX¦ÿÿÿÿÿÿÿÿÿÿÿÿ`ÿÿÿÿcÿÿÿÿÿÿZÿÿÿÿÿÿÿÿÿÿÿÿÿÿbpdÿÿÿÿyz{|}ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿ<=>?ÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¸JÿÿÿÿM½<=ÿÿR@ABCDEFZÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÖhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ§ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿZÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ§ÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ§ÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£¤ÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿÿÿÿÿÿÿ£¤ÿÿÿÿ žŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ2ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿ ÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJ<=Mÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ^_ÿÿÿÿbÿÿdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<=>?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿJÿÿM<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿ^_ÿÿÿÿbdÿÿÿÿÿÿhijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÿÿ—˜™š›œžZÿÿ£ÿÿÿÿÿÿÿÿbÿÿdÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿ¦ÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿ’ÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿÿÿÿÿÿÿÿÿÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿbÿÿdÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•ÿÿ—˜bšdœÿÿÿÿÿÿÿÿÿÿÿÿ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿ€‚ÿÿ„ÿÿ†‡ˆÿÿÿÿÿÿÿÿŽÿÿÿÿ’ÿÿÿÿ•ÿÿ—˜ÿÿšÿÿœÿÿÿÿ £ÿÿÿÿ ÿÿÿÿÿÿÿÿ!"#ÿÿÿÿÿÿÿÿ(ÿÿÿÿ+ÿÿÿÿÿÿÿÿÿÿ123456ÿÿÿÿÿÿ:;ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTUVWXYÿÿ[\]ÿÿÿÿ`aÿÿc<efÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ“ÿÿ –ÿÿÿÿÿÿ!"#ÿÿÿÿÿÿÿÿ()*+ÿÿÿÿÿÿÿÿÿÿ123456ÿÿÿÿÿÿ:;ÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTÿÿÿÿWXYÿÿ[\]ÿÿÿÿ`ÿÿÿÿcÿÿefÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ“ÿÿ –ÿÿÿÿÿÿ!"#ÿÿÿÿÿÿÿÿ()ÿÿ+ÿÿÿÿÿÿ/ÿÿ123456ÿÿÿÿÿÿ:;ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTÿÿÿÿWXYÿÿ[\]ÿÿÿÿ`ÿÿÿÿcÿÿefÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ“ÿÿ –ÿÿÿÿÿÿ!"#$ÿÿÿÿÿÿ()ÿÿ+ÿÿÿÿÿÿÿÿÿÿ123456ÿÿ<=:;@ABCDEFÿÿÿÿÿÿÿÿGHIJKLÿÿÿÿÿÿÿÿÿÿRSTÿÿÿÿWXYÿÿ[\]ÿÿÿÿ`ÿÿÿÿcÿÿef<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿz{|ÿÿ<=ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ“ÿÿÿÿ–ÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿÿÿÿÿ¦ÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿ<=ÿÿ¦@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEF<=ÿÿÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡<=¤ÿÿ@ABCDEFÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿžŸ ¡ÿÿÿÿ¤BÊC͘'(˜à០‘`¤WXMyá9zU:´ O¼ûüÀÂÄ…U­ÔÔÔÏý’ëâìèYâY®\É\G_`µÔ¶·¹†OPQRST˜ãäå½¾ÙÚæB@C`TÚ±UºOPQRSTU÷³U´\cdÛ“snoÅÆNOPQRST  XYP€Z[\]^_`XYefZ[\]^_`456abcd[U]^_`+°™,U™›LNžç£¤‹Œ¸abcdÛB{C;qUñTUU–}”r‘sœžUUðcd¼½ª«ÊËÊËUUùŽø•¨«¬­abcdU¶ò·™œ|abcdUOPQRST²Ëabcd¦_U`óÙžŸ®UôUU³°U±¸µ¸Ëõ̾¿UÀÔÔb¡cÌÍÎÏÐÑÒÓÔÕÖÔØÙÚÛÜÞYþ/U\äåæèéåëUíÃÄU[Uç]¢ÿ>?yÔDE×UUUij HWIX_©OPQRST UUÍZ\[]U§B¨C Qp0SÅÆN3[\]^_`67XYBCZ[\]^_`]^_`NUOiUjÕÖ£PUVOPQRSTU^`@A¤U}~U¥Uƒ„…w‡U‰Š‹…¦JK‘’VW• U˜U™š§œ¨žUefÖש«ðabcd¿ÀUÂì abcdabcdXY€Z[\]^_`UU UU­FU^a”•®>^_`žþU¡dë½¾¹»UMXYeZ[\]^_`UUUUo«è®±ÊUUÑÒ²»ÕÒñòUÓ·å â!"#$%&abcd'Š(ìíî)B*C+ª,ðabcd-³õ.÷/`øùú0’123456abcd7“89:;<=>?@ÅA B  -.CDEFG XY4HZ[\]^_`AIJXYKvZ[\]^_`xƒ„ˆ‰.)±›B©C¶XY Z[\]^_`XY!Z[\]^_`"</0#$%ÔÔ'st&78(¬18¯WBXCYZbh»ktlÁÃmquÓabcdvz23w{xíîïabcdyŠö¯ÅfgqÈÚÛÜmÝÆàáqãabcdäƒþ„ÿabcd†"‡~„*+,9³´?iGLjn‰üÿvw{|}Šœ’˜¥¦Œ¶¸XYº½Z[\]^_`¾Ç¿¬þ—çïéêÉôÎÁÄÏÁHhéFM%ÌÞPmBBCCpµXY|Z[\]^_`XYZ[\]^_`ÂÄBC”ÊËBCBCabcd˜™BC§à¯XY²Z[\]^_`Âabcd<=abcdßàáâãêìîïñóõ÷øùúûüýþÿ   YZ[\]abcdST^_2MabcdRe[f]]_Ö×ghi_jØklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡Òij[]XYZ[\]^_`}~_ƒ„…‡‰Š‹‘’•˜Ï™šÐœž«òXYZ[\]^_`ij²abcd†ûý}~ƒ„…‡‰Š‹‘’[•]˜™šœ ž«ô_abcd‡#$XYZ[\]^_`Z[\]^_`456ijXYZ[\]^_`}~ƒ„…‡‰Š‹[]‘’•p˜™šœž_«öxabcd•abcdˆabcd‹IŽLi™jYZ[\]Ÿ ¡¢£}~^_ƒ„…‡‰Š‹‘’•˜™šœžabcd«ÉefÍXYÐZ[\]^_`Ñghijßklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]Òabcd ^_abcdeXYfZ[\]^_`Ághijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]Òabcdn^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]Òabcdo^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¥YZ[\]abcdp^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡ÝYZ[\]abcd}^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡çYZ[\]Þabcd^_ßabcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]abcd–^_`abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]abcd—^_abcdeXYfZ[\]^_`ghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ YZ[¡\]abcdÉ^_abcde[f]XYZ[\]^_`ghi_jklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ [ü]¡ijabcd_Þ}~ƒ„…‡‰Š‹‘’[•]˜™šœž«_ij}~ƒ„…‡‰Š‹‘’•˜™šiœjž«}~ƒ„…‡‰Š‹‘’•˜™šœžÎ Ùþ  !"#$%&'()”ÿ”ÿ*+,-./0”ÿ1X23Z[\]^_`456789 Ùþ ùÿùÿ abcd!"#$%&'()*+,-./0123456789 Ùþ ùÿùÿ !"#$%&'()*+,-./0123456789 Ùþ ùÿùÿXY Z[\]^_`!"#$%&'()*+,-./0123XYZ[\]^_`456XY7Z[\]^_`89abcdXYßZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXYæZ[\]^_`abcdXYéZ[\]^_`XYZ[\]^_`abcdêabcd!abcdXY&Z[\]^_`abcdXY1Z[\]^_`abcdzabcdXY¬Z[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY¹Z[\]^_`abcdXYØZ[\]^_`XYZ[\]^_`abcd[abcdjabcdXY~Z[\]^_`abcdXYZ[\]^_`abcd€abcdXYZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY‚Z[\]^_`abcdXY…Z[\]^_`XYZ[\]^_`abcdˆabcd‰abcdXY‹Z[\]^_`abcdXYŒZ[\]^_`abcdabcdXYŽZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXYZ[\]^_`abcdXYšZ[\]^_`XYZ[\]^_`abcd›abcdabcdXY Z[\]^_`abcdXYÍZ[\]^_`abcd)abcdXY:Z[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY;Z[\]^_`abcdXYBZ[\]^_`XYZ[\]^_`abcdCabcdDabcdXYEZ[\]^_`abcdXYJZ[\]^_`abcdKabcdXYNZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXYOZ[\]^_`abcdXYPZ[\]^_`XYZ[\]^_`abcdQabcdRabcdXYUZ[\]^_`abcdXYVZ[\]^_`abcdYabcdXYlZ[\]^_`XYZ[\]^_`XYZ[\]^_`abcdXY–Z[\]^_`abcdXYšZ[\]^_`XYZ[\]^_`abcd¤abcd­abcdXY¯Z[\]^_`abcd°abcdÐabcd×abcdæÿÿ:;úa<©ªº—=>š?@¢¢£AÜÇÈݥ̦V¿§¨´µD°óÀÜgEghkl‚ƒFQiÃÝãªèG²*rÆ‘H³-IRö‡JS»KtÇkÈÔLu·“Ñ䯨uÙÇÈÎ~5ÓÔr¼‚=¹Õº¼1ý1ýºÿ1ý1ý1ý1ý1ý1ý1ý1ý1ýGÿ1ý1ý·ÿâ1ýH1ý1ýdíþßÿ1ýòáÿ 1ýÁÿ1ý1ý1ý1ý1ý1ý1ý1ý1ý1ýX1ýV1ýÖÿ1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ýd1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý1ýÿ1ý1ý1ý2ý1ý1ý1ýø1ý1ý³õ1ý1ý1ý1ý1ýÊÿ1ý*1ý1ýlj>Y^ ()IU˜1=gh;mn^_(*  '½‚…ñô÷ú™›ƒÊ·¼„ +*iœ„”?>@i68|~9z€ :<Z§W\P)D3IYXop] kO¨q!"®Ã#%¬ª-.+341NMl™š‡‰.2–  [¦CH”xwEK€`©v?`_áòõøûšœ‡ËÅÇÉÆÈư²´±³¯Â¿¾ÀÁ,-KOXWVc…/0ŒŽ—{‚ƒ{z~Î4FSJabcdef%& Z§ÿ¸¹ÏÐÑÒÓÔÖ×ÙÚµÝÞÛÜàå䌑’æ¥ç¦“”ðóöù—•–˜íïî ¢¨$ª&­«,2LRj›Šˆ‰vx•s}AGQVÌÍ/056d†t57|}yTMN7aüýþ º»£ÕØßˆ‰‹âãèé랟¡¶©«PSJmŸžBR:;8E]\[lk£ ’‘wyuULtus!@ ŠŽêìQqe‹–<=9FrnlrA¤ghf¤¡“$#"oDCGm¥¢HBp× ÏÿÚÿ1ý1ý1ý1ý1ýSSS« 1ý1ý1ý …ÿ“ÿ …R1ý1ý1ýå 1ýå I1ýå å å l0SQ:‹aå  å øÿPå 1ý   `@Zbm‹Öª1ýÌÿ1ý1ý1ý1ýéþ1ý11ý1ý1ý1ý1ý1ý1ýå 1ý 1ýSÉO 1ý1ý1ý1ý1ý1ýÜ1ý1ý)GX]hå ipqrz}‹”•˜¢¤§¨©ª¬­®¯°±¶¹½¿ÁÃÉÌÎÔÖרÙÚÛäçèêëìíîïðó÷üýþÿå å 1ý·1ý1ý1ý1ý„K 1ý1ý1ý1ýå O å…å ×ÿgg­ñ´1ý1ý**1ý1ýÐ1ýå  å gÒ1ý1ý1ý1ýâ v1ýå 1ýýÿ 1ý1ýå H 1ý1ýg1ý1ýéþúÿúÿ1ý( 3"1ý1ý<å å å å  1ýg!å &å 11ý1ý1ý1ýå å å î‹yyå å å å å å å å å å å å ‹å å å å å Ê     å å å l å  å  å   9€àk       ‹ )4   ,­d       1ý1ý1ý1ýå å å å å å å å å å å 6>?1ýCDG1ýzÿFLg›w—_å O 1ý1ýå wâP1ýÚ1ý1ý«å å 1ý1ýl1ý1ý2•guïå å 1ý×ÿ1ý1ýå  1ýå ýÿå å RQST1ýÃÿå å 1ýUýÿýÿgÓ1ýgV1ý1ý1ý [1ý1ý\_ýš7`YahlmufjýÿÙ.GR~”š¸ÃvÎäú{ 1ý4ˆÿÆÿ4 º (1ýJkBv\už1ýý1ý 1ý1ý.07&'E_fxe1ý1ýMÀÿg>h1ý1ý1ýSSå å @QWÊöÿ1ýÉÿÉÿ,,1ý1ý„1ý1ýK1ý1ý1ýõ1ý1ý1ý1ýóW å kš¶ 1ý1ýå å 1ý1ýå 1ýÕ€‚„ø ã…†1ý1ý1ýå Þä1ý‘g1ý1ýš1ýå )J1ýå å å 1ý1ýggO å å å 1ý1ý1ýå å 1ýå 1ý1ýå å å 1ý1ý + 1ý’1ý1ýå å å å 1ý1ý1ý1ý1ý1ýå 1ý1ýå 1ý1ý1ý1ý1ý1ý1ýå 1ý1ýå å å 1ýå å 1ý 1ý1ý1ý1ý1ýå 1ý1ý1ý1ý1ý1ý1ý1ý1ý1ý  1ý1ý1ý1ý1ý #1ý #1ý  1ý‘1ý–w ™1ýŸ 1ý1ýÂO 1ýå U 1ý w`ÕÕ°£¤1ý¢1ý1ý1ý1ýå å 1ý1ýy‹‹   1ýå å ¥»ç\1ýgýÿ1ý©1ýJO !,7`ª®1ý1ýMf«?q³×â¦í¯ËÌbVctsSS1ý1ý1ý1ýå $,*$å ®Ô1ýå 1ý1ý1ý1ý1ý1ý°±gg 1ý1ý g1ýå å ñå 1ý1ý1ý1ý1ý1ý1ý 1ý1ý1ýå 1ý1ý1ý1ý1ý1ýå 1ý1ý1ý 1ý1ýå 1ýå 1ý1ý 1ý1ý 1ý1ý1ý1ý1ý1ý1ý-ÏSå % iÕ¶¹Õ1ý1ý     Š1ý»¼Ð1ýM1ý1ý1ýŽ›• ¹‘šO çå 41ýÀ1ýÇÛ1ý1ý1ý1ý1ý"ËÍ1ýñå 1ý1ýå 1ý1ý1ý1ý1ý1ý*NiO 1ý å å 1ýÚ 1ý1ýO 1ýgO Ï1ý1ý*úÚàÕA*1ýO 1ý1ý1ý1ý 1ýå 1ý1ý1ý1ý *¥1ý1ýp-1ý1ý1ý1ý1ý+ŠBĉB0ŠB;ŠBAŠBIŠBQŠBWŠB_ŠBgŠBlŠBpŠBvŠB|ŠBƒŠB‰ŠB‘ŠB˜ŠB ŠB¦ŠB­ŠB´ŠB¸ŠB½ŠBÅŠBÌŠBÔŠBÜŠBãŠBìŠBöŠBÿŠB‹B‹B&‹B0‹B8‹B>‹BD‹BM‹BS‹BW‹B\‹Bd‹Bh‹Bn‹Bt‹B{‹B‚‹B‰‹B‹B—‹BŸ‹B¤‹B©‹B¯‹B³‹B»‹BÄ‹BÌ‹BØ‹BÝ‹Bá‹Bæ‹Bë‹Bð‹Bõ‹Bú‹Bÿ‹BŒB ŒBŒBŒBŒB#ŒB)ŒB0ŒB6ŒB<ŒB@ŒBIŒBRŒBZŒBbŒBgŒBmŒBuŒBŒB…ŒBŒŒB’ŒB›ŒB¡ŒB§ŒB¬ŒB³ŒB»ŒBÁŒBÇŒBÏŒB׌BàŒBéŒBîŒBõŒBúŒBBB BBBB B&B+B2B7B?@ABCDEFGHIJKLMNOPSTWWXXYZ[\]^_`abcdefghijklmnopqrstuvy|‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½ÀÁÂÅÆÉÊÍÎÏÐÓÖÙÙÜÝÞáâåæéåîïòóö÷øùüý     .3478;<AAEFIJNPOTUUYY_`dedklppuvz{{}z‚……‰Š‘Ž•–™ššž ¡¥¦©ª¬­±²³´·¸¹º»¾¿ÀÃÃÄÄÅÅÆÆÇÇÊËÎÏÐÑÒÓÔÕÖרÙÚÛÞßáâåæ§£¤ Ÿ¦ž¡¥  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œ¢H“@;$Hüüÿp8ýÿ@3õýÿX3(ýÿ0Ø/ýÿ@Ø0ýÿ˜ˆ1ýÿ°2ýÿðX4ýÿ@ ¨4ýÿX 8ýÿ˜ ¨8ýÿÀ Ø8ýÿØ ¨=ýÿ( ?ýÿˆ x@ýÿè ¸@ýÿ è@ýÿ@ Aýÿ` ¸Býÿ  ØBýÿ¸ èBýÿÐ XDýÿ (Fýÿ@ ¨Fýÿh Gýÿ€ 8Gýÿ˜ xGýÿ¸ ¸Hýÿ Iýÿ( ¨IýÿP ˜Nýÿ  ØNýÿÐ èOýÿhøOýÿ€QýÿÈXRýÿˆSýÿ`ÈSýÿ€hTýÿÀ¨Wýÿ(Yýÿ`xYýÿ€èYýÿ°ZýÿÐØ[ýÿø[ýÿ0Ø\ýÿhè]ýÿÀ(cýÿ(wýÿx˜wýÿ˜¸wýÿ°øwýÿÐx{ýÿ¨ˆ|ýÿ¨|ýÿ X}ýÿ@ˆ}ýÿhH~ýÿ¨¨~ýÿÈø~ýÿðýÿøýÿ`h€ýÿx¸ýÿ˜(‚ýÿ°xƒýÿØX„ýÿè„ýÿ((…ýÿ@¸…ýÿpx†ýÿ˜¸†ýÿÀX‡ýÿø¨ŠýÿHxŒýÿ˜˜Œýÿ¸ØŒýÿØøŒýÿøxýÿ Xýÿp¨ýÿÈ’ýÿÀH“ýÿèX—ýÿP˜ýÿˆ8šýÿðØšýÿ0(›ýÿPØ›ýÿˆ¨œýÿÈØœýÿð˜žýÿ@øžýÿ`(ŸýÿˆXŸýÿ¨xŸýÿÈ¢ýÿh¤ýÿHȤýÿ`¨¦ýÿ §ýÿ¸¨©ýÿ ˜ªýÿ8­ýÿˆ˜­ýÿ h¯ýÿи¯ýÿø(±ýÿ8¨±ýÿpȱýÿ¼ýÿ0ˆ¼ýÿHȼýÿ`X¾ýÿx¾ýÿ°8Âýÿ èÄýÿX (Éýÿ!øÌýÿX!¨Íýÿ¨!¨Òýÿ "xÓýÿH"Ôýÿ€"ÈØýÿð"¸Ýýÿx#8áýÿØ#Xáýÿø#8âýÿ $èâýÿ@$˜ìýÿ`$Xïýÿ $ˆòýÿè$èòýÿ%˜õýÿ0%ØõýÿH%(öýÿh%8øýÿ¨%ˆøýÿÀ%Èúýÿ&èúýÿ0&ˆüýÿ€&Øüýÿ˜&xýýÿ¸&ÿýÿø&8ÿýÿ 'ˆÿýÿ@'¨ÿýÿX'øÿýÿx'þÿ'Xþÿ°'xþÿÈ'¸þÿè'Øþÿ(ˆþÿ8((þÿ`(Hþÿ€(XþÿÈ(ˆþÿè(èþÿ8)þÿX)8þÿ€)Xþÿ )xþÿÐ)þÿè)ˆþÿ *¨þÿ8*( þÿp*ˆ þÿ *ø þÿÐ*( þÿø*X þÿ +˜ þÿ8+È þÿX+8þÿÀ+xþÿ ,˜þÿ@,hþÿ¨,¸þÿÐ,þÿè,Hþÿ-xþÿH-hþÿ -(þÿ¸-ˆþÿà-Øþÿ.øþÿ .hþÿ@.˜þÿX.Øþÿx.(þÿÐ.ˆþÿø.¸þÿ /èþÿH/þÿh/(þÿ€/xþÿ˜/¸þÿ°/èþÿÈ/¸þÿ0¨þÿH0X þÿp0è þÿˆ0(#þÿè0$þÿ 1ˆ$þÿH1ø$þÿ`1(%þÿx1H%þÿ1x%þÿ°1&þÿà1˜&þÿ2Ø'þÿX2è(þÿ˜2è)þÿØ2*þÿð2¸*þÿ3Ø*þÿ(3+þÿp3È+þÿ¨3h,þÿÈ3Ø,þÿð3X-þÿ4è-þÿ@4H.þÿp4ø.þÿ 4¨/þÿÀ480þÿð4Ø0þÿ85X1þÿh5x1þÿˆ5ˆ1þÿ 5˜1þÿ¸5¨1þÿÐ5¸1þÿè5È1þÿ6Ø1þÿ6è1þÿ06ø1þÿH62þÿ`62þÿx6è2þÿ 6ø2þÿ¸63þÿÐ63þÿè6h4þÿ7x5þÿH7˜5þÿh7¨8þÿ¸7H9þÿØ7˜<þÿP8ˆ€þÿ 8ø€þÿÈ88þÿè8˜þÿ9ø‚þÿ09رþÿ€9H²þÿÈ9zRx 'ýÿ*zRx $Ðóüÿà FJ w€?;*3$"D8(ýÿ¯D <\Ð(ýÿ~BŒA†D ƒF0y  ACBD f ADBLœ)ýÿKBBŒA †A(ƒF0½ (A ABBA D (A ABBF ì+ýÿC<H+ýÿiBBŒA †A(ƒD@U (A ABBK $Dx.ýÿŒAƒn Q A A là.ýÿ+DbL„ø.ýÿÐBBŽB B(ŒA0†A8ƒDP: 8C0A(B BBBA \Ôx3ýÿZBBŽG B(ŒD0†A8ƒD@´HNPCXG`L@s 8A0A(B BBBE \4x4ýÿdBBŒF †A(ƒM0‰ (C ABBG ~ (C ABBJ @ (C ABBH $”ˆ5ýÿ7AƒM N AC UA,¼ 5ýÿ0BŒA†D ƒeABì 5ýÿ)FƒNÃ< °5ýÿŸBBŒD †A(ƒJ0 (A ABBD L7ýÿDMd7ýÿ<|7ýÿfBŒA†D ƒF ABH ‚ ABC ,¼@8ýÿÍA†AƒN z FAG $ìà9ýÿxMƒBÃIƒ^Ã8:ýÿ\DS,€:ýÿ0DgD˜:ýÿ4CƒpLd¸:ýÿ:BBŒA †A(ƒD0s (F ABBH œ(D ABB´¨;ýÿYQƒt ÃK $Ôè;ýÿA†AƒN }AALüP<ýÿãBBŽB B(ŒA0†A8ƒDPs 8C0A(B BBBC ,Lð@ýÿ5BŒA†A ƒmAB\|AýÿBŽBG ŒA(†D0ƒS (D BBBK ½ (A BBBD G(A BBB4Üðøüÿ¤(BBŽE B(ŒA0†A8ƒKpxAýÿD,pAýÿBŒK†D ƒZ ABJ s CBH …FB4t8BýÿEFŒA†A ƒF@û  DABH \¬PCýÿ)BBŽE B(ŒD0†A8ƒDPÉ 8A0A(B BBBI j8E0A(B BBB  Dýÿ2Aƒh<,@Dýÿ–BŒA†D ƒo ABG N ABA Ll Dýÿ6BBŽB B(ŒA0†A8ƒI`Z 8A0A(B BBBI L¼GýÿqBBŽB B(ŒG0†A8ƒD@& 8A0A(B BBBD  ÀHýÿAAƒ,,ðHýÿiBŒA†F ƒ\AB\0IýÿAƒT<|0IýÿÊBŽBB ŒA(†A0ƒŸ (A BBBB ¼ÀJýÿAƒT4ÜÀJýÿÛBBŒA †A(ƒD0Ç(D ABBT hKýÿBBŒD †A(ƒMPiXK`_XAP{ (A ABBE K(A ABBLl Lýÿ:BBŽB B(ŒD0†A8ƒGp{ 8A0A(B BBBG d¼ QýÿüBBŽB B(ŒA0†A8ƒG`¢ 8A0A(B BBBA  8A0A(B BBBA $ ¨dýÿfD V F D ødýÿDU\ eýÿ:Iƒ[ D QÔ| eýÿ~BŽBB ŒA(†A0ƒD@Á 0A(A BBBK } 0D(A BBBP I 0D(A BBBL y 0F(A BBBE Z 0D(A BBBE a 0A(A BBBJ K 0A(A BBBE P 0A(A BBBE TT Ègýÿ A†AƒD0W DAN D AAJ p FAI ^ KAF RAA¬ €hýÿAƒTÌ €hýÿ¯DQ K J$ì iýÿ.A†AƒQ XAA< iýÿ³A†AƒD U AAC P AAF oFAT ˜iýÿXAƒM HA$t ØiýÿKA†AƒP vAAœ jýÿAƒWL¼ jýÿÖBŒA†A ƒC ABN A ABT s ABJ bAB jýÿn$ èjýÿND t H D lýÿn$\ plýÿJAƒI q AD ,„ ˜mýÿÝA†AƒI0_ AAD ´ HnýÿtƒD rAÃÔ ¸nýÿ@,ì ànýÿˆA†AƒI V AAE $@oýÿ²DR J f J $DØoýÿ4A†AƒO `AA4lðoýÿ•A†AƒK b AAO DKAL¤XpýÿJBBŽB B(ŒA0†A8ƒG€Æ 8A0A(B BBBG LôXsýÿÇBBŽB B(ŒD0†A8ƒG@S 8D0A(B BBBD DØtýÿAƒTdØtýÿ5DY C P„øtýÿAƒO$¤øtýÿyGƒn K l D HLÌPuýÿÚBBŒA †A(ƒD@i (C ABBE D (E ABBB àvýÿDAƒ^ I [,<wýÿ A†AƒD Ä AAD $lzýÿsQƒl ÃC eÃd”Xzýÿ BBŽB B(ŒA0†A8ƒDPÜ 8D0A(B BBBI T 8A0A(B BBBB 4ü~ýÿºA†AƒI g AAD vFAd4ˆ~ýÿBBŒA †A(ƒD@2 (A ABBF F (D ABBI C (A ABBA <œ@€ýÿžC†AƒM M AAH ` AAF KAAÜ €ýÿGAƒA4üЀýÿ¨A†AƒL T CAJ D AAJ <4HýÿÄA†AƒI } AAF A AAM aAA$tØýÿ(A†AƒM VAALœàýÿ¹BBŒD †A(ƒD@^ (A ABBG m (A ABBE ìPƒýÿVwM D I$ ƒýÿ-A†AƒP XAA4˜ƒýÿ"AƒP O AT¨ƒýÿAƒT4t¨ƒýÿŸA†AƒG  AAH P FAA D¬†ýÿKyŒA†A ƒ¯ÃAÆBÌs ƒ†ŒpÃÆÌX ƒ†ŒôˆýÿW< `ˆýÿàBŽBI ŒA(†A0ƒR (A BBBP LŠýÿWddHŠýÿBBŽG B(ŒA0†A8ƒDp· 8A0A(B BBBA µ 8A0A(B BBBA Ì€ŒýÿçLäXýÿeBBŽB B(ŒD0†A8ƒF€ñ 8D0A(B BBBG 4xýÿ‹,LðýÿÁA†AƒJ@Õ AAE $|‘ýÿKA†EƒJ0xAA<¤¸‘ýÿpBŒA†K ƒ¿ ABH n ABG 4äè’ýÿvBBŒC †A(ƒR@S(C ABB0“ýÿAƒTœ<0“ýÿC BŽBB ŒA(†A0ƒG°‰ 0A(A BBBA b¸EÀFÈBÐBØBàI°m¸bÀB¸A°Þ¸GÀW¸A°\¸EÀBÈDÐI°Üàœýÿiô8ýÿ5, `ýÿAƒL  AB {A<ÀžýÿAƒ[\\Àžýÿ¹A†AƒD@ìHUPcHA@c AAH S AAC ˜ AAF PHUP^HA@D¼ ¢ýÿ¦A†AƒD06 AAB j AAD S AAK ¤ˆ¤ýÿ6A†AƒD@ŠHuPBXI`LHpPFXA`U@” AAB YHuPBXI`LHpPFXA`U@b AAK bHdPBXI`LHpPFXA`U@aHdPBXI`LHpPFXA`U@T¬ ¨ýÿÅA†AƒD`1 AAG LhPpPhA`^ AAC DhPpPhA`L˜«ýÿ®BBŒA †A(ƒD0x (A DBBE D (C ABBD tTø«ýÿñBBŒA †A(ƒFpç (A ABBG dxV€^xBpsx_€exAp² (A ABBF DxN€¥xAp$Ì€°ýÿÅRh HAdYD4ô(±ýÿ›A†AƒG ] DAE D KAH l,±ýÿ§A†AƒDPX``jXBPr AAD eXn`wXAPh AAK ]Xn`‚XBPfX``iXAP„œеýÿäBBŽG B(ŒA0†A8ƒG€’ 8A0A(B BBBF ΈDVˆA€|ˆGB˜A Q€WˆEB˜D S€\$8ºýÿ~BBŽB B(ŒA0†A8ƒG€ˆHXˆA€ 8A0A(B BBBA „X½ýÿAƒT$¤X½ýÿÜHƒ\ D c̾ýÿ¬D  G Sì ¾ýÿ¡ Iƒ> Y < 0Èýÿ¸A†AƒL0X AAH ï AAG DL°Êýÿ.A†AƒG H AAE Q DAJ … FAL ,”˜ÍýÿVBŒA†D ƒKABÄÈÍýÿ©Ü`Ðýÿ4DkôˆÐýÿIDx D <¸ÐýÿIŽBB ŒA(†A0ƒø (A BBBB TˆÒýÿLDCTlÀÒýÿ9BBŽB B(ŒA0†A8ƒDP– 8D0A(B BBBG X\`HXAPĨÔýÿLܰÔýÿ›BBŽG B(ŒF0†A8ƒX@V8K0A(B BBB,ÖýÿOD8ÖýÿœDz B <d¸ÖýÿBBŒA †A(ƒF0R (D ABBI $¤Øýÿ*A†AƒG ^AAÌØýÿCAƒAì@Øýÿ DWHØýÿHAƒF$xØýÿDO<€Øýÿ;Aƒy\ Øýÿt¨Øýÿ:AƒM jA”ÈØýÿAƒ\,´ÈØýÿ¥A†AƒG a AAD $äHÙýÿ™AƒL \ AF  ÀÙýÿAƒUD, ÀÙýÿBŒA†F ƒT ABX  ABF A GBF t ˆÚýÿ"Aƒ`L” ˜ÚýÿQBŒA†F ƒt ABX S ABB A GBF }ABä ¨ÛýÿAƒU$!¨Ûýÿ*A†AƒG ^AA,!°ÛýÿAƒT,L!°ÛýÿYƒD  FÃN mAÃB ƒ|! ÜýÿŽ4”!ÝýÿrA†AƒL@’ AAF t KAH Ì!`Þýÿ4ä!hÞýÿrA†AƒG g AAF X AAF ,"°ÞýÿRA†AƒG g AAF ,L"àÞýÿiJ†AƒG vAÃAÆF ƒ†$|" ßýÿ.A†AƒQ XAA$¤"(ßýÿ+A†AƒG _AAÌ"0ßýÿ5D pä"Xßýÿ"Aƒ`d#hßýÿbBBŽB B(ŒD0†A8ƒGÀ‘ 8F0A(B BBBL ¯ 8A0A(B BBBG \l#päýÿ3BBŒA †A(ƒG0N (A ABBG k (F ABBJ a (A ABBA Ì#PåýÿAƒ]dì#PåýÿÅBBŽB B(ŒA0†A8ƒGPj 8A0A(B BBBK ù 8F0A(B BBBH $T$¸èýÿFA†AƒM tAA|$àèýÿY$”$(éýÿ%A†AƒL TAA4¼$0éýÿ0A†AƒD “ FAH D AAB Tô$(êýÿçBŒA†A ƒF0E  AABE P  AABL X  AABE L%Àêýÿ±$d%hëýÿZAƒl K A O FŒ% ëýÿKDn F R¬%ÐëýÿAƒUÌ%ÐëýÿbAƒy V Mì% ìýÿ#DZ&8ìýÿ2AƒpT$&XìýÿFBŽBE ŒA(†F0ƒD@¹ 0A(A BBBK S 0K(A BBBK $|&PíýÿRA†AƒQ |AA$¤&ˆíýÿ.A†AƒQ XAA$Ì&íýÿ.A†AƒQ XAAô&˜íýÿ-Aƒk'¨íýÿ ,' íýÿGDBD'Øíýÿ<\_\'îýÿ/Lt'îýÿÇBBŽE B(ŒD0†A8ƒG@| 8D0A(B BBBH ,Ä'˜îýÿéAƒGà` AG i AF $ô'Xïýÿ¤Aƒv I b V (àïýÿ‚\4(Xðýÿ:BBŒA †A(ƒG0Ü (D ABBN O (A ABBK ë (F ABBE 4”(8òýÿÑA†AƒN D FAE _ AAG $Ì(àòýÿxDv F W I Sô(8óýÿcD^ )óýÿ!$)¨óýÿ<)°óýÿ!Aƒ_,\)ÀóýÿŸA†AƒI ` AAC $Œ)0ôýÿvA†DƒF hAAL´)ˆôýÿ@BBŽH B(ŒD0†A8ƒOP  8A0A(B BBBD <*xõýÿBBŒD †A(ƒL0• (A ABBH <D*HöýÿBBŒD †A(ƒL0‰ (A ABBD „*÷ýÿ"œ* ÷ýÿžD z B ]¼* ÷ýÿÔ*¨÷ýÿ:Duì*ðÒüÿ½+•Óüÿ$D4+ ÷ýÿ­A†AƒD d AAD } AAA T+øýÿšAƒ‚ E $t+˜øýÿbMƒc ÃH M ÃK PÜ+àøýÿ}4´+Hùýÿ„BBŒA †A(ƒJ0m(A ABB,ì+ ùýÿXBŒA†D ƒC ABA ,,Ðùýÿ¯IŒA†D ƒd AFw L,Púýÿ¬Jƒ‰Ã,l,àúýÿBŒA†H ƒrABDœ,@ûýÿLŒA†E ƒi ÃAÆBÌB AÃCÆBÌM ƒ†Œ,ä,˜ûýÿrBŒE†A ƒR ABA -èûýÿAƒO4-èûýÿL-àûýÿd-Øûýÿ|-Ðûýÿ”-Èûýÿ¬-ÀûýÿÄ-¸ûýÿÜ-°ûýÿô-¨ûýÿ . ûýÿ$$.˜ûýÿÐA†AƒD ÇAAL.@üýÿd.8üýÿ|.0üýÿ,”.(üýÿBA†AƒN0 AAD ,Ä.HýýÿA†AƒG  AAF ô.(þýÿAƒTL/(þýÿBBŽE B(ŒD0†A8ƒGm 8D0A(B BBBG d/èþÿ—PvJt„/hþÿCBŒA†D ƒD0=  CABB b  CABH N  CABA o  HABA b  CABA Lü/@þÿçCBBŽB B(ŒA0†A8ƒD`³ 8A0A(B BBBA $L0àGþÿfA†AƒT DFAt0(Hþÿ=Jƒn”0HHþÿYkƒ]Ã$´0ˆHþÿ^WƒfÃsƒC ÃM LÜ0ÀIþÿÑ.BBŽB B(ŒA0†A8ƒGÐX 8D0A(B BBBA D,1PxþÿgBIŽB B(ŒD0†H8ƒM@t8A0A(B BBBt1xxþÿÐ_@°_@q}³Ï½ H+@ táA°mc¸mcõþÿo˜@`@ø@ µ pc¸@è@¨ þÿÿox@ÿÿÿoðÿÿo@Èmc†+@–+@¦+@¶+@Æ+@Ö+@æ+@ö+@,@,@&,@6,@F,@V,@f,@v,@†,@–,@¦,@¶,@Æ,@Ö,@æ,@ö,@-@-@&-@6-@F-@V-@f-@v-@†-@–-@¦-@¶-@Æ-@Ö-@æ-@ö-@.@.@&.@6.@F.@V.@f.@v.@†.@–.@¦.@¶.@Æ.@Ö.@æ.@ö.@/@/@&/@6/@F/@V/@f/@v/@†/@–/@¦/@¶/@Æ/@Ö/@æ/@ö/@0@0@&0@60@F0@V0@f0@v0@†0@–0@¦0@¶0@Æ0@Ö0@æ0@ö0@1@1@&1@61@F1@V1@f1@v1@†1@–1@¦1@¶1@Æ1@Ö1@æ1@ö1@2@2@&2@62@F2@V2@f2@v2@†2@–2@¦2@¶2@Æ2@Ö2@æ2@ö2@3@3@&3@63@F3@V3@f3@v3@†3@–3@¦3@¶3@Æ3@Ö3@æ3@ö3@4@4@&4@64@F4@V4@f4@v4@†4@–4@¦4@¶4@Æ4@Ö4@æ4@ö4@5@5@&5@65@F5@ÒBOBÛ B­ôA°ôA“ûA(öAnpycÒÿÿÿÿÿÿÿÿGCC: (GNU) 6.0.0 20160406 (Red Hat 6.0.0-0.20)GCC: (GNU) 6.3.1 20161221 (Red Hat 6.3.1-1)<`@P6@¤(,Ei @¸5,ÂÃà´@E',y0Ü@~E,p°!A‰#,®È@EAúLµõ@ZAgU`5@½6@$,À,°¯AA1Aiµ žÀàé=Ø440;¬ 92ÐintÝ­ƒj(„j[ 8 ‹j j¬9¬—0ÃDØñ@ —òc ÷¦ ø¦ Vù¦ ú¦ Éû¦( Üü¦0 Íý¦8 Ÿþ¦@ ‚ ¦H ¦P ó ¦X -x` ¦~h ,cp ÷ ct qx FG€ èU‚ ÷„ƒ i”ˆ …!| ü)¤˜ E *¤  +¤¨ ,¤° .)¸ ¼$/cÀ 1šÄ b–íœx Dx æ ž~ ¼8¢cGà ¬” ‡@ ¬ª ‡A;ªb<ªÊ =ª³Ó ¨~1 ©~Ú ª~¿c Ù $cØ: KŽ b  Ž i!™/—° ¨cc \®ÿ˜63<| b‚Ñ g® ¦Ö ‡9Æ÷cÞ j;!Æù)cà *jà  7C H 9c C :cC UY_jc Ùz ‡@j( -z) .z˜ Ä 瞣¦ pcû mÒØ{€ šN ž¤÷7Çp :Ç- bÇ>8ÇL9Çm9ÇN ¼l›? TO j Æ5 Ȥ  Él ú Êè õ; ËÝ Ìw¤ ¯¿´î o¿ï p¿W"µÊ9¦³GcæLc~Pc ¡N *Ö w>tB X¥¯ ϧ\ ɧ\ Pª\ Jª\ t «\ n «\ —­\ °¯ ± ¥ ´ – µ œ¶ A · ¸¸ ¹ ³º ­» ¦¼ ¾½c$ B¿#( ç Â\0 ›Ã\2 @Æc4 FÇc8 dÈ)@ ãлH ÓÒ\Tv2 Ë aÍ\ { Í\ øÎ\ ûÎ\ ßÏ\ IÏ\ 16ux)3y)‘z) ¬^¢{S‹|c }c! ~cÚc€ccN/ Û \•Ëù Ž@¼€'¸ —|p¤í V ¦ccnt§c ã¨ø  D©ø  % ª¤ %2«¤  ¬ø ( 1­¦0 ®ø 8 €¯ø @ ¸2°cHtag²cL B³cPlib´$ X tµ¦` P ¶òhÉ ^ø  (_ø ¥`ø Þaø ½bcccÎ>dc e¦ ¦V fK ägµËhcÞi2º i2ªi2=j¦9k¦êlc4mSnc^ocpcwr¦ž s¦   ¸´vû àwc c- Ëx" — ycB‰c´ŠcdcÏ(” ~•p–p= —p–˜p{šcd ›¦“œcq œcK žcR žc6 žcažc#ŸK b¢¦7£cWª¦«¦8¬¦ ­¦Ù®¦e/¯cj±¯Á »c! Àø OÁ¦Õ(Ñ V ƒc D„Ü  ã…Ü  % †¤ ä5‡p ÅÜ ‚ fÆÜ hÈø VÉø & Êc±Íc $ $ * É 8Íœ lϦ é ÐcsѦ ]Òc z7Óc ! Ôø )Õø ( DÖ$ 0ëÎ ˜Ï$ -Ðc£ÑcCÒcŸÓ $צœØcùÙcÚc16NúE¿‰Z#˜# , Nÿn÷#´ ËN˜:7¿6R N'.^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT cORUåV cLTW cGTX cLEY cGEZ cEQ[ cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•NVšz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3N^ÄrÞ _ CNhô2ñOµ MbNm$#FÝóY=Nr2® kUP·L¦¼ÿ }' kF0 kF1 kF2 kF3 kF4 kF5 kF6 kF7 kF8 kF9' ®8 = B G L Q V [ ™ ²¯ ;!·"?#Ž$†%Õ&-'÷(û)kNz\0ôÇ †%28™Å V ›c p4œÅ qÅ ž¦ % Ÿ¤ ¸2 ¦( ä5¡p0\P ¹òidºc Û3»cËU@¾: ­.À:  Ác( % ¤0 V ì8 cJ ‡ ¯#c!þ : hÔc! ; hÕc! < €Õc!í = `Õc! > |Óc!* ? HÕc"f@c ¤xc"!Ac  xc"rBc œxc"­Cc ˜xc!5 D pÕc!Ú E xÓc"n F¦ xc#0G Pvc!˜ H €Óc!£ I XÕc!® J tÕc"Kc ˆxc!Ä L xÕc!@ M Hvc#æNc Dvc#¿ Oc @vc!V S ÀÎc#g T¦ 8vc!a U PÕc!l V ˆÕc"B Wc „xc"] Xc €xc$Y Yc!w [ Õc!‚ [ pÔc! [ pÓc ¬¯ ‡Ç!¹ \  Óc#L]Ÿ €Ôc"2^ø xxc"g _c txc!Ï ` 0vc#Ð a¦ (vc!å b  vc%r^ ¦T&err^ c%æ0 ¦­'0 ¦(f2  )ª 3 ¦*)]F ¦(toF ¦(tryF ¦+²& ß'P:& ¦'m&  &len& %,Ách@ÐœÕ - Á¦.à Ä. Ä 6. Å «.JÆ @/cÇcœ/iÈc1. Éc0¹)IÐ)),Ð)11h@ob2Uv2T|00õ)IÖ)),Ö)1Ph@ob2U}2T|3­7i@! A4ÒU4Æ}4º 1Oi@~b2Tv3­hi@ …5Ò5Æ4ºë1wi@~b2Tv3­¸i@ É5Ò5Æ4ºR1Çi@~b2Tv3­øi@( 5Ò5Æ4º1j@~b2Tv3­ j@ Q5Ò5Æ4º1/j@~b2Tv66mk@`þ€4GO7yk@Šb66ók@Þ¯4Gs7ük@Šb664l@ÀäÞ4G—7=l@Šb66~l@ðë 4G»7‡l@Šb8gh@–b22Uv2T ­ôA8…h@–bQ2T ­ôA8 h@–bv2U|2T °ôA8Êh@~bŽ2Tv8Óh@¢b§2Uw8 i@–bÆ2T ­ôA80i@®bå2T ÍôA8ˆi@¢bý2U|8i@~b2Tv8¥i@¢b-2U|8Cj@¢bG2U‘¸8]j@~b_2Tv8gj@¢by2U‘¸8ƒj@ºb¨2U ÙôA2T12Q52Rv8šj@ÉbÍ2Uv2T ßôA8°j@Ébò2Uv2T éôA7¼j@Õb8Îj@Éb$2Uv2T ßôA8éj@ÉbI2Uv2T ñôA8ýj@Éb{2Uv2T éôA2Q ûôA8k@áb”2Uw8k@áb®2U‘¸8k@ábÆ2Uv83k@®bë2T ˆãA2Q|8Dk@O22U18fk@O2&2U12T XãA7mk@ìb8šk@®bR2T °ãA8«k@O2i2U18²k@áb2Us8Øk@®b¦2T ³ôA2X|8ék@O2½2U57ók@ìb8l@®bé2T °ãA8*l@O2 2U174l@ìb8Zl@®b, 2T °ãA8kl@O2C 2U18tl@áb\ 2Uw7~l@ìb8 l@®bŽ 2T ØãA2Q|8±l@O2¥ 2U18ºl@áb¾ 2Uw1Äl@áb2U‘¸,ò¦c0n@dœÓ"-m¦ ß-†¦c36ån@¶J!4GÜ7ìn@Šb665o@`©y!4G 7>o@Šb8Mn@÷bœ!2U|2Ts2Q28kn@c»!2T '2Q|8ƒn@ÕbÓ!2U}8£n@®bò!2T päA8´n@O2 "2U68Än@÷b,"2U|2Ts2Q27ån@ìb8 o@®bX"2T ;õA8o@O2o"2U475o@ìb8[o@®b›"2T ;õA8lo@O2²"2U41o@O22U42T @äA9é1cÐx@㜕(.K$3 $ /i4c€ /c5c) : 6c‘¸:U7c‘¼. 8cÑ .º9¦µ ;:c.†;c 66|@ B­#4G77|@Šb8 y@O2Ò#2Uv2T ºõA8*y@–bñ#2T B8Fy@Õ $2U|2T ç8~y@¢b'$2U|8£y@Õ E$2U|2T à8¸y@áb]$2U|8Ñy@c$2U|2T ÇóA2Q |Óc8æy@Õ ­$2U|2T à8z@®bÒ$2T ëõA2Q~8-z@O2é$2U68:z@Õ %2U|2T Ó8Vz@c3%2U|2T ÇóA2Q‘¼8uz@®bR%2T °åA8†z@O2i%2U68žz@Õ Š%2U|2T Ó}7²z@Ó/8Ëz@c¯%2Q|8öz@®bÎ%2T æA8{@O2å%2U68{@Õ &2U|2Ts8-{@c/&2U|2T ÇóA2Q‘¸8L{@®bN&2T `æA8]{@O2e&2U68p{@Õ ƒ&2U|2Ts7|@ìb8+|@®b¯&2T HåA8<|@O2Æ&2U48R|@O2ê&2U42T ÒõA8h|@O2'2U42T xåA8~|@O22'2U42T àåA8’|@O2V'2U52T ˆæA8­|@ºb'2U ÿõA2T12Q57¹|@c8ï|@¢b¤'2U|8}@*c¼'2U}8!}@*cÓ'2U:80}@O2÷'2U52T ÀæA8<}@9c(2U èæA8T}@c-(2T28^}@Õ K(2U|2Ts8~}@O2o(2U42T 0æA1®}@ºb2U ÿõA2T12Q5<Ð@x@œO)/arO)[/docø ¥/icÈ8Ux@Ecý(2Us2T17kx@Ó/8|x@ý/))2U (öA1Åx@Qc2U €õA2T32Q3øcmdø P:þø Xvc1x@j:2US2T02Q0<·Ó v@:œ:+=cmdÓø I/stÕÜ ¾/retÕÜ .îÖ¦*.5Ö¦s.’×ø ¼8ßv@Õb[*2U|7w@®b?-w@O2*2U18Cw@®bž*2T ØäA7Nw@Õb7Xw@Ó/8gw@]cÐ*2U}8rw@lcè*2T|7{w@{c8w@‡c+2U}2T17¨w@“c7Áw@Ÿc@Úw@{c<°É`v@4œ×+-=Éc /cmdËø F8wv@j:¥+2U óU $0.ÿ#2T02Q08†v@Ã-É+2U (öA2T07Žv@ý/<õ À0v@0œD,8>v@«c ,2U17Gv@·c7Nv@ÃcA`v@j:2U82T02Q0<¬Ðu@\œ¹,=cmd¬ø |/s®Ü µ/r¯ø Ø8v@«c¥,2U1A,v@O22U19甦Pu@xœ²--”¦û:ˆ–²- `vc/at—¦p/dot—¦¦8ju@Îc>-2Us2T.8‚u@Ýcd-2U `vc2Q ,8‘u@Îc‰-2U `vc2T@1ºu@Ýc2U `vc2Ts2Q , ¬Ã-B‡+%E¦ù-'¦'Äc)ˆƒŸ9 J$ r@fœ¹/=lJ¦Ü=sJ¦(newL$ .·M$ >:?N$ hxc.êOct/endOcÒC9r@ Ë.)IS)),S)1Dr@ob2Tv6Ó/hr@À\$/4ä/2DÀEE]8rr@ìc/2U<1qs@¾\2U88¬r@ý/lzï4‘`:Ï?|c‘l8`@BdO42T?81`@Mdl42T‘l2Q08X`@Xd…42U Ò8b`@cd¤42U áA8v`@cÁ42Uw2T27Š`@6d7£`@od1¯`@6d2U1 ¬ÿ4 ‡9¹%c°`@~œ¶5=a%¦=b%¦=min%c/len'c,8Ó`@Õbv52U‘X8æ`@{d•52U|2T‘X1a@{d2U|2Qs $ &FêúE8'ï úc' úµ)çýµ)Îþc)1 þc)¦(ic(arc)Œ  )d¦)(1¦)âcHˆ6)Ij)),j)*)4jE8)jcHÀ6)It)),t)*)4tE8)tcHø6)Iv)),v)*)4vE8)vcH07)Ix)),x)*)4xE8)xcHh7)Iz)),z)*)4zE8)zcH 7)I|)),|)*)4|E8)|cHØ7)I~)),~)*)4~E8)~cH8)IÆ)),Æ)*)4ÆE8)Æc*)IÈ)),È)*)4ÈE8)ÈcBn2c‘L/i2cé!./3¦n"/sp4Ü ô"8!d@®bP<2U|2T áóA2QóU2XóQ2Y}8Âd@®b{<2U|2T `ôA2Q}8e@®b¬<2U|2T zôA2Qv|2R}8+e@O2Ã<2U68Re@®bî<2U|2T PôA2Q}8re@®b=2U|2T IôA2Q}8’e@®bD=2U|2T BôA2Q}8²e@®bo=2U|2T 5ôA2Q}8Òe@®bš=2U|2T ,ôA2Q}8òe@®bÅ=2U|2T $ôA2Q}8f@®bð=2U|2T ôA2Q}8?f@®b>2U|2T ôA2R}8^f@®bF>2U|2T ôA2R}8zf@®bq>2U|2T ôA2Q}8’f@®bœ>2U|2T pôA2Q}8¼f@®bÕ>2U|2T ÐóA2QóU2RóT2X}8åf@®b?2U|2T øóA2Qs2R}8g@®b8?2U|2T ïóA2QóU2X}14g@®b2U|2T ôA2Q}I•gcP6@¤(œ'\JÎgcc#JçgµS$KlenocC%LÓ/_6@Pq@4ä/%DPEE]8m6@ìcñ?2U '1“M@¾\2U 'LÓ/v6@rb@4ä/Ì%DEE]8‡6@ìcK@2U '1¬M@¾\2U 'L¶5ë6@оN4Ï5&4Ã5@'DÐMÛ5x(Mç5l)Mó5å*Mÿ50+M 6y+M6Ù+M 6 -M,6Ÿ.M86Ì/MD6ï/Cz8@2AMU6Ñ0Ea6Nz8@Mn61Mz6ˆ2Có[@ wAMÝ7ë2Eé71\@ob2U ÍöA2TsC\@ ¼AM873E81'\@ob2U ØöA2Ts36¦]@èïA4Go37­]@Šb77@Õb8 7@Ó/B2U~3$#737@ý/8@7@’dDB2T &öA8V7@’dhB2U02T &öA8¦7@Ó/„B2U~3$#8!8@ÿ4®B2U )öA2Ts2Q28;8@ÿ4ÙB2U 2öA2Ts2Q þ8U8@ÿ4C2U 8öA2Ts2Q28r8@ÿ4-C2U OöA2Ts2Q289@ždGC2U‘ 8©B@Ó/cC2U~3$#8úB@ý/{C2Us8"C@ÿ4¥C2U VöA2Ts2Q28FC@Õb½C2U~8ÒC@ÿ4çC2U xöA2Ts2Q38ìC@ÿ4D2U |öA2Ts2Q48D@ÿ4;D2U ˆöA2Ts2Q28 D@ÿ4eD2U ŒöA2Ts2Q28=D@ÿ4D2U ˜öA2Ts2Q28WD@ÿ4¹D2U ¢öA2Ts2Q37{D@ý/7¦D@ý/8ÏD@{d E2U~2T löA2Qs‘˜s6,(8÷D@{dCE2U~2T röA2Qs‘˜s6,(7LH@ý/8uH@{dˆE2U~2T ĉB2Qs‘˜s6,(8ÀI@Ó/¤E2Uv3$#7J@ý/71J@ý/8–K@Ó/ÕE2U@8¦K@Ó/ìE2U@8:@ìcøN2U,1M@¾\2U(6Ó/W:@0ægO4ä/ü4D0EE]8o:@ìcQO2Ut1îL@¾\2Up3¹/2;@šO4Æ/6577;@{c7£9@Ád8²9@+dËO2U82T @g@8Á9@+dïO2U;2T @g@8Ð9@+dP2U22T @g@8ß9@+d7P2U12T @g@8î9@+d[P2U32T @g@8ý9@+dP2U62T @g@74:@Íd8›:@ÙdªP2U‘°2T07Ë:@äd8Õ:@ý/ÖP2U ÷A8æ:@ý/õP2U B7ò:@“c7;@ðd8&;@Qc8Q2U ÷A2T02Q38A;@ý/WQ2U ÷A7h;@üd8‰B@®b‰Q2T ïA2Qs1šB@O22U16u2ûH@pkXDpM‚2Y57FK@e8kK@9cðQ2U ÏûA8ƒK@cR2T28+L@;&R2U ÅûA8IL@;ER2U ìûA8cL@edR2U õûA8xL@9cƒR2U ðñA8L@cšR2T28ÈM@;¹R2U ÅûA8N@O2ÝR2U52T üA8N@O2S2U42T *üA8-N@O2%S2U12T `òA8>N@O2IS2U02T €òA7HN@D,7dN@e7€N@#e7œN@/e7¸N@;e7ÖN@Ge7ôN@Se7O@_e70O@ke7LO@we7hO@ƒe7„O@Že7 O@še7¾O@¦e7ÚO@²e7öO@¾e7P@Êe72P@cd7NP@Öe7jP@âe7†P@îe7¢P@úe7¾P@f7ÚP@f7öP@f7Q@*f7.Q@6f7JQ@Bf7fQ@Nf7‚Q@Zf7žQ@ff7ºQ@rf7ÖQ@~f7òQ@Šf7R@–f7*R@¢f8JR@®f4U2U07fR@ºf7‚R@Æf7žR@Òf7ºR@Þf7ÖR@êf7òR@öf7S@g7*S@g7FS@g7bS@&g7~S@2g7šS@Æ)7¶S@×+7ÒS@>g7îS@Jg7 T@Vg7&T@bg7DT@ng7`T@zg7qT@†g8’T@«cOV2U17›T@ß8¼T@«csV2U37ñT@’g7 U@žg7)U@ªg7GU@¶g7cU@Âg7tU@Îg7U@Úg7¬U@Íd7ÈU@æg7äU@òg7V@þg7V@“c7>V@ h7ZV@h7vV@"h8—V@«cMW2U:7³V@.h7ÏV@:h7ëV@Fh7W@Rh7#W@^h7?W@jh7[W@vh7wW@‚h7“W@h7¯W@™h7ËW@¥h7çW@±h7X@½h7X@Éh7;X@Ôh7WX@àh7sX@ìh7X@øh8J[@®bVX2T (òA1[[@O22U17ß6@T7ë6@Ó"8r9@i¤X2U Õc8ž9@O2ÈX2U62T €îA8GG@O2ìX2U52T –ûA7fG@Ãc8‚G@O2Y2U12T ®ûA7G@•(8žG@j:KY2U82T02Q08½G@®bjY2T  ñA8ÎG@O2Y2U58ØG@i Y2U pÔc7íG@ß8H@®bÌY2T PñA8.H@O2ãY2U273H@þ38³H@®bZ2T €ñA8ÄH@O2&Z2U17ÉH@þ38hI@ªd_Z2U  Óc2T €Ôc8wI@e~Z2U @ïA8I@eZ2U èïA8‹I@e¼Z2U  ðA8•I@eÛZ2U `ðA8ŸI@eúZ2U ¨ðA8©I@e[2U ððA8YJ@9c8[2U ¨òA8J@®bW[2T óA8¡J@O2n[2U58«J@i[2U pÓc8ëJ@®b¬[2T PóA8üJ@O2Ã[2U57K@þ38ÚL@O2ô[2U12T GüA8ÆZ@9c\2U ¨ñA1ÞZ@c2T2PO2€c@Cœ¾\4\264h2¥6C¸c@ ˜\4h2074\2i7AÃc@°02UóU2TóT?šc@°0°\2Q ÿ@³c@°0PÓ/Ðg@+œ!]4ä/¢7Eð/8ég@®b ]2T èâA2QóUAûg@O22U0PÓ/ o@7œ{]4ä/î7Mð/:88³o@ìcf]2Us1Ìo@¾\2UsPý/p@)œ)^40q8M0ù8C0p@ û]Q0N0p@ EŸ]A9p@%02U (öA2T08p@Õb^2UsA&p@%02UóUP¹/r@œc^4Æ/9Ar@{c2UóUPÃ-€s@Íœã_4Ô-U94à-Ê9Oì-  wc0ð'_5à-4Ô-):DðE^8½s@ÎcÞ^2Us2T@8ót@i _2U  wc2T bõA1Hu@i2U  wc8•s@ÎcE_2Us2T.8¬s@Ýcp_2U  wc2Ts2QÈ8òs@Ýc•_2U  wc2QÈ8Ft@iÁ_2U  wc2T  /B1˜t@i2U  wc2TsP­À}@5œ.`4ºu:4ÆÓ:4Ò;1ä}@~b2T|PT~@œ5b4ek;Mq<R{C8~@¹ía4eO<N8~@¹ER`E[`N8~@¹Mˆ®<M”÷<MŸŸ=8B~@iå`2U öA8M~@Õbý`2Uv8X~@Õba2U~7a~@Ó/8r~@Îc@a2Uv2T:8’~@Îc^a2Uv2T:8®~@Ýc‚a2Us2Tv2Q}8Ã~@*iša2Us8×~@9i¸a2Us2T~8ä~@–bÝa2Us2T B7ñ~@áb8~@–bb2U~2T B7"~@ábA2~@ý/2UóUP6@œob4Gû=A@Šb2UóUSæÜæT‘‘=Tuu˜TTTT„„Tz z lSƼÆT  dTññŠU` ` íUBB2TžžíT••nV•ž»•U  OS‘‡‘T jTNNNT  qS!!STÔÔãTÐИTá á nTÈÈ™WpoppopoTpp©Ubb$S¥ › ¥ S¹¯¹TÂÂÒS©Ÿ©TllvT¤¤éT­­êUbb fT((Ušš UÈȈU~~|T77ýTøøqUÜÜTL L ‡TWT¨U}TööTMM—TþþsU__ GT  xT€ € ¡T;;*Sª ªT””Ti0i0 TuuþTÌÌ÷TÃÃTrrT‹‹GTææFTøøU‡‡{T™ ™ TüüTT¤¤õT!!T]]ET¢¢AT # #ûT‘‘ùT:TÉÉ9T¯¯gTpp5Ta2a2eT| | cTSSbTJJ7T4T55<T((PTXXmTÈÈTÅÅ&TÌ+Ì+T²²TTø*ø*TooTTP:P:T¶¶T¤¤TBBWdotdotTóó>WdimdimlTXXT]]ŽTmmhT/T² ² ŒT  Tì ì TÚÚ‹T  ŠTV V 2T{{1TïïwT×5×5–T««tTŸ4Ÿ4~T§2§2ZT66[T’2’2ST 3 3_TTT]Tee\T::QTÑ2Ñ2aTv5v5pTT¹5¹5œTÏÏžU……ÂTÙÙ€TííT««TttJT÷@÷@IU  ÇT„„OTƒ3ƒ3XTA2A2YTR2R2jU‘‘ÀS5+5TRR4SñçñU««…yZšµ ¥À @¸5X intÝé=ØM40T¬ 92Эƒ;(„;[ 8 ‹; ;·9·—0ÎDØñK —ò4 ÷± ø± Vù± ú± Éû±( Üü±0 Íý±8 Ÿþ±@ ‚ ±H ±P ó ±X -ƒ` ¦‰h ,4p ÷ 4t |x F`€ èn‚ ÷ƒ iŸˆ …!‡ ü)¯˜ E *¯  +¯¨ ,¯° .B¸ ¼$/4À 1¥Ä b–휃 Dƒ æ ž‰ ¼8¢4RÎ ·Ÿ ’K ·µ ’A;µb<µÊ =µ¾Þ ¨‰1 ©‰Ú ª‰¿4 ä $ 4Ø: K™  m  ™ i !¤/—° ¨44 \²ÿ˜63<| b†Ñ g² ±Ú ’9Ê÷4Þ ;;!Êù)4à *;à  7G H 94 C :4"G U]cn4 ä~ ’@n( -~) .~˜ Ä 碧± p4ûmÖÜ{€šgž¯÷7Ëp :Ë- bË>8ËL9Ëm9Ëg¼p›? TO jÆ9Ȩ Ép úÊì õ;ËáÌ{¨ ³Ã¸î oÃï pÃW"¹Ê9±³G4æL4~P4 ¡g .Ö #w>tF X¥³ ϧu ɧu Pªu Jªu t «u n «u —­u °³ ± ¥ ´ – µ œ¶ A · ¸¸ ¹ ³º ­» ¦¼ ¾½4$ B¿'( ç Âu0 ›Ãu2 @Æ44 FÇ48 dÈ-@ ãпH ÓÒuTv2 Ë aÍu { Íu øÎu ûÎu ßÏu IÏu 1":ux-3y-‘z- ·b¢{W‹|4 }4! ~4Ú4€44g/ Û \•Ëù Ž@¼€'¸ —|p¤ñ V ¦4cnt§4 ã¨ü  D©ü  % ª¯ %2«¯  ¬ü ( 1­±0 ®ü 8 €¯ü @ ¸2°4Htag²4L B³4Plib´( X tµ±` P ¶9hÉ ^ü  (_ü ¥`ü Þaü ½b4c4Î>d4 e± ±Z fO äg¹Ëh4Þi=º i=ªi==j±9k±êl44mWn4^o4p4wr±ž s± ôvÿ àw4 41 Ëx& — y4B‰4´Š4d4Ï(” ~•-–-= —-–˜-{š4d ›±“œ4q œ4K ž4R ž46 ž4až4#ŸO b¢±7£4Wª±«±8¬± ­±Ù®±e/¯4j±³Á »4! Àü OÁ±Õ(Õ V ƒ4 D„à  ã…à  % †¯ ä5‡- Åà † fÆà hÈü VÉü & Ê4±Í4 ( ( . É 8Í  lϱ é Ð4sѱ ]Ò4 z7Ó4 ! Ôü )Õü ( DÖ( 0ëÎ ˜Ï( -Ð4£Ñ4CÒ4ŸÓ $×±œØ4ùÙ4Ú416gúI¿‰Z#˜# Ëgs:7¿6üg Ú ®µOæîÖ¤Ñ h © å – à ^‡ëù¼Jþà–¯@DY–/v !#"Ò#F$(%U&/'×(›) *P+b,-.ª/ fOR0Œ12´3f4Á56r748)9ò:;w<ù=;>?@ÆAûB CR g'³^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT cORUåV cLTW cGTX cLEY cGEZ cEQ[ cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•gVz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3g^IrÞ _ Cghy2ñOµ Mkgz£0ôÇ †%28™  V ›4 p4œ  q  ž± % Ÿ¯ ¸2 ±( ä5¡-0£P ¹9idº4 Û3»4U@¾ ­.À  Á4( % ¯0 V ÷8 4‘ ’ ÐxÆÆ ˆÈÆlenÉ4h DÊÖp ·Ö ’d‘¯4!.ü Àxc"/Ö Xyc"³0& PycÖ"ï14 Hyc#{ 2 ˜Õc$5ØP´@ˆœö%V Øü 4>&aÚ4m>&bÚ4£>&cÚ4Ù>'!Ûà "?(`´@FWÑ)U3(}´@FWè)U3*š´@RW$.Ä´@@œm+cÄ·E?'V Æ4§?,8´@^WN)T0)Q0-P´@^W)UU)T0)Q0$m±€³@œè%V ±ü ò?'!³à >@&is´-t@*ó@RW.Õ³@jW)U6)T úB$…ˆ ²@ÝœÈ'!Šà ¾@'2Šà á@'€Šà =A&r‹-sA/³@ 0I–B0,–B*'³@vW(°²@FW–)U:(æ²@jWº)U1)T ÀB*õ²@RW$JfP±@JœÂ%V fü +B&ah±dB&bh±æB&ci-C'!jà @C/²@k0IpB0,pB*²@vW/±@¦0IsB0,sB*•±@vW/@²@á0IvB0,vB*E²@vW/p²@0IyB0,yB*u²@vW/б@W0I|B0,|B*Õ±@vW1†0IB0,B*ý±@vW(_±@FW)U1(m±@FW´)U1*¶±@RW$CIà°@nœw+cI·cC'V K4îC, ±@^W)T0)Q0,,±@^W6)T0)Q0,>±@^WX)Ub)T0)Q0-N±@^W)U])T0)Q0$'¯@Nœ%V 'ü ‰D&a)-ÂD&b)-E&c)-UE'!*à E(ž¯@FWö)U3(³¯@FW )U3*ô¯@RW$ù  ¯@nœÐ+c ·°E'V  4;F,J¯@^Ws)T0)Q0,l¯@^W)T0)Q0,~¯@^W±)UZ)T0)Q0-ޝ@^W)U[)T0)Q0$]ç@®@Öœ‘+cmdçü ÖF'®=éà aG'V ê·½G'! ë‘XH,”®@jWR)U1)T ˜B,«®@jWv)U1)T äB*µ®@RW*Ñ®@…Wü $VÝ ®@œò%V Ý·$I2cmdßü P.4®@^W)Uo)T0)Q0$gÎЭ@Kœe%ä5α]I&cÐü ©I(ç­@^WP)Up)T0)Q0. ®@…W)Uv$¾p­@Xœ×%ä5¾-ßI&cÀü J(‰­@^WÃ)Up)T0)Q0.–­@‘W)U8$¢˜°¬@³œo+cmd˜ü gJ'Ä2šü ÜJ'! ›‘K(2­@W<)T<(L­@©W[)T ÎB-c­@jW)U1$›Ž€¬@.œã%Ä2ޱzK&cü ÙK(˜¬@^WÎ)Ul)T0)Qs.£¬@…W)Us$jЫ@¯œ !+cmdjü L(ê«@µW- )U2)T1(ù«@µWI )U1)T1(¬@µWe )U3)T1(¬@µW )U6)T1,*¬@µW )U?)T1(?¬@µW´ )U2(N¬@µWË )U1(]¬@µWâ )U3(l¬@µWù )U6-¬@µW)U?$`°«@œg!%î8`4qL2cmdbü P.Á«@^W)U?)T0)Q03lO±'"4/O±48O±5sQ±6º!0T475__cT46ò!0IVB0,VB704V'"0V470IVB0,VB704V'"0V4[3f±%4/±4·ü 5s±6€"0475__c46¸"0IB0,B704'"046ð"0I(B0,(B704('"0(46(#0I*B0,*B704*'"0*46`#0I,B0,,B704,'"0,46˜#0I.B0,.B704.'"0.46Ð#0I0B0,0B7040'"0046$0I2B0,2B7042'"0246@$0I4B0,4B7044'"0446x$0I6B0,6B7046'"0646°$0I<B0,<B704<'"0<46è$0I>B0,>B704>'"0>470I>B0,>B704>'"0>43S4;%443öÜ-ó'4/ܱ5sÞ±5nowß=6Ž%0â475__câ46Æ%0IäB0,äB704ä'"0ä46þ%0IæB0,æB704æ'"0æ466&0IèB0,èB704è'"0è46n&0IêB0,êB704ê'"0ê46¦&0IìB0,ìB704ì'"0ì46Þ&0IîB0,îB704î'"0î46'0IîB0,îB704î'"0î46N'0IðB0,ðB704ð'"0ð46†'0IòB0,òB704ò'"0ò46¾'0IôB0,ôB704ô'"0ô470IöB0,öB704ö'"0ö4$V ¹ ª@ œ<)+cmd¹ü ¼L'‡»±M'¼-ÈM'½4N(¸ª@FWh()U3(ͪ@FW()U3(Ûª@ÀWœ()Us)T08«@ËW(*«@FWÀ()U1(E«@©Wå()T PB)Qs,\«@jWü()U1,«@jW ))U1)T pB-©«@×W)U ‘Xö-÷4÷${\ §@~œ70+cmd\ü ¨N'/^± O&s^±-O&c^·ûO'‡_±JP'`-yQ'• aà ±Q'ºb4çQ/p§@=*'l4R6 *5__cl49BVp§@l:RVBR*‡§@ãW/§@ ‰*0InB',nB›R704n'"0n4/·§@Õ*0IsB',sBÓR704s'"0s4/¨@ !+0IuB',uBS704u'"0u46Y+0IwB0,wB704w'"0w46‘+0IwB0,wB704w'"0w46É+0IyB0,yB704y'"0y46,0IzB0,zB704z'"0z469,0IzB0,zB704z'"0z46q,0I{B0,{B704{'"0{46©,0I|B0,|B704|'"0|4/¨@ õ,0I~B',~BkS704~'"0~4/˜¨@ A-0IƒB',ƒB·S704ƒ'"0ƒ4/è@ -0I…B',…BïS704…'"0…4/ب@ ô-'†4ûO6Ä-5__c†49BVب@ †:RV'T*ݨ@ãW/ý¨@ @.0IŸB',ŸB¥T704Ÿ'"0Ÿ4/-©@ Œ.0I¡B',¡BÝT704¡'"0¡4/`©@ Ø.0I£B',£BU704£'"0£4(I§@FWï.)U3(^§@FW/)U1(â§@…W/)U|(.¨@îW6/)U|,R¨@ùWM/)Q28q¨@X(‚¨@FWq/)U18è@X8-©@ËW,[©@ Xª/)U ‘Hö-÷;÷(›©@©WÏ/)T »B)Qv8¸©@jW8Õ©@,X(÷©@©W0)T fB)Qd.ª@©W)T ØB)Q ‘Hö-÷4÷$tNà¦@:œ¬0%î8N·MU&cmdPü ¯U(§@^W—0)UO)T0)Q0.§@^W)UP;‹AÀ¦@œï0(Φ@8Xá0)U78Þ¦@GX;æ%P¦@fœk1'¿'-åU2tv*H‘`(^¦@FWB1)U3.¦¦@RX)U0)T0)Q0)R0)Xw3u±Â1‚5 Èxc'»ƒ±¨Y'f+ƒ±ÞY&pre„4ÁZ'Õ„42[&len„4¶[2i„4‘¼'˜„4`\' „4Ã\'Û„44]&neg…4¥]&ip†-þ^&fp†-€_'µ&†-`>|"‡± BŸ(ô@]Xi3)U Èxc(Ž@lXª3)Us)T úB)Q‘´)R‘¸)X‘³)Y‘¼(=Ž@lXä3)Us)T  B)Q‘¸)R‘³)X‘¼(`Ž@lX4)Us)T üB)Q‘¸)R‘³)X‘¼(ƒŽ@lXX4)Us)T ýB)Q‘¸)R‘³)X‘¼(ŸŽ@]Xw4)U B(ÍŽ@©WŸ4)Uv)T|)a‘˜ö-(ðŽ@|X·4)U|(j@ˆXÓ4)a‘˜ö-(Ê‘@“Xñ4)Uv)T|. ’@|X)U| ·5 ’?¿a-€@)œœ6+hexa±Œ`%_a4a&decc-œa>|"d±òãÁ'»e±b&if4kb&lenf4¿b/ ‚@Ý5'q4âb75__cq4(ª@|Xõ5)U~*Ð@ãW(&‚@]X!6)U žB(D‚@©WL6)T ¯B)Q})R~(U‚@jWc6)U1(…‚@©Wˆ6)T B)Q}.–‚@jW)U1?$>±0€@Eœ¶7+d>-c%_>4yc&len@4îc&decA-šd' A- e'(B±Že'ÞC4×e(M€@ˆXG7)aóõ-*£€@‘W(Ù€@ˆXu7)a ‘Xö-‘Hö-(@ˆX¨7)a‘Xö-‘Hö-‘Pö-ô-à?"*[@ˆX$ìŒ@œ•8+s±#f+px0Yf+py0áf+pb0ig+pm0ñg2x4‘@2y4‘D2b4‘H2m4‘L2c·‘¿.eŒ@lX)T æB)Q‘H)R‘¿)X‘L)Y‘@3\·±é8ˆ¹Æ àxc5lenº45p¼ 5c½4@µ¢± ‹@Ûœv9'·¤Öfh&old¤Ö¯h'!¥±Òh'‚¦4i&len¦4zi*6‹@‘W*Ù‹@³XA‚–œ94ˆ–±ä5ƒ-‘¸>„=‘¸'V …4…p'!…4As&len…4Áv'ê…4µw2i…4‘´&max…4x&str†±°x'®†±z1€Š;'„4#{6k;5__c„4D&V™@€„:6V|{1PÔ;'Ž4Ç{6µ;5__cŽ4DBVØ@PŽ:RV |Eg!‚”@=:„!k|:x!¡|FG!×|/”@Z<GŸ! }9BV”@T:RVC}*§”@ãW/¼”@#¢<H¿!GË!œ}I¼”@#GØ!Ô}Gä! ~/ó¡@ Æ<Hó!Gÿ!Œ~(ó”@ËXÞ<)U}*û”@…W.Á¡@jW)U1Eî9›@°´=:ÿ9°~F°G :ú~*(›@×X*9›@ãX(H›@µWe=)UF)T1(W›@µW=)UE)T1*\›@ïX(e›@ûX¥=)U0*£@YE•8|›@ðà>:¦80FðGÈ8fGÔ8ïGÞ8^€J²8 àxcKœ9›@ÈEv9è›@@Ü[>:ƒ9º€:9æ€.ù›@‘W)Ux(ž›@Y€>)Us)T B(×›@Y˜>)U}(Ñœ@+Y°>)U}*Øœ@é8.°¡@©W)T yB)QsE%$Ÿ@pd?:.% *8Ÿ@Y(£@ÀW+?)Us)T0(e¤@©WP?)T B)Qs.v¤@jW)U1E-"_Ÿ@°0C:J"R:>"ÁF°GV"0‚/pŸ@ê?Ge"–ƒ9BVpŸ@:RV¹ƒ*‡Ÿ@ãW/Ÿ@ @H…"G‘"„/¢@ 2@H½"GÉ"†„/$¢@ V@Hõ"G#æ„/9¢@ z@H-#G9#F…/N¢@ ž@He#Gq#¦…/c¢@ Â@H#G©#†/x¢@ æ@HÕ#Gá#f†/¢@ AH $G$Ɔ/¢¢@RAHE$GQ$‡I¢¢@G^$^‡Gj$§‡/¨¤@ vAH}$G‰$ ˆ/½¤@ šAHµ$GÁ$Dˆ/Τ@ ßAHé$Gõ$hˆ.Û¤@vW)U})T çB(îŸ@…WþA)U löA(Í¢@…WB)U ÷A(¤@…W4‘™Ni>4šNp?±ÇšNq?±I›Npp@¹¥›NdelA±œPBA±NœP9B4—œP(B4Q|‘à…@(¿ƒ@FW£T)U2(̃@FWºT)U1(àƒ@LZÖT)T3)Q0(U„@]XîT)Uv*Ö„@XZ*æ„@XZ(ö„@‘W%U)U‘¼”3$( …@…WDU)U (öA(<…@]XhU)Uv)T~8$8&(e…@]X€U)Uv(“…@dZ˜U)T~*å…@RW(:†@jWÉU)U1)T 8B(I†@FWàU)U1*…†@pZ(›†@©W V)T ÊB.¬†@jW)U1?RÞÝ4BVS__cÝ4Rç×4^VS__c×4Tk1ð‚@–œFW:|1 ž:ˆ1’ž:”1(ŸGŸ1ŸG«1ÓŸGµ11 /pƒ@ W:|1g :ˆ1Š :”1­ Ipƒ@ H”VHVH¦V.zƒ@‘W)U1(ƒ@|X,W)Uv.6ƒ@‘W)Us|#UpoppopoVá á nVxxâV1616ÜWæÜæVv v æV¿¿ßVÐИVz z lXbb fX..zV©©±V‘‘=XÁÁQXÜܤW¹¯¹VrräV²²V  xV;;*W“‰“XòXnnjW¥ › ¥ Y6?À6VññŠXµµ¸X}Zž0123456789abcdefVÑÑàV vVRR4V__ÌV¤¤éV{{wVKKMV­­êV..hV„„VmmnX‘‘ÀX‡‡¤VÉÉ%VÉÉ$XÜÜV€€Q[loglogmX\\8 L9 m9 `¼5 ›? TO jÆþ Èm É5 úʱ  õ;˦ Ì@ m x ˆ } î oˆ ï pˆ W"~ Ê9±³G4æL4~P4 ¡` Ý ó Ö è w>t ! X¥x ϧn ɧn Pªn Jªn t «n n «n —­n °x  ±Ý  ¥ ´à  – µà  œ¶à  A ·à  ¸¸à  ¹à  ³ºà  ­»à  ¦¼à ¾½4$ B¿ì ( ç Ân0 ›Ãn2 @Æ44 FÇ48 dÈò @ ãЄ H ÓÒnTvÝ !2 Ëà aÍn { Ín øÎn ûÎn ßÏn IÏn 1ç ÿ uxò 3yò ‘zò ·'¢{‹|4 }4! ~4Ú4€44 `/Ø"Û "\""•"Ë"ù "Ž@"¼€'¸ —!|p¤¶ V ¦4cnt§4 ã¨Á D©Á % ª¯ %2«¯  ¬Á( 1­±0 ®Á8 €¯Á@ ¸2°4Htag²4L B³4Plib´íX tµ±` P ¶ahÉ ^ÁØ(_Á¥`ÁÞaÁ½b4c4Î>d4 e± ±fäg~ Ëh4ÞiGº iGªiG=j±9k±êl44mn4^o4p4wr±ž s± ÏÏôvÄàw4 4öËxë— y4B‰4´Š4d4Ï(”Ï~•-–-= —-–˜-{š4d ›±“œ4q œ4K ž4R ž46 ž4až4#Ÿb¢±7£4Wª±«±8¬± ­±Ù®±e/¯4j±x Á »4! ÀÁOÁ±!Õ(š V ƒ4 D„¥ ã…¥ % †¯ ä5‡- Å¥KfÆ¥hÈÁVÉÁ& Ê4±Í4 ííó!É 8Íelϱ é Ð4sѱ ]Ò4 z7Ó4 ! ÔÁ )ÕÁ( DÖí0ëÎâ˜Ïí-Ð4£Ñ4CÒ4ŸÓâ$×±œØ4ùÙ4Ú4#16`ú¿‰Z#˜# $Ë`8:7¿6$R `'Î^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT%cORUåV%cLTW%cGTX%cLEY%cGEZ%cEQ[%cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•$`V:z½p ¿ÿf $ã Á ¥ Q ½ / ˆ!P ¹aidº4 Û3»4:¯14&ýI4 ÀÇc'ÕJ  Õc'öK  Öc(L4 Œuc&`$M4 ˆuc& NÏ ¸Çc&ÈOÏ °Çc ·)’'&Œ"Pý   c'Q hyc&^R±  c(~TÏ `yc*Ï 9±ÐØ@çœÎ+col94U,r1;K pyc,r2;K lyc,pr<± €uc*Éà±ÀÙ@eœQ-xfà4Р-yfà4¡-xtà4Q¡-ytà4‰¡.xâ4Ò¡.yâ4¢/cä4.ctä4£¢/ccä4/cfæ4/cbæ40Ë#ç4Ù¢0Ð#ç4þ¢.resè±6£1'!鵑 2Ú@|Hã3U |~3#2$27Ú@ˆH3Us3T ÈB3Q|3R~2ŒÚ@”H,3Us2ÕÚ@£HJ3T3Q}4êÚ@¯H4Û@»H4;Û@ÆH2LÛ@^‰3Uu2XÛ@^¡3Uu2oÛ@ˆHÍ3U‘ 3T ó B3Q~2€Û@ÒHì3Us3T‘ 2³Û@£H3T‘œ”3Q‘˜”2»Û@ÝH(3Us5ìÛ@ˆH3U‘ 3T ý B3Q~6”y0Ö@œ".ch{±’£0P:{·Û£1ž"{K‘ 1ö{K‘°,n|4‘´,sx|4‘¸,sy|4‘¼.x|4¤.y|4¤.f|4Ȥ.b|4:¥.tox}4‡¥.toy}4"¦7Ë#~47Ð#~42HÖ@éHc3U32]Ö@éHz3U32qÖ@éH‘3U12“Ö@õHË3Us3T ŽB3Q‘¸3R‘¼3X‘´4×@ÆH27×@£Hö3T~3Q}2L×@I3Tv8$8&4Ê×@ÆH2Ø×@I83T02ê×@£HV3T~3Q}4ö×@I2Ø@I‡3Tw”3$‘˜”"8$26Ø@)I«3U‘ 3Ts3Q32NØ@)IÏ3U‘°3Ts3Q32}Ø@{è3U‘ 2”Ø@{3U‘°5¶Ø@8I3U13T Ý B*h94ÐÕ@WœR+oc94U8Æ!ã4{9ycã4:ž"ã48Q$¿4?#:¿±/cÁ±;Â<Ä4=/__cÄ4;ú4‘#124 xuc/i‘4/j‘4/f’n/b’n6Ì8@Ñ@Kœ¬&-cmd8Á†¦0ž":±²§0ö:±^¨.p:±Ð¨.fc;4Ê©.bc;4rª?€Ò@?$0e4»ª=/__ce4?¸Ñ@s$0j4ëª=/__cj4?ðÑ@§$0n4«=/__cn44ƒÑ@ÆH2ŸÑ@éHË$3U14±Ñ@DI2×Ñ@éHï$3U14éÑ@DI2 Ò@{%3U|2Ò@{,%3Uv@9Ò@IANÒ@IP%3T0A_Ò@8It%3U13T  B4eÒ@éH4wÒ@DI2Ò@{¦%3Uv4µÒ@éHAáÒ@IÌ%3T@>$2þÒ@ˆHñ%3T Ð B3Q|2Ó@8I&3U12Ó@{ &3Uv20Ó@ˆHE&3T ð B3Qv2AÓ@8I\&3U12ZÓ@éHs&3U12uÓ@ˆH˜&3T Ð B3Qv5†Ó@8I3U16:$.€Î@œ'Bî8.4K«,c0ÁP5‘Î@OI3U~3T03Q0C7 '9s ±60 Î@-œ’'-str±–«.cmdÁâ«27Î@OI}'3Un3T03Q05BÎ@[I3Uv6u÷ÀÍ@Vœþ'D'÷Í@ÀúE' 9öAŸ4üÍ@±+FÎ@Ø@3U 9öA>Tç(9chç4G—Å44(/chÇ4>¨"’a(/nl•±/x–4/y–46 #EÌ@¹œY*-cmdEÁ¬,dG-‘H1¥;Hý €yc0,!I4 ¬0#J4'­.sK¥p­<žL4H‚”Ì@I((Ì@`b:)J`K((4-Ì@±+4õÌ@]AI(xÌ@Ux)JK((4}Ì@]A4Ì@±+L(WÍ@zÆ)MWÍ@K((4\Í@±+4iÍ@]A4PÌ@gI2cÌ@[Iò)3U €yc4¡Ì@gI2ÑÌ@õH1*3U €yc3T 8B3Q‘H4GÍ@þ'4†Í@þ'4žÍ@þ'6#:ÐË@(œÄ*BV :·Ì­B#:4®,cmd<ÁP5ëË@OI3Uk3T03Q08.(4î*:(4:(46øË@Äœ±+-cmdÁP®.s 4‰®.c 4Ò®0! ¥¯2Ë@éH_+3U32&Ë@Ä*|+3Us3T04/Ë@gI4UË@gI4xË@sI@šË@I*9 î4 ¼@yœ,08"ð4w¯0!ð4ɯ4x¼@ˆH5‰¼@8I3U1C~ÑF,:Ñ4<8"Ó44.ret>4{Â<¦?4Ocnt@4NÀK8<Û#€4<à#€44ç¶@J2ÿ¶@Jv83U‘À}3T04·@J4·@*J4(·@I2ò·@J»83U‘À}3T04M¸@6J2θ@BJò83Uw”3Tv3Q03R02ï¸@MJ 93U‘ }2¹@YJ&93U‘ }2¹@YJ@93U‘ }45¹@eJ4:¹@qJ4F¹@I2P¹@[I93U‘ }2¹@8I¥93U13T  B2§¹@8IÉ93U13T  B5±¹@[I3U (öA ·õ9 ’cP•!QÃóðÓ@àœ§<Rõ9(Ô@ úŒ<IE#-Ô@@ n;J@ Sh#×ÂSr#5ÃK|#K†#TR# xuc4ÿÔ@ÆH4 Õ@}J2Õ@‰J²:3U ÿ3T ÿ2NÕ@RÐ:3Uu3Tt2]Õ@Rî:3Uu3Tt2kÕ@•J ;3Uv ÿÿ2Õ@R(;3U}3Tt2¯Õ@•JF;3U}?3Qs5ËÕ@¡J3U33T è3Q è3R04-Ô@­J2OÔ@¹J’;3T02`Ô@ÅJ©;3T12qÔ@ÑJÀ;3T12‚Ô@ÝJ×;3T12Ô@éJî;3T02šÔ@õJ<3U:2¡Ô@K<3U02¯Ô@ K3<3T02¾Ô@KO<3UF3T12ÍÔ@Kk<3UE3T14ÒÔ@$K5ÛÔ@0K3U04Ô@Z'ÆÇ4sÀ@±+5ƒÀ@Ø@3UvY' Á@Ÿ‚>Z'éÇ4Á@±+Y'’Á@ ¯´>Z' È4—Á@±+Y'·Á@Âú>Z'/È4¼Á@±+5ÈÁ@Ø@3Us4Þ¾@±+2 ¿@éH?3U12¿@éH5?3U12$¿@éHL?3U34S¿@HK2u¿@ˆHx?3T B2†¿@8I?3U12¬¿@éH¦?3U12¹¿@éH½?3U32ê¿@éHÔ?3U32VÀ@ˆHó?3T - B2jÀ@éH @3U12ÝÀ@£H'@3Tv3Q04éÀ@I2‹Á@ˆHS@3T 3 B5äÁ@TK3T1Væ!i µ@4œØ@[V i·RÈUcmdkÁ‹È2¹µ@OIÄ@3Uj3T03Q05Ƶ@|H3U4\'à´@²œ]AZ'ÁÈ4µ@`K4(µ@oK4Lµ@`K4Xµ@oK2„µ@zKOA3TóU3Q ÿ4µ@I\( ¼@ÚœóBS((_ÉI4($½@ðÎ…BJðSA(Ê]L(TV(S4K½@±+2‡½@†KçA3U   c3T '2¾@KþA3U12,¾@’K$B3T   c3Q '23¾@K;B3U02?¾@žK_B3U   c3T02i¾@TKvB3T14u¾@I4ļ@»H2ܼ@øI·B3U ) B3Ts4õ¼@ªK4¤½@»H5¼½@øI3U ) B3Ts\þ'€¾@DœYCZ (*Ê?¨¾@6CZ (²Ê4ˆ¾@±+F¤¾@I3UóU\Ä*ðÁ@sœúCZÕ*ÕÊZá*]Ë?>Â@ÁCZÕ*ÏËZá*õË5OÂ@8I3U12!Â@ˆHìC3T è B3QóU3R<4>Â@ˆH\,`É@žœ…DZ!,ÌS-,8ÍS9,¶Î?ÈÉ@kDZ!,”ÏMÈÉ@KDK'D5‚É@Ä*3Us3T0\'PÎ@"œÌDZ'ÍÏ4YÎ@±+FfÎ@Ø@3UóU\{ Î@Ÿœ,HZŒUÐS˜‹Ð?ÀÎ@ES§üÐ?ÕÎ@9EKÇ^ÓN HZŒ,ÑJ KðDNP …EKÿS ‹ÑJP S ÃÑS$ "Ò?Ï@ ©EK7 SC ²ÒN€ ÙEKo S{ êÒJ€ Sˆ 6ÓS” Ó?Ï@ ýEK!S#!üÓ?XÏ@EFK§ S³ HÔMXÏ@SÀ €ÔSÌ ¶Ô?mÏ@FKß Së 3ÕMmÏ@Sø WÕS!zÕN° ½FKO!S[!ÂÕJ° Sh!úÕSt!0ÖNà ÕFK‡!S“!¨Ö?ÄÏ@GK¿!SË!àÖMÄÏ@SØ!×Sä!N×N 5GK÷!S"Ë×N` MGKg"Ss"Ø?+Ð@•GKŸ"S«";ØM+Ð@S¸"_ØSÄ"‚ØN° ­GK×"Sã"ÿØNà ÝGK #S##ÙJà S$#GÙS0#jÙM÷Ð@K/"^;"M÷Ð@TH"VST"çÙ4¶Î@DI\RÓ@Wœ|HEcUZndÚMÃÓ@Zn›ÚZc¾Ú_¿¿ß_z z l`ñçñ_þ"þ"F_Ø Ø <a  O_. . |a««…_ññŠbpoppopoc6?À6_—"—"_ŸŸ&_/"/"K`¹¯¹_1616ÜaÁÁQ_xxâ_v v æ_á á n_¿¿­_ê ê ¾_ÑÑà_žžía` ` í_mmn`æÜæ_TT_..haBB2_rrá`¥ › ¥ _--Za__ G_K"K"Õ_-#-#Y_²!²!A ann j_!!#_!!"_M"M"n_+#+#Ó_í"í" _nnˆ_N N ˆ_]]‡_X X †_C!C!O_UUó_—_««•_¦ ¦ Ù_>">"_E E c_°#°#abb f_{{w_KKM_ÐÐ/_––?_ñ ñ N`©Ÿ©aò_Æ Æ "_••n_AA9_#"#"‰_„„óØµ j,À0Ü@~E%4é=Ø-0?¬ 92ÐintÝ­ƒn(„n[ 8 ‹n¥9¥—0¼DØñ9 —òg ÷Ÿ øŸ VùŸ úŸ ÉûŸ( ÜüŸ0 ÍýŸ8 ŸþŸ@ ‚ ŸH ŸP ó ŸX -q` ¦wh ,gp ÷ gt ux FK€ èY‚ ÷}ƒ iˆ …!€ ü)˜ E *  +¨ ,° .4¸ ¼$/gÀ 1“Ä b–íœq Dq æ žw ¼8¢g@¼ ¥ ‹9 ¥£ ‹A;£b<£Ê =£¬Ì ¨w1 ©wÚ ªw¿g Ò$gØ: K’/ ¥M ‹—° ¨gg \’ÿ˜63<| bfÑ g’ Ÿº ‹9ª÷gÞ n;!ªù)gà *nà  7' H 9g C :g' ÒB ‹@2( -B) .BXID B-x- J-÷ L-”. M-A+ `_Ö' a_ž( d_ý$ f_q$ g_Ì) h_ž/ j_˜H$ PŸÁ# ”' < •g D –' -$ —< Š šßêg<'-Â# ›ê€ µj ó ¶g 5( ·- W ¸-  ¹- + ºg \* »g$ ÿ0 ¼g( W0 ¾g, x' ¿g0 ß, Ág4 ¹$ Âg8 K, ì@ *- ĬH ß0 ÅgP Õ) ÆgT Å' Ç¡X & Èg` ß' Égd ±+ Êgh ö+ Ëgl @' ̬p «1 Ígx š0 Î¥| 1 ÏMGC Þ…£"8 ãó  äó î åu ¸ ég ` ë- < ë- ¨! ë-( 4# ìg0 ñ íg4BG îŠ ó1 Ï8 ôg ƒ" õg „" ö1ùÕ! ÷€ P  ó j U * ‹ + g 0 g Y$ g Þ" g$ Ê g( Ë [0 ± g8 ¾ 1@ A# uH ù" ÂP " -X $ -` Ò gh ¥ gl Å" gp Þ gt ¨ nx P7æ" B «  ó Ï8 g g g Û g! mp "„ Æ& #¬ W- $- 41 %¬ ˆ1 &- ‘$ 'g ') (g$ Å" )g( M* *-0 ð& +-8 30 ,g@ * -nH û. .nP ¿+ /gX M/ 0Â` ø0 1·h?% 2·ˆ 4Á x 5gy 5g + 6g 0 6g + 7g Ï8 8g à 91 * :‹ ¸ >g( ‘$ @g, ') Ag0 Å" Bg4 M* C-8 ð& D-@ 30 EgH M/ FÂP ( GgX ´. Hg\ h- In` Š* Jnh û. Knp ¿+ Lgx ‰, MÁ €a‚/ N «+0 x/ & yZ u& „o  ü/ …Ž  „- †²  l1 ‡Û H. ˆõ (£1ˆ h + ig 0 ig 3) jg – kg ’ lŸ  mg m" ng  og »! pg$ Ï8 qg( ê- rg, g sg0 ` t-8 < u-@ ¨! v-H þ% wßPf ‰Ó XT T U1RggŸRRgg/  go T ` -Ž T ggu g² T gg-” T Û T ggRR¸ gõ T ná ¤1 Š/  š_ L. ›-red œK é+ œK ë0 œK ˜ ¥pad ž¥e1 Ÿ  ª‹ x «`y «`£( ¬k Ä çP( íî  òó å# óófd ôg î# õg ög i ÷g # øŸ ÷# ù_( $ ú_0 $ û_8 $ üg@ \! ýH  gP m" gT »! gX  g\ Ì! g` h $ gp ±" gt $$ óx L# ó€ &# gˆ [" - Ì, -˜ V# ß  `# ߨ j# ß° t# ߸ " RÀdb È ~# .Ð ‚ ŸØ 4! gà R" gä S" Á è k! -ð ˆ# -øy! g g’# ßœ# ߦ# gJ Ÿ …!î_Uù«×g.Uó! &@£ ` - V .g E- /- Í- 0g j 1 Š$ 2‹ * 3‹( ‡$ 4‹0 ‘ 5€8x 6g@y 6gD * 7gH í) 7gL W 8RP }! 9RT „, :gX— ~+ ;Fþ- <` ?ö V @g E- A- Í- Bg j C Š$ D‹ * E‹( ‡$ F‹0 ‘ G€8x Hg@y HgD * IgH í) IgL W JRP 3+ KRT „, LgX¯0 M-` QË V Rg E- S- Í- Tg j U Š$ V‹ * W‹( ‡$ X‹0 ‘ Y€8x Zg@y ZgD * [gH í) [gL W \RP + ]¥T „, ^gXŠ( _h bº V cg E- d- Í- eg j f Š$ g‹ * h‹( ‡$ i‹0 ‘ j€8x kg@y kgD * lgH í) lgL ½$ mgP $ ngT „, sgX y% tg\ W uR`>0 v×0 z+ V {g E- |- Í- }g j ~ Š$ ‹ ½$ €g( $ ‚g,P' ˆÆH  V Žg E- - Í- g j ‘ Š$ ’‹ q) “=(7& ”7@ –# V —g E- ˜- Í- ™g j š Š$ ›‹ x œg(y œg, + g0 0 g4 º žg8ª( Ÿ›H ¡Ñ V ¢g E- £- Í- ¤g j ¥ ?. ¦– x §g(y §g, + ¨g0 0 ¨g4 º ©g8 * ªg< v1 «g@ð, ¬/0 ®B V ¯g E- °- Í- ±g j ² ?. ³– * ´g( v1 µg,0 ¶Ý0 ¸¦ V ¹g E- º- Í- »g j ¼ Š$ ½‹ W ¾g(S& ¿NH ÁT V Âg E- Ã- Í- Äg j Å e Æ‹ Š$ Ç‹(x Èg0y Èg4 + Ég8 0 Ég< + Êg@ ¿+ ËgD2- ̲0 θ V Ïg E- Ð- Í- Ñg j Ò Ò- Ó‹ Š$ Ô‹(T% Õ`8 ×) V Øg E- Ù- Í- Úg j Û Ò- Ü‹ Š$ Ý‹( Â$ Þg0¤$ ßÄ8 áš V âg E- ã- Í- äg j å Ò- æ‹ Š$ ç‹( ¿+ èg0¡+ é50 ëþ V ìg E- í- Í- îg j ï e ð‹ Š$ ñ‹(' ò¦H ô’ V õg E- ö- Í- ÷g j ø Ò- ù‹ Š$ ú‹( e û‹0x üg8y üg< ¿+ ýg@’' þ X M V g E- - Í- g j  Ò- ‹ Š$ ‹(x g0y g4 + g8 0 g< + g@ J' ‹H ¿+ gPt, ž8 Ç V g E- - Í- g j  Ò- ‹ Š$ ‹(x g0y g4•1 Y0 8 V g E- - Í- g j  Š$ ‹ + g( 0 g,B1 Ó` ! V "g E- #- Í- $g j % e &‹ Š$ '‹(x (g0y (g4 + )g8 0 )g< + *g@ J' +‹H $ ,gP k+ --X;) .D8 0q V 1g E- 2- Í- 3g j 4 Ò- 5‹ Š$ 6‹( ë 7g0o. 8 8 :â V ;g E- <- Í- =g j > e ?‹ Š$ @‹( ë Ag06* B}@ D` V Eg E- F- Í- Gg j H Š$ I‹ »% Jj( ‘ K€0 W Lg8x$ Mî8 OÑ V Pg E- Q- Í- Rg j S Š$ T‹ l( Uj( ‘ V€0ô) WlP Yi V Zg E- [- Í- \g j ] \) ^‹ Ø- _‹( l( `j0 ( aj8 Ë/ bj@ ‘ c€H. dÝH fô V gg E- h- Í- ig j j Ø- k‹ l( lj( ( mj0 Ë/ nj8 ‘ o€@h' pu8 rr V sg E- t- Í- ug j v Š$ w‹ M/ xÂ(new |g0 W ~g4,  ( ‰¦!b Š“!s ‹¦!l Œ¶ `¶ ‹ nÆ ‹` 8 V ‚g E- ƒ- Í- „g j … Š$ †‹ ¥/ ‡j( – ˆg0 ’ ~8n/ ŽÆ8 ¶ V ‘g E- ’- Í- “g j ” Š$ •‹ Ì, –g( ²/ ˜g, º ™g0 % šD ( œ'! V g j ž g* Ÿ_ E-  - % ¡? ©, ¢?! v1 £?"Y( ¤ ( ¦~! V §g E- ¨- Í- ©g j ª Š$ «‹ Ú. ¬3!( ´â! V ¶g E- ·- Í- ¸g j ¹ À/ ºg ' »g$¡0 ¼Š!8 ¾`" V ¿g E- À- Í- Ág j  À/ Ãg ' Äg$ w+ ÅR( ’ Æ0ê% Çî!",,À Í$#V Îg#ñ. Ï~!#, Ð#2+ Ñö#& ÒË#Š. Óº#x% Ô+#é* Õ##í( ÖÑ#% ×B#$& ئ#P, ÙT#r* Ú¸#-1 Û)#ÿ$ Üš#¶, Ýþ#‡0 Þ’#4, ßM#º- àÇ#- á8#Â, â#»& ãq#æ$ äâ#Ê/ å`#’) æÑ#!0 çi#k( èô#L/ ér#·( ê8 #f. ë¶ #ï+ ì'!#d& í#±- îâ!#v+ ï`"!pad ð$ n.$ ‹-, ñl" ù’$ ‘0 ú` Ô* û` + ü` .( ý` ð0 þ` +* ÿK ˆ+ :$ Â$  j 9' -Ÿ, ž$` ¨%  ófid ¡ ´' R ³) R Û( R •, R & R ý( g$ &% R( ) g, ) ¨%0 ©. ’$8 * ’$D š* ®%P .( gX ð0 g\Â$’$–- Î$´%Ÿ pgXõ%$xYg$yZgPQº& ˜Rn$xSg$ySg +Tg 0Tg Ø&Ug !,Ug Ã-Vg -Vg$ (Wg( ñ/Wg, F([Ø%0 ¢)[Ø%8 Ô,\g@ 0\gD ')]gH%^õ%@Q' à 1 î!u ‰,"g Ï8#g ¸'g ` )- <*-( ¨!+-0 ,,g8 4#-g<3%.Å&ûmh'n'{€šRž÷7]'p :]'- b]'>8]'L9]'m9]'%R¼(›? TO jÆË'È:( É( úÊ~' õ;Ës'Ì (:(Í E([(P(î o[(ï p[(W"Æ%Ê9Ÿ³GgæLg~Pg ¡R °(Æ(Ö »(w>tÞ( X¥K* ϧ` ɧ` Pª` Jª` t «` n «` —­` °K* ±°( ¥ ´³* – µ³* œ¶³* A ·³* ¸¸³* ¹³* ³º³* ­»³* ¦¼³* ¾½g$ B¿¿*( ç Â`0 ›Ã`2 @Æg4 FÇg8 dÈÅ*@ ãÐW*H ÓÒ`Tv°(2 ˳* aÍ` { Í` øÎ` ûÎ` ßÏ` IÏ` 1º*Ò(uxÅ*3yÅ*‘zÅ* ¥ú*¢{ï*‹|g }g! ~gÚg€gg%R/«+&Û &\&&•&Ë&ù &Ž@&¼€'¸ —|p¤‰, V ¦gcnt§g 㨔, D©”, % ª %2«  ¬”,( 1­Ÿ0 ®”,8 €¯”,@ ¸2°gHtag²gL B³gPlib´À/X tµŸ` P ¶<6hÉ ^”,«+(_”,¥`”,Þa”,½bgcgÎ>dg eŸ Ÿò,fç,ägÆ%ËhgÞi+º i+ªi+=jŸ9kŸêlg4mï*ng^ogpgwrŸž sŸ ¢-¢-±´v—-àwg gÉ-Ëx¾-— ygB‰g´ŠgdgÏ(”¢-~•T–T= —T–˜T{šgd ›Ÿ“œgq œgK žgR žg6 žgažg#Ÿç,b¢Ÿ7£gWªŸ«Ÿ8¬Ÿ ­ŸÙ®Ÿe/¯gj±Á »g! À”,OÁŸÕ(m/ V ƒg D„x/ ã…x/ % † ä5‡T Åx//fÆx/hÈ”,VÉ”,& Êg±Íg À/À/Æ/É 8Í80lÏŸ é ÐgsÑŸ ]Òg z7Óg ! Ô”, )Õ”,( DÖÀ/0ëε/˜ÏÀ/-Ðg£ÑgCÒgŸÓµ/$ןœØgùÙgÚg'16Rúá0¿‰Z#˜# (â&R"1,/Ž-š+(R R'›4^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT)cORUåV)cLTW)cGTX)cLEY)cGEZ)cEQ[)cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•(RV5z½p ¿ÿf $ã Á ¥ Q ½ / ˆ(=Rr6®)kUP·L¦¼ÿ }' )kF0 )kF1 )kF2 )kF3 )kF4)kF5)kF6)kF7)kF8)kF9' ®8 = B G L Q V [ ™ ²¯ ;!·"?#Ž$†%Õ&-'÷(û)P ¹<6idºg Û3»g6*Ò%6Ÿ Ìc*É(7g Ìc+õ-8 (Èc+.C  Èc*@DT øËc*q0Eg ˜uc+ç.G Èc*0&IÀ% ðËc+7.O Èc+B.P ÈÖc+M.Q ÐÖc+X.Q lÖc*n%Rg èËc*s%Rg äËc+c.U Èc+n.U Èc+y.U  Èc+„.U Èc+.V ×c+š._ ØÖc+¥.` hÖc*l&cg àËc+°.d Èc+».e øÇc+Æ.f ðÇc+Ñ.g èÇc+Ü.h àÇc*M0j- ØËc*”/j- ÐËc+ò.k ÀÖc**l‹ ÈËc*Š$m‹ ÀËc,gcnu ¸Ëc,rgcou °Ëc*V/pº& `Ëc-â%…¬ `Öc+ý.† ”uc-M/‡Â àÖc-"1ˆQ' €Öc*^,‰- HËc*{0Š- @Ëc*á)‹- 8Ëc*R)Œ- 0Ëc*¿(- (Ëc*v(Ž-  Ëc.!˜ €A.œB:/â-˜ ŸáÚ0£*› Ÿ¸Û1keyœ gÍá2•Aª|2µA¶|3óAÁ|:4UóU5!AÌ|4UóU4T w!B.!Ð ÀA¸œP=/º#Ð ŸOâ6Ò-Ó .$ @Èc7symÔ Í 0Èc0é,Õ J(Áâ6ò'Ö g‘T1yk× gã1len× gVã7x× g‘X7y× g‘\8áAØ| ;4Q=8Aä|/;4Q=4R @Èc8'Að|l;4U @Èc4Ts4Qd4R 0Èc4X08IAØ|ƒ;4Q08{Að|À;4U @Èc4Ts4Qd4R 0Èc4X08¨Aü|Ý;4Q14R‘T2ºA}8ôAÁ|<4Us8"A}N<4Us4T Èc4Q Èc4R  Èc4X Èc8MAü|k<4Q14R‘T8bA}ƒ<4Uv8›A}›<4Uv2¥A¶|8ËAÌ|Í<4Us4T w!B8óAAYë<4U‘X4T‘\8AÌ|=4Us4T d!B8KAAY.=4U‘X4T‘\9sAÌ|4Us4T Q!B:¯ .ø*¸A¡ œöJ;cmd¸”,Œã<ô=1fdØgëã2YA }8cA,}Ë=4U `B2rA8}9†AD}4T OB2#AP=87A,} >4U €!B2¤AP}2«A[}8ÈAÌ|Y>4T ˆB8ÙAg}p>4U18õAs}>4T OB8A}®>4T B84A}Í>4T B8wA}ì>4T (B8ŠA} ?4T DB8A}*?4T bB8°A}I?4T xB8ÃA}h?4T ŒB8ÞA‹}‘?4U B4T14Q68ùA‹}º?4U ¤B4T14Q@8A‹}ã?4U µB4T14Q@8/A‹} @4U ÆB4T14Q@8JA‹}5@4U ×B4T14Q@8eA‹}^@4U èB4T14Q@8€A‹}‡@4U ùB4T14Q=8›A‹}°@4U B4T14Q=8¶A‹}Ù@4U B4T14Q=8ÑA‹}A4U #B4T14Q:8ìA‹}+A4U .B4T14Q@8A‹}TA4U ?B4T14QB8"A‹}}A4U RB4T14Q@8=A‹}¦A4U cB4T14QA8XA‹}ÏA4U uB4T14Q@8sA‹}ùA4U ¸B4T14QU8¡A}B4T B8¼A‹}BB4U XB4T14Q%8×A‹}lB4U €B4T14Q)8òA‹}•B4U †B4T14QK8 A‹}¾B4U ¢B4T14QJ8(A‹}çB4U ½B4T14QJ8CA‹}C4U ØB4T14QJ8^A‹}9C4U óB4T14QJ8yA‹}cC4U °B4T14Q28”A‹}C4U èB4T14Q98¯A‹}¶C4U (B4T14QO8ÊA‹}àC4U HB4T14Q*8åA‹} D4U B4T14QK8A‹}2D4U *B4T14QJ8A‹}[D4U EB4T14QJ86A‹}„D4U xB4T14QO8QA‹}®D4U ˜B4T14Q68lA‹}×D4U `B4T14QK8‡A‹}E4U |B4T14QE8¢A‹}*E4U ÐB4T14Q'8½A‹}TE4U øB4T14Q!8ØA‹}~E4U  B4T14Q!8óA‹}§E4U ’B4T14QB8A‹}ÑE4U HB4T14Q#8)A‹}úE4U ¥B4T14Q;8DA‹}$F4U pB4T14Q)8_A‹}MF4U ±B4T14QK8zA‹}vF4U ÍB4T14QK8•A‹}ŸF4U éB4T14QK8°A‹}ÈF4U  B4T14QK8ËA‹}ñF4U ! B4T14QK8æA‹}G4U = B4T14QF8A‹}DG4U  B4T14Q!8A‹}mG4U ÈB4T14QO87A‹}–G4U èB4T14QO8RA‹}¿G4U B4T14QO8mA‹}èG4U (B4T14QO8ˆA‹}H4U HB4T14Q98£A‹};H4U (B4T14QO8¾A‹}eH4U ˆB4T14Q*8ÙA‹}ŽH4U T B4T14QK8ôA‹}·H4U p B4T14QK8A‹}àH4U Œ B4T14QK8*A‹} I4U ¨ B4T14QK8EA‹}2I4U Ä B4T14QK8`A‹}[I4U à B4T14QK8{A‹}„I4U ü B4T14QK8–A‹}­I4U !B4T14QF8±A‹}×I4U ¸B4T14Q!8ÌA‹}J4U àB4T14QO8çA‹})J4U B4T14QO8A‹}SJ4U  B4T14Q98A‹}|J4U (B4T14QO88A‹}¥J4U /!B4T14Q@8VA}ÄJ4T @!B=mAš}8’A¥}èJ4U12›A,}.ñ*­`AœQK;num­g!ä7cmd°”,P9qA±}4U‹4T04Q0>Q(–gÇK?á!–Ÿ@red–ÇK?é+–ÇK?ë0—ÇK6@(šŸ ÉcAr›gAg›gAb›gKB('†!L?á!†Ÿ@red†K?é+†K?ë0‡K6e(ŠŸ Éc>}-wŸSL@wwg@hwgCá!zŸDÉŸà A~œP;x1glä;y1g¶ä;x2gå;y2gMå1sgƒå1xgßå1yg=æ0L.gsæ1xe1 g©æ1ye1 gWç1xe2 gòç1ye2 gzèC€(!Ÿ0á!#Pé6ö.$j‘À~1red%g±é0é+%g=ê0ë0%gƒêE!L2A0 SNFO4U‘´~4T‘°~8Ü AÕ}\O4Q24R‘À~8Aá}O4Q~4R4X}~#4Yv#JåA»O4U‘¨~4T‘”~”4Q‘¤~”J AÑO4U‘¨~8FAg}èO4U19PA,}4U (öAû .È“ðAäœSV0½$–Ÿpì1pm–ŸÏì0€(–ŸAí1pb–ŸŠí1m—¥Àí1xe˜gî1ye˜gzî1we˜gØî1he˜g¡ï1x™g}ð1y™g´ð6/™g‘¬~6Ì%™g‘°~7w™g‘´~7h™g‘¸~7n™g‘¼~0¡'™gñ7redšK‘¦~6é+šK‘¨~6ë0šK‘ª~0®%g“ñ0á!žPÉñ6ö.Ÿj‘À~K@AºQ0®gdòLA__c®gMòQCI°4C,°4LC4°SVC°gM*RCI²4C,²4LC4²SVC²gKe A^R0Ãg”òLA__cÃgEQK A äéRF†KÄòFzK)óFnKŽóFbKóóG N¨KN²KN¼KI’K Éc9¡ A {4U‘¦~4T‘¨~4Q‘ª~ObK0PQK= A÷„SF†KAôFzKôFnKßôFbK.õQ= AN¨KN²KN¼KI’K Éc9Q A {4U‘¦~4T‘¨~4Q‘ª~ObK08 A¥}›S4U12=Aí}8jA½}ÀS4Uv8ÄAÌ|åS4T ¨B4Qv8ÕAg}üS4U18ßA¥}T4U38òA¥}*T4U38 AAYJT4U‘¬~4T‘°~8 A¥}aT4U186 Aø}›T4U}4T ŠB4Q‘´~4R‘¸~4X‘¼~2N Aí}8} A~ÇT4U žB8‘ Ag}ëT4U14T øB8c AÕ} U4Q24R‘À~8‡ Aá}3U4Qv4R|4Xs4Y8ä AjhKU4UuJ. AaU4U‘~8h Ag}…U4U14T µB8 Ag}©U4U14T ^B8§ Ag}ÍU4U14T ;B8$ A~ïU4Rs4X04Y08R A~V4Rs4X04Y02b A#~Jk A2V4Us9Ï Ag}4U14T —BF.Ì+ @A§œrX;cmd ”,Rõ0*&g´õ0— &gýõ7x1'T‘@7y1'T‘H7x2'T‘P7y2'T‘X1s'TYö8kA¥}W4U38€A¥}W4U38•A¥}2W4U38ªA¥}IW4U38ÄArXgW4U‘@4T‘H8ÓArX…W4U‘P4T‘X2qA/~2ÁA/~2ÍA#~8:A}ËW4T DB2FAš}2¨A;~2A;~2A#~8?Ag}#X4U14T ;B2 A;~2þA;~2 A#~2jA/~2ºA/~2ÆA#~Ra+ïÀÜ@Áœ;Y;xï;Yµö;yï;Y÷1xzòTs÷1yzòTã÷1xdòT@ø1ydòTÕø0¤.óTDù0Ÿ.óTzù8SÝ@Ì|'Y4T B9dÝ@g}4U6TR`+áÞ@Kœ´Y;ixá°ù;iyáüù7dxäT‘P7dyäT‘X9ÄÞ@rX4Uw4T‘X.²Ï A›œ[;orÏŸHúK®A HZ0Õg·úMZA__cÕgSzy®A ÕFŠyçú2³Aí}<Ð ŽZ0Ög/ûMsZA__cÖgTzyÁAÐ ÖUŠy8ãA~­Z4U &B8öA~ØZ4U *B4Tv8$8&=AÁ|3%Ag} [4U14T .B92A¥}4U1.o­ÐAÅœ×[8A;~W[4R04X08>A;~s[4R04X02JA#~8lA‹}©[4U B4T14Q9=|Aš}5Ag}4U44T B.`A¬œ\6Ï?“g‘l8AG~\4T98¢AR~8\4T‘l4Q02¿A]~2ÒAi~2ÞA#~2íAP=9Ag}4U44T êBDÜ~g ü@®œÏ];al~Ÿ‚ûK=ü@ %]0„gáûMõ\A__c„gSzy=ü@ „FŠyü2Wü@í}< |]0…gBüMP]A__c…gTzy]ü@ …FŠyeü2Åü@í}8…ü@~§]4U ÌB4T}8$8&9˜ü@~4U ÐB4Tv8$8&.P:ÛÐü@ñœ7b;cmdÛ”,Ñü7xÞT‘°7yÞT‘¸0P:ߟFý0¾.àŸ¢ý0Ã.áŸ9þ0gâŸÐþ0%ãŸÙÿ0~äg„0= ägå1lenäg01iægS7d1æg‘¤7d2æg‘¨7d3æg‘¬6õ;ç’$‘@6Ô/èŸ ¸BŸ8 ý@\_4Uv8'ý@\*_4Uv8Qý@,}B_4Us2Yý@o8gý@¥}f_4U18uý@¥}}_4U38Šý@¥}”_4U38¤ý@rX´_4U‘°4T‘¸8¿ý@g}Ø_4U14T ;B8ðý@½}ð_4Us8þ@u~`4Ts4R‘¤4X‘¨4Y‘¬8Êþ@~5`4Ys8 ÿ@~M`4Ys2ÿ@#~8Ðÿ@}y`4T ñB8Au~³`4T ¸B4Q74R‘¤4X‘¨4Y‘¬80A‹}Ý`4U ðB4T14Q/8HA} a4T  B4Q ¸B8{A}(a4T PB8–A‹}Ra4U xB4T14Q+8ÝA¥}ia4U18A¥}€a4U18A\˜a4Us88A\°a4Uv8]AÌ|Ûa4T @B4Q}4Rv8nAg}òa4U18ŸAg}b4U14T pB9®Ag}4U14T ÔB.¶zPø@Åœ´e;cmdz”,±7x0}T‘ 7y0}T‘¨7x1}T‘°7y1}T‘¸7x2}T‘@7y2}T‘H6™%´e‘P0*…gê0— …g38mø@¥}c4U38‚ø@¥}c4U38—ø@¥}1c4U38¬ø@¥}Hc4U38Áø@¥}_c4U38Öø@¥}vc4U38íø@rX•c4Uw4T‘¨8üø@rXµc4U‘°4T‘¸8 ù@rXÓc4U‘@4T‘H8¢ù@~õc4R‘P4X44Y08Êù@~d4R‘P4X44Y02Öù@#~8úù@‹}Md4U ²B4T14Q28wú@}„d4T B4Q ÿ0s $0)( õ#y2ƒú@š}8Éú@™~³d4R‘P4X44Y28ûú@™~Õd4R‘P4X44Y28û@g}ùd4U14T ;B8Qû@™~e4R‘P4X44Y28ƒû@™~=e4R‘P4X44Y22‘û@#~8µû@‹}se4U ²B4T14Q28èû@~•e4R‘P4X44Y09ü@~4R‘P4X44Y0 ‹ Äe ‹.¤(ô@6œ.h;cmd(”,7x+T‘P7y+T‘X1r+TÈ0*,gÿ0— ,gn8-ô@¥}Qf4U38Bô@¥}hf4U38Wô@¥}f4U38qô@rXf4U‘P4T‘X8èô@¥~µf4Yv84õ@¥~Íf4Yv2Dõ@#~8hõ@‹}g4U ²B4T14Q28¼õ@}:g4T µB4Q ÿ0s $0)( õ#y2Èõ@š}81ö@±~_g4Yv8}ö@±~wg4Yv8Ÿö@g}›g4U14T ;B8 ÷@±~³g4Yv8U÷@±~Ëg4Yv2e÷@#~8‰÷@‹}h4U ²B4T14Q28ñ÷@¥~h4Yv9=ø@¥~4Yv>5/gjh@r@g@b?L.gV)ÿg0Ü@‹œÅhWrÿgU;gÿgÊ;bÿg0L.n9.Å´`ñ@¦œ€k;cmd´”, 7r·g‘T7g·g‘X7b·g‘\0L.¹gÆ AretºgCù-»€k<` ài1hÏŸ" 8Jò@¥}pi4U18lò@ø}§i4Uv4T uB4Q‘T4R‘X4X‘\8‡ò@Ì|Ìi4T ¨B4Qv9˜ò@g}4U18‘ñ@¥}÷i4U38¤ñ@¥}j4U38·ñ@¥}%j4U38øñ@jh=j4Qx8(ò@½~Uj4Qv8>ò@É~mj4Qv8µò@Ì|Œj4T `B8Æò@g}£j4U18ßò@g}Çj4U14T ;B2Có@½~8Yó@É~ìj4Qv8Šó@} k4T ~B8²ó@}*k4T B8Úó@}Ik4T œB8õó@‹}rk4U «B4T14Q92ô@š} ¥k ‹Ç.BH í@¹œÍm;cmdH”,X 7x1KT‘@7y1KT‘H7x2KT‘P7y2KT‘X6­)LT (Éc6”+LT  Éc6B/Mg 4Éc6h$NT Éc6ù'NT Éc6¨*Og 0Éc0–%Pg 0— Qgj 8jî@rX¸l4Uw4T‘H8yî@rXÖl4U‘P4T‘X2ºî@Õ~2ñî@Õ~2ýî@#~8^ï@}m4T `B2jï@š}8‡ï@g}Mm4U14T ;B8šï@¥}dm4U38¯ï@¥}{m4U32hð@Õ~2Ÿð@Õ~2«ð@#~8Úð@¥}¹m4U39ïð@¥}4U3.‘&<€í@œ(n/–%<gó 7cmd?”,P9‘í@±}4Uƒ4T04Q0Xdotðë@œZo;cmd”,> 7xT‘`7yT‘h0—  g³ 8ì@¥}—n4U38ì@¥}®n4U38.ì@rXÌn4Uw4T‘h2pì@á~2–ì@á~2¢ì@#~8ùì@}o4T QB2í@á~2@í@á~2Lí@#~9wí@g}4U14T ;B.`/ø°ë@5œ‡oY½$øgU:;ë>¾'agÔo?%aŸC/'jjLCIo4C,o4>°$¤g¨pC‰,¨gC™.©_ Agot©_ 6/'ªj ÀÉc7w«R DÊc7h«R @ÊcC.¬gCÀ%¬gCÝ*¬gC†)­_ CÑ+­_ C0®gCY+¯gC%³ŸZi0Ÿðà@C œ"y[cmdŸ”,ü \fnt¢g^*2£g uc]%¤Ÿ–*Ò-¦.$ `Êc* %§„ ‘Ð|\rx¨g\ry¨g*\rw¨gM\rh¨g‹*ö.©j‘À}]b'ªPÉ*+*«Ç ‘À~^̬_ _r­g_g­g_b­g`Ôo1â@ð ÇvGð HGpÿHSpJH_p•Ikp‘À}Iwp‘À~NƒpNpH›pàNåoNñoNýoI p ÀÉcIp DÊcI3p @Êc2Dâ@í~8Œâ@ù~„r4QH4R44X €Öc8ùã@Ì|£r4T ˆB8 ä@g}ºr4U58&ä@Ì|ër4T °B4Q}4R~4X|87ä@g}s4U58bä@s4R08•ä@9s4R‘À}4X‘À~8Æä@jhQs4Uu8å@qs4R‘À}4X‘À~8'å@jh‰s4Uu8Rå@µs4T B4Q ™öA8vå@)ûs4T èËc4Q äËc4R DÊc4X @Êc8Òå@5t4Q<4R ÀÉc8æ@5Ct4Q<4R ÀÉc84æ@ot4T B4Q ÈöA8Kæ@o‡t4Us2Òç@Ì|8ãç@g}«t4U18þç@×t4T B4Q öA89è@u4T B4Q }öA89ê@ù~-u4Q 4R44X €Öc8cê@ù~Vu4Q@4R44X €Öc8ê@ù~u4Q<4R44X €Öc8·ê@ù~¨u4Q84R44X €Öc8Îê@g}Ìu4U14T `B2Øê@P}2ßê@[}8õê@Ì|v4T ìB9ë@g}4U1a‡o׿@0 ñ8$á@¥}Dv4U182á@¥}[v4U38Oá@¥}rv4U38}á@oŠv4Uv8 á@g}®v4U44T ¡B2 â@A8,â@g}ßv4U14T B2næ@M8†æ@Y w4Q `Ëc8žæ@Ø|$w4QH<$2±æ@e8Âæ@qPw4T `Êc8׿@Ø|gw4Q08;ç@}€w4Q‘À~2bç@‰8ç@g}±w4U14T @B8¡è@;~Íw4R04X08Ðè@;~éw4R04X02Õè@•8+é@g}x4U14T 'B2<é@í~8Wé@Ø|@x4Q €8té@Õ}^x4Q24R‘À}8‰é@q}x4T `Êc8Ôé@á}§x4Qv4R|4X}4Y~8ê@~Éx4Rs4X04Y0Jê@Ýx4Us8ë@g}y4U14T ÑB9.ë@g}4U14T µBZb0”Ðà@œzy[fnt”gO,cmd—”,P9áà@±}4U4T04Q0bç×g–yc__c×gdoàÞ@pœ {F¡ošI­o @Éc<€ ñyNºoNÆo9 ß@¡4Tv<° {F¡o"G° Nºy8>ß@,}%z4Uv2Tß@°8•ß@¼Xz4Q @4R @Éc8Òß@Ì|wz4T qB8ãß@g}Žz4U18à@Ì|­z4T (B8à@g}Äz4U48*à@°ãz4T ZB9Kà@g}4U14T `B2%ß@È26ß@ }dQKPà@vœ½{FnKFzKÍF†KI¨K‘DI²K‘HI¼K‘LebKúbKŸI’K Éc9ˆà@ø}4Us4T B4Q‘D4R‘H4X‘Lf‡o@ë@iœdP=€AÜœª|8™A}|4T @B2¥AÔ8ÎA }3|4Us8 AÌ|R|4T ÏB2Aß8+Aëw|4Us8JAÌ|–|4T ÖB5\Ag}4U1gR+R+8h  Oh}gz z lg2.2. 9 gÂ*Â* Jg$+$+gR.R. ¤gh%h% Ô gììHgÑÑàgv v ægÒ.Ò.kg%%2hBB2grrág1616ÜgTTg  diƼÆhòjpoppopogxxâgññŠg¿¿ßgÛ/Û/ 5 gÜ$Ü$ °hÁÁQk6?À6i¥ › ¥ gª'ª' W g11 Ë gV1V1 J gƒ'ƒ' ¹ hšš hÈȈgø$ø$ g¢-¢- Ãgä.ä. V gÊ'Ê' d g.. 0 gÜ+Ü+ ¯ g** þgè/è/ › g¬&¬& › g11 R gÈ.È. & g ' ' 9 gµ*µ* ËgÎ0Î0gÅ)Å) g!(!( ß g?,?, ægb)b) ) gH+H+ 0g:+:+ dgL-L- C g¼0¼0“gÑ$Ñ$ ö g--  g// ƒ gƒ&ƒ& =gŠ%Š%÷iæÜægD&D& rg|)|) ög—(—( § h` ` íg__Ìhþ&þ&²:9¡µ 2À°!A‰#‚2é=Ø?40¬ 92ÐintÝ­ƒp(„p[ 8 ‹p§9§—0¾DØñ; —òi ÷¡ ø¡ Vù¡ ú¡ Éû¡( Üü¡0 Íý¡8 Ÿþ¡@ ‚ ¡H ¡P ó ¡X -s` ¦yh ,ip ÷ it wx FM€ è[‚ ÷ƒ iˆ …!‚ ü)Ÿ˜ E *Ÿ  +Ÿ¨ ,Ÿ° .4¸ ¼$/iÀ 1•Ä b–íœs Ds æ žy ¼8¢iB¾ § ; §¥ A;¥b<¥Ê =¥®Î ¨y1 ©yÚ ªy¿i Ô$iØ: K”/—° ¨ii \}ÿ˜63<| bQÑ g} ¡¥ 9•÷iÞ p;!•ù)ià *pà  7 H 9i C :ií Ô- @( --) .-˜ Ä çQV¡ piû m…‹{€ šT žŸ÷7zp :z- bz>8zL9zm9zT ¼›? TO j Æè ÈW  É ú Ê› õ; Ë Ì*W brgî orï prW"hÊ9¡³GiæLi~Pi ¡T ÇÝÖ Òw>tõ X¥b ϧb ɧb Pªb Jªb t «b n «b —­b °b ±Ç ¥ ´Ê – µÊ œ¶Ê A ·Ê ¸¸Ê ¹Ê ³ºÊ ­»Ê ¦¼Ê ¾½i$ B¿Ö( ç Âb0 ›Ãb2 @Æi4 FÇi8 dÈÜ@ ãÐnH ÓÒbTvÇ2 ËÊ aÍb { Íb øÎb ûÎb ßÏb IÏb 1ÑéuxÜ3yÜ‘zÜ §¢{‹|i }i! ~iÚi€ii|p¤C V ¦icnt§i ã¨N  D©N  % ªŸ %2«Ÿ  ¬N ( 1­¡0 ®N 8 €¯N @ ¸2°iHtag²iL B³iPlib´z X tµ¡` P ¶"hÉ ^N e(_N ¥`N ÞaN ½biciÎ>di e¡ ¡¬ f¡ äghËhiÞi-º i-ªi-=j¡9k¡êli4mni^oipiwr¡ž s¡ \ \ ³´vQ àwi iƒ Ëxx — yiB‰i´ŠidiÏ(”\ ~•-–-= —-–˜-{šid ›¡“œiq œiK žiR ži6 žiaži#Ÿ¡ b¢¡7£iWª¡«¡8¬¡ ­¡Ù®¡e/¯ij±bÁ »i! ÀN OÁ¡Õ(' V ƒi D„2  ã…2  % †Ÿ ä5‡- Å2 Ø fÆ2 hÈN VÉN & Êi±Íi z z € É 8Íò lÏ¡ é ÐisÑ¡ ]Òi z7Ói ! ÔN )ÕN ( DÖz 0ëÎo ˜Ïz -Ði£ÑiCÒiŸÓo $סœØiùÙiÚi16Tú› ¿‰Z#˜# Ø2TË 4p3Ò1·1ê3R T'a^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíTcORUåVcLTWcGTXcLEYcGEZcEQ[cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•TVÍz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3T^÷rÞ _ CTh'2ñOµ MkTzQ0ôÇ †3’† q”ï 4•õ ç1–õ%28™ï V ›i p4œï qï ž¡ % ŸŸ ¸2 ¡( ä5¡-0†QP ¹"idºi Û3»iûU@¾j ­.Àj  Ái( % Ÿ0 V ç8 iz ¯iÔ3i½4ii2'õ ÀÌc22(õ ¸Ìc' ) PØc8 * XØcC , hØcN - `ØcY .  Ìc ²2+iZ!2+i"i-i#â1.i#·/2 N™™!V i! i"ii"ar™($R2¦À@AÅœ]%cmd¦N e&ar¨™‘'• ©2 &symªï›&p«ŸÑ&str¬h-&dbl­]&i®iÀ&j®iE&bnd®i{',2®iÄ&cur®i!'²3®i‘(’AAp¾É)+ñ*p+7)+A‡+Må,AAo.à-U8.AAù/.3AAw8,­AAo.-U3,éAAo.(-U8.!BAƒ8,>BA8T-T Ø3B/]BA›8k-U1,âBA8Š-T 0B.CAƒ8,/CA8¶-T ¨3B,ZCAo.Í-U;,wCAo.ä-U8,CAV2-T3-Q0.ÁCA§8.ÏCAw8.ãCAw8.KDAù/.jDAƒ80€DA8-T €3B-$K2› @AœÑ1%2›¡A1|›i2cmdN P0³@A³8-UI-TóU-QóU$ n`?A3œò%cmdnN Ø',2pi‰&sq2 å&arr™g&symsï¥,€?Ao.S-U<.ž?Aù/,è?A8-T X3B/@A›8–-U1,:@Ao.­-U3,X@AV2É-T3-Q0.x@Aƒ80Ž@A8-T ÊB3ÿ2U:4offUi! U 4indU "iWi"curXi5%3Ei†4indE ! E "iGi"curHi"offHi6dimÎð9Abœ%%cmdÎN È"narЙ&oarЙc&nulÑ¡¿'V3Òiâ'O3Òil'2Òi·&iÒiï"jÒi2indÓj‘à~7q2Ój‘'3Ói9 &sÔï— '6Õi!8:A Ý'×iS!9­"__c×i:.7:A ×)>7Â!.:A¿8;@8'i"9"__ci:.7x7k".Žò)w¸#)k"=™+ƒî#+$0§A3ž>W>K=H>A?c+mª%+yà%,L:AV2µ-T3,_:AÖ8Ì-T3.q:Aƒ8,‡:A8ø-T Ð2B/©:A›8-U1.X;Aƒ8,t;A8G-T 3B-R-X~,…;A›8^-U1,Ü;Ao.u-U3,9A§8,£>A§8-U|.È>A§80?AÊ8-U8$ 3ÂÀ9A"œ“1¡&1V §O&2cmdÅN P0Ö9A³8-UG-TóU-QóU$(µ€9A5œÛ2s·2 P'ã3¸-ˆ&.Ÿ9Aù/$a2©P9A+œ2%cmd©N ¿&&p¬2 '.^9Aù/.j9Aw8$Z2Ÿ 9A.œ¦%sŸ¡A'&cmd¡N  ',89A³8‘-Ue-T0-Qs0C9Aw8-Us$| °8Aiœ %cmdN Ö'.Ù8A§8,ç8Ao.ø-U1.ð8Aw809AV2-T0-Q3$SP8ARœ %cmdN 5(&pƒ2 ”(.^8Aù/.r8Aw80˜8AV2-T0-Q3$¯pÐ7Arœ!%cmdpN Ý(&pr2 e).Þ7Aù/,8Aw8õ -U (öA088AV2-T0-Q3@:i°7Aœ$Ñ2?06Arœ<"%cmd?N Á)&dA2 I*&aB-¥*&bB-Ü*&cB-+,C6Ao.¥!-U3,X6Ao.¼!-U3.h6Aù/.µ6Aâ8/]7A›8ú!-U1-T Ñ/B,~7A8("-T µ/B-a ô-ÿÿÿÿÿÿï07A›8-U5$Ê2' 5AŽœ#%c'§Ÿ+/Â5A³8Š"-U6-T0-Q0/â5A³8¬"-U:-T0-Q0/6A³8Î"-U9-T0-Q0/6A³8ð"-U8-T0-Q0A.6A³8-U7-T0-Q0$’2ç€4AœÊ#%cmdçN |,'*4é¡-'‚2é¡)-&sê2 L-,!5A8Š#-T h2B/75A›8¡#-U1.J5Aù/05Aw8-U (öA$‹2Ý`4Aœ%$1V Ýi•-2cmdßN P0q4A³8-U@-T0-Q0$ƒ3Ó04A*œ|$%cmdÓN à-&sÕ2 ,..>4Aù/.O4Aw8$|3É4Aœè$1É¡b.1V Éi®.2cmdËN P0"4A³8-UK-TóU-Q0$A2¥°2AQœ¾&%cmd¥N ù.&l§ïÀ/&g§ï/0"ar¨™(42M3AÐÃu%)K2Ÿ0)@2é0Bo3AJ7(Z3AºÈ%)w1>k*+ƒC1+g10š3AÊ8-U@,È2AV2ß%-Q4.Ö2Aƒ8,ì2A8 &-T 2B/3A›8"&-U1.3Ao.,#3AV2K&-T3-Q1,93AV2g&-T3-Q2,„3A›8‹&-U6-T k/B,ì3A8ª&-T 82BA4A›8-U6$:2š€2A"œ*'1š¡Š11V šiÖ12cmdœN P0’2A³8-UJ-TóU-Q0$§2sp1Aœ©(%cmdsN !2&luïÒ2&guï3&atv¡Ÿ3(422A•»')K24)@2m4B?2AJ7,ˆ1Aí8Ù'-U|-T@,¨1AV2ð'-Q4.¶1Aƒ8,Ì1A8(-T È1B/á1A›83(-U1,ý1AV2J(-Q3,2AV2a(-Q2,P2AV2~(-U|-Q4,j2AV2•(-Q30~2AV2-Q2$ 2iP1Aœ)1i¡41V iiÜ42cmdkN P0b1A³8-UC-TóU-Q0$TX°0A™œ¸)%cmdXN '5&dZ-†5,Â0Ao.i)-U3,ö0A8ˆ)-T W/B,1A›8Ÿ)-U6091AV2-T1-Q3$eA0A¥œt*%cmdAN ä5&pD2 C6.0Aù/,A0A8 *-T C/B,R0A›87*-U6,0A›8[*-U4-T 0/B0›0AV2-T1-Q3$ 35à/Aœ¼*%cmd5N Ÿ62p82 P.é/Aù/$™3* /A:œ0+1ä5*-ë6&cmd,N "7,¹/A³8+-U?-T0-Q00Æ/AÊ8-U8C]3#€/Aœ\+B”/Aü8CD3@/A;œà+&st¡X72en2 P,K/AÊ8­+-UD,c/A8Ò+-Us-T */B.o/Aù/$ý1  /Aœ#,,+/Ao.,-U0B8/Aü8$É1ýÐ.AHœÄ,&stÿ¡¢72en2 P,Û.AÊ8t,-UD,ó.A8™,-Us-T */B,/A9¶,-Us-T1. /Aù/$y2ö°.A œ -,¾.Ao.ù,-U5AÐ.A9-T1$03æ`.ACœ©-&stè¡ì72ené2 P,k.AÊ8^--UD,ƒ.A8ƒ--Us-T */B,’.Aü8›--Us.—.Aù/$3Û0.A*œ.1Û¡68&sÝ2 ‚8.>.Aù/0I.Aw8-UvDî2£"A©œo.1V £i¸81ó2£¡-9A¹$A8-UóT-T 3õA-QóUEpopu2  ,Aœé/1^ uiŒ97*4xé/ €Ìc7»yé/ @Ìc'š2zië9&s{2 4:,8-A./-Us-T €Ìc,E-A.5/-U|-T @Ìc,b-A8n/-T  /B-Q €Ìc-R @Ìc,-A›8…/-U0.Í-Aù/,å-Aw8±/-U (öA,ú-A›8È/-U10 .A›8-U0-T ü.B §ù/ 1Fá V2 ,AœœM0&newY2 }:.E,A§80j,AÊ8-U($XD°+AOœ¨0&aF2 ³:&bF2 Ö:Aÿ+A›8-U1-T á.BG22ï°!AVœ'11V 2i ;12¡Y;&new4ï¥;,Ä!AÊ81-U80Ú!Aw8-Uv$g3*A›œ.2':3 õî;'õ1 .2<,A*A›8‰1-U3-T ·.B,¡*A9¡1-U|.¸*A#9,è*A9Æ1-U|,+A9Þ1-U|,O+A9ö1-U|,+A›8 2-U3A«+A›8-U3-T Ì.BïH·3úV2I]úïJtoúïK §ï°'A9œh4L§¡G<LV §i=Madd§iÉ=N:3ªõ>Nõ1«.27?NÌ3¬ï¦?Onew­ïÝ?N4®i9@Nû3¯i†@Nø2°i A8&(A M3PIÀ4P,À402(A.9-Uv,Ê(A8œ3-T 81B-Qv-R (öA¦8B~ $HM$.(-Y},Ý(A›8³3-U6,3)A8 4-T ˆ1B-Qv-R (öA¦8B~ $HM$.(-X}-Y‘¸”,H)A¨0)4-U~-Tv,)A¨0G4-U~-Tv.Ë)A80Ü)A›8-U6Q„–`'ALœã4Mcmd–N ~AN·˜N ·AOn™iíA,—'A8Ï4-T 1BA¬'A›8-U6R34b5JsbïSidiPW3eiSarg™Q«GP%Aœð6N¨3Iõ$BNõ1JïbBNÄ3Jï¾BNºKiáBTã4p%A@PŽ6)ï4SC*@+ø4œC+5ÀC+ 5öC.‡%A8,˜%A›8Ô5-U6.¤%A§8.Û%A§8,u&A8 6-T ,.B,†&A›8$6-U6.Ô&A§8,Ü&A§8I6-U},ÿ&A8h6-T H.B,'A›86-U6.I'A§8,°%A§8¦6-Us,&&A8Ë6-T è0B-Qv,7&A›8â6-U6.G&A§8Qþ5%AIœ.7Unew7õP0%AÊ8-UHVç×iJ7J__c×iW42À$A4œª7)@2,D)K2eD,ß$A8–7-T ô-BAô$A›8-U6W42ð)Aœå7)@2žD)K2×DB*AJ7WZDAFœ78)kE)w\E+ƒ¨EXP0¤DAÊ8-U@WàDAYœw8)+ÌE+7F+AvF+MÔFYv v æYççêYz z lY1616ÜYÑÑàYxxâZÁÁQY¿¿ßYÐИ[powpow™\¥ › ¥ Yâ2â2‚Y½2½2…\ñçñZ««…\æÜæ-ëµ ±4À@EAú;é=Ø840¬ 92ÐintÝ­ƒi(„i[ 8 ‹i 9 —0·DØñ4 —òb ÷š øš Vùš úš Éûš( Üüš0 Íýš8 Ÿþš@ ‚ šH šP ó šX -l` ¦rh ,bp ÷ bt px FF€ èT‚ ÷xƒ iˆˆ …!{ ü)˜˜ E *˜  +˜¨ ,˜° .-¸ ¼$/bÀ 1ŽÄ b–íœl Dl æ žr ¼8¢b;·  ˆ †4  ž †A;žb<žÊ =ž§Ç ¨r1 ©rÚ ªr¿b Í þ$ Ø: K/—° ¨bb\wÿ˜63<|bKÑgw šŸ †9÷bÞ i;!ù)bà *ià  7  H 9b C :bç  Í' †@( -') .'˜ Ä çKPš pbû m…{€ šM ž˜÷ 7tp :t- bt>8tL9tm9tM ¼›? TO j Æâ ÈQ  É ú Ê• õ; ËŠ Ì$Q \laî olï plW"bÊ9š³GbæLb~Pb ¡M Á×Ö Ìw>tï X¥\ ϧ[ ɧ[ Pª[ Jª[ t «[ n «[ —­[ °\ ±Á ¥ ´Ä – µÄ œ¶Ä A ·Ä ¸¸Ä ¹Ä ³ºÄ ­»Ä ¦¼Ä ¾½b$ B¿Ð( ç Â[0 ›Ã[2 @Æb4 FÇb8 dÈÖ@ ãÐhH ÓÒ[TvÁ2 ËÄ aÍ[ { Í[ øÎ[ ûÎ[ ßÏ[ IÏ[ 1ËãuxÖ3yÖ‘zÖ   ¢{‹|b }b! ~bÚb€bb|p¤= V ¦bcnt§b ã¨H  D©H  % ª˜ %2«˜  ¬H ( 1­š0 ®H 8 €¯H @ ¸2°bHtag²bL B³bPlib´t X tµš` P ¶hÉ ^H _(_H ¥`H ÞaH ½bbcbÎ>db eš š¦ f› ägbËhbÞi º i ªi =jš9kšêlb4mnb^obpbwršž sš V V ¬´vK àwb b} Ëxr — ybB‰b´ŠbdbÏ(”V ~•9–9= —9–˜9{šbd ›š“œbq œbK žbR žb6 žbažb#Ÿ› b¢š7£bWªš«š8¬š ­šÙ®še/¯bj±\Á »b! ÀH OÁšÕ(! V ƒb D„,  ã…,  % †˜ ä5‡9 Å, Ò fÆ, hÈH VÉH & Êb±Íb t t z É 8Íì lÏš é ÐbsÑš ]Òb z7Ób ! ÔH )ÕH ( DÖt 0ëÎi ˜Ït -Ðb£ÑbCÒbŸÓi $ךœØbùÙbÚb16Mú• ¿‰Z#˜# Ø2MÅ 4p3Ò1·1ê3R M'[^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíTcORUåVcLTWcGTXcLEYcGEZcEQ[cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•MVÇz½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3M^ñrÞ _ 5McW5Ç5ÿ4CMhE2ñOµ MkMzo0ôÇ †%28™Ø V ›b p4œØ qØ žš % Ÿ˜ ¸2 š( ä5¡90oP ¹idºb Û3»bÞ¯bÔ3bu4 H ØÌcZ4!H ÐÌc b[ †c‹ "K €Øc¤5#b ÈÌc «lZA:œ½!pn, P" ZA#,#ÙcàYAœ íQ@YAžœs$êS9c$ S9b%G4S9 G&valS9AG'NYA/,H(U3'bYA/,_(U3)wYA/,(U3*² GYA"œ Ï#XAœ`+cmd#H ´G%·%H H%€5&bƒH%Ô3'bÍH'ŽXA;, (T Î4B'ŸXAG,!(U6'ÜXA;,L(T @8B(Qv(R|)êXAG,(U0 ýWAœK+cmdýH I%·ÿH vI%€5bæI%ø4b0J'WA;,Ý(T Î4B'WAG,ô(U6'›WA+(U}(T|'ÝWA;,7(T 8B(Qv)ëWAG,(U0 ¹5ÓÀUA@œ\+cmdÓH zJ%·ÕH ÙJ%€5ÖbIK%Ô3×b“K%5ØbÝK%ø4ÙbL'WVA;,è(T Î4B'hVAG,ÿ(U6'sVA+(U~(T}'½VA;,H(T Ð7B(Qv(R|)ËVAG,(U0 ²5Â@UAvœ+,Ï8ÂbJL&cmdÄH ©L'eUA;,¿(T ˆ7B(Qs'vUAG,Ö(U1'„UAS,ø(U-(T0(Q0'ŸUA;,(T ÇóA(Qs"«UA_, q5° TAŸœ-+cmd°H ßL,ø4°b>M--ðTA½¾.:³M/ðTA0,0 ,)UA/,(U;'ÒTA;,Ý(T 7B'àTAG,ô(U0'%UA;,(T X7B(Qs)6UAG,(U61v5¥_2cmd¥H 3ø4§b3S4¨, X™PTAœš+cmd™H ×M!c›H U ] TA!œÇ4cmdH U  z°SAcœ%&i}bN!len}bT%Á5~H GN)¾SA/,(U3 ì m0SAxœš'>SA/,Z(U35ŒSAG,~(U6(T 95B6¨SAk,(U ìûA ½2XPRAÑœ,Ä2XšN,V XbO&cmdZH O7ŽÇRA f.ŸñO)ÕRAw,(U87ÜÜRAàh?.éP'eRA¾\(Us(T7'rRAƒ,t(Us'™RA;,·(T '5B(Q 5B5Bv $@L$)(5°RAG,Î(U1'¼RAS,ñ(Uv(T0(Qs)ÇRA_,(Us1^5F+8]FH 2toFH  ÓPA:œ¾+cmdÓH eP%Ä2ÖH bQ&ret×, «Q%V ØbáQ&dotÙš=R'kPA¾°(T7'†PA,Î(U|(T."¯PAž,'ÀPA¾ò(T25 QA (UóU"5QA#,"]QA#,"vQAc''¨QAƒ,J(U|'ÃQA;,i(T 5B'ÑQA,(T@'åQA©,™(Us5+RAG,°(U1"4RAƒ,9вH MAÇœÜ,²šsR,V ²bÒR%·´H DS&atµšzS:=3I¾-3,¾-;¸MA 3IÃ-3,Ã-)ÄMA¸,(T~;†MA Á3IÈ-3,È-)’MA¸,(T~)=MA,(U~(T@1Ç4¦ö2cmd¦H –5 LA<œ5)ÈLAG,(U0(T š4B ¸4’PLAGœt)kLAG,(U0(T h6B#€ ‹@LA œ, AV&cmd?H V%2@bÓV=ð&"&dotEšCW'eJA,Ï!(T.'ŸJA;,î!(T t4B'°JAG,"(U3)$KAG,(U3(T f4B'ïJAG,J"(U3(T f4B6 KAG,(U3(T 4B Ÿ42ÀIA2œÙ"+cmd2H W&sym4ØÆW'ÔIAÇ,Å"(T1(Q2)ÞIAÓ,(U0 ˜4'IA#œA#>cmd)H ' IAß,'#(U \4B(T06³IAS,(UD(Q0 6 IAbœÝ#+cmdH üW'5IAÇ,†#(Q4"CIAƒ,'YIA;,²#(T (6B5kIAG,É#(U16‚IAÇ,(Q2 ú5IAœJ$,šqX,V b½X!cmdH P)IAS,(UB(TóU(Q0?ïñÐNA¤œÎ$@cmdñH YAfuóH Y'âNA¾›$(T3'1OA;,º$(T Î4B6COAG,(U6?"5ç°HAKœ8%BcmdéH PCÜÂHAÀì%.éÆY)ÂHAS,(UL(T0(Q0?d4ÉàMA霯&DÄ2ÉšüYL4˯&‘ ~AdotÌššZAcmdÍH ½ZCÜšNA`á²%.éóZ'NAG,Ö%(U6(T 6B'NA,ô%(Us(T.'1NAë, &(U‘¤~'>NA¾*&(Uw(T7'KNAƒ,B&(Uw'aNA;,a&(T ´4B'rNAG,x&(U1'NAS,š&(U2(T0(Qs)šNA_,(Uw  ¿& †Ç?Ú²PHAZœc'@cmd²H )[EÒ4´, Ç["dHA('nHA/,'(U:5•HAG,B'(U0(T G4B6ªHAG,(U0(T 6B?È‚GA±œ(@ret‚, \Aa„, p\Ab„, ]Ac„, a]Btop…, XAbot…, „]Eó4†, »]Eê5†, Þ]E¸2‡b^?4] FAçœþ(D55]bt^E¬4_, %_Eî4_, n_E5`š¤_EB5a9`EM5bbs`'ÒFA/,Ž((U:'GA/,¥((U:'GAG,É((U0(T Ð5B"4GA#,FQGAú,FyGAú,"‚GA_,?×54pEA0œK*@cmd4H Ï`Ais6b1aEç46b~aAs7, Ça'¶EA;,—)(T P5B(R 4B!4Bs $@M$)('ÇEAG,®)(U1'þEA;,Í)(T  5B5FAG,ä)(U6"%FA#,'=FA_,*(U (öA'_FA;,/*(T €5B)›FA;,(T *4B?Ð5)@EA%œ±*@is)b6bDç4)bbBcmd+H P)XEAS,(UK(T0(Q0GŽLA-œé*.ŸÌb)LAw,(U8GÜàLA/œ +HéUG€OA‚œÝ+.c.Éc;ÏOA+.d.;d6ÞOAG,(U1(T æ4B5ºOAG,¥+(U1(T ð6B5ïOAG,É+(U1(T È6B6PA/,(U:G-pTA!œ#,.:adIFšd0R)ŠTA/,(U;Já á nKpoppopoJz z lJ1616ÜJxxâJv v æJppÞJ¿¿ßJççêL¥ › ¥ M««…LñçñLæÜæJ  qJ²2²2xJEEéLJXXm7'µ Ù<À€eAé=Ø440;¬ 92ÐintÝ­ƒj(„j[ 8 ‹j¡9¡—0¸DØñ5 —òc ÷› ø› Vù› ú› Éû›( Üü›0 Íý›8 Ÿþ›@ ‚ ›H ›P ó ›X -m` ¦sh ,cp ÷ ct qx FG€ èU‚ ÷yƒ i‰ˆ …!| ü)™˜ E *™  +™¨ ,™° .)¸ ¼$/cÀ 1Ä b–íœm Dm æ žs ¼8¢c<¸ ¡‰ ‡5 ¡Ÿ ‡A;Ÿb<ŸÊ =Ÿ¨È ¨s1 ©sÚ ªs¿c Î ÿ$ cØ: KŽþ8Ã\/@ 1Gù8-2Oü?.D_ :¡z€'>HÆ Ÿ>È> L;Ê› ¶8Ë› î;Ð ;Õ «<Ûc( È>âc, g>èc0 t7êc4 ø>ëc8 :8ðc< Å?òc@æ=¦)ì<©h;«>­°8«>k8) XÎcP9) PÎcÆ:‘ HÎcoÇ=¡ @Îc; 8Îc( hÝc?› 0Îcæ; c ,Îcÿ:!c (Îcœ:&c9[;"3] øÌcD] ðÌcV7_c¿9acac œuc(=e› Z›‡{Šö9‡› `B ZLJ¶=îÇ  |B .ò ‡ÿâ‡:;ò  {B . ‡L ­>[ ÀzB jI‡­8Ï6gI `uB Zu‡­dI7¶u pB j¡‡ç k:¡  ZB ZÍ‡ç ¼í6=Í @DBa@ucèv ìÌcº7x  ÎcU[;x Îc@y›Ì;zc ÎcÝ7{c ÎcÒ;|cP?}æ8‹c  ÎcÔ=Œc Îc~  Úcœ (cµ>N .$ œ9¿=Í980<5>tTO @ : ú;  < J@?Ä;{\6g tONÞ6$7>£@U<;ú6‹=A@P=6¤8 }:!•="Ó<#•<$^>%Á8&tDO'Ú>(<6)tIF*ó8+à<,‡>- 9.9/d80Œ?1>2—:3]<4æ<5tAT6Ë<7Þ?8:9¦7:_8;tOR<V;=¼<>€9?7@=A:B“?C=D†=E @F7G¼?H¥<Iµ?J;Kô6LtASM 7N~>O(<Pv>Q¿;Ró<S28T:U9V =Wà=X89Y7Z5:[’7\)@]˜?^ß>_[@`ž7a”9b/9cL<d9e!<fz?g8h$@i™>j?k8l”>mF9n6?o76p"9qD6ru?s«@t\:u0:v=w‹6xP7yX8zA9{7|K9}ø7~¯6—7€d9e=‚q>ƒÈ9„«8…¸9†7>‡d7ˆl7‰A7Š=‹)9Œð=8<ŽÇ7Ö? 8‘b:’…6“‚;”7•7–;—Ã6˜k?™U:š!8›Ž>œ¡6b< Ò‰ c6 Ö‰ ú: ×c÷@ Øcsep Ùc= Ú›%2 Û›|" Ü›Ä Ý›b< â$ ×6 è —° ¨cc \ä ÿ˜63<| b¸ Ñ gä › ‡9ü ÷cÞ j;!ü ù)cà *jà  7y H 9c C :cT y Δ ‡@„ ( -” ) .” ˜ Ä ç¸ ½ ›pcûmì ò {€šNž™÷7á p :á - bá >8á L9á m9á !N¼†›? TO jÆO"Ⱦ Ɇ úÊ õ;Ë÷ Ì‘¾ ÉÙÎî oÙï pÙW"Ï Ê9›³GcæLc~Pc ¡N .DÖ 9w>t\# X¥É ϧ\ ɧ\ Pª\ Jª\ t «\ n «\ —­\ °É ±. ¥ ´1 – µ1 œ¶1 A ·1 ¸¸1 ¹1 ³º1 ­»1 ¦¼1 ¾½c$ B¿=( ç Â\0 ›Ã\2 @Æc4 FÇc8 dÈC@ ãÐÕH ÓÒ\Tv.#2 Ë1 aÍ\ { Í\ øÎ\ ûÎ\ ßÏ\ IÏ\ 18PuxC3yC‘zC ¡x¢{m‹|c }c! ~cÚc€cc!N/)Û \•Ëù Ž@¼€'¸ —#|p¤ V ¦c$cnt§c 㨠D© % ª™ %2«™  ¬( 1­›0 ®8 €¯@ ¸2°cH$tag²cL B³cP$lib´8X tµ›` P ¶áhÉ ^)(_¥`Þa½bcccÎ>dc e› ›pfeägÏ ËhcÞi'º i'ªi'=j›9k›êlc4mmnc^ocpcwr›ž s› > ´vàwc cAËx6— ycB‰c´ŠcdcÏ(”>~•‰ –‰ = —‰ –˜‰ {šcd ››“œcq œcK žcR žc6 žcažc#Ÿeb¢›7£cWª›«›8¬› ­›Ù®›e/¯cj±É Á »c! ÀOÁ›#Õ(å V ƒc D„ð ã…ð % †™ ä5‡‰ Åð–fÆðhÈVÉ& Êc±Íc 88>#É 8Ͱ$lÏ› é Ðc$sÑ› ]Òc z7Óc ! Ô )Õ( DÖ80ëÎ-˜Ï8-Ðc£ÑcCÒcŸÓ-$×›ùÙcÚc16NúN¿‰Z#˜# %NVºz½p ¿ÿf $ã Á ¥ Q ½ / ˆ#P ¹á$idºc Û3»cº¯¤c o ‡¸:©ó àÍc&Ç8ªc `Ýc'°« €Ýc'ܬ èÌc'ç­ @Úc'»® pÝc'Ư xÝc'Ѱ äÌc&i9±c àÌc(ç?ÐgA—œ)MhA5î*T ˜:B+^hA›5*U6,x@Ç>ÀdAœš-Ç›åd-ñ?ÇÏ je-<Çc£e>>Éš Ícï>Êš‘ð}.pË›f.libÌ>8f.iÍc”f/X>ΛEg0ueA IÜ)/,Ü)Æg14ܪÜc) eA§5'*U Ã8B*Tv)%eA¶5K*Uw*Ts*QÈ)MeA§5p*U Ã8B*T|)leA§5Ž*Uw*T.)¦eA¶5¹*U Íc*Tw*QÈ)µeA§5Þ*U Íc*T.)ÍeAÅ5 *U Íc*T B)fA¶5/*U Íc*QÈ)bfA§5N*U ä8B)¶fAÑ5f*Tw)ÈfA§5‹*U Íc*T.)àfAÅ5·*U Íc*T B)gA5ã*T ç8B*Q Íc)$gA›5ú*U1)qgA5*T x:B*Qw)‚gA›56*U1)—gA›5Z*U1*T È8B)¹gAà5*U Íc*Tv+ÉgAë5*U|*Tv ¡ª ‡ÇB,>ycphACœå-y›þg>>{›‘XI6|c ÌÍc¢9}c ÈÍc0¨hA iIƒ)/,ƒ)Zh14ƒªƒc0ËhA µI‹)/,‹)’h14‹ª‹c0àhA I”)/,”)Þh14”ª”c2ŒhAú5)ZiA6%*T0)ÔiA›5I*U6*T à:B)úiA6`*U1)$jA›5„*U6*T ;B20jA±)TjA´*Uv*T‘X*Q0)qjAY)Í*T @2yjA`*)ÔjA›5þ*U6*T H;B)ÿjA5#*T €;B*Qv)kA›5:*U1)2kA5_*T H9B*Qv)CkA›5v*U5)okA5›*T °;B*Qd)€kA›5²*U1)kA5Ñ*T Ø;B+®kA›5*U1(pt dAœs 3cmdt›*i4C&¤dAve 5T&vi)©dA6P *Us+´dA>%*Us6½dA`*(bcAœ„!-mb>¬i-g b›j-wb›ƒj4C&¯cAg!5T&õj)·cA6þ *Us+ÂcA>%*Us)ÝcA68!*Uv*T ¹8B):dAY)Q!*T @)UdA6v!*Uv*T ¹8B2‘dA`*(Þ8I@bABœE"3msgI›+k.iKcwk7jKc‘\)abA5ù!*T ©8B*QóU*R‘\2ªbAú5)cA51"*T ²8B*Qs8$8&+NcA›5*U18/?B_"9ptrB™:…95™‰"9ptr5™;õ;5:¬;0™§";õ;0,–8ÿ c@aAМa#4E"}aA #5R"Øk+…aA)6*UvÖ:Ý c(C>Ø 0aAœ›#?“;Ø cU@³=Ó c aAœ(x;Î aAœæ#?O>Î >U(Ý;É aAœ$?²7É >U(s9½ ð`Aœ@$?<½ cU@´;´ ›à`Aœ@m;« Ð`Aœ@Á<£ >À`Aœ@R@› >°`Aœ@?<’ c `AœA(6v 6@$œ>%3msgv Èl)76@56*%*T ÌóA*QóU+A6@A6*U2,w6T o`ArœC&-6T Èjl-47T Él.bV o=mBbufW ›.nX sm.iY Ám4‰"`A] ð%5š"øm+`AM6*U|)M`Aa&&*T|)h`AÖ$'&*U H:B+r`AÖ$*U ‹8B:ù<G oa&;{<G È,´6" o`_Aœ'-_" ›n-õ;" nBb$ o<‰"ƒ_A@, ã&5š"o+_AM6*UH)×_A`*û&*Us+ý_AÖ$*U :BC&;ñ ?'?ó 1›< (/=Þ Ð^Aœƒ'DW*_A0é 2ú^A­((â9À ^A¬œÓ'-r:À o(o=W*™^AÖ 22^A'(<;£ \A}œ(Eb£ oUDW*P\A-· Fh6‡ €\A„œ­(3b‡ oto-m‡ >Ào/Õ9Š c p2•\AY6)£\AÓ'‡(*Us)ã\Ad6Ÿ(*Uv2ê\Ap6(…8t [AbœY)3bt o/p‰q-õ;X cèqBbZ o<‰"]A \ Û)5š"Gr+#]AM6*UH4‰"6]Ae *5š"lr+;]AM6*U v $ &#)V]A(;**Us*T|+h]AÖ$*U è9BJ ?J (æ:+ ðZAšœ´*-r:+ o¬rDW*B[A0@ 2ùZA'(å> p]A¯œ1+-¢> > s=W*ž]AÐ$ )ž]A(+*Tv2å]A'+^AY)*T @K’@ Ug+;0@ U8 c<‘ "Lj=m U`5@½œÀ+/0@o Ujs/:p ›¨sM /<z "ósK? cB,/ ›†7 ›I8 Bi ,7 cN3,§=2 c1BcA cBnA )1o@\ ,€=qcÀkAçCœ3/0@sUt/:t›iu/Ü9t›öw/Á>ucÌxO˜6±OÎ7ÁOF?ÄP‰;êÝmAQÐæ,/<´"O{Q-/j<c¾{Q -/j<câ{Qð4-/j<!c|QÀN-/j<&c*|Qh-/j<7cN|Q‚-/j<Lcr|QPœ-/j<Lc–|0´„A+0./ :Q›º|0´„A "./%*UóUS‰"bAœ 55š"_…HbAM6*UóUS_" bAœU55p"˜…5|"Ñ…H%bAã6*UóU*TóTSE"0bAœ55R" †H5bA)6*UóUVz z lV1616ÜW¥ › ¥ W¹¯¹VTTW!!X««…WX  OV èYpoppopoVññŠVÔÔãV  dV((VÂÂÒXBB2V--ZV¨6¨6W6 66Vv v æZ6?À6Véé V¿¿­V+8+8>VÕ8Õ8:Vý7ý7ÅV‡9‡9àV× × ÝW>÷=>øc#µ ;BÀ°¯AA1ªTé=Ø?40¬ 92ÐintÝ­ƒp(„p[ 8 ‹p§9§—0¾DØñ; —òi ÷¡ ø¡ Vù¡ ú¡ Éû¡( Üü¡0 Íý¡8 Ÿþ¡@ ‚ ¡H ¡P ó ¡X -s` ¦yh ,ip ÷ it wx FM€ è[‚ ÷ƒ iˆ …!‚ ü)Ÿ˜ E *Ÿ  +Ÿ¨ ,Ÿ° .4¸ ¼$/iÀ 1•Ä b–íœs Ds æ žy ¼8¢iB¾ § ; §¥ A;¥b<¥Ê =¥®Î ¨y1 ©yÚ ªy¿i Ô$Ø: K”/?—° ¨ii \~ÿ˜63<| bRÑ g~ ¡¦ 9–÷iÞ p;!–ù)ià *pà  7 H 9i C :iî Ô: @*( -:) .:¥B•p˜ Ä çin¡ piû m£{€ šT žŸ÷7’p :’- b’>8’L9’m9’T ¼7›? TO j Æ Èo  É7 ú ʳ õ; ˨ ÌBo zŠî oŠï pŠW"€Ê9¡³GiæLi~Pi ¡T ßõÖ êw>t  X¥z ϧb ɧb Pªb Jªb t «b n «b —­b °z ±ß ¥ ´â – µâ œ¶â A ·â ¸¸â ¹â ³ºâ ­»â ¦¼â ¾½i$ B¿î( ç Âb0 ›Ãb2 @Æi4 FÇi8 dÈô@ ãІH ÓÒbTvß2 Ëâ aÍb { Íb øÎb ûÎb ßÏb IÏb 1éuxô3yô‘zô §)¢{‹|i }i! ~iÚi€ii|p¤[ V ¦icnt§i ã¨f  D©f  % ªŸ %2«Ÿ  ¬f ( 1­¡0 ®f 8 €¯f @ ¸2°iHtag²iL B³iPlib´’ X tµ¡` P ¶(hÉ ^f }(_f ¥`f Þaf ½biciÎ>di e¡ ¡Ä f¹ äg€ËhiÞi'º i'ªi'=j¡9k¡êli4mni^oipiwr¡ž s¡ t t ³´vi àwi i› Ëx — yiB‰i´ŠidiÏ(”t ~•-–-= —-–˜-{šid ›¡“œiq œiK žiR ži6 žiaži#Ÿ¹ b¢¡7£iWª¡«¡8¬¡ ­¡Ù®¡e/¯ij±zÁ »i! Àf OÁ¡Õ(? V ƒi D„J  ã…J  % †Ÿ ä5‡- ÅJ ð fÆJ hÈf VÉf & Êi±Íi ’ ’ ˜ É 8Í lÏ¡ é ÐisÑ¡ ]Òi z7Ói ! Ôf )Õf ( DÖ’ 0ë· ˜Ï’ -Ði£ÑiCÒiŸÓ‡ $סœØiùÙiÚi16Tú³ ¿‰Z#˜# üT ]Ú ®µOæîÖ¤Ñ h © å – à ^‡ëù¼Jþà–¯@DY–/v !#"Ò#F$(%U&/'×(›) *P+b,-.ª/ fOR0Œ12´3f4Á56r748)9ò:;w<ù=;>?@ÆAûB CØ2T4p3Ò1·1ê3â&T"±,/Ž-š+R T'G^âx×>ªY  Z B à Æ”5 ÜŠ  ùŽwL Ÿ¥5[RxEs *!"º #—$ %Š&'L(A)*‚+,,m-³./R01w2Ù34è5a6z7h 89_:/;<R=>¤?È@« Aä B# C#DÓEÙFªG% H(IyJƒKý L† MÅNšO’P? Q RÁ SíT cORUåV cLTW cGTX cLEY cGEZ cEQ[ cNE\]?^ƒ_m`ñaâbºcld¨eLf>g¤ h¥ij_kÇl myníoÅpÏq˜r¿s¸t%uÌ vˆw xŽy€zD{ž|‚ }ù ~Jˆ€I Æ‚gƒª„¡ …†e‡lˆï ‰ºŠ$‹íŒ|…ŽŠÏ‘’;“Õ”!•TV³z½p ¿ÿf $ã Á ¥ Q ½ / ˆ¼3T^ÝrÞ _ 5TcW5Ç5ÿ4P ¹(idºi Û3»i!Ÿ="WEDGH.+A“%#i"Ÿ"9kA–zYt!Ÿ“"4"9DA™¤ž!ŸÂ"Ÿ"4"96CœÓ©Í!Ÿñ"4"4"9rC ØüÄA¤%$#gi ´Ýc$¯hi  uc$5ii ¨Îc%L j  Îc$2Bki ˜ÎcVBm’ %b n ”Îc%m o Îc$ Api ŒÎc$ Bqi ˆÎc$Dri „Îc$*Dsi €Îc$Ö@ti |Îc$ñAui xÎc$]Avi tÎc$Awi pÎc$[Cxi lÎc$ÅCyi hÎc$€5zi dÎc$Ô3{i `Îc&b<U'c6Y-'ú:Zi'÷@[i(sep\i'=]¡'%2^¡'|"_¡'Ä `¡b<e ×6kŒB|F+wBˆM<CŽbM&¬;+„'RA-M'KC. 7•)„*¸Az• €-C HÁ)«°*PDªÁ  *C Ôí)Ü*´CÝí `!C Y)é*º@1 €C HE)é4*/ØB ?—3@/¯BA d\i—/“AB €\²—3p¨/ÝCF ?µ˜4p´A¾`5U5T|5Qv3Ðä/ÝCG ?+™4‰´A¾`5U~5T‘Èo5Q}6D´AÇ`5U s2$s"1$#4›´AÒ`5U|4¨·AÝ`5T £ˆB5Q‘Ào7ÆA$®8I48,46ÆAé`‚5T06)ÆAõ`™5U145ÆAa5Ts9¸\°·A²¾ ·:Ñ\Œ™;Ý\:Å\¯™<°·A²=é\>õ\ç™>]š6Ô·AÝ`H5T è’B5Q~5R‘¸o1$ *C"” ÿÿ6%¸AÝ`m5T ‰B5Qv6B¸A[_¢?ã]v‘¸o °B"”ÿ13$}"4S¸Aa5U:9=_ˆÍA¢õ:N_Vš4˜ÍAa5T05Q:9=_¶ÑAê3:N_zš4ÆÑAa5T05Q:9=_úÓAç q:N_žš4 ÔAa5T05Q:6õ´AÝ`™5T ÀˆB5Q‘¸o”6FµA`Ç5U ʉB?«\ ¸Ýc6cµA]å5U|5Tv6°µA`$5U ܉B5Ts1$@µB"” ÿÿ?«\}6=¶A`R5U ü‰B?«\ ¸Ýc6k¶A`q5U ŠB6‚¶AÒ`‰5U|6ß¶A*a¨5U ½‰B@û¶A6a6A·AAaÞ5U åˆB5T15QE6h·AÝ` 5T ˆB5Q ûˆB6w·A[_1 5T~?ã] ¸Ýc6ˆ·AaH 5U:@¸APa6¸A\av 5U>5T05Q06˸AÝ`¢ 5T ˆB5Q µ‰B6æ¸A[_º 5Ts6÷¸AaÑ 5U:6+¹A]ï 5U|5T~6C¹A] !5U|5Tv6k¹AAa6!5U “ˆB5T15Q?6ºAAa_!5U ÓˆB5T15QA6]ºAhav!5U36lºAha!5U16{ºAha¤!5U96ŠºAha»!5U26–ºAhaÒ!5U06¥ºAhaé!5U86±ºAta"5U06¿ºA\a""5UQ5T05Q06ͺA\aD"5U=5T05Q06àºA\af"5U#5T05Q06óºA\aˆ"5U$5T05Q06»A\a©"5UO5T05Q06»A\aË"5U 5T05Q06(»A€aâ"5UD67»A€aú"5U16F»A€a#5U06U»A€a*#5U/6d»AŒaI#5U (öA6n»A€a`#5U86}»AŒa#5U (öA6‡»A€a–#5U86–»A€a­#5U86¥»AŒaÌ#5U (öA6¯»A€aã#5U76¾»AŒa$5U (öA6È»A€a$5U76×»A€a0$5U76æ»AŒaO$5U (öA6ð»A€af$5U66ÿ»AŒa…$5U (öA6 ¼A€aœ$5U66¼A€a³$5U66'¼AŒaÒ$5U (öA61¼A€aé$5U56@¼AŒa%5U (öA6J¼A€a%5U56Y¼A€a6%5U56h¼A€aM%5UA6w¼A€ad%5UC6†¼A€a{%5U@6•¼A€a“%5U?6¤¼A€a«%5U56³¼A€aÃ%5U>6мA€aÛ%5U46ß¼A€aó%5U,6î¼A€a &5U$6ý¼A€a#&5U!6 ½A€a;&5U 6½A€aR&5UG6*½A€aj&5U969½A€a‚&5U86E½A€a™&5U06T½A€a°&5UN6c½A€aÈ&5U76r½A€aß&5UM6½A€aö&5UL6½A€a '5UK6Ÿ½A€a$'5UO6®½A€a;'5UJ6½½A€aR'5UI6̽A€aj'5U26Û½A€a'5UF6ê½A€a˜'5UE6ù½A€a°'5U-6¾A€aÇ'5U>6¾A€aÞ'5U=6&¾A€aõ'5U<65¾A€a (5U;6D¾A€a#(5U:6S¾A€a:(5U96c¾Aé`Q(5T06p¾A˜ah(5T26€¾Aé`(5T06¾A˜a–(5T46œ¾A¤a®(5U}6«¾A¤aÆ(5U>6º¾A¤aÞ(5U{6ɾA¤aö(5U<6ؾA¤a)5U!6ç¾A¤a&)5U=6ú¾A\aH)5U;5T05Q06 ¿A°a`)5U^6¿A°ax)5U/6'¿A°a)5U*66¿A°a¨)5U-6E¿A°aÀ)5U+6U¿Aé`×)5T06d¿A\aô)5U<5Q06y¿A\a*5UM5Q06¿A\a:*5UN5T (öA5Q06¥¿A\ac*5UN5T (öA5Q06»¿A\aŒ*5UM5T (öA5Q06Ñ¿A\aµ*5UM5T (öA5Q0@á¿A¼a6ô¿A\aä*5Ui5T05Q06ÀA\a+5Uy5T05Q06ÀAÈa+5U}6%ÀAÈa6+5U>64ÀAÈaN+5U{6CÀAÈaf+5U<6RÀAÈa~+5U!6aÀAÈa–+5U=6pÀAÔa®+5U!@zÀAàa6„ÀAÔaÓ+5U&6—ÀA\aô+5U@5T05Q0@œÀAìa@¦ÀAàa6°ÀAÔa&,5U|6ÃÀA\aG,5UA5T05Q0@ÈÀAìa6ÛÀAøak,5T16ëÀAé`‚,5T06úÀA\aŸ,5U>5Q06 ÁAta¶,5U16ÁA\aØ,5UQ5T05Q06%ÁA\aú,5U=5T05Q064ÁA€a-5U#6CÁA€a*-5U"6RÁA€aB-5UC6aÁA€aZ-5UB6tÁA\a|-5U%5T05Q06‡ÁA\až-5U&5T05Q06šÁA\aÀ-5U!5T05Q06­ÁA\aâ-5U"5T05Q06¼ÁA€aú-5U:6ËÁA€a.5UB6ÚÁA€a(.5U26éÁA€a?.5U26øÁA€aV.5U16ÂA€am.5U16ÂA€a„.5U?6%ÂA€aœ.5U)64ÂA€a´.5U(6CÂA€aÌ.5U'6RÂA€aä.5U&6aÂA€aü.5U%6pÂA€a/5U*6ÂA€a+/5U46‘ÂA¼aL/5a ô-ð¿6›ÂA€ac/5U46­ÂA¼a„/5a ô-ð¿6·ÂA€a›/5U46ÆÂA€a³/5U@6ÕÂA€aË/5U66äÂA€aâ/5UH6óÂA€aú/5U;6ÃA\a05U;5T05Q0@%ÃAb@*ÃAìa6DÃA\aV05U;5T05Q0@IÃAb6WÃA\a…05U/5T05Q06eÃA\a§05U35T05Q06­ÃA\aÉ05U25T05Q06·ÃAbá05U0@ÏÃA(b@÷ÃA4b6ÄA@b15U16ÄA\a315U;5T05Q0@#ÄAìa@4ÄALb@9ÄAb@>ÄAàa6LÄA\a‰15U/5T05Q06ZÄA\a«15U35T05Q06{ÄA\aÍ15U25T05Q06…ÄAbå15U0@ÄA(b@®ÄAb6¼ÄA\a!25U/5T05Q06ÊÄA\aC25U35T05Q06 ÅA\ae25U25T05Q06ÅAb}25U0@/ÅA(b6PÅA\a¬25U,5T05Q06cÅA\aÎ25U,5T05Q06vÅA\að25U*5T05Q06„ÅA\a35U;5T05Q06’ÅA\a335U+5T05Q06ÓÅA\aU35U/5T05Q06áÅA\aw35U=5T05Q06ïÅA\a™35U55T05Q0@ôÅAXb@þÅAdb6 ÆA\aÕ35U45T05Q06ZÆAõ`ì35U16lÆA¼a 45a ô-ð?6®ÆA\a/45U/5T05Q06¼ÆA\aQ45U35T05Q0@ÍÆALb@ÒÆAb@ׯAàa6êÆA\a™45UB5T05Q0@ïÆAìa6ýÆA\aÈ45U'5T05Q06ÇAé`ß45T06ÇA\aü45U>5Q0@ÇAàa6'ÇAé` 55T066ÇA\a=55U<5Q06DÇA\a_55U)5T05Q06OÇAé`v55T06^ÇA\a“55U>5Q06iÇAé`ª55T06xÇA\aÇ55U<5Q06†ÇA\aé55U(5T05Q06”ÇA\a 65U;5T05Q0@™ÇAìa6©ÇAé`.65T0@±ÇApb6¿ÇA\a\65UC5T05Q0@ÄÇA(b6ÎÇAb65U06èÇA\a£65U25T05Q06 ÈA|bº65U26ÈAé`Ñ65T06"ÈAˆbè65T261ÈA|bÿ65U46<ÈAé`75T06IÈAˆb-75T46XÈA|bD75U16cÈAé`[75T06mÈA”br75T06xÈAé`‰75T06‡ÈA\a¦75Ud5Q06–ÈA|b½75U36¡ÈAé`Ô75T06®ÈA”bë75T16¹ÈAé`85T06ÈÈA\a85U>5Q06ÛÈAé`685T16èÈA bM85T36öÈAé`d85T16ÉA¬b|85TS6ÉAé`“85T16#ÉA bª85T361ÉAé`Á85T16>ÉA¬bÙ85TD6QÉAé`ð85T16[ÉA b95T06nÉAé`95T16{ÉA b595T16‹ÉAé`L95T06˜ÉA”bc95T36£ÉAé`z95T06°ÉA¬b’95Ts6ÀÉAé`©95T06ÍÉA”bÀ95T36ØÉAé`×95T06åÉA¬bï95Td6õÉAé`:5T06ÿÉA”b:5T06ÊAé`4:5T06ÊA”bK:5T16rÊAé`b:5T0@zÊA¸b6ŒÊAé`†:5T0@”ÊA¸b6³ÊAé`ª:5T0@»ÊA¸b6ÍÊAé`Î:5T0@ÕÊA¸b6ËA\aü:5UL5T05Q06>ËA\a;5UH5T05Q06KËAÄb5;5U06cËA\aW;5UI5T05Q0@sËAÐb@xËAàa6‡ËA|bˆ;5U86•ËA\aª;5U=5T05Q06¶ËAÜbÂ;5TJ6ÄËA\aä;5UG5T05Q06ÒËA\a<5UL5T05Q0@ìËAèb@ ÌAìa6ÌA9^C<5U45T ð“B6;ÌAé`Z<5T0@CÌA¸b6XÌAé`~<5T0@`ÌA¸b6xÌA\a­<5UA5T05Q06ˆÌAé`Ä<5T06•ÌA¬bÜ<5TS6¥ÌAé`ó<5T06²ÌA¬b =5TS6ÂÌAé`"=5T06ÏÌA¬b:=5TD6ßÌAé`Q=5T06ìÌA¬bi=5TD6üÌAé`€=5T0@ÍA¸b6ÍAé`¤=5T0@!ÍA¸b66ÍAôbÈ=5T06^ÍAÿbå=5Uv5T06rÍAÿb>5Uu5T16ƒÍAÿb>5Uv5T0@¥ÍA¼a6´ÍAÿbI>5Uu5T16ÅÍAÿbf>5Uv5T06ÕÍAé`}>5T06äÍA\aš>5U<5Q06óÍAÿb·>5Uu5T16ÎA cÏ>5UU6ÎA cç>5Uu6 ÎA cÿ>5Ud6/ÎA c?5Us6>ÎA c/?5Us@NÎAc@\ÎA#c@lÎAc@zÎA#c6‰ÎA/c{?5Us6”ÎAé`’?5T06¡ÎAøa©?5T36°ÎA/cÁ?5Us6»ÎAé`Ø?5T06ÊÎA\aõ?5Ud5Q06ÙÎA/c @5Ud6äÎAé`$@5T06ñÎAøa;@5T16ÏA/cS@5Ud6 ÏAé`j@5T06ÏA\a‡@5U>5Q06/ÏA;cŸ@5Us6:ÏAé`¶@5T06GÏAøaÍ@5T36\ÏA;cå@5Us6gÏAé`ü@5T06vÏA\aA5Ud5Q06‹ÏA;c1A5Ud6–ÏAé`HA5T06£ÏAøa_A5T16¸ÏA;cwA5Ud6ÃÏAé`ŽA5T06ÒÏA\a«A5U>5Q06åÏA\aÍA5U5T05Q0@ïÏALb@öÏAGc@ûÏALb@ÐAàa6ÐA\a"B5U;5T05Q0@ÐAìa@"ÐAàa6<ÐA\a]B5U;5T05Q0@AÐAìa@uÐAàa@ÐALb@†ÐAGc@‹ÐALb@ÐAàa6£ÐA\aÍB5U|5T05Q06­ÐAScäB5U26ºÐA¼aC5a ô-H“@6ÆÐAÿb"C5Uu5T06ÙÐA\aDC5U|5T05Q06ãÐASc[C5U16ðÐA¼a|C5a ô-H“@6üÐAÿb™C5Uu5T06ÑA\a»C5U|5T05Q06ÑA¼aÜC5a ô-H“@6(ÑAÿbùC5Uu5T067ÑAScD5U36DÑA¼a1D5a ô-H“@6PÑAÿbND5Uu5T06_ÑASceD5U26lÑA¼a†D5a ô-H“@6xÑAÿb£D5Uu5T06‡ÑAScºD5U16”ÑA¼aÛD5a ô-H“@6 ÑAÿbøD5Uu5T06±ÑAÿbE5Uu5T0@ÓÑA¼a6ßÑAÿb?E5Uu5T06ïÑAé`VE5T06þÑA\asE5U<5Q06 ÒAÿbE5Uu5T06ÒA¼a±E5a ô-H“@6(ÒAÿbÎE5Uu5T0@6ÒAŒa6@ÒA cóE5Us6OÒAŒaF5U 9öA6YÒA c*F5Us6jÒAÿbGF5Uv5T06|ÒA¼ahF5a ô-H“@6‹ÒAÿb…F5Uu5T16œÒAÿb¢F5Uv5T06¯ÒA\aÄF5U|5T05Q06¼ÒA¼aåF5a ô-H“@6ËÒAÿbG5Uu5T16ÚÒA_cG5U1@ùÒAkc@ÓAPa6<ÓA@bWG5U15T H“B6gÓA@b{G5U15T p“B@yÓAwc6‡ÓA\aªG5U=5T05Q06šÓA\aÌG5U15T05Q06¤ÓAbäG5U.6ÃÓA@bH5U15T 9‰B@ÙÓAwc6çÓA\a7H5U=5T05Q06úÓA\aYH5U15T05Q0@ÔAƒc6>ÔA@bŠH5U15T ‰B6VÔA\a¬H5U15T05Q06`ÔAƒcÃH5U16ÔA@bçH5U15T ‰B6¦ÔA\a I5U€5T05Q06ºÔA9^-I5U15T “B6 ÕA€aEI5U=6ÕA€a]I5U36'ÕA€auI5U.6:ÕA\a—I5Uf5T05Q0@QÕAŒa6fÕA\aÁI5UN5Q06vÕAé`ØI5T06ƒÕAøaïI5T46“ÕAé`J5T06¢ÕA\a#J5Ug5Q06²ÕAé`:J5T06ÁÕA\aWJ5Uc5Q06ÔÕA\ayJ5Ux5T05Q06çÕA\a›J5Uw5T05Q06úÕA\a½J5UQ5T05Q06ÖAŒaÜJ5U OB6ÖAhaóJ5U36!ÖA\aK5UQ5T05Q06+ÖAŒa4K5U B65ÖAhaKK5U36DÖAhabK5U96SÖAhayK5U16bÖAhaK5U36rÖAé`§K5T06ÖAøa¾K5T36ŽÖAcÖK5U36ÖAcîK5U.6¬ÖAcL5U;6»ÖAcL5U=6ËÖAé`5L5T06ÚÖA\aRL5Ud5Q068×A\asL5U:5T05Q0@F×A›c6Y×A\a¡L5U95T05Q06g×A¼aÂL5a ô-6u×A\aãL5U95T05Q06ˆ×A\aM5U85T05Q06—×A§cM5UD6¦×A§c4M5US6µ×A§cLM5Ud6Ä×A§cdM5Us6Ó×A€a{M5U@6á×A\aM5U=5T05Q06ð×A€a´M5U46þ×A\aÖM5U=5T05Q06ØA¼a÷M5a ô-ð¿6ØA€aN5U46(ØA\a0N5U=5T05Q06:ØA¼aQN5a ô-ð¿6DØA€ahN5U46RØA\aŠN5U=5T05Q06eØA\a¬N5U{5T05Q06xØA\aÎN5Uz5T05Q06‹ØA\aðN5UŒ5T05Q06šØA³cO5U16¦ØA³cO5U06¹ØA\a@O5U}5T05Q06ÌØA\abO5UŠ5T05Q06ߨA\a„O5U‰5T05Q06òØA\a¦O5UŽ5T05Q06ùØA¿c½O5U06 ÙA\aßO5Uˆ5T05Q06ÙA\aP5U‡5T05Q062ÙA\a#P5U†5T05Q06EÙA\aEP5U…5T05Q06LÙA¿c\P5U06_ÙA\a~P5U„5T05Q06fÙA¿c•P5U06rÙAËc¬P5U06ÙAËcÄP5U ÿ6”ÙA\aæP5U”5T05Q06£ÙAŒaQ5U xB6±ÙA\a'Q5U“5T05Q06ÄÙA\aIQ5U“5T05Q06ÓÙAËc`Q5U16ÝÙA¿cwQ5U16ìÙAËcŽQ5U16öÙA¿c¥Q5U16ÚAËc¼Q5U16ÚAËcÓQ5U16#ÚAËcêQ5U26-ÚA¿cR5U16<ÚAËcR5U26OÚA\a:R5U‚5T05Q06YÚA¿cQR5U16lÚA\asR5U‚5T05Q06ÚA\a•R5U5T05Q06ŽÚA×c¬R5U16šÚA×cÃR5U06»ÚA\aäR5UL5T05Q06ÛÚA\aS5UH5T05Q06ëÚAÄbS5U26ùÚA\a?S5UI5T05Q06ÛA\a`S5UL5T05Q06:ÛA\a‚S5UH5T05Q06JÛAÄb™S5U16XÛA\a»S5UI5T05Q06yÛA\aÜS5UL5T05Q06™ÛA\aþS5UH5T05Q06¦ÛAÄbT5U06´ÛA\a7T5UI5T05Q0@ÓÛAãc6æÛA\afT5Ur5T05Q06òÛASc}T5U06üÛA c•T5Ut6ÜAÿb²T5Uv5T06ÜAScÉT5U06 ÜAÿbæT5Uv5T06,ÜAScýT5U066ÜA cU5Un6BÜAÿb2U5Uv5T06QÜAtaIU5U16_ÜA\akU5U=5T05Q06mÜA\aU5U=5T05Q06yÜAta¤U5U06‡ÜA\aÆU5U=5T05Q06•ÜA\aèU5U=5T05Q06¨ÜA\a V5UD5T05Q06»ÜA\a+V5Us5T05Q06ÎÜA\aMV5Ut5T05Q06áÜA\aoV5U5T05Q06ôÜA\a‘V5U5T05Q06%ÝA\a³V5U’5T05Q068ÝA\aÕV5U‘5T05Q06GÝAãcôV5U (öA@hÝAkc6vÝA\a"W5U>5T05Q0@—ÝAPa6¥ÝA\aPW5U>5T05Q06´ÝAScgW5U36ÂÝA\a‰W5U|5T05Q06ÏÝA¼aªW5a ô-H“@6ÛÝAÿbÇW5Uu5T06êÝAScÞW5U26øÝA\aX5U|5T05Q06ÞA¼a!X5a ô-H“@6ÞAÿb>X5Uu5T06 ÞAScUX5U16-ÞA¼avX5a ô-H“@69ÞAÿb“X5Uu5T06GÞA\aµX5U|5T05Q06ZÞA\a×X5U|5T05Q06dÞAScîX5U36qÞA¼aY5a ô-H“@6}ÞAÿb,Y5Uu5T06ÞA\aMY5U=5T05Q06£ÞA\anY5U<5T05Q06¯ÞA_c…Y5U0@ÐÞAkc6ÞÞA\a³Y5U>5T05Q06ñÞA\aÔY5U=5T05Q06ßAÜbëY5T16(ßA\a Z5U<5T05Q06HßAÝ`8Z5T ˆB5Q  ‰B6WßA[__Z5T~?ã] ¸Ýc6hßAavZ5U:6ßA*a•Z5U ë‰B6¬ßAÝ`ÁZ5T ˆB5Q  ‰B6ÃßA[_ùZ5T $ &1$@µB"” ÿÿ?ã]}6ÔßAa[5U:6àA\a'[5U76àA@bK[5U15T d‰B6àAŒaj[5U (öA61àAé`[5T16DàAé`˜[5T16kàAé`¯[5T16~àAé`Æ[5T16‘àAé`Ý[5T16¤àAé`ô[5T16·àAé` \5T16ÊàAé`"\5T16ÞàA@bF\5U45T È“B@ìàAïc Md\ ÇM z\ Ç^AÿCº ¸\BÁ@º ÎBêAº iBMBº z\AC¢ ]BÒB¢ d\BD¢ z\Bî@¢ i8×C¤ ?8­C¥ iCyyi¦ iDèC‹ °¯Afœ¾]E B‹ d\šEóB‹ d\ ›3À]/$D il›4ú¯AÝ`5T ÆóA6ׯAAaª]5U hˆB5T15Q9F°Aa5U:AC| ð]BµB| t BêA| iBMB| ö]ð]AwAi 9^BµBi t BêAi iBMBi ö]Cyyok t GùB}À°A^œ=_H¶}i¬›HP:}¡Zœ6Þ°A@bŒ^5UsIx±A@b¥^5UóU6™±A4bÄ^5T È‘B6¹±A4bã^5T ’B6Ù±A4b_5T °’B6ù±A4b!_5T @’B4²A4b5T x’BJý@i[_B DÎK¾] °A=œ`:Ë]¼œ:×]Lã]úã]Ÿ6O°AÝ`ù_5Us5T ~ˆB5Q"rˆBxˆBóT $E#$-(5RóT $ &3$`!C"F]°Aa5U)5TóUK†\`°AYœ¾`:“\T:Ÿ\ÆL«\ú«\Ÿ6™°AÝ`‡`5T ˆB5QóU†ˆBóU0.(6§°A[_ª`5Ts?ã]ú«\F¹°Aa5U:MAANÂÂ&NÔÔ5O  dOEEéPpoppopoQæÜæQ‘‡‘N*C*C·OÞ8Þ8§N€=€=lQƼÆOâ2â2‚OxxâO!!ÿO°°ïOìì=OZ2Z2dO|3|3WOCC6OÊ2Ê2`O™3™3^Oùù3O..;Oy2y2’O0303‘OK2K2iOD3D3“Oý1ý1‰OÑ Ñ ãOÉ1É1ˆOz z lO1616ÜOXXmO–5–5£O¸4¸4¢O33fO‹2‹2RO:2:2VOú5ú5TO 2 2UO 3 3kOv v æOÐ5Ð5•O"5"5—O½2½2…O˜4˜4}N‡‡¤OÓ"Ó"Oæ!æ!øOBOggCOVVDO##úO]3]3”O:$:$öO.OÚ4Ú4ƒO;4;4„O²5²5›OÂÂ8OiiìOtt0Oñ*ñ*O`/`/O‘&‘&Ob0b0 O››@Od4d4†% U: ; I$ > &I$ >   I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I'I I: ;  : ;  : ;( : ;I8  I: ;  I: ; ( !4G: ; "4: ; I#4: ; I?$4: ; I%.?: ;'I &: ;I': ;I(4: ;I)4: ;I* +.?: ;' ,.: ;'I@—B-: ;I.4: ;I/4: ;I0 U1‰‚12Š‚‘B31X Y415161RUX Y7‰‚18‰‚19.?: ;'I@—B:4: ;I;4: ;I <.?: ;'@—B=: ;I>4: ;I?‰‚•B1@‰‚•B1A‰‚•B1B!I/C D UE41F.: ;' G.: ;'@—BH I.?: ; 'I@—BJ: ; IK4: ; IL1RUX Y M41N O41P.1@—BQ1 R41 S.?<n: ; nT.?<n: ;U.?<n: ; V.?<n: ;nW.?<n: ;% $ > $ > : ; I&I  I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I'I I: ;  : ;  : ;( : ;I8  I: ;  I: ; ( !4: ; I?"4: ; I#4G: ; $.?: ;'@—B%: ;I&4: ;I'4: ;I(‰‚1)Š‚‘B*‰‚1+: ;I,‰‚•B1-‰‚•B1.‰‚1/ 04: ;I1 U24: ;I3.: ;'I 4: ;I54: ;I6 7 8‰‚•B191X Y:1;.?: ;@—B<: ;I=.?: ;'I@—B>4: ;I?.: ;'I@—B@.?: ;I@—BA.: ;' B.: ; C.: ;I@—BD1RUX YE1RUX YF UG41H41I J41K1X YL.: ; 'I@—BM: ; IN4: ; IO.?: ; '@—BP4: ; IQ : ; R.?: ; 'I S: ; IT.1@—BU.?<n: ;V.?<n: ;W.?<n: ; nX.?<n: ; Y.?<n: ;nZ6[.?<n: ; % $ > $ > : ; I&I  I : ;  : ; I8 : ;I8 I !I/ : ; <4: ;I?<4: ; I?<! : ;  I: ;( ( : ;I7I'I: ; I'I : ; : ; : ;I8  : ;I8  I: ; ! : ;"(# I: ; $ I: ;%( &4: ; I'4G: ; (4: ; I?)!I/*.?: ;'I@—B+: ;I,4: ;I-: ;I.4: ;I/4: ;I04: ;I14: ;I2‰‚13Š‚‘B4‰‚15‰‚16.?: ;'@—B74: ;I 8.?: ;'I 9: ;I:: ;I; <4: ;I= >.: ;' ? @‰‚•B1A‰‚•B1B: ;IC.?: ;' D1RUX YE1F‰‚•B1G.: ;'I H : ;I1RUX YJ UK41L1X YM N UO4: ;I P.: ;' Q.?: ; @—BR1RUX Y S41T41U4: ; IV.?: ; '@—BW: ; IX4: ; IY1X Y Z1[: ; I\.1@—B]41 ^41 _.?<n: ;`.?<n: ; na.?<n: ; b.?<n: ;c.?<n: ;n% $ > : ; I&I$ >   I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I: ; I'II : ;  : ; : ;I8  : ; : ; : ;I8  : ;! : ;I" : ;# : ;I$ : ; I8 % I: ; &(' I: ; ( I: ;)( *4: ; I+4G: ; ,4: ; I-4: ; I?..?: ;'@—B/: ;I04: ;I14: ;I2‰‚13‰‚•B14Š‚‘B5‰‚•B164: ;I74: ;I8‰‚19‰‚1:.?: ;' ;: ;I< U=‰‚•B1>.: ;'I ?: ;I@: ;IA4: ;IB.: ;' C4: ;ID.?: ;'I@—BE1RUX YF1G UH41I41J‰‚K L M N41OŠ‚1‘BP1X YQ R.: ;'@—BS1X YT1RUX YU1V.: ;'I@—BW: ;IX.?: ;'@—BY: ;IZ.?: ; '@—B[: ; I\4: ; I]4: ; I^4: ; I_4: ; I`1RUX Y a1RUX Y b.?: ; 'I c: ; Id.1@—Be1f.1@—Bg.?<n: ;h.?<n: ; i.?<n: ; nj.?<n: ;k.?<n: ;n% $ > : ; I$ >   I&I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I I: ;  : ;  : ; : ;I8  I: ;  I: ;( 4: ; I4G: ;  .?: ;'I !: ;I"4: ;I#4: ;I$.?: ;'@—B%: ;I&4: ;I'4: ;I(1RUX Y)1* U+41,‰‚1-Š‚‘B.‰‚1/‰‚•B10‰‚11: ;I24: ;I3.: ;' 4: ;I5.: ;'I 6.?: ;'@—B74: ;I8 9 :1X Y; U<1X Y= >1?41@.?: ;'@—BA‰‚•B1B‰‚•B1C.?: ;@—BD.: ;'@—BE.?: ;'I@—BF.?: ;'I@—BG.: ;'I@—BH.?: ; ' I: ; IJ: ; IK.?: ; 'I@—BL: ; IM: ; IN4: ; IO4: ; IP4: ; IQ.?: ; '@—BR.: ; ' S4: ; IT1RUX Y U4: ; IV.?: ; 'I W.1@—BX41Y.?<n: ;Z.?<n: ; [.?<n: ; \.?<n: ; n% : ; I$ > $ >   I&I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<! I: ;( ( : ;I7I I: ;  : ;  : ; : ;I8  I: ;  I: ;( 4: ; I4: ; I? .?: ;'@—B!4: ;I"‰‚1#.?: ;'@—B$4: ;I%4: ;I&4: ;I'‰‚1(Š‚‘B)‰‚1*.?: ;@—B+: ;I,: ;I-1X Y.1/ 0411.?: ;' 2: ;I34: ;I4: ;I5‰‚•B16‰‚•B171RUX Y8: ;I9.?: ;'I@—B: ; <.?: ;'I = U>4: ;I?.?: ; '@—B@: ; IA4: ; IB4: ; IC1RUX Y D: ; IE4: ; IF‰‚•B1G.1@—BH1I41J.?<n: ;K.?<n: ;L.?<n: ; nM.?<n: ; % U: ; I$ > &I$ >   I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<!4: ;I4G;4: ;I: ;I!I/ I: ; (( : ;  : ; I : ; I I: ;( ( 7I! I: ; " : ; # : ;$ : ;I8 % I: ;&4: ;I?'4G: ;(.?: ;'@—B)‰‚1*Š‚‘B+‰‚1,.?: ;'I@—B-: ;I.4: ;I/4: ;I0 1 2‰‚13: ;I41X Y516‰‚•B174: ;I8.?: ;' 9: ;I:.?: ;'I ;: ;I<1RUX Y=1RUX Y>.: ;'I ?: ;I@.?: ;'I@—BA.: ;'‡@—BB4: ;IC.: ;' D1X YE: ;IF.: ;'@—BG‰‚•B1H‰‚•B1I1X YJ.: ;' K.: ;'I L.: ;'I@—BM UN O : ;P : ;Q UR41S.1@—BT U41V.?<n: ;W.?<n: ; nX.?<n: ; Y.?<n: ;Z.?<n: ;n% $ > : ; I$ >   I&I : ;  : ; I8 : ;I8 : ; I !I/ <4: ;I?<4: ; I?<!& I: ;( ( : ;I7I'5I I: ;  : ;  : ; : ;I8  I: ;  I: ; ( !'I"I#'$4: ; I?%4G: ; & : ;' : ;I( : ;I)!I/*4: ;I+4G: ;,4: ;I?-4G;..?: ;'I@—B/4: ;I04: ;I1 : ;2 : ;3 U4‰‚15Š‚‘B6‰‚17 84: ;I91X Y:1;1< =41>41?Š‚1‘B@‰‚1A.: ;' B: ;IC4: ;ID.: ;'@—BE: ;IF‰‚•B1G.?: ; '@—BH: ; II‰‚•B1J.?: ;'I K.1@—BL1M.?<nN.?<n: ; O.?<n: ;P.?<n: ;Q.?<n: ; nT Ñû /usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/usr/include/sys/usr/include/X11main.cstddef.htypes.hstdio.hlibio.hsys_errlist.htime.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hctype.hyabasic.hstring.herrno.hstdlib.hwait.h `@øOç/Ÿ! 2Ÿ£ <W¬¬`t§¬Ê[NË©?W/utg¡4óW=fÁæ÷JiåKç Zׯƒh Xž†GtfŸŸ 0 ¾X\0X»‚]ÖsZ Jsh§sZsºúsZº¤‘žƒLgwt!CÖ®[ïÙšútt£cwj;gÇgyX•Ys=­IhvK[KYIi%tzJ‚Kr>,9‚YK„ölJ!Ò!Ò!Ò!Ò!Ò!Ò‘ufɤYtž!%f!¹Ö (Y«=ÇJµt!È /‘0¼½¢½¾ ºU.ÇÖJ4/“G†ž ÖÛƒ;l³–Ý ‚CÙ.ÉÁŸ#tÉ=;WT,òK=;W`óY;W žK=;WTžJ, K=;W»=;WjžgY;Wèg= žwXYYÉŸ=‘Ÿ„¶.„ɪŸ-Y2.æXš.?ã.™Xôur.$iX†Xü~.„.ù~X¼\€Xƒ.ý.ÿ~X¼‘\ùX‹.õ.†X„‘Ÿ XÓqtOSÍY˜ ¬uX ¢ƒKŠ‘u«=,”ƒY»nÖrXŽXñptÑ $KW/euÎÚK‘CYz.®XÑ~t¼mX»XÇ~.¹.Ä~X¼r<å†}iGMY]\(t?„:>­[‡UPYY·ãtò1Ëui9=r>K‘.Ÿ†=ƒuƒƒ7k‘%YusYL‹ tŸ;=ûtfs„ƒƒƒ~O†rKwTÖ tìóäM’Iü äø{ytCä‘è&¼äŸ;=%frƒuYN:vƒ„:>/äY@9…ntƒ-0;ÉŠ=Ÿ¹L;ƒ +LVv£"•u ‘TZS]¶'ÉY2åY?Yxž{Y±NuQyJYYK=I=O/I–K/u‘I^+#=s=Û£ØKYLWju­-0=@S3ÙtlJXlfy‚ J/s=Y­’Wuƒ;>kYv;eLYvI=e² žpf'sKYNuu¶ ò4zžPƒ­ƒWu‘¼»ƒI]uy ÖytƒˆXYu-äXŸ. X†8Ù=›‘ƒ‘+–Q-Mƒ^±_hYK°g‘;uÉ»uN~Y!°gK;YæÈuFº«««±zÖ«a ¢Xà}. .Ý}X¼XŸ-YXŸ-Y XŸ-YX埠Ÿ›­­;=tå»ui sŸ-žó-J=;KYH†÷JpXtŸ‚i <it°Ÿ;=ƒ=Y;= ‚YuÈ <ueY/­! ‚Wä)<Í P6@çÑ ä¯rXÑ JY¸rXÈ tY¸ru7<›wÖº< ŸÞ»ÎX²}<ÎfgJr¬_LxYYY¸ÀÉÇ J…[qu §JÊ~X¶Ö•¬Hž»=;Ég“‘/;1f’G#:<Ffàvf ž…¿/ö£{žË=Èå žŸs;véX^ååæçç蟟ŸŸ¡ÞXŸ¦yƒØ‚¦yXw×tY±ypñyY0ŸWu½Ygux[I=ÅX¿yXÜŸŸ Í»âju ©6«…­”¬í~X­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­KÉ­»ñz.Ëqu @VJ*JÑ<»ê~.»=”Y>/J‘˜‘˜»=•a"=•mX-#×xò/â|âž­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ów¬ ZÖ-Ÿ‘ç‘[ר óuIg0X=•b‚-Ì|ä=º0\ÈØsŸ–fs tvXuf‘Ëÿvf<ŸŸ ¡¤¤äf纙~tuÜž žgusYê~ä=•ó|X   (ŸZ¡Ô>;s?‹XÌp¬ÉuËK;Zƒ»ãyò <iX<[qu ä<v. ži„s ñ«žqäÍK ‘»ätsŸôt.sŸk_—»=”òI‚{È=”ôX???Ï}YÖfYmfYºfY_fYhuyfuœfubuñ~fY fYkYbYxfubYaYfY[f‘ fYaYVfYÔfYkYhYžfYNfYyfYhY€fYwfY fYÜfYbYPfY fYfYSf‘kYbY%fYbYbYzfYbYvfYvfYZfYfYË~fYaYWfYbYéfY~fYfujféYÓf/kåö}äYCfY°fYbuð}f Y fYbY fYhYyfYfYsg]òYafYhYhŸvfY‚fYbY‹fYIfYvfYhYhY§fYbYkY½~fYyfY fYWfYfYbYófY‹xf    Ÿ     ¡  ¦    w§}X»¨º‘=”ÝX9(šwºuˆXƒ=\v‚å^å[ÉÇLY’ÇŸö¿£WŸD'Ÿæ;Yn=;u2°×ºòåxXåÄXÊ[sü Xƒst¼ŸŸnX­[uXåTI>üI>¢å#XæuXæXædX"Èæm Ûû /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11function.cctype.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstdlib.hselect.hstring.hmathcalls.h  @à.ažX?”‚!X_J!<ctR ‚x\ENFŸRd .\¬ƒÜ^KæL=Iär X¶ÖzJ¤¢zÖDY"-g;1×>:Ü7ÿM›-ã_YMi.ƒeÛŸ B܃-;L#9ç±x‚Dxž0IgYYYƒOofKqJJŠ~ #ôHØYƒÿät\Y ¬¼ÉƒWËMp¬Ÿ<zXŸvÖ .&ŸW=Y«KYÎvºJofJklºÖYw‚„:ZåWK0G?EjÈ#‚O/WKÇiŸôVʇç K­YI0HiU=”tȃ  t–„ZIgŸkfUäižY­YgK¿#+1»=¿‰KŸIKi¡ŸK„X[æ!“Kõx..tDžõ.tƒ-/®Kç)i.ƒ-/=ËK1x.p žƒ%Õ2FÈ#+1»=¨º£çdv‘e=d>KS¬˜â.\9ç0*u„Y„YYI1[Yf_äuY„Y Y’Y„Å‚ <u< f‚fJfÂPLKKv<­KHy7J]í.°J}^‚åIvg=H$&ÇZÇZÇÌtèæXºÈ[+=vž»IMgÕ»L€MågVLWK×MIŸƒ–gâ òuqJƒX„9iUkÑ<oXòQ‘MŸLIKKü?G4ž­ö¶»É§.eg1¬ôI„óy.X¼:LfO.fž­žLädž?9ƒ0VZ'XYtÂy. =[SD[\tJËËË‘äZhN[䆾.Kƒu,>bQ…%ó#T.Luø‘“îX^bjZì}äHguæZLgôÜXK¾J†uÖû º-Ë/°²wÈiÅILƒ;=ä=[fKŽM†“ê~žKƒg"ŽX*>X.MXXÊŸ«=¼7Xi?®zX®zX®aXIgÊxXhÝXLbXŸe=!KkKhXK"Ì|<´gy.>jX*Ö©×i[ò­æˆX¹fÇJ…uŸZåå±ÖØxXËJEX­:žƒ;=~ºð‚zžŸ­;//Bžs=™uƒ=sÁJ¿<Átg1‚ž{äzXzXzXzXzX¿X=zäÑKôxXKôlX­=Z»XŸW=YØs=;YõtXŸW=YØ‹~XʨX-ŸËY/iÖìf6xtn§w ØXˆJÂu¿ È-ËKæ’’’ƒæy ×JøuX‰ º-ËLLLLL*LLLM±å¾w.ö þ|Ö…Xå”XY‹t øz䧬åÛMOtLLLLLLLô˜wJå”XèzJ¹ÖMÔxÈ‘ø~X)t.Ïò´ ÖwéÈ¢w ¡t‘ž><L&×u;>Igmº:B<þÆHq<z $ x<B Ÿþþµ~J JŸIY&L«Y^•LŸxF tGG 1‡: =W8¢=‡Á¡x¬Dõ×îvÖ  “ º -Ë•#Áä@f K½3tMJ3<M‚ sòÀXAJ?<A‚oºä2JOJ1XO‚YÔvJ­ È=JKtkJ<k‚YYtmºŸ KW1Y½·½Xƺ¼º+Xm.žYoÖŸ`ŸTŸTŸ` žurZZI;\×/òkiyX5ôæÌÍYŠxJDx.Þhò òK tE])ò¤E£)iØd‹º#+1»=¿Ktæççç¢Fg¬æçççžnJf19?qMY;=‘•k;K.…fº’ JK/YÉH>H/\KkjºŸZLtoJXo. #JiYW=YsK­LuKuÛ1G?UMƒ»M;uYsL¿ 1/;»=•OK=MG?G/YmuW.oJÖoJCYI=3gZƒyÖg‡E±KéG1 fuXf¤lä3S6 žÅ[n¬X²NåWgŸyÈYYeZkºÐG1 fuXf¤lä3S6 žÅ[n¬X²%SOYWK‘o<±UM+i+ÖYgeZwtX Jt. ft.JqXJq.fqt0zXPz.lzf ‚wX Jw. fwf‚2TNY¯ÏŸ_ë¡ZegYežY[Yst[ Ö %óuz¬³Y=Zeg\wžÁ"3OSнw. X²2TNŸ½\*Ÿwq^YKe’t¬öE Ùû /usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/usr/include/sys/usr/include/X11io.cstddef.htypes.hstdio.hlibio.hsys_errlist.htime.htime.hselect.hmath.htime.hsignal.hX.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hctype.hyabasic.hstring.herrno.hstring2.h à´@‰  J $ ‚»¼ŸuÖ» ºŸlÖ=Óv¬1+1qP9YW=Z:MÞ.4ztP¢…€„¢­Zd>O×zzfêuJ žu.Êòžƒ„܈yt_z<^g¾U;/M+?Y1YYº$¬ô<iXv:„,>¬k<š† ä"Ö»”8\œ‚f°ž(׃„‚vfJ%ªZ!ôI‡/Xž=T=Ð=sÈ=È=yÈ=Ð=Ê=Ê=Ê=Ê=È>eK™‚#+1»=“ºMŸ¯r¼Hßò#+1u=Ìc#¯ƒÖ=W.xÖY0sYÁ¬¥&ÿã„H?i£]J#.jžNXÍdvtiòIÇMbKwLJŸ>$u=LÉ8f /“÷0Œå±ƒwÖ f=Ë, V>YW=[sujJYyò_Z žgjžMX3.YW=[sug=mòŸZIK< ×ð>ŸËJ÷v"Ö÷=Ÿ»tŸytMòt†wL…Í1+…‡emIÕžY„“H>œ“Ë£)‡gä\8Kƒh.ÝAmJK ä ­–ÌHÉŸHv—<28@íäOòÉ;ufK.KŸw\ŸžYŸq‚2Ÿ3XWæŸ_X3L>ž4zXPŸ ËÛ ‚Ê»­ržÂrº/tmJXm.¬£“ÊåWgŸYƒd?Y;Ke…ʬ¬¬u Xƒ Ëb‚t&ågòåWÙZžmJ<mfjäK žz¬vŸ<<+1Bw.1+OdP°ˆ;-Z/yvÖ× Ö·wZ#å‘K/\Ö]SOŸÌ½ZŸrg‘3hI/-ŸzòLΞ2TNŸ‚ËZ,=g3 ‚mºƒgÐÉ]ƒ„dÃÉv<È.k:+M»==é ÈuMsžƒfšÈttƒZV=g HXóÖ¹‡Yg€?Ÿ¯W<,==?ÈG èY tzå`ääYðž-M=W1[=W1=W1=W1=W;.º.ÇX¿u¬OoO\ ºt‚ò‚ X€wÖ=ןu×ååÝòJ ËYZ:Ôvº¯ ò­wF@%W Ö%KWj‹ž-M[=W1=W1=W1=W1=W&.L.5X± JsX žŸWgŸWY 'YqJf=pÈÈç|½sXËf]<YäÉØ:LrVü6YÚ! º`ämÈ0ÕYYYÊ:Lr\ vVhZ\.Éä»ä£¬ö-g1“[“[[[]gžòjsžzòsòtzòzò˜ò.o.‚•Ü+e=æòë!KsÊ:LÆ>œgXÖ”ž<ó¿É,\‚$J\Xñ*XÊÊdtg;l Üû /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11graphic.cctype.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hX.hXlib.hXutil.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstring.hstdlib.herrno.hwait.h 0Ü@ÿ  wÈ <vªvrv8vHØ JÞf¿è&¬Y1-Éó]¬qK„¬uJ JˆŸÊ®K„lºŸÊ zòK„]<$F°‘K;KWgYƒƒ÷xº ftt Yº=WÌwXZƒuY;u f>¹KrhWu±ÚžY¡Ö‘Þ•Èv;ugŸ-– ž Ju. ¬uX J%MKWqY‘‡ìof$*2»=¿äønJ.YÙå-gkå-glÚXëºû~òå".wïYvoƒ„ZkztzgåÛXztzY;umxÒ=[ ?Ÿ-uc?v<Ÿ-uc?v<Ÿ-u’ƒ¯+oy–ʸn&ø+&»¼»moªg¾××¼vru×[9w/…¼·{J[ww1ÿJ'Ig…zt '9wgåÜX»†»†)ºvwXZ:vglJZ: ×ˆ|¬1/Y-gJXŸ¼äªzºåjX»ãuYô‘gxÕ*u*±ä****l<"†|XåyXå¯ 'I1# äMÊœ>*xš@ÀOSOŸWgYWY;YY=e=‡/¹j‘&»»YIŸƒIKI]t‘&»uWtò(ä•$*2»=u] fø=•y.Chò÷€¢€Yƒeh‚l‚f„Yƒœ†Éç‘87»uWwHh¸geLdyX¤ÖÜä¼åWgŸ;ggØgœ„œƒôiXŸÓž\º87»!h.åWg÷,ƒƒv.=?¬ fÚ/åWKŸWKŸeK䂟=-v; Ö/gt×#[%M‚M0Ež;äVóò ä/Yóó((ŸÄžk>V/W>ŸWgŸWgYWYWgYÛƒˆYP»ó=YI»ÕçºP‚ƒYl_ÁäEYP»ó=väY-_ f>V/W>ŸWgŸWgŸWgŸWgŸWgYWY;YYååxxxfYwUYxTYy)Z®Ykƒˆ((»ó=[G¯·>HMchdge#ºSȃ1n?<äJ14»ó=x¬(Î8 ØtžJ ¬ « J ÕtX ¬ È K.ASAžwJ .Îtžƒ òºËoÖ?.‘ øº X@ŸWKŸWgYWYWgY»Úät„H>Yô…vô“®GB»zÉzX <wJu­Ÿ; òžI%Õ‘W(LòeŸ> w»IYË[%j<»Z.ôKØ‘4wX ¼t<<b<.[3æå`X f²fzÖ J-/»×= tsJwò÷’‡tXþ ºH„t<ü X„t<ý ,ZE£)}ÎtnÚ>V/W>ŸWgŸWgŸWgYWYWgYå#IgØ#IgÙƒˆ: P»= Hv¸geLd4º¼ž„I'¡eóeŸIÉI'»×Sòåä´I'¡eóeŸIÉI »uE:P»!=tJpXÈYöí JÖ=;Ks…f=e)ç[åWKŸKYØËU1žÉ=WuÜÎä±fX‚£Ög‰† ¹X‘À~twCÈ»»$9[ŠÂxJDyt Jt< .tté=òÉg”tfóƒå­‚å wòåÊX3»9.óLš $ Öå. Juf º†åå½-K„½-K ¬=hÆ9…9iå½-;v;;ç9[y)JWt)fóŸYVX+‚UžóZdZH¾Áyf!uðtŽyt!s=ƒsg,==;K;g-=ðÈyžð,tžuku—uŒuyu’uuuŒu2uIu uŒusuŒuÊumuŒuuŒuŒusuŒuŒuŒuŒuŒuŒuŒuŒuŒuŒu2u•u¦u–uou탒3ofxJ`x.rº <ut„u™·û /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11symbol.cctype.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstring.hmathcalls.h °!A²t?¡9==ƒYQ7ƒƒ…ää;=) $L$UJ/Zv;Zv?"É>8„BhÉ®+Zv&0@Ц~tO ¼Hµ~MŸ»NKƒuuz‚ òoˆ-=º"×AJ?<BXK}‚{gÌ×Y‘J‘K­YƒužK¢”K¢s[z’n<gKÂuÿfNK„ƒH;]/»I— Ö•;u.fWäIY=Èh‚ZKXôÌqM0.btË c. ;>dXÏf2)‚®r==gT¬8<­®r==g( %sK JOSOS•YuõsDyž=  40ltÉÊ$>‘n/yÈ% ¬eJH œžò”ƒƒKKKx¬òM ò“YW=•vaYqžÊƒƒguLžÁ=KIvž[’.dXNy»Éyº X žØiâ tY;=2gØdfägÈž“Y;=YeLÍ$Ÿe=æ;uYYgKéK/I^$Ÿe=æuYYgK£K­IÎ$Ÿe=åuYgKyê#JiYW=YeKK¿ @YƒeZO”YW=2’‘gMKsZtžx (MUMŸ’‘»¡Ky¬ 0#+1É=±BzX&zJB?ƒÖlJzLNzºBZì|JsK˜.h ‚zºB t#+1Éu;L÷@T @ÖhJx Ô>Y;=1XÇ|tsKÇ.tXŸWYäœ{Xä<‘Kuæš{XsY/nzJ ä#+1É=±’ƒ=I/‘Í#+1»=¿p`=W0=W0=W5=W0=W0=W0=W30uIYP.YW=†^/%‚Utgƒz.g×2º>:º$qïò\TNŸWgóƒ%ºž¢°geZmº•rÖŸhŸhŸ f twJ žw.w‚Éò꓃“=;K1g· dMyº (“ƒ“ƒeL¶ (”“‘’gzº ä19?qMY;=‘•”YI=YeL¿NYZegYø 1g;Ÿ=u÷D‚z<ÿäÁ¬×Y×ÖÁt¿tÁX¿žXºmyXÙ‚°Y$¨²Hix<¤}X… ¬KW¢‘’Ÿ%$\ òtXÉ!;Y4YƒVò,L#ä $Ÿ5žPtÈy‚ Åò × I > K €Úó}XÈ»»:]ô:L¡.ós^zzžYu==l’t‚5º®K0€¸Þuýg‡zºkXƒ­;-hfxyž Ÿ…‘uºó£ž"È*¬uÈ :L¯²ÊäΔÊ ^Z;g1Úq‚Y0 ttJ Xtf¤À_¬zóX–‹1#91É=uA  ¬Ÿ»´w. ‚0ŸZHBF°Ç¨‚6 J„À‰Ùä®ÖW=ŸPwJ ‚Iw. fŸ¿sKbt&)tWJ)XWžÅ‚‹tõ‚LLY$š²Hix<‰Xw)ºÇ(¤äk+,>"ò¢F\ ‚qX.¿Öó²ÐuƒZvX=!gzXW=ŸzXW=YeZX=‘eLbXIävºæ/NTj‘K=]u-K/L <vX/–Hix< XYv‚/B›û /usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/usr/include/sys/usr/include/X11flow.cstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hstring.h @EA)iGMŸ==%j==L ‚.‘­®\0vHZ,„f‚Y;=2g Joäg ä¤ J‘O JgÈŸ/Z[¾PY[°€nºòP€lXf K=K:_H Ju‘•19?qMZ:>‘” =ŸsKŸ;1‡øK¬#e’-‘uÛ ÓK"‘•¡vrLFx–L:÷;u/Ÿ;=.>ˆAo¬]X]pJYJ XóXPt‚óXK…~䇟äqäÊu[!ÉÒæ:>ÈX¸~‚ÈJ1®ÄÉ~ò ?×\rIhL.pž t”xX]sb^ztB/ÀJô…„¯xJwƒp‰tÎ/È jמ‘u;Ÿ»•9vKhtmJ<mfoÖ$¬QJYuIK/Y°g uŒu—È[/:vHZdzXÔ%NTxŸ/ twJ Xw.\»;=ž~XâXž~JY$t[‚KŸ;$.1®¼tÀ~ÈÅtKgus­3œ HéE ÈNæu;­/ƒÕƒ€Þ%u"l‡I[é!?»\­»Ÿ#s=s.ƒXzK ž#9wYKØr==×ó Jwf•@z<;,QLŸ“‘ stddef.htypes.hstdio.hlibio.hsys_errlist.htime.htypes.hstdint.hbison.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hctype.hyabasic.hstring2.hstring.hstdlib.herrno.h `5@íØwEMG“’.Z¬“‘up#w. tŸöñ J=/  @ZAñiº<tžK°‚Ô}‚8x2»si˜tÍ}ä9w3­Ã¬~È CYº1[óu¯ K¼fÙt§|XÙ.«|X[kEÒJ´|X;K1v¯p‚½ rvX4)‚Y<'.YJ'.uK;×uVy¬Y×¹K[9;@žäN[f…ëy¬=uøù~­Éòøøøùù òööõ&òi!YuUÁ<Gä9¬JXV¬1¬P.­­Ÿ¡®¥­ ¬tö öø[qM”g&ñ=ãåØŸx=ôo 0“: ä}¡.àxÉ'uxwº âvÉ׃D Õ}<­òÒ¬nXvÈXJƒ/¬X¬!X„] Ö!uå;=hzXAS º=z-=×å;=0rX <sXfu[º&ÈUž:Yjå.s.   ¹L”!‘×zÖ-ð~#±»wOÙ JOÙË›®>:d@l׳usƒ!;×k– ÈWv¿º¢TYÀžº  ä¢TYuY6žd¬å;ugKX¬XCJ=XPt¢TY/ž\¬Y Xt\p%u[uºo Û%9-Ÿ0Ÿl6[;rM©?ÍŸhƒ/=H¾~=?¢!j>åX X“ òg‚JIKcJf=b‚–i;ŸJ-”fy‚¥k» ÙÙò¿ JIL;svu:v½t3+4Y×¹YW¢‚Ðpž;ug®žºy'Ñäò|äuWX)uWX,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,º'™uW,q[,uWï{,‘É“»º¬Y>Y žXÖýž†xòJº'w[.査xžº'7‘ÉöX¤zÖBzJM“fðtTx”ÊXXz9½ÀwžÈ¬º'Ø<ʃÒX>­½ žv ‚£o<zi¼…yX‘…䜞w[ŸÞX• º«gzsg&ã<zXãJžzXYóYžvžˆxtº'ž÷P‰y䊞èw6º'òò‹º'ÖzPº'ÖzPº'Ö P™Ö™å%q[,uW,q[,uW,uW,uW,uW,uW,uW,º'zžº'vž.æŸgxž.åz[º'>\ÖvP.å¬7‘óÁ‚uW,uW,uW,uW,uWü,uW,uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,uW,uW,uW,q[,uW,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW¼,.æ»yž.å}uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,uW,uW,uWí,f#•äå‘åÕ %wX .eX.æ»už.滞‘suY»sžØ­fžº'wJº'‹º'—º'SP.çgWõ{ÈuW,uW,uW,q[,uW,q[,uW,uW\,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,ut X,yt_,q[,uWü,uW,q[,uW,yt_,q[,uW,uW,uW,uW,yt_,q[,uW,yt_,q[,uW,yt_,q[,uW,uW,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,uW,uW,uW,uW,uW,uW,q[,uW,uW,uW,etX,q[,uW,q[,uW,uW,uW,uW,uWÂF.å™{"uW,uW,uW,„ ¨û /usr/include/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include/usr/include/bits/usr/include/sys/usr/include/X11bison.cstdlib.hstddef.htypes.hstdio.hlibio.hsys_errlist.htime.hmath.htime.hsignal.hXlib.hIntrinsic.hCore.hComposite.hConstraint.hObject.hRectObj.hunistd.hgetopt.hcurses.hyabasic.hmalloc.h °¯A‹ƒK’=ÓMU]uIY-iäŽ">öƒ¸‚»Ã%±¾ktž¹>YŸØØØØô¼qJºò <0wÈæêàæÐä1ÓXq.Î.´.Ÿ žkXC}Óhä»–ê‰ÈŸÛKt".‘  ävt <“ciƒšòÚ¦xJ`!‚±mºZSMZ?È ¬ÿZ:>h=IƒWKeYZŸŠcYZ…#‚›"òõ)ºy˜ : l<’K ä\Ê€\eYqÈ‘Xa±)OamfvX3ff¾»¤e=¢WZHÆ_Ÿ‰ü~JÛ‚ô~‚G¡†Vv÷mÖ×[+iisŸW=AT@Ò|ä[ï…w<LWxy•äù.ÖJ‚ò0:1r:>Á#íktý0ƒ-K .ÙÝp¢M9MÈX¤ngf<í ä>xX¼xX¼xX xX xX xX xXvxX xX#xXØxXØxXØxXØxX xX xX xX xX>xX>xX xX>xX>xX xX>xX>xX xX>xX>xX xX xX xX xX xX xX xXÖ xX xX xX xX xX xX xX xXvxX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xX xXvxXvxX xX xX xX xX xX xXØxX xX xX xX xX xX’xXôxXxXxXxXxX®xXØxXØxX xX xX xX xX xX xX xXæxX0xXæxX0xXØxX’xX&xX xX xX xX xXØxXØxXØxXØxX xX xX xX xX xX xX xX xX xX xX xX xX xX xXhxXhxX xX xX xX  X0xX’xX=xX¡‚Ù{Ö7rX6JC'×Z X9kX7xX/xXz"7xX‚fØxXØxX*xXºz¬ºz¬/xX0vX,y. xXÊxXvxXz##xXækX×YבZ‘ב‘××ZiX/׿vX(xX"xX"xX9xX<xX6xX6xXvxX xX0xX0xXLxXvxX xX xX xX xX<xX<xXvxXz%hxXvvXÖ×1ZvX5tžvxXv XØlXvxXvxXvxXvxXvxXvxXxX¼ÍX¼xXæxX¼îZXŠ%ò®xX¼xX)xX xX xX xX xX xX®xX’xX®xX’xX"xX$xX"xX$xX(xX*xX(xX*xXØxXZxX0xXZxX’xXvxXÖzòZxXZ˜X1xX1xX'xX#xX#xX#xX¼¦ZXÒ%ò„xX&xX„xX0xX>xX¼xX®xX¼xX*ÛpX xXÖJ„xXÖJ„rXò¤ònthxX( ¬hlX±jÖÏòJòz‚&òzØxXæxXºz¬³Èãr¬ xX xX xXØxXÈzžôrXvxX’ X’lXØxXØxX"xX"xX xX xX xXvxX xX xX xX xX’xX xX xX xX xX xXØxX’xXØxXhxXØxX xX xX xX wXŸØwXvxX%xX%xXØxXØxXØxX xXvxXØxXØxXØxXLxXØxXØxXØxXLxXLxXvxX xXØxXvxXØxX>xX>xX xX xX>xX xXvxXØxXØxX xXvxXÖLxXÖLqXgIƒusKuÉv.ÖJ„žXØ.X¼xX0xX¼xX&xX#xXØxXØxXØÀXØxXØxX xX XØxXØ X ¡XòJZrXòJZxX1xX1xX1xX1pXØxXØxXv¥XòJZïoXØ\ÖJÊrXØä~‚ö=ueqºv‚)Ah0vXölȽXªo¬šäñ Èz.ˆq.zžŠžãp.£.÷o.V.z.ü.¦<cLABELcSWITCH_COMPARE_unused2syFREEkEND_filenolibrary_pathmessage__s1_lencARDIMFINISHEDtext_aligncSTRLEtokenaltkHOMEcSTRLTstext_Boolyinc_regbottomkRIGHTreset_shell_mode_delaycSTRINGFUNCTION_OR_ARRAYsyNUMBERstripcREADDATA_shortbufcGBACKCOLOUR2_ISpunctexplanationcurrent_functioncANDSHORTcSTRNEINITIALIZEDcPOP__environ_pad_ylastrefconcatcDIM_LIB_VERSION_TYPEcTESTEOF_flagscMOVEcPUSHDBL__off_tGNU C11 6.3.1 20161221 (Red Hat 6.3.1-1) -mtune=generic -march=x86-64 -g -O2strtokfboundcBEGIN_SWITCH_MARKykeycRETURN_FROM_CALLnegate_IO_FILE_pluslast_inkeycDECIDEsignal_lockclearwincGOSUBcDBLDIV__builtin_fputccSPLIT2__builtin_fputs__builtin_strncpystROOTreorder_stack_before_callcLINK_SUBRforcheckstrrchrlastlineis_boundmissing_endif_lineHATCHED__builtin_strncatyabkeyscTOKENcFORCHECKfirstrefgettimeofdaycPOPSTRSYMmain_file_namekSCRNUPkSCRNDOWNcurrlibdimensioncCIRCLEput_and_count/home/ihm/yabasic/unix/lang_IO_write_endparse_argumentsaddress_idmycontinuecGCOLOUR2cGOTOcSPLITALTcTOKENALT__s2__tznamewinpid_pad_rightfopenINFOcREADpushdblsymstd_diagcONESTRINGfgetccSPLITALT2fgetsXtAddresscARRAYLINKcreate_executecCHECKSEEKoptarg_LIB_VERSIONlastcmdprint_docuamSEARCH_PREpreviousTABSIZEcSTARTFORcPOP_MULTIsys_errlistsrmSUBRgeometrycFORINCREMENTamADD_LOCALmax_explanation_lengthmy_strerroroptoptcRECTmybellcPOKEFILEyydebugcirclestartfortermpidkINSsignal_handlercreate_docu_arrayoptions_donefunction_or_arraycloseprintercBREAK_HEREaddress_mode_ISblankunsigned charcPUSHSTRPTRcCHKPROMPTnamelenfrom_IO_lock_tlogical_shortcutxoffcCHECK_RETURN_VALUEfloatroomttytypecPUSHSYMLISTkDOWNstSTRINGcDOTyabargc_yoffsetstrncmpyabargvdumpfilenamemissing_endif_ISalphacPRINT__builtin_stpcpyduplicateamSEARCHcPUTBITlibfile_chain_lengthswapslenstatestv_usecnext_in_listmystreammyseek_ISprint_ISalnum__builtin_putspushstrptrinfolevel_text_IO_write_ptrcQGOSUB_pad_bottomlibfile_stack_ISspaceremlen__suseconds_tnextrefstackentries__s2_lencPUSHARRAYREFaddmodesobjectClassresetskiponcedebug_countdump_commandscWAITsrmGLOBALopen_maincPOKEcQRESTOREexecution_end_idlokFATALcDATA_ISxdigitcPUTCHARcompilation_startend_itcoreWidgetClassskippercBINDquery_arraydatapointercompositeWidgetClassendreasonadd_switch_stateexitcodestLABEL_begx_begysprintf_IO_save_base_attrscurinizedcTRIANGLEcPUSHFREEamADD_GLOBAL_XDisplaycPOPSTREAMerror_with_line_regtopcargccompilecEND_FUNCTIONcDUPLICATEcargvchtypecMAKESTATICstSWITCH_STRINGcSWAP__pad2cFUNCTIONpokefilesyARRAYdocucountwinheight_pad_xcCLEARSCRinputfile_clear_win_st_notimeoutsigngam_IScntrlcDOCUsrmLABELinter_path_ISuppercMAKELOCALcCLOSEWINcCOLOURget_symXtProcedureArgstFREEfprintfkF10end_reasonskF12kF13kF14kF15kF16kF17kF18kF19fcloseexplicitwidgetClasspopstrsymcFUNCTION_OR_ARRAYkF20interpreter_pathkF22erEOFcSPLITbackpidlibfile_nameacs_map__timezonellencolorConvertArgskCLEAR__sighandler_tdisplaynameCOLSlabelcountlargmousebyoffcSKIPPERmousexmouseysignal_arrivedcDBLMULstSTRINGARRAYREFnew_filecRESETSKIPONCEpop_streamcCHANGESTRINGfindnopcompilation_end_IO_2_1_stderr_stderrpush_sbufdecide_IO_save_end_idcokcSEEK2XtImmediatejumpsrandcPOPSYMLISTstdout__time_t_scrollcOPENWINcmd_typesizetypewinoriginto_bindmy_strdupinitialize_switch_id_stack__builtin_strchrshort unsigned inthold_docucurrentadd_command_with_switch_statescreenConvertArgpargcTEXT1DEBUGxinccPUSHDBLSYMDUMP__off64_tpdatstmREADkBACKSPACE_maxx_maxy_IO_read_base_parentdump_subchkpromptLINESswitch_comparecEXCEPTION_IO_buf_endpopsymlisttrianglemy_malloc_curx_curykENTERcSKIPONCEopterrcANDseekbackkLASTKEYkDELprogname_IO_write_basenote_countcNEXT_CASE_HERE_ISOC_tz_dsttimecreate_arraycCLEARREFSstackheadopen_stringcopyXtConvertArgRecstdscr_SVID_libfile_chain_sync_immedcPUSHSTRSYMcFINDNOPcGBACKCOLOUR__builtin_strcmp_IO_marker_pad_topstackroottimevalclosewinmybindcCOUNT_PARAMSldatstmPRINTlastcBELLflibXtWidgetBaseOffset_IO_2_1_stdout_mymovecUSER_FUNCTIONcSEEKcEXECUTE2long doublecheckopenkF11cCONTINUEinfolevelcRESTOREsearch_labelCOMPILING__builtin_strlenendwinstNUMBERARRAYREF__builtin_strcpycLAST_COMMANDcNEGATEfontheight__errno_locationpushstrsymcheck_compatmessagelinecBEGIN_LOOP_MARKstSWITCH_NUMBERWARNINGstdin_use_keypadkF21kF24__builtin_fwrite_IO_buf_basemyreturnstRET_ADDR_CALLRUNNING_pad_lefterERRORfprog_IO_read_endcCOMPILEfirstdatanewscrstmCLOSED_IO_FILEamSEARCH_VERY_LOCALcDBLADDcreate_docucurscrcMOVEORIGINcERROR_IO_2_1_stdin_fseekreset_prog_modestreams_ISgraphchange_colourcCALLcQCALLread_controlsfullnamekTAB__pad1__pad3__pad4__pad5backgrounderREQUEST_markers_XOPEN_cRETURN_FROM_GOSUBstSTRING_OR_NUMBERprint_to_filesySTRINGwinopenedinitializefyab__isoc99_fscanfcGLOBstrcatmoveoriginstSTRING_OR_NUMBER_ARRAYREFforincrementfind_interpreter__daylighterrorlevelcORSHORTattr_tcPOPDBLSYM_sys_siglistshortnameXtBaseOffsetlibrary_default_ISlowercTEXT2cTEXT3cTOKEN2_WidgetClassRecCOLORSnewcurrkillcDOARRAYcPUSHSTRinclude_stack_ptrclearscreennext_casecEND_LOOP_MARKcEND_SWITCH_MARKcEXECUTEXtPointerproglendo_errortv_secstRET_ADDRlong long unsigned int_cur_columncCONTINUE_HEREmousemodXtAddressModecARSIZEnextassoccGCOLOURwinwidth_leaveokstANYmy_strndupseveritystmWRITEputbitcOPENstackentrycNOPcNOTerrorcodesrmLINKpush_stream_IO_backup_base_IO_read_ptrcPUSHSTREAMsymnameerrorstringdotifykLEFTgetenvcEXITcDBLPOWcLINEcBREAK_MULTIstGOTO_old_offsetcTOKENALT2cCHECKOPENfi_pendingkERRoptindcCLEARWINaddfunstream_modeslong long intmywaitcCLOSEPRN_flags2_IEEE_cSTREQ__ctype_b_loc_XdebugNOTEexitkESCdocuheadkF23_parx_parycCONCATXtResourceQuarkoptionsearch_modesadd_commandclearrefsrun_it_ISdigitmain.ccmdheaderror_countequalsys_nerrcREQUIREmy_freefontnamecSTRGEisboundcSTRGTtesteof_bkgdXtResourceStringmyclose__resultcmdrootbound_programconstraintWidgetClasspopdblsymcFIRST_COMMANDrectObjClasscDBLMINcNEXT_CASEcQGOTOputcharscommandcountcENDmylinenocCLOSEstNUMBERwaitpidshort intESCDELAYprev_vtable_offseterNONEpushsymlistCOLOR_PAIRSprogram_statecOPENPRNinlib_POSIX_calc_psscaletz_minuteswestforegroundyyparsedisplaywarning_countCardinal__builtin_putcharcreate_restorefANDfSQRTfZEROARGSother2decgetcharsfBINfRTRIMnegativetolowerbuffcountfMIDfLOGfASCctrlfCHRfMID2__resfATAN2localtimefLTRIM__isoc99_sscanffDECtcsetpgrpfLOWERdo_systempeek2peek3fMODfTWOARGSsecondfPEEKdatetimemyformatoldstringfCOSstr2buffcurrfTELLcreate_changestringftellcheck_alignmentcreate_functionfunctionsfLOG2fDATEfLEFTfSTR2fSTR3dec2othercreate_boolefINSTR2create_strreloppeekfileatan2fDEC2fASINselectfromtotoken_donesargfEORacosfRANfTRIM__ctype_toupper_locfloorfoundfRINSTRgetbitbuff_chaindotsfATANsplitgetmousexybmcreate_dblrelopfGETCHARcreate_exceptionfHEXisdelbadstreamcontmyrandfFRACfEXPfINKEYcreate_readdatafINSTRpclosecreate_pokestrstrstrtodnewpartfTANstrftimefMOUSEMODfTIMEfRIGHTclear_bufffTHREEARGSfSINfMOUSEBtoupperfMOUSEXfMOUSEYpeekfGETBITdo_globcolonslastdatadargfSYSTEMfUPPERfINTfMINwasdelfSQRdo_system2fONEARGSfABSfSYSTEM2create_strdatafVALgetpidstore_buffbuffrootfSTRatandec2function.casinrecall_buff__ctype_tolower_locpostfRAN2fLENfACOSfPEEK2fPEEK3fPEEK4create_dbldatafSIGfflushfRINSTR2sqrtfMAXpopeninitcolgreen_maskVisualhandlescrollokcurrcharbits_per_pixelreadfdslineprinterprivate_dataonecharwattrsetroot_input_masktermfd_IO_getccoutstrwclear_XrmHashBucketRecreplacemap_entriespromptederrcodemax_keycodelprstreamblack_pixelcreate_onestringwgetnstrxdefaultsbackcharinit_coloroc2ycassume_default_colorshas_modebitmap_bit_ordercurrchmin_maps__fd_maskclassroot_visualndepthsmax_mapsscanline_padsmodevisualidVisualIDsmodescinstrbyte_orderext_datawhite_pixelhas_colorscheckstreamcurs_setinit_pairinitscrred_maskproto_minor_versionio.cdisplay_namepixmap_formatproto_major_versionroot_depthopen_donewaddnstryc2shortwinchsave_undersungetcwscrlhas_streamScreenFormatcreate_myopengetwinkeycolsnumreaddefault_screenwsetscrregwinfdmaxtimeresource_allocmotion_buffermin_keycode_XPrivateinputcurinitgettermkeyblue_maskXPendingbitmap_padyc2ocnformatsDepth__fds_bitscreate_print_XPrivDisplaymax_request_sizeoldstreamfd_set__rawmemchrwrefreshstdioset_escdelaynoechonscreenslast_request_readbitmap_unithexdigitsnvisualslinebufferwaddchfore_XGCreadlinereleasevalid_modesbacking_storecreate_ppsmheightScreenstart_colorcmapwmovecreate_myreadtileolmaxfdvendorqlennocbreakbits_per_rgbdefault_gcprivate10private11private12private13private14private15private16private17private18private19intrflushretkey_XExtDataoldxoldypmode__d0__d1private1private2private3private4private5private6private8private9free_privatecreate_colourXPointername2ycmwidthcurrstrinitialxCursorXPropertyEventsubwindowbit_gravitydetailXUnmapEventgrafinitarc_modefrom_configureXMapWindowXGetImagexcirculaterequestXFreePixmapfnameattribxnoexposeerror_codedefault_charXVisualInfoXSetWindowAttributesXDestroyWindowEventXFreewinxwinyxfocusXSizeHintsforkfdopennumpointsXMappingEventshould_pixelatomgbits_countydestprinterfilenamebackbitXGenericEventCookieobdatamax_byte1xmotioncreate_imagexvisibilitymyfontXKeymapEventXLoadQueryFontXVisibilityEventxkeymapbitcountdestroy_imageXCreatePixmapcreate_linesubwindow_modeXSetForegroundxcirculatebackground_pixmapmin_widthdrawing_modesbacking_pixelremoveevtypeXDrawPointXMapRequestEventaddrgbxgcvaluescard32clip_maskaboveXFocusChangeEventpatchXSelectionEventfill_styleXFillRectangleXReparentEventbadimageXPutImagedirectionchange_fontXDrawStringDrawablegraphics_exposuresnumsyminitialywidth_inctargetmap_installedXLookupColorascentplane_maskbitptmin_aspectreadrgbXErrorEventpbitsxselectionbbits_maxbitstringXMotionEventXUnloadFontXPointXExposeEventxclientgbits_maxdeleteprinterfilemax_char_or_byte2xgraphicsexposeall_chars_existn_propertiesrgb_to_pixelwin_gravityxoffsetXConfigureRequestEventrbits_maxownerXParseGeometrykey_vectorXChangeGCexact_matchxselectionclearmax_aspectlastxmin_char_or_byte2XCreateColormapts_y_originbbits_shifty_rootXSelectionClearEventmax_boundsx_rootfillmajor_codeattributesXCirculateRequestEventbacking_planesline_styleresourceidxdestroywindowXDrawArcyour_event_maskper_charskeyinitialvalidXOpenDisplayXCheckWindowEventrbearingbbits_countxexposecreate_openprinterline_widthis_hintborder_widthXLookupStringxbuttonXCreateWindowXCreateGCwgetchfontiditransformvalue_maskxcookieXKeyEventXCharStructlastydmFILLXMapEventfuncsclip_x_originoverride_redirectbest_matchXFillPolygongreenxerrorclip_y_originXColormapEventcolormap_sizemin_height_XEventxconfigureXGetDefaulttilexcreatewindowrbits_shiftgraphic.cXConfigureEventsame_screenxkeymin_byte1XFontProprequest_codexmaprequestxconfigurerequestbase_widthfill_rulekeysymXGraphicsExposeEventXNextEventmax_heightxresizerequeststippleXCreateWindowEventserialXStoreNamebackground_pixelall_event_masksAtomnewrgbput_pixeldmCLEARXFontStructXDestroyWindowxgenericxgravitymax_widthsend_eventrequestorkeybuffbytes_per_linexerrXKeyPressedEventrbits_countXSelectionRequestEventXSelectInputdrawableadd_pixelXGetKeyboardMappingxmappingXCirculateEventXDrawLinesxcrossingTimeaskedyaltxaltmin_boundsmap_statearg1arg2XDrawLinemkstempXAnyEventXTextExtentsxanyvalsdo_not_propagate_maskxdestXGetWindowAttributesdmNORMALpixel_to_rgblastvalidxcolormapsizehintsputindrawmodeXClientMessageEventXWindowAttributesbackpixelKeySymmessage_typefirst_keycodeextensionxpropertysampleXGetGCValuesXFillArcheight_incget_pixelXNoExposeEventbase_heightxselectionrequestsave_underXCrossingEventforepixeljoin_stylecreate_openwinfirsttextgbits_shiftxreparentlbearingdashesXGenericEventXButtonEventXSetWMNormalHintsXMatchVisualInfots_x_originbluedescentcursorcap_styleXGCValuesXSetBackgroundvisualinfoxunmapborder_pixmapXResizeRequestEventXDrawRectangleXColorsub_imageminor_codeXFlushborder_pixelXGravityEvent_XImagedash_offsetASSIGNSTRINGARRAYpushgotoCALLSTRINGARRAYsignprev_in_stackcurrsympopgotosymbol.cskipfirstesizecreate_symbolindexsymheadcreate_arraylinkcreate_doarraycreate_pushstrsymrootnboundspoplabelsuppliedcreate_requireftypecreate_makestaticcount_argscreate_labelcreate_dblbinarraymodecreate_gotostackdesclinkedoff_to_indcreate_dimpushnamelargerind_to_offpushlabelcurrstackstorelabelototalntotalmatchgotodump_symASSIGNARRAYcreate_pusharrayrefsymstackcreate_pushdblprevstackrvallink_symbolsnextsymprelinkswitch_nestingactualGETSTRINGPOINTERsymbolcountnext_in_stackCALLARRAYstackcountexpectedfreesymcreate_callstepglobalpoppedlabelheadcreate_subr_linklabelrootreorder_stack_after_callcreate_count_paramskeepflow.cpush_switch_idlink_labeladdresscreate_gosubshouldkeptttopto_popftSTRINGfunction_typekept_stringcreate_endfunctionkeep_topmostkept_valuekept_typeftNONEcheck_leave_switchload_pop_multiloop_nestingto_breakpop_switch_idmax_switch_idcreate_mybreakaheadftNUMBERcreate_check_return_valuebbotshort_dumpcreate_makelocal__builtin_strpbrktINTERRUPTyy_fatal_errortSQRtEOPROGtABSend_of_all_importstGOSUBfnumyy_init_bufferyy_scan_bytestPEEKtVALyybytesyy_matchUMINUSisattytSTRyy_scan_buffertTOKEN__a2yy_baseyylvaltSUB__accept1yy_chktTELLtEXECUTEtWAITtREADINGtPOKEtDATAtDATEtENDSUBret_val_yybytes_lentMOUSEByy_deftLEFTyy_state_typetMOUSEXtMOUSEYyy_bs_linenotLENsourcetLEQtLETtINKEYtGETBITtBACKCOLOUR_in_stryy_state_buftINSTRyy_find_actionyy_looking_for_trail_begintMAXfreadyy_is_jamtSYSTEMtDOCUtATANtSPLITALTferrortCIRCLEyy_fill_buffernumber_to_movetRIGHTtANDtPRINTyy_buffer_stack_toptASINyy_delete_bufferyylex_destroytBREAKtBINyyoutyy_buf_postLOOPinclude_depthclearerryyerroryy_more_flagtTHENflex_int16_ttUSINGtENDIFYY_CHARtTEXTtMYEOFtTRIMtGETCHARtPRINTERtMIDtLOGtMINyy_buffer_stack_maxtCHRflex_lineyyset_linenotNEQyyrealloctNEWtPUTBITtFNUMignore_nested_importstUPPERyylinenotDECtSTRSYMoerrnoyy_bpyypush_buffer_stateyy_acclisttLTNtNEXTwheretCOLOURyy_cpYY_BUFFER_STATEtMODtBELLyy_amount_of_matched_texttSPLITtFRACtSYSTEM2yy_nxtnew_buffertCONTINUEyy_ectTRIANGLEtDIMyy_did_buffer_switch_on_eofinclude_stackyy_buffer_stackyy_init_globalsyy_switch_to_bufferinumyy_starttTIMEtSEEKyy_n_charstERRORyyensure_buffer_stackyy_flush_bufferyy_ch_buftNOTyy_state_ptryyinyyget_lengyyset_outtPEEK2do_action_bdebugyy_create_bufferyyallocyyget_texttDOTtIMPORTyy_lpyy_full_lpyyset_inyy_inityy_buf_sizetWHILEwithouttWEND_line_numberyy_ctCURVEtORIGINtDIGITStRTRIMyyget_linenotPUTCHARtEXPORTtENDYYSTYPEyyless_macro_argyystr__accept2__accept3tCASEgrow_sizetOPENyy_is_our_buffertEORyyget_outtSCREENtSENDflex.ctELSEtEXITyylengtLINEyy_scan_stringtRANtCLEARtGEQtEQUyy_acceptyytextyypop_buffer_stateyy_next_statetRUNTIME_CREATED_SUBtASCyy_get_previous_stateyylextPOWtEXECUTE2tSWITCHtMOUSEMODnum_to_readyyget_debugtSYMBOLyy_hold_charyy_more_lentFILLyy_size_ttLTRIM__builtin_calloctRETURNtFORtLOCALimport_libyy_buffer_statetLOWERfullyyset_debug_out_strtrailtDEFAULTyy_at_boltHEXtWINDOWtWRITINGtELSIFtGLOBtEXPtACOSyy_input_fileyy_metayytokentypeyy_actyy_is_interactivetSEPtBINDyyrestartunquotedyy_bs_columnyy_c_buf_ptUNTILtTANyy_get_next_bufferyyfreetSQRT__a0__a1find_ruleyy_full_state__strpbrk_c2tTOKENALTtSIGtSINnum_to_alloctINPUTtGTNtARSIZEyy_load_buffer_statetCLOSEtRESTOREyy_buffer_statustRINSTRtREVERSEleave_libfullreturnflex_uint16_ttREADtSTEPyy_full_matchtCOStARDIMyy_current_statetCOMPILEtREPEATyyget_intRECTyy_flex_debugnew_sizeopen_library__strpbrk_c3yy_try_NUL_transtSTATICtINTyydefaultyypactyymsgyyexhaustedlabmissing_wendyysetstateyyruleyytokenatoimemcpymissing_endsubmissing_until_line__malloc_initialize_hook__malloc_hookyyss_allocmissing_until__free_hookyy_symbol_value_printyyvsayyptryynewstateyyacceptlabyycheckyytranslate__after_morecore_hookyyresultyycharyytypemissing_wend_lineyyreturnmissing_endsub_lineyybottomyyreduceexportedbison.cyydefgotoyyvaluepcurrent_libfileyystateyybackupyytype_uint16yystosyytype_uint8yystacksizeptrdiff_tyyss1yyoutputyyvalyyssayytableyysspyysizeyyerrstatusyypgotoyytopreport_missingyyerrorlabyytype_int16yyr1yyr2strtolyyss__realloc_hookyylenyyvs_allocyyvsmissing_loopyyerrlab1__memalign_hookyyabortlabyy_symbol_printyy_reduce_printyynrhsyytnameyyerrlabmissing_loop_lineyylnoyynewbytesyy_stack_printyynerrsyydestruct__nptrmissing_nextyyvspyybotmissing_next_lineyydefact__morecoreyyrlineh@,h@U,h@0h@T0h@óh@\óh@k@óUŸk@Dk@\Dk@Uk@óUŸUk@_k@U_k@´k@óUŸ´k@Ðl@\nh@„h@P„h@k@whk@îk@wîk@òk@Pòk@Ðl@wh@Ÿh@PŸh@k@‘¸hk@îk@‘¸/l@3l@P3l@Ðl@‘¸¦h@ºh@Pºh@k@Vhk@´k@V´k@Ók@PÓk@îk@Vyl@}l@P}l@Ðl@Vi@i@Pi@°i@\hk@lk@Plk@´k@\ºh@Éh@PÓh@óh@Pˆi@œi@P¥i@µi@PCj@\j@Pgj@‚j@PÉl@Ðl@PØh@óh@1Ÿóh@æi@^hk@´k@^Él@Ðl@1Ÿh@óh@0Ÿóh@Ji@SJi@Oi@sŸOi@ri@Sri@wi@sŸwi@˜i@S˜i@i@sŸi@Âi@SÂi@Çi@sŸÇi@j@Sj@j@sŸj@*j@S*j@/j@sŸ/j@Xj@SXj@]j@sŸ]j@ƒj@Sƒj@†j@sŸ†j@™j@Qk@Dk@0ŸUk@hk@0Ÿhk@tk@S´k@Ðl@0Ÿ7i@æi@òm7i@æi@V7i@Di@_Di@Oi@ŸOi@^i@_Xi@ci@ 0ãAŸci@li@_li@wi@Ÿwi@æi@_µi@¼i@\¼i@Çi@|ŸÇi@Ñi@\æi@ñi@ ôAŸñi@üi@\üi@j@|Ÿj@j@\ j@$j@\$j@/j@|Ÿ/j@k@\mk@xk@pók@ûk@p4l@C@gC@^ô6@Â7@0ŸÂ7@Û7@_ê7@Z8@_¦8@Ó8@_œB@ÌB@0ŸÌB@×B@_®I@ØI@0ŸØI@èI@xÓc”0.ÿŸŒK@ÁK@0Ÿg[@„[@_z8@¯8@2Ÿ C@^E@2Ÿ3H@”H@2Ÿ J@=J@2Ÿ*M@„M@2ŸÔM@öM@2ŸãZ@[@2Ÿ„[@ô^@2Ÿz8@¯8@S C@^C@SºC@²D@S3H@XH@SJ@=J@S*M@„M@SÔM@öM@SãZ@[@S„[@]@S^]@†]@S¡]@^@S+^@Ó^@Sà^@ô^@Sƒ8@‰8@ -pÿŸ‰8@“8@ -s”ÿŸ“8@¯8@ s”ÿŸó[@¶\@4Ÿô]@^@4Ÿ+^@ƒ^@4Ÿ\@E\@5Ÿô]@^@5Ÿ¦]@¬]@pr9@…9@ 'ŸM@*M@ 'Ÿ-;@6;@P6;@î;@Sò:@ÿ:@Ph;@m;@1Ÿm;@‡;@P‡;@‹;@pŸ­;@¹;@0ŸJB@LB@0ŸTB@aB@S^E@8G@S4:@G:@(ŸøL@M@(Ÿj:@x:@pŸßL@øL@pŸ2;@6;@UûH@YI@0ŸK@AK@SAK@FK@sŸFK@ŒK@SL@7L@0Ÿ7L@L@S¶M@ÔM@SCN@¦X@0Ÿ[@g[@0Ÿ€c@™c@U™c@šc@óUŸšc@²c@U²c@³c@óUŸ³c@Âc@UÂc@Ãc@óUŸ€c@™c@T™c@šc@óTŸšc@²c@T²c@³c@óTŸ³c@Âc@TÂc@Ãc@óTŸ³c@Âc@TÂc@Ãc@óTŸ³c@Âc@UÂc@Ãc@óUŸÐg@Ýg@UÝg@èg@Qèg@ûg@óUŸ o@ªo@Uªo@½o@S½o@×o@óUŸ³o@Ëo@PËo@×o@‘hp@p@Up@$p@S$p@%p@U%p@&p@óUŸ&p@7p@U7p@9p@óUŸp@%p@Pr@r@Ur@r@óUŸ€s@”s@U”s@Æs@SÆs@Òs@óUŸÒs@Ùt@SÙt@Mu@óUŸ€s@‰s@T‰s@Ñs@VÑs@Òs@óTŸÒs@Mu@V°s@Æs@St@Ùt@SÙt@Mu@óUŸÀ}@Ê}@UÊ}@ß}@Sß}@ä}@sŸä}@ñ}@SÀ}@Õ}@TÕ}@ð}@\ð}@õ}@óTŸÀ}@Õ}@QÕ}@ð}@Vð}@õ}@óQŸ~@~@U~@-~@^-~@1~@U1~@2~@óUŸ2~@ü~@^ü~@ý~@óUŸý~@@^@@P~@!~@P2~@A~@P2~@ü~@^ü~@ý~@óUŸý~@@^@@PH~@L~@PL~@ö~@Vý~@@VH~@L~@PL~@x~@Vx~@~@P~@˜~@\˜~@­~@P­~@ø~@\ý~@@P@ @\m~@q~@Pq~@õ~@Sõ~@ý~@Pý~@@S@@U@@óUŸ0575U75¸5óUŸE5“5V”5¸5Vb5u5P¡5¸5Pu5’5SŸ5¡5S¶5¸5Sz5”5Pð45U55óUŸ5+5U+505óUŸ 55P%5/5P/505UŸ`4¢4U¢4Ì4óUŸÌ4ï4U°4´4P´4Ë4Sp4¢4a¢4Ì4‘hÌ4ï4aÕ3í3P3Å3Pí34P!4;4PO4]4P›3ì3Ví3]4V€3Ê3 ží3 4 ž 4!4 žð?!4;4 ž;4O4 žð?O4]4 ž0262U62z3óUŸQ2t2U­2´2UÓ2Ü2Uí2ô2U3$3UJ3T3UH2¬2S­2z3S‘2­2‘h–2­2PÀ1Ñ1UÑ1ê1óUŸê1÷1U÷12óUŸ2%2U%2.2óUŸá1é1U2 2U 22bŸ22U22bŸ%2-2U-2.2]Ÿp0y0Uy0¾1óUŸ˜0Ï0aé0'1a:1o1a…1¾1aŽ0’0d’0¾1‘hÏ0è0wè0é0‘`Ô0é0P00U0*0óUŸ*070U70^0óUŸ^0e0Ue0n0óUŸ!0)0UC0K0UL0U0ZŸU0]0U]0^0ZŸe0m0Um0n0[Ÿ /o/Uo/t/óUŸt/†/U†/‹/óUŸ‹/”/U”/ö/óUŸœ/¨/P¨/Æ/\Ç/Ú/PÚ/õ/\+/h/Vh/s/Qt/z/Vz/†/ŭ/Š/óU#L‹/Ä/VÇ/ó/V(/g/s Ÿg/o/uØ# Ÿo/s/ óU#X# Ÿt/y/s Ÿy/†/uØ# Ÿ†/Š/ óU#X# Ÿ‹/Ã/s ŸÇ/ò/s Ÿ//U//óUŸ°.¾.U¾.ú.Vú.û.óUŸÊ.Ñ.PÑ.ù.SP.h.ah.¨.‘hq.u.Pu.§.S§.¨. Àxc-·-U·-.S..óUŸ.=.S=.C.óUŸÀ-Ü-P.+.P-­-v Ÿ­-®-uØ# Ÿ®-.v Ÿ.>.v Ÿ`-o-Uo-w-Qw-Œ-SŒ-Ž-óUŸ~-‚-P‚--V°,Å,UÅ, -óUŸ --U-_-óUŸ,œ,Uœ,¥,S¥,¦,pÈ€+‘+U‘+÷+óUŸ÷+,U,‰,óUŸ€+£+0Ÿ£+â+Vâ+æ+Uç+ö+V÷+,0Ÿ,7,V<,j,Vo,„,V£+÷+‘X,‰,‘X²+á+Sá+æ+Pç+õ+S,6,S<,i,Si,n,Po,ƒ,Sƒ,ˆ,P((U(Q)óUŸQ)])U])~+óUŸB(Œ(VB(O(VO(Î(SÖ(!)S2)E)Sr)—)S£)*S */*S;*Œ*S˜*©*Sµ*~+SÂ)Å)q8$8&2$p"Å)È) q8$8&2$p"(4(0Ÿ4(Ñ(\Ö($)\$)1)T2)H)\H)P)UQ)f)0Ÿf)š)\š)¢)U£)*\* *U *2*\;**\˜*¬*\µ*~+\4(Q)‘Hr)~+‘H2+G+PJ+k+P++C+ ÿŸC+O+Rn(}(PO(T( ~8$8&ŸT(f(Pf(x( ~8$8&Ÿ}(Q):Ÿr)~+:Ÿ—(Q)4Ÿr)˜*4Ÿµ*~+4ŸÖ(Q)4Ÿr)˜*4Ÿµ*~+4Ÿñ(2)9Ÿr)˜*9Ÿµ*~+9Ÿr)˜*<Ÿµ*~+<Ÿ£)˜*9Ÿµ*~+9Ÿ¸)¼) |”8$8&ŸÂ)Ý) q8$8&Ÿµ*Æ* q8$8&Ÿå*++ q8$8&ŸÝ)‚*6Ÿ++~+6Ÿ *‚*;Ÿ++~+;Ÿ;*‚*CŸ++~+CŸÀ'Û'UÛ'å'óUŸå'ð'Uð'ú'óUŸà'å'Põ'ú'PG'`'a‹'–'að >U>VŠóUŸŠV¼U¼ãVãUÞVÞáUá*Vð +a+{‘˜Š‘˜¼a¼;‘˜;IbI£‘˜ãae•‘˜ÃÔ‘˜Þ ‘˜*‘˜ð :T:ƒ\ƒŠóTŸŠ\¼T¼ã\ãTÞ\ÞèTè*\ð 6Q6y^yŠóQŸŠ^¼Q¼·óQŸ·ã^ãQÞ^ÞèQè*^¼ÇPÔùPð :T:fQflqŸlyQŠQ³T³·S·ÏQãTÞèTè \+@0Ÿ@yUŠU·½UÞ 0Ÿ+@0Ÿ@ySŠS· SÞ 0Ÿ*SÕ×P×IXI£‘¨£ãX©X´ÞXìîPî*XdqPq€õ-÷4÷Ÿ=]QÔÞQ+@0Ÿ@yTŠT·ÏTÞ 0Ÿ+@0Ÿ@yRŠR·ÀRÞ 0Ÿð +0Ÿ+y_Š_·0Ÿ·£_ÃØ_Øú0Ÿ 0Ÿ#_ã1Ÿ _e•_Ÿ´_ÃÔ_Þ _ 0Ÿ*_Ytat£ce•cÃÏaÏÔccbtbtãa©a´ÃaÃÔbÔÞa aÜø žà?ø aø  žà?* žà?`…U…E^EHóUŸHWUW†^†‰óUŸ`‰T‰C]CHóTŸH`T`„]„‰óTŸ‚Ä žÄèwèôaa9wÄÎPÎê pžB"Ÿ PÄ0ŸÄÛ~Ÿê9~Ÿ¯P”8$8&2$s",a,!óõ-Ÿ!0a0Uóõ-Ÿ,U,[S[!óUŸ!PSPUóUŸ>[P[bSbkPk’S’—sŸšSsŸNUP>‚a—¸b¸‘X!‘PNUa1FaFVbV[a[‚b‚š‘PDUaŒPV!P>0Ÿ!D0ŸDN1Ÿà D UŒ × Uà $ T$ ‹ ]‹ Œ óTŸŒ × T× á ]á â óTŸà @ Q@ ‰ \‰ Œ óQŸŒ × Q× ß \ß â óQŸà ; R; ‡ V‡ Œ óRŸŒ × R× Ý VÝ â óRŸà 6 X6 † S† Œ óXŸŒ Ü SÜ â óXŸ& ´ U´ Ä \Ä Û U° ¸ U  P Ú ]Ú Û P& 7 0Ÿ7 I SI ¹ sŸ¹ Ä S& 7 0Ÿ7 ° V0[U[kVkuUuÇVÇîóUŸîV•óUŸ•™V™óUŸgVgãóUŸãV[óUŸ[¡V¡óUŸVaóUŸa~V~ÌóUŸÌÐVÐóUŸ¿V¿ËóUŸËŠVŠÀóUŸÀ.V.PóUŸPß Vß &"óUŸ&"—"V—"ï"óUŸï"Ì#VÌ#Ý#óUŸÝ#Á$VÁ$Ò$óUŸÒ$ %V %+%óUŸ+%&V&>&óUŸ>&Õ&VÕ&,'óUŸÕßPîP[k_¤¦P¦í_î _,'_—¦]0[0ŸkŠ0ŸŠ—\}Š^ÇßSPÊÚP.3PUZPt„P¼ÁPgnPn‰SPhuPuS P\aP‘•P•ÌSãçPçSJOPbgP”™PìñPáåPåëSýPPSbfPf‹SÇ#Ì#P"$R$SDÇSîS$S• S.S37SZjSãS[lS˜œSÁgS‰ShS¬SSa‘SÌãS%SObSg”S™¿SËìSñ SX\SÀáSëýSPbS‹ S% G SÖ â S&"z"Sµ#Ç#SÝ#ï#SR$Á$SÒ$ð$S% %SÇß1Ÿ1Ÿé3Ÿ.31ŸUZ1Ÿ¼Á1Ÿëð3Ÿ#3Ÿ#‰1Ÿ¼Á3ŸÝâ3Ÿþ3Ÿ1Ÿ6;3ŸPU3Ÿ˜1Ÿ 1Ÿ\a1Ÿuz3ŸJO1Ÿbg1Ÿ|3Ÿ”™1ŸÆË3Ÿ 3ŸRW3Ÿìñ1ŸSX3ŸÑÖ3Ÿçì3Ÿý3Ÿ3Ÿ).3Ÿ?D3ŸšŸ3ŸÄÉ3Ÿæë1ŸKP1Ÿ†‹1Ÿ˜3Ÿ6 ; 3Ÿa"f"3Ÿµ#Ì#1Ÿ% %1Ÿ)‚] | ö-÷4÷Ÿ&Q&* | ö-÷4÷Ÿ[]¤ª } ö-÷4÷Ÿª¸R  } ö-÷4÷Ÿ QqŸ);S;@s $p $-(Ÿ °S°és $1 $+(Ÿ*P7> } ö-÷4÷ŸEKTKQtŸ¤¸P3T\™éV*7US^Ë\-V[ss˜Sœ¼S¡VaV~ÌVÐV%JSûU\ŠS? Œ ]Ú +!\z"—"SÓ"â"\Ý#å#Uå#ï#w‚V™§}»ÉTbÖ][\_sTÓ"è"]ývq"”8$8&2$r" vq"”8$8&2$p"ý vq"”8$8&Ÿ  t8$8&Ÿ­¶vq"”8$8&2$r"¶¹vq"”8$8&2$p"­¹vq"”8$8&Ÿ¹Ì t8$8&ŸbÖ]Ó"è"]bÖ\Ó"è"\bo\oÖSÓ"è"SœPot v8$8&Ÿt†P†— v8$8&ŸœÖ3ŸÓ"è"3ŸœÖ\Ó"è"\œ§ e|”ÿŸ§³ n|”ÿŸ³¿ v|”ÿŸ¿Ë |”ÿŸÓ"è";ŸûUÝ#å#Uå#ï#w PES\ŠSz"—"SŠ”0Ÿ”žSž¢sŸ¢¬|Ÿ²ÈS«"¶"|Ÿ„ŠPŠÀ]z"‹"P‹"—"]«"»"]”¬P¼ÁPÁÀV«"»"PÈ• àxcŸÈ•\ Sï#"$S+%`%S? Ö Vï"µ#Vð$%V`%&V>&Õ&V? Ö ]ï"µ#]ð$%]`%&]>&Õ&]? L ]L Ñ Sï"°#Sð$ý$S`%o%St%ƒ%Sˆ%Þ%SÞ%ô%Uô%&S&&S>&N&SS&b&Sg&t&Sy&†&S‹&˜&S&ª&S¯&¾&SÃ&Ð&Sn } PL T |8$8&ŸT f Pf x |8$8&Ÿ} Ö 9Ÿï"µ#9Ÿð$%9Ÿ`%&9Ÿ>&Õ&9Ÿï"µ#9Ÿ`%&9Ÿ>&g&9Ÿ¯&Õ&9Ÿ#µ#<Ÿt%&<Ÿ>&g&<Ÿ¯&Õ&<Ÿ#µ#5Ÿˆ%&5Ÿ>&g&5Ÿ¯&Õ&5Ÿ.#µ#AŸˆ%&AŸ>&g&AŸ¯&Õ&AŸC#µ#<Ÿˆ%ô%<Ÿ>&g&<Ÿ¯&Õ&<ŸX#µ#7Ÿˆ%ô%7Ÿ>&S&7Ÿ¯&Õ&7Ÿm#µ#7Ÿˆ%ô%7Ÿ¯&Õ&7Ÿ‚#µ#2Ÿˆ%ô%2Ÿ¯&Ã&2Ÿ‚#µ#]ˆ%ô%]¯&Ã&]‚## o}”ÿŸ#˜# s}”ÿŸ˜#¬# }”ÿŸˆ%ô%4Ÿ¯&Ã&4Ÿ%ô%8Ÿ®%Ã%9ŸÚ !"\»"Ê"\Ì#Ý#\Á$Ò$\ %+%\&>&\Õ&,'\Ú ç \ç !"S»"Ê"SÌ#Ý#SÁ$Ò$S %+%S&>&SÕ&,'S !!Pç ô v8$8&Ÿô !P!! v8$8&Ÿ!&"8Ÿ»"Ê"8ŸÌ#Ý#8ŸÁ$Ò$8Ÿ %+%8Ÿ&>&8ŸÕ&,'8Ÿ1!&"9Ÿ»"Ê"9ŸÁ$Ò$9Ÿ %+%9Ÿ&>&9ŸÕ&,'9ŸF!&":Ÿ»"Ê":Ÿ %+%:Ÿ&>&:ŸÕ&,':Ÿ[!&"<Ÿ»"Ê"<Ÿ%+%<Ÿ&>&<ŸÕ&,'<Ÿp!&";Ÿ»"Ê";Ÿ&>&;ŸÕ&,';Ÿ…!&"8Ÿ»"Ê"8Ÿ&-&8ŸÕ&,'8Ÿš!&"9Ÿ»"Ê"9ŸÕ&,'9Ÿ¯!&"7Ÿ»"Ê"7ŸÕ&,'7ŸÄ!&"5Ÿ»"Ê"5ŸÕ&'5ŸÙ!&"7Ÿ»"Ê"7ŸÕ& '7Ÿî!&">Ÿ»"Ê">ŸÕ&ù&>Ÿà ì Uì õ Sõ ö pÈ ! U! Ú óUŸ ¼ ]¿ Ú ]> ¶ Vß  V  vŸ* Ú VÐ ä ^. º \¿ Ú \L Sä  S* H S‚ Ú S~ 1Ÿ ¶ Pô  1Ÿ * Q< H 1ŸH ‚ Q’ ® 1Ÿ® ¿ PÍ Ó pŸÓ Ú Pô  P * T< H PH ‚ RH ˆ Pä ï P* 7 P‚ ¬ Pð ü Uü  S  pÈ— æ V  è \Å É PÉ å Så é pU+S2kSqýST,V2TVT\vŸ\nVqVÌÖ0ŸÖäPäø0ŸøPI T pD W SW [ P[ p S°ÖUÖ óUŸ  U ! SÖî\õ \ ! \äôPþPô_õ _èìVõ VþVS(Q(lSl|Q|ÔSÔÛsŸÛëSõ Sþ0Ÿ6]6l0Ÿl¼]õ 0Ÿßò~ ÿÿÿÿ1,ÿŸõ ~ ÿÿÿÿ1,ÿŸp•U•óUŸ$U$5S5¦óUŸ•~] ÿÿÿÿ1,ÿŸ p ÿÿÿÿ1,ÿŸ s ‘¤”1,ÿŸ~] ÿÿÿÿ1,ÿŸ5¦~] ÿÿÿÿ1,ÿŸ§«P«]ÅèP]5>]Y`]‘¡]ÀæPPYdPÖÀ\è\5Y\‘¦\p0Ÿ}]}Rã]è]¦0Ÿ›0Ÿ›©^©¶~Ÿ¶¼^ð1Ÿ}‘¸‰´‘¸è‘¸ö S ^´SèSDYS‘¦Sa_arUs´_è_ãìPìô^ôÀ‘°è‘°•ßVèV0¦V»SS5¦S%-RZjRj_n‘¨£´‘¨è‘¨ð 1Ÿ -REjRj_ð1Ÿ%‘¨%–1Ÿ£À1Ÿè‘¨5Y1Ÿ‘¦1ŸÐàUàGVGJóUŸJ_V_bóUŸbfVÐàTàI\IJóT0óT $0*(ŸJa\abóTŸbf\ÐàQà S JóQŸJ^S^fóQŸáPJYP$\$0R04rŸbf\JPbfPJ]VJ]\J]Sà$%U%%]3'E']à$%T%E'‘”à$%Q%E'‘à$%R%é&Vò&E'Vv%í&]ò&3']%Ÿ%‘”Ÿ%§%_§%¬%Ÿ¬%›&_›& &Ÿ &Æ&_ò&3'_V&©&^ò&'^v%3'‘˜n%r%Pr%v%‘œH%M%PM%è&Sè&ò&Pò&E'S•!#S%#Û#Så#í#S8"}"V%#Ç#VÎ!å! wö-÷4÷Ÿå!å"]%#Ç#]å#í# wö-÷4÷Ÿå!"^"å"^%#Ç#^8"}"w%#C#w#¯#P¯#³#R³#Ç#w8"}"‘˜%#C#‘˜´#Ç#PŒ!!õ-÷4÷Ÿ!å! wö-÷4÷ŸÇ#Ú# wö-÷4÷ŸÚ#å# ‘ö-÷4÷Ÿå#í# wö-÷4÷Ÿx!|!õ-÷4÷Ÿ|!å! ‘˜ö-÷4÷ŸÇ#í# ‘˜ö-÷4÷Ÿ`¢U¢ÈSÈYóUŸYgUgnóUŸnzUzóUŸŽSŽÏóUŸÏéSé÷U÷fóUŸfS«óUŸ`û0ŸûB\Y‰0Ÿ‰ÏVÏ0ŸA\f0Ÿ«V`Ã0ŸÃFVY0ŸfVf«0ŸÃÔVÔßQßåqŸåíQû \ QqŸ%Q‰šVš§Q§­qŸ­µQ1>P>ISÁÇPÇÏSPfSP«SBF\AKPKf\š­s8$8&2$p"Ôås8$8&2$p" s8$8&2$p" ¬U¬µSµ¶pÈ@NUNlVlmóUŸ]aPakS =U=\’óUŸ’ \  óUŸ Ù\ D0Ÿ’´0ŸfQfgsŸ«Ã0ŸÃÙQ8‘]’ ] Ù]x‚P‚ŒSÒâPâSðUóUŸðTVpÈ 'U'äóUŸ5dSk²SºâS˜¹PºÏPTdPx—P—³VºÏVÏäPR—q $ @šK$)ÿŸ­¹q $ @šK$)ÿŸR_ p $0+ÿŸ_—ˆuc” $0+ÿŸ­¹ˆuc” $0+ÿŸ0bSbfUpzUzÖVÖÛóUŸÛæVæçóUŸçV¦ÈPçPˆÕSÕÚUÛåSçS +U+1óUŸ 'T'0S01pÈ`xUxüóUŸüUqóUŸ¤žV£óVEVJqVšžõ-÷4÷Ÿžü ‘Hö-÷4÷Ÿq ‘Hö-÷4÷Ÿ0SDSJqSºË0ŸË×q}ŸºÇPÇ \£õ\G\Jq\€‰P‰ô]PËÝs8$8&2$p"åü5Ÿq5Ÿ03Ÿ£ü3Ÿ0]£÷]÷ûU e}”ÿŸ n}”ÿŸ$ d}”ÿŸ$0 }”ÿŸ£ü4ŸµSTSTUVîp à Uà ŒóUŸŒ•U•²óUŸ²½U½›óUŸ `0ŸŒh0Ÿh~P²Ü0Ÿï!0Ÿ!%PU›0Ÿ `0ŸÆ²Sï›Sú PpŸ`sŸ ã 0Ÿã è Pè …^Œ¬0Ÿ¬±P±²^²Ü0ŸÜì^ï›^ Ë 0ŸË Ô PÔ V‹UŒ0Ÿ¦P¦²V²Ñ0ŸÑÜPÜæVï›V/ @ucŸ/<3$@uc"Ÿ<E3$@uc"ŸK²3$@uc"Ÿï3$@uc"Ÿ!›3$@uc"Ÿ/0Ÿ/<Ÿ<E|ŸK²_ï_!›_ÒûPû²wïDwDOPO›w© Ç p2ŸŒ™p2Ÿ²Áp2Ÿ© î SŒÆS²ÜS­ ƒ]Œê]ï›]ÀÌUÌÕSÕÖpÌðU`]`ePe·]ðU\!V!4\4IVe·VðUS!sŸ![SeSsŸ·S„“P“˜ pžB"Ÿ˜· ~žB"Ÿ·ÆPÆÜ pžB"Ÿ®°Pe®0Ÿ®Ô^¤§^®°0Ÿpƒ|”8$8&2$"®¶|”8$8&2$" ËaËáa±Æaõp\‚±\Óê\#‘À} @B‘È}"Ÿ#1P1M‘À} @B‘È}"Ÿ26P6p‘ˆ}±‘ˆ}Ûꑈ}õô\+lTlz‘¨}'J‘¨}‚\Óê\PòwÛêwûÅ_ÅJ‘„}±‘„}Ûê_P×VÛêVôPîP!P®P> ¦ \¦ Ê ]Ê Ï }ŸÏ ð ]> G 0ŸG i Si x Ux ‹ sŸ‹ ¦ S9cQv”QpSvSð ý Uý  óUŸù 2 SD ¦ dŸ¦ » S½ Ç SÙ ù dŸù ¿ SÉ ÷ dŸ÷  S? C PC ¦ VÔ Ø PØ ù V  PŠ ’ PÉ ÷ VD r PÙ ù Pê ÷ Pð 2 0Ÿ2 6 P6 X S½ í 0Ÿù ¿ 0Ÿ÷  0ŸR r Uç ù Uê ÷ U o p $ &Ÿo u R} “ p $ &Ÿ“ ª õ-÷4÷ $ &Ÿ u a} ª aâ   ÿŸ÷   ÿŸó  V  VŽ › V, > V² ¿ V× ê SÀÍUÍôóUŸáåPåóV;U;WóUŸWkUk‡óUŸ‡šUš£T£²óUŸîûQûS%Q%6S6<P<FSÉòS  S_ q P  § U§ ¿ S¿ à UÃ Ä óUŸÄ ã Sã ä óUŸÄ â S : U: @ Q@ N óUŸN ] Q] v óUŸv ƒ U 1 T1 M SN u Su v óTŸv ƒ T^ o óUŸ^ o 0Ÿ€›U›ÚSÚà vO&v'vO&ŸàáóUO&óU'óUO&Ÿá S   vO&v'vO&Ÿ  óUO&óU'óUO&Ÿ S vO&v'vO&ŸóUO&óU'óUO&Ÿ›Ús $ @šK$)ÿŸÚàvO&v'vO& $ @šK$)ÿŸàáóUO&óU'óUO& $ @šK$)ÿŸá s $ @šK$)ÿŸ  vO&v'vO& $ @šK$)ÿŸ  óUO&óU'óUO& $ @šK$)ÿŸ s $ @šK$)ÿŸvO&v'vO& $ @šK$)ÿŸóUO&óU'óUO& $ @šK$)ÿŸ› u $0+ÿŸà v $0+ÿŸàá óU $0+ÿŸá  v $0+ÿŸ   óU $0+ÿŸ  v $0+ÿŸ óU $0+ÿŸá V  óUŸpxUxS…U…†óUŸ†‘S‘’óUŸÀÕUÕVÀÕUÕÙVÙçQçíqŸíõQÙís8$8&2$p"RVY·V·¸óUŸ¸_VR3ŸY_3ŸRVY·V·¸óUŸ¸_VpqŸ PYf lv”ÿŸfl av”ÿŸlt v”ÿŸ R5Ÿt_5Ÿ1R3Ÿt¬3Ÿ¸_3Ÿ1RVt¬V¸_V16wqŸ6< hv”ÿŸ ¦ iv”ÿŸ¦¬ v”ÿŸ<R4Ÿ¸¿4ŸÏ_4Ÿt 3Ÿ¿Ï3Ÿt V¿ÏVt}rqŸ}ƒ ev”ÿŸƒ dv”ÿŸ¿Ï v”ÿŸ™3Ÿ™V“ dv”ÿŸ“™ v”ÿŸ¸¿3ŸÏ_3Ÿ¸¿VÏ_V¸ÀPÏÚ lv”ÿŸÚä uv”ÿŸäó v”ÿŸÀ¿5Ÿó_5Ÿä¿3Ÿó_3Ÿä¿Vó_VäígqŸíó rv”ÿŸóù ev”ÿŸù v”ÿŸ¿6Ÿó_6Ÿ'¿4Ÿ6_4ŸKf3ŸKfVKPcqŸPV yv”ÿŸV\ av”ÿŸ\f v”ÿŸf¿7ŸŠ¿3ŸŠ¿VŠ˜mqŸ˜¢ av”ÿŸ¢¬ gv”ÿŸ¬¿ v”ÿŸ yqŸ & ev”ÿŸ&, lv”ÿŸ,6 v”ÿŸ°°T°0ŸãûTãûUPB`BU`B£BV£B¤BóUŸ¤B¾BV¾BÂBUÂBÃBóUŸÃBTEVTE_EU_E`EóUŸ`E~EVPBB0Ÿ¤B¯B0Ÿ¯BÂBTÃBÏB0ŸÏBÑBTÑBßB0ŸßBáBTáBïB0ŸïBñBTñBÿB0ŸÿBCTCC0ŸCCTCC0ŸC!CT!C/C0Ÿ/C4CT4C?C0Ÿ?CDCTDCOC0ŸOCTCTTC_C0Ÿ_CdCTdCoC0ŸoCtCTtCC0ŸC„CT„CC0ŸC”CT”CŸC0ŸŸC¤CT¤C¯C0Ÿ¯C´CT´C¿C0Ÿ¿CÄCTÄCÏC0ŸÏCÔCTÔCßC0ŸßCäCTäCïC0ŸïCôCTôCÿC0ŸÿCDTDD0ŸDDTDD0ŸD$DT$D/D0Ÿ/D4DT4D?D0Ÿ?DDDTDDOD0ŸODTDTTD_D0Ÿ_DdDTdDoD0ŸoDtDTtDD0ŸD„DT„DD0ŸD”DT”DŸD0ŸŸD¤DT¤D¯D0Ÿ¯D´DT´D¿D0Ÿ¿DÄDTÄDÏD0ŸÏDÔDTÔDßD0ŸßDäDTäDïD0ŸïDôDTôDÿD0ŸÿDETEE0ŸEETEyE0ŸyE~ETgBjBPjB¢BS¤B½BSÃBSESSE_EQ`E~ES?¬?U¬?Ó@Sù@ðASðAòAóUŸòAHBS?±?0Ÿx@‰@P A#AP#ApAV[@¬@ ÿŸ¬@Ã@PK@[@PpAtAPà5ò5Uò5'?S'?=?óUŸ=??SB6U6P=?R?P04<4U<4E4SE4F4pȰ0é0Ué0í0u4 4U°0Ë0TË0ä0‘¸~ä0í0t4 4‘¸~°0í0Q4 4Q°0í0R4 4R 11P11Q#1/1R/111Tu2W3_W3n3Ÿn3¼3_Ê3Ý3_`2¼3VÊ3ð3V–2ð2T·3¼3P11[1‘¼~[1r1Ur1«1Z«1f2^f2¼3‘”~¼3Ê3ZÊ3ð3‘”~'4.4^11g1‘¸~g1o1^o1f2_f2¼3‘œ~¼3Ê3_Ê3ð3‘œ~'4.4_11l1‘´~l1f2]f2¼3‘˜~¼3Ê3]Ê3ð3‘˜~'4.4]11€1‘°~€11U1 2V 2¼3‘ ~¼3Ê3UÊ3ð3‘ ~'4.4V°0æ10Ÿæ1þ1Pþ1¼3‘¨~¼3Ê30ŸÊ3ð3‘¨~4 40Ÿ'4.4P¤2Ü2$tHËc”& $ &xÿ÷-x÷-÷ŸÜ2ð24tHËc”& $ &0Ëcÿ÷-0Ëc÷-÷Ÿ¯2ð2$t@Ëc”& $ &{ÿ÷-{÷-÷Ÿ¶2ð2$t8Ëc”& $ &uÿ÷-u÷-÷Ÿ2R2V2"2SI2M2PM2`2‘ˆ~–2¶2T–2¶2òð\–2¶2òà\–2¶2òÐ\%3n3^ 3n3Só2n3]¶2n3‘ˆ~Û+ ,p ,T,V=/N/pc/v/pÿ+ ,p ,,V,,R,,rŸ,9,Rè,a-]s-Õ-]@0T0]-a-\s-¢-\¥,a-^s-=/^|/À/^@0¤0^¼-=/V|/O0VO0T0‘¬~T0¤0V¼-=/\|/F0\F0K0‘°~K0¤0\¼-Í-SÍ-â-rv $s $-(Ÿ@0M0SM0T0‘´~T0p0rv $s $-(Ÿp0‡0‘ˆ~”v $s $-(Ÿ¼-Í-_Í-â-x| $ $-(Ÿ@0C0_C0K0‘¸~K0T0_T0p0x| $ $-(Ÿp0‡0‘Œ~”| $ $-(Ÿ.š.0Ÿš.=/Sg..0Ÿ.=/_|/–/0Ÿ–/»/_è, -0Ÿ -- p $@M$.ÿŸ-a- v $@M$.ÿŸs-“- v $@M$.ÿŸ´.ë.Pë.ý.RÀ+a-0Ÿs-_.0Ÿ_.s.P=/–/0Ÿ@0‡00Ÿ‡0ž0Pž0¤0‘~,,s8$8&2$p"5-D-s8$8&2$"Ò-â-‘ª~ŸT0Y0‘ª~ŸY0p0Qp0q0‘ª~ŸÒ-â-‘¨~ŸT0^0‘¨~Ÿ^0p0Tp0q0‘¨~ŸÒ-â-‘¦~ŸT0c0‘¦~Ÿc0p0Up0q0‘¦~ŸÒ-Õ-}p"ŸÕ-â-]T0q0] //‘ª~Ÿ/ /Q /!/‘ª~Ÿ //‘¨~Ÿ/ /T /!/‘¨~Ÿ //‘¦~Ÿ/ /U /!/‘¦~Ÿ /!/0Ÿ','U,'ÿ)óUŸÿ) *U *·+óUŸ6')V)ÿ)V*·+V6':'P:')S)ÿ)S*·+Sµ'É'cÉ'Í'aß'ó'aó'÷'eùUùsVstóUŸtQUÑTÑrSrtóTŸtQSÑ"h"Pw¦ñh1hLQhí"g"P‘HÍÒgìñgÑ"f"P‘P¦ñf žð?1fLQ žð¿í"e"P‘XÍÒ žð?ìñ žð¿¶"aƒQa¶"b‡Qb`€U€ªVª«óUŸ`‰T‰©S©«óTŸp&~&U~&Ú&SÚ&ß&Tà&ï&Sõ& 'S‡&™&r8$8&2$p"~&‚& s”8$8&Ÿ‡&²& r8$8&Ÿ™&œ&s”8$8&2$p"œ&£&s”8$8&2$p"ð& U& s Ss óUŸ ž S- < P & P& 1 v8$8&ŸC w V6 C VC y |8$8&Ÿ œ Vœ ž |8$8&Ÿ  Ç UÇ œ$óUŸœ$¨$U¨$Á$SÁ$‘%óUŸ@!!S±!¥#S«#„$SC%^%S  Ç 0Ÿœ$Ö$0ŸÖ$(%S(%,%Q,%C%]ƒ%Œ%SŒ%‘%\  ¹ 0Ÿ¹ !Vš!±!Vœ$±$0Ÿ±$ú$Vÿ$C%Vƒ%‘%V  ï 0Ÿï !\!•!Vš!¦#V«#$V—$œ$Vœ$ò$0Ÿò$(%S(%,%Q,%C%]C%ƒ%Vƒ%Œ%SŒ%‘%\  Ì 0ŸÌ ì Sï !Sš!¬!S„$œ$Sœ$C%0Ÿ^%ƒ%Sƒ%‘%0Ÿ""‘D”0$0& þŸp${$ ‘D”0$0&Ÿ{$„$P7"S"hÖc”2ŸC%^% hÖcØ!í!Pü"#P##pŸ#R#P«#ä#P .U.åóUŸ8YVZíVîåV8<P<XSZìSîåSàîUîóUŸ d‘HøšVŸãVVoVv»Vc£VøüPüSŸtSvST‹óTŸ%Q%‹Y®t $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"q $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ%t÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"q $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ%(t÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ(3¯óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ3NžóT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"q÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"ŸNj¯óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿjr©óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öc0Ëcq÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿr‹¯óT $ &(Ëc÷-ÿ÷-÷@Ëc” ÿÿÿÿ$¨Öcu $ &0Ëc÷-ÿ÷-÷HËc” ÿÿÿÿ$ Öc"y $ & Ëc÷-ÿ÷-÷8Ëc” ÿÿÿÿ$°Öc"Ÿ0\U\mSmoóUŸo›S›óUŸªUª¶óUŸ¶ÖSÈÍPÍV÷QÖVhV¶÷VpUAóUŸARUR^óUŸ^eUeàóUŸàûUû)óUŸ‰?S^ùSùûuÈû)S†uÌ”1ŸLv1Ÿ^àv1ŸàûuÌ”1Ÿ—)v1ŸP\U\lSlmpÈÀÉUÉÎSÎÏóUŸÏLSLMóUŸ ?PÏéP3FPÀïUïaóUŸakUkóUŸßïuÈïóXÀø0ŸøQVar0ŸrD Vç Vh ç Vo ç \o £ Êc£ ç ]o £ ”Êc£ ç ^§ « P« ç S¶Ä0ŸÄ×]] j 0Ÿ&40Ÿ4G^q ~ 0Ÿ–0Ÿ°\… Š 0Ÿ S  P ( SV @ Sç ÛS ¬U¬µSµ¶pȰ½U½~V~óUŸ·V·ºóUŸº VzV·V·ºóUŸº V SUS•]•–óUŸ 6T6“\“–óTŸ FQF‘V‘–óQŸ,U,‡S‡–óUŸ–êSêd óUŸd Ž SŽ ­ óUŸ­ !S!7!óUŸ7!Â!SÂ!Ì!óUŸÌ!ý!Sý!¥"óUŸ¥"Õ"S¿Ž ]!7!]X!„!]›!Ì!]ý!¥"]ouPu‡VE d ‘¸³!Æ!PÆ!Ì!‘¸ý!–"‘¸ "¥"Pà!ý!P±"¹"PP d Qý!"Q'"2"QG"–"Q"'"S'"2"s $ &3$q"Ÿ{"–"s $ &3$q"ŸG"{"s $ &3$q"Ÿð ^ ) ~Ÿ) E ^!7!^³!Ì!0Ÿ–"¥"^  R!1!RøE V!7!V–"¥"VðE S!7!S³!Ì!0Ÿ–"¥"Sð' \) E \!7!\³!Ì!1Ÿ–"¥"\BY0Ÿ–³1Ÿ­ Ç 0Ÿ7!X!1Ÿ­ Ç 1Ÿ7!X!0Ÿ­ å 0Ÿå !Q7!X!0Ÿ„!‹!Q­ å 1Ÿå !T7!X!1Ÿ„!‹!Tà ÷ Pý !PS!X!P„!‹!PðþUþQóUŸðùTùSp̰ÆUÆ S óUŸISISóUŸSzSz€óUŸ€ãSÆ\L\S}\ã\Ó×P×î]îPN]S€P•ã]äís # 7s # ¨ÇP@lUlð]ðùóUŸùUµ]µºóUŸº¢]ŒS\l³\º3\@¢\æýP'?1Ÿ?cQc‚‘Ô~KU‘Ô~U1Ÿ¢‘Ô~u’1Ÿ’St¢1ŸT+8ŸK¢8Ÿ÷ 0Ÿ SVl”V'?0Ÿ?LPu’0Ÿ¤±0Ÿ±Â_ÂÆŸËý_ 0ŸOXOÔ_ÔØŸ+_@¢0Ÿ÷ 0Ÿ Q^l”^@K0Ÿª®P®Þ‘È~oS‘È~l3‘È~@¢‘È~wƒx $v $)ÿŸù1Ÿw›XùVoXSlX3@XW×VùVSlV+KVòöQö_‘Ô~U‘Ô~ÄÝQÝé‘Ô~]0ŸS[0Ÿ<0Ÿ<]RS[R<1Ÿ<]TS[TOPU]PS[Pò«_K¢_ 0ŸþP+^K¢^á‘à~Ÿ+‘à~Ÿá\+\hXhnQnÔXX"0Ÿ"1Ÿ"WRWZPZ‘R‘®Q°¶Q‘¶T!U!%Q%2óUŸT2óTŸêîaî‘h ­U­ÊVÊËóUŸµ¹P¹ÉSpU‡Q‡œSœžóUŸŽ’P’VUISILóUŸLiS ­U­ÒVÒÓóUŸÓòV±µPµÑSÓòS -U-RVRSóUŸSrVrsóUŸs’V15P5QSSqSs’S€ŠUŠ"V"#óUŸ#¨V¨­óUŸ­òV»¾P¾!S#§S­òS³·a·ò‘H£§b§ò‘P #‘XLNaZ\bjlaz|bßò žÿÿÿÿÿÿïð U óUŸ-U-2óUŸ2QUQVóUŸViUinóUŸnyUy~óUŸÐeUe‡óUŸ‡™U™¾‘h¾ÀóUŸÀæ‘h^pQ%pR¢¥P¥¾SÀæS°¼U¼ÅSÅÆpÈ€U©V©ªóUŸ‘”P”¨S`mUmqTqwóUŸ`hThvSvwpÈU=S=QóUŸQ«S«¯óUŸ¯±S±¿óUŸ¿=S=QóUŸªPª®\¯¾P¿ÓPÓ@\„ˆPˆªV¯¸V¸¾p¿ÏVªV¯¸V¸¾pªP¯¾På0Ÿ0ŸêPÐÝUÝáTáòóUŸÐØTØñSñòpÈÀÓUÓS1óUŸ1wSw{óUŸ{SóUŸÐSeŽPÎÐP`dPdz\z{p{Š\ŠŽpÉÍPÍÐ\ÀØ0ŸØ÷P÷ýV1iVŸPiz\z{p{Š\ŠŽpiŽP ­U­±T±·óUŸ ¨T¨¶S¶·pÈ U jSjkóUŸk™SEaEa‘hkˆaˆ™‘hP]U]»S»½óUŸ½õSfhPh¼V½ÎPÎõV08U8MSMNóUŸð a*‘hP)S¤ ® P® Ê SÊ Ë p4 > P> g Sg h pÄ Î PÎ ò Sò ó p€ U © V© ª óUŸ” ˜ P˜ ¨ S`OUOñóUŸñUQ óUŸ`”T”PU óTŸð  U R SR X óUŸX € S U \X O \h € \# 4 P4 O Vh € P½ Ú PÚ ì Q N P 9 Q9 > rUU\UVóUŸTSVSVóTŸ)P)RSRVP˜í S²ÌSÌÞ _GUG V ²óUŸ²5V5FUF…V…óUŸ V Q9VGTG ^ ²óTŸ²5^5FTF…^…óTŸ9^GQG ‘¼ ²óQŸ²5‘¼5FQF…‘¼…óQŸ9‘¼!'\'G ¸ÌcGŠ\²Ü\5A\AF ¸Ìc¢\ÇÊ\SZ\Z _²5_F…_9_hmSm¢´P´Ç\êüPü1\G0ŸGP‘¸5F0ŸG0ŸG ]²5]5F0ŸF…]9]ž0Ÿž 1Ÿ²á0Ÿá1Ÿ590Ÿ°ÛUÛüóUŸ¸ÌPÏâP°¿0Ÿ¿ÔQ’§S§¯ ¸Ìc´S\’S¯£Sø\ ¾0Ÿ¾ïVïôvŸôUV¯£V¾ôSUS¯£Sn‚0ŸQn‚Qí1]d£]#U#DóUŸ(T(DóTŸ@TUTUóUŸ@TTTUóTŸà"é"Ué"%#V%#&#óUŸà"ó"Tó"$#S$#&#óTŸ# #0Ÿ0#Y#UY#†#óUŸ†#‰#U0#]#0Ÿ]#~#T€#†#T†#‰#0Ÿ0#]#1Ÿ]#~#U€#†#U†#‰#1Ÿ=#k#Qq#‰#Q26e6ž‘h!a!~w~‘`wž‘`ÐçUçt]tuóUŸuÐ]ÐçUçoSot}(u|SÐSÐç0ŸçpVuÐVÐç0Ÿçr\uÐ\À×U×p]pqóUŸqÐ]À×U×kSkp}(q|SÐSÀ×0Ÿ×lVqÐVÀ×0Ÿ×n\qÐ\€¨U¨J^JMóUŸMÀ^¦¨U¨CSCJ~(MTSWÀS€¨0Ÿ¨DVMÀV€¨0Ÿ¨F\MÀ\¦¨X€¨0Ÿ¨H]MÀ]U$Q$tStvóUŸNZPZuV`†U†ÍVÍÎóUŸÎÿV`‹T‹°S°ÎóTŸÎýSýÿóTŸ°´vU)óUŸƒ®1Ÿ®ÎP¢¸R¸ÀQÀÇR $ U$ j Sj p óUŸp Ð SÐ Ò óUŸÒ á S  T k Vk p óTŸp ‚ V‚ á óTŸ‚ † P† Ñ VÑ Ò ÐÌcÒ á V µ Vµ Ñ VÑ Ò ÐÌcÒ á VÐ  U ¾ V¾ É UÉ Ê óUŸÊ á Vá æ óUŸæ ô Uô  V  U â Vâ ë óUŸë V+ E P€ É P; Y Põ  P 5 Pß ½ SÊ à Sæ Së SF n PY g PÐüUün^nqóUŸq—^ÐêTê\V]—óTŸñ_Sq•SÐ0ŸPp_q—_ ¯U¯·Q·ÌSÌÎóUŸ¾ÂPÂÍVpU‡Q‡œSœžóUŸŽ’P’VU'Q'aVabóUŸ.2P2`S<YSÀãUã“]“–óUŸ–Ã]ÃÊóUŸÊ]ÝìSñŽS–¾SÊS ^Ê^Ýã1ŸãZVpV–¿VÊV%FPÊãPãý‘H€…U…²óUŸ™P±SàëUëS+óUŸ+=S=BóUŸÀÍUÍÑTÑ×óUŸÀÈTÈÖSÖ×pÈ ˜ U˜ Ç SÇ È óUŸÈ ò Sò  óUŸ 4 S¢ ² P P‚šP£¶P ¼U¼ÊóUŸÊÜUÜ: S: ; óUŸ; U SU ‰ óUŸÝðPU Y PY ‰ Sf z S ‰ SU=S=EóUŸEISIUóUŸU^S^jóUŸ.<PETPUiPP©U©¬r¬ÛóUŸÛUTcXc¡Q¡°Y°ÂRÂÈQÈÛRÛÿXƒ¥R¥ÂQÂÛTãÿP´ÛTƒÛYÛçx°ÛZ©ÛUPc0Ÿc·P·ÂpŸÂÛPÛÿ0Ÿ`ƒUƒ°S°´óUŸ´ S óUŸ1S19óUŸ9GSÂÙP%P9APôP%8Pƒ«\Ú \%4\48pEGPƒ«‘XÚ‘X#%b%9‘Xƒ«VÄ V2V9GV0_U_ßóUŸßäUä`óUŸ9qPquóU#HßäP<ÏSÕÝSß`S›¹PëüPüVP!VPU$V$%pÈ T #S#%pÌÐÙUÙüSüýP@ u Uu z óUŸz ™ U™ ž óUŸž ª Uª ¯ óUŸ¯ ½ U½  óUŸ@ L TL  óTŸ ™ U™ ž óUŸ ž óTŸ08U8QóUŸ4JSJMsŸMPSÀdAèdAUèdA_eA__eADgAWDgAMgA]MgARgA‘ð}ŸRgAÎgAWÀdAèdATèdAÎgAóTŸÀdAèdAQèdAOgA^OgARgAóQŸRgAÎgA^ãdAèdAUèdAZeASÓeAfAPfAfA\æfAgAPgA&gA\”eAÞeA2sŸÞeAáeA3sŸáeAèeA2sŸòeAífA2sŸífAðfA3sŸðfAûfA2sŸ™gAÎgA2sŸ”eAÙeAVÙeAòeA (öAŸòeAèfAVèfA&gA (öAŸ™gAÎgAVueA=gA4Ÿ„gAÎgA4ŸphA‡hAU‡hA·hAVéiAõiAUõiAjAV¨hAéiADŸjA³kADŸËhA¿iAGŸjA¯jAGŸÀjA³kAGŸàhA¿iAGŸEjA¯jAGŸÀjA³kAGŸ dA¨dAU¨dAµdASµdA½dAóUŸ dA¨dAU¨dA´dAScA²cAU²cA+dAóUŸ+dA9dAU9dA–dAóUŸcA¶cAT¶cAÉcASÉcA+dAóTŸ+dA5dAT5dA–dAóTŸcA¶cAQ¶cA*dAV*dA+dAóQŸ+dA9dAQ9dA–dAV¯cA¶cAT¶cAÂcAS@bAWbAUWbA`bAQ`bA‚cAóUŸ{bA±bA0Ÿ±bAÄbAtŸÄbAÖbATébAcAtŸ}aA…aAV—aA›aAU6@+6@U+6@66@Q66@A6@óUŸ`A`AU`A[`AV[`A^`AóUŸ^`Ar`AV`A`AT`AZ`ASZ`A]`A|~Ÿ]`A^`AóTŸ^`Ar`ASM`A^`APh`Aq`AP`A]`A\]`A^`AóT#Ÿ^`Ar`A\`A"`A0Ÿ"`A9`AQ`A`A\`_Aˆ_AUˆ_AÜ_AVÜ_Aß_AóUŸß_Aó_AUó_Aý_AV`_AŒ_ATŒ_AÞ_A|ŸÞ_Aß_AóTŸß_Aó_ATó_Aý_A|Ÿƒ_A“_AHŸ ^A1^AU1^A³^AS³^AÌ^AóUŸ€\A”\AU”\Aþ\ASþ\A]AóUŸ€\A”\AT”\Aÿ\AVÿ\A]AóTŸž\A]A][A¼[AU¼[AÀ[ASÀ[AÄ[AUÄ[AÅ[AóUŸÅ[AÕ[ASÕ[AÙ[AUÙ[AÚ[AóUŸÚ[Aò[AU¼[AÀ[ASÀ[AÄ[AUÄ[AÅ[AóUŸÑ[AÕ[ASÕ[AÙ[AUÙ[AÚ[AóUŸÅ[AÐ[As]A]AU]A]]A\]]A^]AóUŸ^]Ah]A\]A"]AT"]A[]AV[]A^]AóTŸ^]Ah]AV]A#]AHŸ6]A:]AU:]A;]A v $ &#ŸðZAøZAUøZAs[ASs[At[AóUŸt[AŠ[ASp]A‘]AU‘]A£]AV£]AÖ]AóUŸÖ]A^AV`5@›5@ (Îc›5@6@P›5@þ5@Xþ5@ 6@xŸ 6@6@X¿5@6@U1lARlA (ÎcRlAÒlAPÒlAßlAR mAYmAP^mAwmAPwmAmAQmA³mAP˜nA¿nAP(wA?wAPe{Ah{AP‚{A‹{Ar1$pB"”0$0&Ÿ‹{A{A r0$0&Ÿ|A|AP(}AH}APu®A®AP/lA\lA 0ÎcklA»lAS»lAÒlAsŸÒlAômAS˜nA¿nAS;oA}oASŒoA wASwA«wAS«wAÑwAXÑwA¶xASÂxAdyAS€yAü{AS|AM|ASe|A}AS(}A|~AS|~A¢~AX¢~AëASëA€AX€A|€AS|€A¢€AX¢€A AS A3AX3A\ASwAF…ASF…Av…AXv…AË…ASì…A$†AS$†AJ†AXJ†Aþ†AS ‡A›—AS›—AÁ—AXÁ—A®ASä®A§¯AS1lA\lA 0ÎcklAômA]˜nA¿nA];oA‡oA]ŒoA_yA]ryAÞ{A]å{AC}A]C}AH}AXH}A¶~A]½~A§¯A]3mAImARImAYmAYmA¢mAR¢mAômAY˜nA¿nAR;oAnoAYŒoA”uAY¦uAvAYwAwAYwA'wAY(wA?wARCwAxAY$xAõxAY€yA¼yAYíyAòyAY|A`|AY~A¢~AYÂ~AÝ~AYAzAY€A½„AYß„A½…AYì…A†AY­†A÷†AY ‡A¦AY¸A •AY[•A’•AY¤•AÛ•AYí•Aõ•AY–A˜AY˜Au®AYu®A®AR®AÆ®AYä®A§¯AYslAzlA t {B"zlA|lAs”ÿ {B"lA–lA tÀzB"‡wAÑwA0Ÿï€A3A0Ÿ^€A¢€A0ŸÍA€A0Ÿ^~A¢~A0Ÿ†AJ†A0Ÿ/…Av…A0Ÿ¾„AÆ„AP´„Aß„A Ÿ´„Aß„A9Ÿ´„Aß„A=ŸÄ”AÕ”A0ŸÕ”Aå”AR}—AÁ—A0Ÿë”Aõ”ApŸõ”A%•APåxAìxAPìxA€yA‘¤½yA|A‘¤e|A~A‘¤¢~AÂ~A‘¤Ý~AA‘¤e{Ah{AP‚{A‹{Ar1$pB"”0$0&Ÿ‹{A{A r0$0&Ÿ¼{AÛ{AP¼{A|Ap $§"$)ÿŸ¢~A³~Ap $§"$)ÿŸ³~AÂ~A'q ÿÿÿÿ1$ ZB"” ÿÿ $§"$)ÿŸe{A{A1Ÿ±{A|A1Ÿ¢~AÂ~A1ŸyAUyAZòyAzAZzA zAzq"#Ÿ zAzAzq"ŸC{AL{AZ)yAUyATòyAzATzA zAtq"#Ÿ zAzAtq"ŸC{AL{ATõyAùyApŸùyAzAPzAëzAVe|A}AVH}AÃ}AVó}A~AVÝ~AAVõyAzA0ŸzAzAQèzA${A^n}A}A2Ÿ}AÃ}A1ŸÃ}Aó}A^%zA@zAP@zAÐzA\e|A }A\H}Ab}A\ó}Aü}APÝ~AA\IzAPzA*ŸPzA‚zAPŽzA“zA*Ÿ“zA©zAP©zAÍzA ÿŸÝ~A A:ŸIzAPzA0ŸPzAnzA‘¨nzA‚zAQŽzA’zAQ’zA©zA‘¨©zA­zAQ­zAÍzA‘¨Ý~Aò~AqŸò~AAQÃ}AÆ}Aq1%v"ŸÏ}AÓ}ATÃ}AÓ}A|oA!oA ŸtZA®ZAS®ZA°ZA PÎcpZA°ZA8Ÿ|ZA„ZAV|ZAƒZAU°ZA¿ZA8Ÿ€`Aˆ`AUˆ`A`AS`A”`AU”`A•`AóUŸbAbAUbAbAóUŸ bA$bAU$bA%bAóUŸ bA$bAT$bA%bAóTŸ0bA4bAU4bA5bAóUŸÞ0Ÿ "Q"*p1$ÀC"”0$0&t"Ÿ*.!sØ~ $ &1$ÀC"”0$0&t"Ÿ..‘¸o¢² v”0$0&Ÿ²¼ s0$0&Ÿ v”0$0&ŸI[_Ýý‘¸o  ‘¸o ) Q) . P9 H ‘¸o½/Ô/‘¸o$060_60F0‘¸oÞ0Ÿ..‘ÔoÝý‘Ôoî ô Pô  ‘Ôo9 H ‘Ôo}/Ô/‘Ôo60F0‘Ôoœ‘ðoŸœÞVÞ·\<À\À_&‘Øo&à\çÝ\Ýý_ýN\N²‘ào… ˜ \˜ Æ ‘ðoŸÆ  \. h \}/60\60F0_œ‘ðoŸœ·Vä<^<¥V¥´~Ÿö÷V÷vŸcVk®V®»vŸ»ÞVçVVV²‘èoe … ^… ˜ V˜ Æ ‘ðoŸÆ  V . ^. h V}/F0V—‘€sŸ—Þ]ÞÙ‘ÈoÙ^&.^.k‘Èoçõ‘ÈoÝ‘ÈoÝý^ý… ‘Èo˜ Æ ‘€sŸÆ 60‘Èo60F0^F0A1‘Èo—‘€sŸ—Ö]äX]ûû]û}Ÿ7]7[S[k]çõ]_ ]e z Pz … ]˜ Æ ‘€sŸÆ ]  }Ÿ à]èG%]O%½/]Ô/Ù/]Þ/60S60A0]F0A1]ØÈŸØ<‘Ào<oRo‚P‚Šr1$ŸŠ“Q“SÝ‘ÀoÝýSý˜ ‘Ào˜ Æ ÈŸÆ 9 ‘Ào9 H RH 60‘Ào60;0S;0A1‘ÀoùB_B\Pens1$ C"” ÿÿŸJ¢s1$ C"” ÿÿŸ¼á_[_çïs1$ C"” ÿÿŸïõ‘¸o” $ &1$ C"” ÿÿŸ4s1$ C"” ÿÿŸ4Ý_Æ Ø PØ Þ ~"ŸÞ ä Pä  ‘¸o. 4 P4 9 pŸH h _}/½/‘¸oÞ/60_kâ]âçPõ]… ˜ ]Ï/Ô/2ŸpÞ0Ÿ>\^p•TçõT.TY–0Ÿ˜ Æ 0ŸÆ  ^. 1 ^}/½/^œ·b“·.‘Øo“ý#b“#í‘Øo“í… ‘Øo“ . ‘Øo“h | ‘Øo“| a“ ‘Øo“ ’ e“’ ž ‘Øo“ž £ d“£ 鑨o“éîP“î*‘Øo“*/P“/˜‘Øo“˜P“µ‘Øo“µºP“ºY‘Øo“Y^P“^v‘Øo“v{P“{Œ‘Øo“Œ‘a“‘‘Øo“¢f“¢}/‘Øo“F0A1‘Øo“p‡0Ÿ‡°S°Ó_Ó䑸o °B"”ÿŸäk0Ÿçõ0Ÿý0ŸýHSHY _Y e ‘¸o °B"”ÿŸe … 0Ÿ˜ h 0Ÿh }/_}/F00ŸF0A1_b¸]½/Ê/]Ê/Ô/ v|1&#ŸŠ\Ýý\6090\š¿P¿À_ÀÙ s1$# ø"ŸÙs1$# ø‘Ào3$# ø""ŸÝýs1$# ø‘Ào3$# ø""Ÿ60;0s1$# ø‘Ào3$# ø""Ÿ;0F0‘Ào1$# ø‘Ào3$# ø""ŸÀs1$#ŸÝýs1$#Ÿ60;0s1$#Ÿ;0F0 ‘Ào1$#ŸÙ ‘Ào3$#ŸÝý ‘Ào3$#Ÿ60F0 ‘Ào3$#ŸýÅ]ýVVV²‘èoýHSHÅ_$Y0ŸY…vŸØç}""}J$Y$}"U"ESEJs~ŸJ`STaVafóTŸ03 s”0$0&Ÿ3IQ-U-SóUŸ¾U¾ÃSÃÇUÇÈóUŸÈnS-T-óTŸ¾T¾nóTŸpžUž¨S¨¬T¬­óUŸp˜T˜­óTŸ°¼U¼ÚUÚèQè óU†ˆBóU0.(Ÿ°äTäøSø óTŸh@1h@3h@5h@>h@Ph@Rh@Th@mk@ok@tk@yk@ók@õk@÷k@ük@4l@6l@8l@=l@~l@€l@‚l@‡l@m@m@m@pm@ûm@n@5o@7o@9o@>o@q@q@Ðq@ßq@hr@~r@gs@vs@°s@Æs@ t@Mu@|@|@ |@|@_6@d6@h6@v6@„M@M@v6@{6@‚6@6@M@¶M@ë6@î6@ô6@9@œB@`E@3H@”H@®I@=J@ŒK@L@*M@„M@ÔM@öM@¦X@ºZ@ãZ@[@g[@ô^@r9@…9@M@*M@ž9@œB@jE@8G@ßL@M@4:@G:@øL@M@W:@\:@j:@x:@ßL@øL@ûH@YI@K@ŒK@L@´L@¶M@ÔM@öM@¦X@[@g[@`@@P6@ô^@bã—"°"Ó"ï"£¦­³óöýñ÷ûEá#ï#\˜Àz"—"°"»"È™œ£ % ï#"$+%`%? Ö ï"¸#ð$%`%&>&Õ&Ú 0"»"Ó"Ì#á#Á$Ò$ %+%&>&Õ&,'b2e2Ø2Ý2Ï×zˆDFfÐ š ¨·¼ÂHU˜«´ (-16R`¬°µ¸_ `l1< ¦¸ÀÐäÀÏÔÛó'6;B6EJQfuzŠ’¬H@ P ð M[ @ P ð ÏÒ×Üzˆ³À ( V @ ç Û§ ð Ï ì hÀ- 1 6 C ž ‘&–&™&œ&Ò-â-T0q02 22N2V2`2–2¶2½23"3%3¶2½23"3%3S3W3n3!6`6c6m6@?X?ÀìïôX°£iv‡Šª±·ºÀÝâåÀÄÈéâð° · ¿ !@!`!‚ž¨¶ptvÐ38<[Z b f z € ‰ ‡ Œ œ ¤ · œ ¤ · Ë Ø á «5@û5@6@6@¼[A¿[AÀ[AÈ[AÑ[AÔ[AÕ[Aà[A]A]A]A#]Až]A¡]A£]A§]A©]AÕ]A™^A²^A³^AÊ^Aƒ_A_A_A“_A…aAŒaA—aAœaA§aA²aA´aA bAplAÇlAÏlAÕlAvwA}wA‡wAŠwA”wAÇwAÂxAuyAÇyA|Am|A~A¢~AÂ~AÝ~AAyAUyAòyA{A{A${AC{AM{Am|A}AH}A~AÝ~AAzAÐzAÖzAâzAm|A}AH}Ab}Aó}Aý}AÝ~AAIzAÐzAÖzAÝzAÝ~AAÆ}AË}AÏ}AÔ}AM{A{A±{A|A¢~AÂ~Ae{A{A±{AÎ{AÕ{AÛ{Aç{Aî{AU~AX~A^~A˜~AÄAÇAÍA€AU€AX€A^€A˜€Aæ€Aé€Aï€A)A…A%…A/…A\…Af…Al…Aý…A†A†A@†A»”A>•AC•AV•Aí•AB–Aq—AÁ—Aë”Aú”A•A>•AC•AV•At—Aw—A}—A·—A@ZA§¯A`5@6@6@A6@0AEJU&à9 H 6090~ë6090 ´¸ÀÅÉÏÔ6090´¸ÀÅÉÏÔÙ8@T@t@˜@ø@`@@x@ è@ @ H+@ p+@ P5@`5@táA€áA(/CP7C°mc¸mcÀmcÈmcøocpcucÀuc !"ñÿ`5@½XÎc2HÎcB ÎcOÎc[0Îcf(ÎcoÎc| {B‚pB\‰ÀzBM‘`uB\™@DBР ZBЧ6@$¶@ZA­ÌPÎcà@Îcí8Îcø€\A„,ÎcÎcàÍc(#ÍcÈ.ÌÍcGÈÍcc Îcp |B<zÎc•`Bø ñÿ§`@¯®„xc¸€xcÁ¤xc͘xcÙœxcç xcòucþpxc Ðg@+h@Ð%0n@d.ˆxc;hxcF wcÈQ`vc,\Xvcktxcuxxc~xc†ñÿ‘Àmcž0_@ p_@³°_@ÉvcظmcÿÐ_@ °mc*ñÿ5 @=0€@EG€@)Q°‚@2Xð‚@–_HyciXycrÈxc}Pyc†àxce‘ñÿ–à´@²§ˆuc¯°Çc·ÀÇcÀ ¼@ÚϸÇcÖ cß  c'ꀾ@Dó|ucþ@uc8ÐB uc-€yc':xucFpycO€ucXlycañÿk0Ü@‹x(Ëc‚@ËcŽ Ëc˜8Ëc¤HËc°0Ëc»ÀÜ@ÁºÞ@KÅàÞ@pÑðËc¸ËcØ@Éc€è˜ucòPà@vÉc ucÐËc#äËc(èËc£ÈËc-ÀËc4ØËc>@ÊcFDÊcNÀÉc€^`ËcP°Ëch`ÊcÀøËct4Éc„0Éc—(Éc£Éc² Éc¾ÉcÍàËcÖÉcâÌcôÌc@ÈcÀ0Ècà,Bø%ñÿ.°!AV<"A©FÀ$A4Z¸ÌcbÀÌcj€Ìc2y@Ìc2…ñÿŒØÌc–ÐÌc ñÿ¨°¯Af· °A=Î`!C°Ö`°AYè€CÔï€-Cžû ½BV) CÔ  °B¬à±BXÀCÚàCÚ(@µBÔ/€æBV)7 *CX†ñÿ?iCMÀmcñÿY¸mcjÈmcs°mc†(/C™pc¯ÐË@(/ IAb½ÓðZAšçpáA÷ vc%9MAÇü04A*FÓ@WLp]A¯/Ðü@ñ¶Ì@¹Vðë@Zl o@7v`Öc~Š—¬¨Ýc´k §@~¦ TA!ËhÎcÝFûÀÎc° À`A *A›  TAŸ) •PÎ@"> R hÖc] r ÐØ@ç{ — Àuc: uc« @:´ È HvcÑ À9A"Ü ÷ pÓc @YAž  * 6 °«@G ¬ÝcO ÐNA¤a o PØcy %AI… tÎc3“ § À}@5µ @vc¿ Ê €2A"Û ï Ècö WA   &  uc¥°¬@³/ àw@Y; àµ@•B àDAYM Ðuc` ”uch |  ÀÙ@e– ¡ PÊ@¨­ €s@Í´ @/A;~¿ phACÊ lÖcÔ €Öc@ß xÓcè ó  €OA‚ Œuc$ Èc/ < E N W ¤uc^ `'ALh @bABp  Ècw Èc~   ²AÑ.˜ øÌc Э@K¬ µ É °€c@CØ  ü@®è ú ÀÖc |Óc  XA* ðÓ@às€Øc6 °KA.ñtáAC W f €Æ@ºn PRAÑ{ … àLA/ IA#¤ ÐÕ@Wª P¦@f±  aA½ €/AÇ Û  Úcâ Pø@ÅÍ@Ñ@K@®@Öë  bAõ þ 6/ÀUA@Àxc!(IA9A]AXR„Îc_°'A9g Ìcr†“P1A¥À¦@¬ÁÍ`?A3ÙÐAÅâìÈÖcGA±*YA"2E@A§J ˆ@iQ]PLAGlDvcwœuc€ìÌcî€ÓcŽ Î@-ŸÐ7Ar¯ v@:ª`yc¶Å×è0v@0ð)à`A4?bAGp­@XÑ °2AQV€Î@dà¦@:p ÓcÈ} ²@ÝŒ0bA“ð`A hÔc¨`v@4·”ÎcŘÕcÐPu@xZÖ pTA!qо@ épÔcù ,AÇÀ@AÅýË@Ä dA»¯@N /A`_A(°SAc0€ÔcÈ@XØcJ@g@ŒYkŠ|Îcª½ 9A.ÌÀÍ@VÖ8vcßðAäæÈÌcôÐl@ZP8AR'àMAé8ucET`4AcÐÖcl€°0A™ŠÈc“ 5AŽ¡ðÌc§»Èàq@æ€`Aõ4A 0vcaAHÕc* A›5J`ArXk€AÜx ‡” `A¡PÕc©Ð.AH²Æ`ñ@¦Ôr@f݈áAê0a@KPvcÐ`A)<àucA°8AiK Õc€S€áAb ^A¬ëpÂ@ v°Ýc}@Úc ‹`Ýc™«(vc¶€Îc¾ÈÜØÖcçûô@6 LA<cA ‹@Û[€4A&xÎc8@Ç@?àKA.K`ÎcZ[AbkXÕcw‚áAg’«»ðuc´@@ÏpÎcâö  `Õc(@UAv7àÖc@Ðà@ OÐgA—Yt /A:ƒ Öc@¤`É@ž­ Îc¾ào@0Éà°@nÙ€A.äÐ^AôÀÝc÷P%AhÝc LA-pÝc"€í@>_@*.AVk@whÕc°.A ˆPA:àÇc–*A¡ ¤·øÇcÂè ÈcÏxÝcÕÊ@GàpÕcÉP´@ˆìø¨Îc`A¬$.Gðà@C B¤ucNXc@EA%}tÕcP6@¤(‡Ðx@ãŒÎcž€¬@.­´Ýc´ÀkAçCºÐÙ ¼@yåðÁ@sP’@üïöýp@)øuc#`A6KІ@qTkPKARwƒ@6}xÕc‹’˜ÎcjpEA0›r@£,Aœ¨¸ÂÀdAÐP±@J{à/AÏ×cPÔ\A}ä »@ò.0.A*7@p@ŸCй@ÇKÀA¸U‰@i|… ª@ ˜hyc¢³dÎcÀ @AÏã ÷äÌcØ ð9Ab°7A  ®@% í@¹$0Ö@= Ы@¯-ð)A:€9A5š06ArDK°`@~Q°HAKdWm€Õcuˆ‹@˜Îc«°ë@5¹~@Ê@x@ܸÝc°ÈcÊ€¶@Jã0A¥î€³@šp1AèÌc(à A~/`.AC8Pˆ@A9À°A^H€Ýc(Vh@LA ƒ°`AŒ¡PTA¯Á(ÈcÏã¨ucï`Øcø  Î@ŸðÇc#0SAx*Œ@7hØc\0‰@Ê?HÈcR— ÀIA2Xj µ@4w¼@‚À»@5Œ°+AO‘lÎcž´ ¯@nÄ0aAÐÙçñ÷aA@ë@iˆÎcŒ H+@*V;PHAZDàYAQ`rèÇc~’ FAç«@aAЋ¹ÃâDAFïÄP9A+Ðc@iÐu@\ˆÕc"vc6àÌc@ZA:IÕc[JAFflex.cyy_get_previous_stateyy_buffer_stack_topyy_buffer_stackyy_state_bufyy_more_lenyy_c_buf_pyy_startyy_state_ptryy_ecyy_defyy_metayy_baseyy_chkyy_nxtyy_fatal_erroryyensure_buffer_stackyy_buffer_stack_maxyy_hold_charyy_n_charsyy_init_bufferyy_inityy_lpinclude_stackfull.13589end_of_all_imports.13552ignore_nested_imports.13553yy_more_flagyy_acceptyy_looking_for_trail_beginyy_acclistmain.cend_itendreasonexitcodedebug_counterror_countwarning_countnote_countfirst.13195lastline.13194my_malloc.part.1mybindseekbackcommandcountlast.13226buff.13248buff.13252previous.13283docucountdocuheadto_bindcrtstuff.c__JCR_LIST__deregister_tm_clones__do_global_dtors_auxcompleted.6939__do_global_dtors_aux_fini_array_entryframe_dummy__frame_dummy_init_array_entryfunction.cdo_globdec2otherother2decmyrandfromtobuffcountbuffrootctrl.13077buffcurrbuff.13008io.conestring.part.4currstrcoutstrpromptedonechar.part.0cinstrcurrcharlinebufferbackcharlast.12751valid_modes.12857smodes.12858oldstream.12938buffer.12974first.13044r1.13278pr.13280r2.13279graphic.crgb_to_pixelgbits_maxgbits_shiftbbits_maxbbits_shiftrbits_shiftrbits_maxitransformchange_fontmyfontxgcvalues.12959firsttextreadrgb.part.1bitpt.13226first.12905backpixelwinywinxwindowforepixelh.12929w.12928xgcvalues.12927sizehintsevent.12907lastvalid.12993initialvalid.12996lastx.12991initialx.12994lasty.12992initialy.12995bitcountpbits.13219deleteprinterfileprinterfilenameevent.13243sym.13244CSWTCH.329symbol.ccreate_symbolstackdesclink_symbols.part.0symheadsymrootexpected.12829found.12830flow.clabelrootlabelheadbison.cyy_stack_printyy_symbol_print.isra.1yytnameyydestruct.isra.3yypactyytranslateyycheckyydefactyyr2yyr1yypgotoyydefgotoyystosyytableyyrline__FRAME_END____JCR_END____init_array_end_DYNAMIC__init_array_start__GNU_EH_FRAME_HDR_GLOBAL_OFFSET_TABLE_create_myreadassume_default_colorsyy_switch_to_buffer__libc_csu_fini__ctype_toupper_loc@@GLIBC_2.3main_file_namegetenv@@GLIBC_2.2.5search_labelyc2ocyyrestartdotfree@@GLIBC_2.2.5my_mallocbackbitXGetDefaultset_escdelayputchar@@GLIBC_2.2.5yynerrslocaltime@@GLIBC_2.2.5missing_loop_line__errno_location@@GLIBC_2.2.5explanationyyget_outdump_symload_pop_multistrncpy@@GLIBC_2.2.5remove@@GLIBC_2.2.5fontheightstrncmp@@GLIBC_2.2.5yc2short_ITM_deregisterTMCloneTablestdout@@GLIBC_2.2.5myformatstrcpy@@GLIBC_2.2.5prognamecreate_dim__isoc99_fscanf@@GLIBC_2.7execution_endforcheckXGetGCValuesXDrawRectangleXUnloadFontcreate_exceptionyydebugfunction_or_arrayXLookupStringstackrootpushsymlistmissing_untilferror@@GLIBC_2.2.5put_and_counthold_docuXStoreNamecreate_arraylinkisatty@@GLIBC_2.2.5mousexmycontinuehas_colorswaddchfread@@GLIBC_2.2.5mylinenocreate_documymovecount_argsstdin@@GLIBC_2.2.5backpidstrtod@@GLIBC_2.2.5exp@@GLIBC_2.2.5getcharsinit_colorpush_streamdotifystorelabelimport_libwinheightvisualinfois_boundXDrawPointgetpid@@GLIBC_2.2.5check_leave_switchlprstreamforegroundXFillPolygonwaddnstrXPendingXDrawArc_edataclearrefsyyerrormousebmouseyatan@@GLIBC_2.2.5yyparseyyincreate_strdatawattrsetfclose@@GLIBC_2.2.5XParseGeometrycheck_alignmentXCheckWindowEventdisplayinfolevelstpcpy@@GLIBC_2.2.5next_caseclearscreencreate_gosubstrlen@@GLIBC_2.2.5XFillRectanglemyclosecreate_labelinit_pairlink_labelcreate_count_paramsoc2ycmywaityyget_debugmatchgotosystem@@GLIBC_2.2.5yytexttriangleyyreallocwrefreshstrchr@@GLIBC_2.2.5XFreelastdatakeypadcreate_makelocalinitscryy_create_buffermissing_nextget_symlabelcountpclose@@GLIBC_2.2.5XLookupColorcreate_makestaticmybellstrrchr@@GLIBC_2.2.5XFreePixmapquery_arrayclearwinintrflushgettimeofday@@GLIBC_2.2.5winoriginreorder_stack_before_callfindnopfputs@@GLIBC_2.2.5rectconcatstart_colorpush_switch_idprint_docuyylinenoyy_flex_debugcreate_onestringpushstrptrlineprinterXLoadQueryFontXSetWMNormalHintspow@@GLIBC_2.2.5compilelog@@GLIBC_2.2.5strncat@@GLIBC_2.2.5fgetc@@GLIBC_2.2.5yyget_textwsetscrregyyalloccreate_dbldatacreate_colourcreate_pokelibrary_pathswitch_compareyyfreeyyset_linenocmdrootcreate_executemissing_endiflast_inkeystripfputc@@GLIBC_2.2.5compilation_endpoptesteofopen_stringpopgotoyy_scan_bufferskipperlibrary_defaultstackheadsignal_handleracos@@GLIBC_2.2.5__libc_start_main@@GLIBC_2.2.5srand@@GLIBC_2.2.5missing_wendfgets@@GLIBC_2.2.5create_pushstrchkpromptexplicitputbitmax_switch_iddump_commandscalloc@@GLIBC_2.2.5winchpushstrsymcreate_subr_link__data_startXDestroyWindowcreate_requirewinwidthstrcmp@@GLIBC_2.2.5popdblsymmousemodcreate_dblbinyyoutsignal@@GLIBC_2.2.5XOpenDisplayadd_command_with_switch_stateyy_scan_stringcreate_pusharrayrefcheck_compatyyset_inerrorlevelmoveoriginfprintf@@GLIBC_2.2.5yy_scan_bytesftell@@GLIBC_2.2.5closeprinter__gmon_start__XTextExtentsyyget_linenoyabargvpushgotostrtol@@GLIBC_2.2.5change_colournew_file__dso_handleclearerr@@GLIBC_2.2.5error_with_linebound_programyyget_lengmemcpy@@GLIBC_2.14COLSpopstrsymstreams_IO_stdin_usedyypush_buffer_stateyycharlibfile_chaininclude_depthkill@@GLIBC_2.2.5inter_pathmissing_next_linefileno@@GLIBC_2.2.5text_alignselect@@GLIBC_2.2.5circlepop_switch_idopen_mainrecall_buffmissing_wend_linemyseekcreate_callswitch_nestingyy_delete_buffererrorstringXNextEvent__libc_csu_init__rawmemchr@@GLIBC_2.2.5reset_prog_modestdscrcreate_boolemissing_until_linemalloc@@GLIBC_2.2.5fflush@@GLIBC_2.2.5_IO_getc@@GLIBC_2.2.5currentcreate_mybreakcolormapcreate_openwinleave_lib__isoc99_sscanf@@GLIBC_2.7create_pushdblstream_modesungetc@@GLIBC_2.2.5mystreamcurrent_functionmy_strndupcreate_strrelopgettermkeyyypop_buffer_statepopsymlistyylengadd_switch_statecurrlibcreate_lineatan2@@GLIBC_2.2.5mkstemp@@GLIBC_2.2.5strpbrk@@GLIBC_2.2.5my_strerrorcmdheadpoplabeljumpfontnameXCreateWindowfseek@@GLIBC_2.2.5backgroundXSelectInputinlibpop_streaminteractiveXDrawStringfunction_typerealloc@@GLIBC_2.2.5closewinnotimeoutfdopen@@GLIBC_2.2.5__bss_startXCreateGCXDrawLinescreate_check_return_valueerrorcodeisboundmissing_endsubcreate_restoretileolyylexstrftime@@GLIBC_2.2.5scrollokcheckstreambadstreamendwinwgetchmy_strdupXSetForegroundLINESwclearcreate_openprinterwaitpid@@GLIBC_2.2.5tokenalttcsetpgrp@@GLIBC_2.2.5create_gototokenprogram_stateXFlushexportedmy_freepushXCreateColormapXChangeGCopen_libraryykeyyy_flush_buffercreate_myopenpopen@@GLIBC_2.2.5XGetWindowAttributesXGetKeyboardMappingpushnameadd_commandreplacegetwinkeycreate_changestringfopen@@GLIBC_2.2.5nocbreakXPutImagepokefilecurinizedXMatchVisualInfoloop_nestingcreate_doarraystrtok@@GLIBC_2.2.5_Jv_RegisterClassesfi_pendingnegateXMapWindowcreate_readdataputcharslink_symbolsduplicatenoechoequalcreate_endfunctionwgetnstrlastcmdfloor@@GLIBC_2.2.5create_functionmissing_endif_lineputindrawmodefind_interpretercreate_docu_arrayyylvalpushdblsymstrcat@@GLIBC_2.2.5logical_shortcutlibfile_chain_lengthgetbitpushlabelreport_missinglibfile_stackasin@@GLIBC_2.2.5initialize_switch_id_stackyyget_insprintf@@GLIBC_2.2.5resetskiponceexit@@GLIBC_2.2.5print_to_filefwrite@@GLIBC_2.2.5__TMC_END__firstref_ITM_registerTMCloneTablename2ycgeometrydecidegetmousexybmlastrefXFillArcwinopenedwmovesqrt@@GLIBC_2.2.5create_printcreate_ppscheckopenswapmissing_loopstrerror@@GLIBC_2.2.5create_dblrelopyyset_debugcurs_setXCreatePixmapXGetImagewscrlyyset_outcalc_psscaleleaveokmissing_endsub_linereset_shell_modemyreturnforincrementXSetBackgroundfork@@GLIBC_2.2.5displaynamestrstr@@GLIBC_2.2.5reorder_stack_after_callyylex_destroyXDrawLine__ctype_tolower_loc@@GLIBC_2.3create_array__ctype_b_loc@@GLIBC_2.3std_diagdo_erroryabargcstderr@@GLIBC_2.2.5flex_linestartforcompilation_startdump_sub.symtab.strtab.shstrtab.interp.note.ABI-tag.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.got.text.fini.rodata.eh_frame_hdr.eh_frame.init_array.fini_array.jcr.dynamic.got.plt.data.bss.comment.debug_aranges.debug_info.debug_abbrev.debug_line.debug_str.debug_loc.debug_ranges8@8#T@T 1t@t$Döÿÿo˜@˜`N ø@øhV`@`µ^ÿÿÿo@^kþÿÿox@xpzè@訄B@¸ŽH+@H+‰p+@p+à ”P5@P5`5@`5¬£táAtá ©€áA€á¨M ±(/C(/$¿P7CP7¼1ɰmc°mÕ¸mc¸máÀmcÀmæÈmcÈm0˜øocøoïpcpøucu¤ þÀuc¤uh 0¤u[ ÿu°¯w¼'k4'5Ÿ/2aA0ÑXDL)ÕžW;s üîe`Œ8C%Î ˜Ïd import library1 import __IGNORE_NESTED_IMPORTS // Library 1 import __END_OF_CURRENT_IMPORT import library2 import __IGNORE_NESTED_IMPORTS // Library 2 import __END_OF_CURRENT_IMPORT import library3 import __IGNORE_NESTED_IMPORTS // Library 3 import __END_OF_CURRENT_IMPORT import library4 import __IGNORE_NESTED_IMPORTS // Library 4 import __END_OF_CURRENT_IMPORT import __END_OF_ALL_IMPORTS import main import library1 import library2 import library3 import library4 if (peek("isbound")) then exit 0 else bind "bind_import" system("chmod 755 bind_import") exit system("./bind_import")/256 endif end rem 00000634 rem bind_import.yab rem 00000015 rem 04 rem __YaBaSiC_MaGiC_CoOkIe__ yabasic-2.78.5/tests/switch_subr.yab0000664000175100017510000000136113037062762014357 00000000000000 sub test_switch(num) switch num case 0:return 0:break case 1:return 1:break case 2:case 3:case 4:return 2:break case 5:return 5:break default: return 6 end switch end sub sub test_switch2(num) switch num case 0: return 0 case 1: goto outside case 2: return 2 end switch label outside poke "__assert_stack_size",1 return 1 end sub if (test_switch(0)<>0) exit 1 if (test_switch(1)<>1) exit 2 if (test_switch(2)<>2) exit 3 if (test_switch(3)<>2) exit 4 if (test_switch(4)<>2) exit 5 if (test_switch(5)<>5) exit 6 if (test_switch(6)<>6) exit 7 if (test_switch(7)<>6) exit 8 if (test_switch2(0)<>0) exit 9 if (test_switch2(1)<>1) exit 10 if (test_switch2(2)<>2) exit 11 poke "__assert_stack_size",0 exit 0 yabasic-2.78.5/tests/out.dat0000775000175100017510000000000413260635161012620 00000000000000tmp yabasic-2.78.5/tests/switch.yab0000664000175100017510000000212013040045135013303 00000000000000 for i=1 to 2 for j=1 to 8 x=0 switch j case 1:x=1:poke "__assert_stack_size",1:break case 2:x=2:break case 3:case 4:case 5:x=3:break case 6:x=4:break default:x=5 end switch next j poke "__assert_stack_size",0 if (x=0) exit -1 if (j=1 and x<>1) exit 1 if (j=2 and x<>1) exit 2 if (j=3 and x<>3) exit 3 if (j=4 and x<>3) exit 4 if (j=5 and x<>3) exit 5 if (j=6 and x<>4) exit 6 if (j=7 and x<>5) exit 7 if (j=8 and x<>5) exit 8 next i poke "__assert_stack_size",0 for i=1 to 2 for j=1 to 8 x$="" switch j case 1:x$="1":poke "__assert_stack_size",1:break case 2:x$="2":break case 3:case 4:case 5:x$="3":break case 6:x$="4":break default:x$="5" end switch next j poke "__assert_stack_size",0 if (x$="") exit -1 if (j=1 and x$<>"1") exit 1 if (j=2 and x$<>"1") exit 2 if (j=3 and x$<>"3") exit 3 if (j=4 and x$<>"3") exit 4 if (j=5 and x$<>"3") exit 5 if (j=6 and x$<>"4") exit 6 if (j=7 and x$<>"5") exit 7 if (j=8 and x$<>"5") exit 8 next i poke "__assert_stack_size",0 yabasic-2.78.5/tests/simple.yab.trs0000664000175100017510000000012213260635163014114 00000000000000:test-result: PASS :global-test-result: PASS :recheck: no :copy-in-global-log: no yabasic-2.78.5/tests/bugs.yab.trs0000664000175100017510000000012213260635163013563 00000000000000:test-result: PASS :global-test-result: PASS :recheck: no :copy-in-global-log: no yabasic-2.78.5/tests/common/0000775000175100017510000000000013260345645012677 500000000000000yabasic-2.78.5/tests/common/speed.yab0000664000175100017510000000040513260345645014413 00000000000000print "Simple speed check (limit needs adjustment for each computer other than mine) ..." for a=1 to 10000 for b=1 to 1000 next b next a if (peek("secondsrunning")>3) then print "Error, program took too long" + str$(peek("secondsrunning")) exit 1 endif yabasic-2.78.5/tests/common/random.yab0000664000175100017510000000314413155232770014573 00000000000000 print "Check, that no random number exceeds maximum ..." rep = 1000 for m=0 to 100 step 10 for i=1 to rep r = ran(m) if r > m then print " Random number ",r," larger than maximum ", m exit 1 endif next i next m print "Check for granularity of random numbers ..." p = 2**15 numbins = 10 rep = 4000000 dim bins(numbins) for i=1 to rep r = int(ran(numbins * p)) if (r < numbins) bins(r) = bins(r) + 1 next i expected = rep / ( numbins * p ) print "Expecting count ", expected if expected < 8 then print "Sample to small; expected is < 8: ",expected exit 1 endif bad = 0 for i=0 to numbins - 1 print bins(i)," "; if bins(i) < expected / 8 or bins(i) > 4 * expected then print "Bin ",i," has count of ",bins(i) bad = 1 endif next i print if bad = 1 exit 1 print "Calculating pi ..." hits = 0 rep = 10000 for i=1 to rep x = ran(1) y = ran(1) dist = sqrt( x*x + y*y ) if dist < 1 hits = hits + 1 next i pi_approx = 4 * hits / rep if pi_approx < 0.9 * pi or pi_approx > 1.1 * pi then print "Did not get a reasonable value of pi: ",pi_approx exit 1 endif print pi_approx print "Checking for even distribution of random numbers ..." for i=0 to numbins - 1 bins(i) = 0 next i rep = 10000 for i=1 to rep r = int(ran(numbins)) bins(r) = bins(r) + 1 next i expected = rep/numbins print "Expecting count of ",expected for i=0 to numbins - 1 print bins(i)," "; if bins(i) < 0.8 * expected or bins(i) > 1.2 * expected then print "Unreasonable count of ",bins(i)," for bin ",i exit 1 endif next i print exit 0 yabasic-2.78.5/tests/long_variable_name.yab0000775000175100017510000000110513031265565015626 00000000000000#!./yabasic print "Regression test: Check for buffer-overflow while handling long variable names" a = bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb exit 0 yabasic-2.78.5/tests/bind_import.yab0000664000175100017510000000032713260433076014330 00000000000000import library1 import library2 import library3 import library4 if (peek("isbound")) then exit 0 else bind "bind_import" system("chmod 755 bind_import") exit system("./bind_import")/256 endif yabasic-2.78.5/tests/long_variable_name.yab.log0000664000175100017510000000020113260635163016376 00000000000000Regression test: Check for buffer-overflow while handling long variable names PASS tests/long_variable_name.yab (exit status: 0) yabasic-2.78.5/tests/switch_for.yab0000664000175100017510000000013513037223371014163 00000000000000 for i=1 to 2 switch 3 case 3:break end switch next i poke "__assert_stack_size",0 yabasic-2.78.5/tests/simple.yab0000775000175100017510000000007713025160552013313 00000000000000#!./yabasic print "Yabasic, version ",peek("version") exit 0 yabasic-2.78.5/tests/library7.yab0000664000175100017510000000011613260632276013554 00000000000000sub qux$() return "qux" end sub export sub thud$() return "thud" end sub yabasic-2.78.5/tests/io.yab.log0000664000175100017510000000004313260635163013205 00000000000000PASS tests/io.yab (exit status: 0) yabasic-2.78.5/tests/io.yab.trs0000664000175100017510000000012213260635163013232 00000000000000:test-result: PASS :global-test-result: PASS :recheck: no :copy-in-global-log: no yabasic-2.78.5/io.c0000664000175100017510000013042313260517214010734 00000000000000/* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de io.c --- code for screen and file i/o This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ /* ------------- includes ---------------- */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* all prototypes and structures */ #endif /* ------------- local defines ----------------- */ #define YC_BLACK 0 #define YC_WHITE 1 #define YC_RED 2 #define YC_BLUE 3 #define YC_GREEN 4 #define YC_YELLOW 5 #define YC_CYAN 6 #define YC_MAGENTA 7 #ifndef COLOR_BLACK #define COLOR_BLACK 0 #define COLOR_RED 1 #define COLOR_GREEN 2 #define COLOR_YELLOW 3 #define COLOR_BLUE 4 #define COLOR_MAGENTA 5 #define COLOR_CYAN 6 #define COLOR_WHITE 7 #endif #ifndef A_COLOR #define A_COLOR 0xff00 #endif /* ------------- external references ---------------- */ extern int mylineno; /* current line number */ extern int yyparse(); /* call bison parser */ /* ------------- local functions ---------------- */ static int onechar(void); /* read one char from currentinstream */ static void backchar(int); /* put char back into stream */ static void readline(void); /* read one line from current stream */ static void curinit(void); /* initialize curses */ static void initcol(void); /* initialize curses colors */ int checkstream(void); /* test if currst is still valid */ #ifdef WINDOWS static DWORD keythread(LPWORD); /* wait for key input from console */ static int is_valid_key(INPUT_RECORD *); /* check if input rec is valid key */ static void decode_key(int, char *); /* decode keycode into string */ #endif int name2yc(char *); /* convert a color name to an integer */ int yc2oc(int, int); /* convert a yabasic color to operating system color */ char *yc2short(int); /* convert yabasic colours to short colour name */ int oc2yc(int); /* convert an operating system color to yabasic color */ /* ------------- global variables ---------------- */ static int prompted; /* TRUE, if prompt is fresh */ FILE *streams[FOPEN_MAX]; /* file streams */ int stream_modes[FOPEN_MAX]; /* modes for streams */ int lprstream = -1; /* stream associated with lineprinter */ static int currstr = STDIO_STREAM; /* currently switched stream */ static FILE *cinstr; /* current stream for input */ static FILE *coutstr; /* current stream for output */ static char linebuffer[INBUFFLEN]; /* buffer for one line of input */ int curinized = FALSE; /* true, if curses has been initialized */ static char *currchar; /* current char to read */ #ifdef UNIX FILE *lineprinter = NULL; /* handle for line printer */ #else static short stdfc; /* standard foreground color of window */ static short stdbc; /* standard background color of window */ HANDLE gotwinkey = INVALID_HANDLE_VALUE; /* mutex to signal key reception */ char conkeybuff[100]; /* Key received from console */ char winkeybuff[100]; /* Key received from window */ HANDLE wthandle = INVALID_HANDLE_VALUE; /* handle of win thread */ HANDLE kthandle = INVALID_HANDLE_VALUE; /* handle of inkey thread */ DWORD ktid; /* id of inkey thread */ int LINES = 0; /* number of lines on screen */ int COLS = 0; /* number of columns on screen */ HANDLE ConsoleInput; /* handle for console input */ HANDLE ConsoleOutput; /* handle for console output */ HANDLE lineprinter = INVALID_HANDLE_VALUE; /* handle for line printer */ #endif /* ------------- functions ---------------- */ void create_print(char type) /* create command 'print' */ { struct command *cmd; cmd = add_command(cPRINT, NULL, NULL); cmd->pointer = my_malloc(sizeof (int)); /* store type of print */ cmd->tag = type; } void print(struct command *cmd) /* print on screen */ { int type; struct stackentry *p, *q, *r; static int last = 'n'; char *s; long int n; double d; #ifdef UNIX int x, y; #endif r = NULL; type = cmd->tag; if (!checkstream()) { return; } switch (type) { case 'n': /* print newline */ if (curinized && coutstr == stdout) { #ifdef WINDOWS onestring ("\r\n"); break; #else getyx (stdscr, y, x); if (y >= LINES - 1) { scrl (1); y = y - 1; } move (y + 1, 0); refresh (); break; #endif } else { string[0] = '\n'; if (abs(currstr) == lprstream) { string[1] = '\r'; string[2] = '\0'; } else { string[1] = '\0'; } } onestring(string); break; case 't': /* print tab */ string[0] = '\t'; string[1] = '\0'; onestring(string); break; case 'd': /* print double value */ p = pop(stNUMBER); d = p->value; n = (int)d; if (n == d && d <= LONG_MAX && d >= LONG_MIN) { sprintf(string, "%s%ld", (last == 'd') ? " " : "", n); } else { sprintf(string, "%s%g", (last == 'd') ? " " : "", d); } onestring(string); break; case 'U': r = pop(stSTRING); case 'u': /* print using */ p = pop(stSTRING); q = pop(stNUMBER); type = 'd'; s = string; if (last == 'd') { *s = ' '; s++; } if (!myformat(s, q->value, p->pointer, r ? r->pointer : NULL)) { sprintf(string, "'%s' is not a valid format", (char *)p->pointer); error(ERROR, string); break; } onestring(string); break; case 's': p = pop(stSTRING); onestring((char *)p->pointer); break; } last = type; } void mymove() /* move to specific position on screen */ { int x, y; #ifdef WINDOWS COORD coord; #endif y = (int)pop(stNUMBER)->value; if (y < 0) { y = 0; } if (y > LINES - 1) { y = LINES - 1; } x = (int)pop(stNUMBER)->value; if (x < 0) { x = 0; } if (x > COLS - 1) { x = COLS - 1; } if (!curinized) { error(ERROR, "need to call 'clear screen' first"); return; } #ifdef UNIX move (y, x); refresh (); #else coord.X = x; coord.Y = y; SetConsoleCursorPosition(ConsoleOutput, coord); #endif } void clearscreen() /* clear entire screen */ { #ifdef WINDOWS DWORD written; /* number of chars actually written */ COORD coord; /* coordinates to start writing */ #endif if (!curinized) { curinit(); } #ifdef UNIX clear (); refresh (); #else coord.X = 0; coord.Y = 0; FillConsoleOutputCharacter(ConsoleOutput, ' ', LINES * COLS, coord, &written); FillConsoleOutputAttribute(ConsoleOutput, FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE, LINES * COLS, coord, &written); SetConsoleCursorPosition(ConsoleOutput, coord); #endif } static void curinit(void) /* initialize curses */ { #ifdef WINDOWS CONSOLE_SCREEN_BUFFER_INFO coninfo; /* receives console size */ #endif #ifdef UNIX initscr(); initcol(); setscrreg(0,LINES); scrollok(stdscr,TRUE); leaveok(stdscr,TRUE); keypad(stdscr,TRUE); notimeout (stdscr, FALSE); /* wait after escape for escape-sequence */ set_escdelay(10); curs_set (0); intrflush(stdscr,FALSE); signal(SIGTTOU, SIG_IGN); signal(SIGTTIN, SIG_IGN); tcsetpgrp(STDIN_FILENO, getpid()); #else GetConsoleScreenBufferInfo(ConsoleOutput, &coninfo); COLS = coninfo.srWindow.Right + 1; LINES = coninfo.srWindow.Bottom + 1; initcol(); #endif curinized = TRUE; } char * inkey (double maxtime) /* get char from keyboard */ { char retkey[100]; long int max, now, start, left; #ifdef WINDOWS DWORD initial; DWORD oflags; /* saves normal state of console input buffer */ DWORD flags; /* new input mode for console input buffer */ HANDLE evn[2]; /* events to wait for */ DWORD wait_result; /* return value of wait operation */ INPUT_RECORD inrec; DWORD num; #else fd_set readfds; struct timeval tv; int maxfd; int winfd, termfd; int status, ret; int pending; static int cnt=0; #endif if (maxtime >= 0.0 && maxtime < 0.01) { maxtime = 0.01; } if (!curinized) { error(ERROR, "need to call 'clear screen' first"); return my_strdup(""); } retkey[0] = '\0'; left = max = (long int)(maxtime * 1000000); /* Initialization */ #ifdef UNIX /* events */ winfd = (winopened && display) ? ConnectionNumber(display) : 0; termfd = fileno (stdin); maxfd = (termfd > winfd) ? termfd : winfd; /* timing */ gettimeofday(&tv, NULL); start = tv.tv_sec * 1000000 + tv.tv_usec; /* terminal */ noecho(); cbreak(); refresh (); #elif WINDOWS /* events */ if (gotwinkey == INVALID_HANDLE_VALUE) { gotwinkey = CreateEvent(NULL, FALSE, FALSE, NULL); } /* timing */ initial = GetTickCount(); start = 1000 * (GetTickCount() - initial); GetConsoleMode(ConsoleInput, &oflags); flags = oflags & ~(ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT); SetConsoleMode(ConsoleInput, flags); /* terminal */ evn[0] = gotwinkey; evn[1] = ConsoleInput; #endif while (((max >= 0 && left > 0) || max < 0) && !retkey[0]) { /* already got key ? */ #ifdef UNIX if (winopened && display && XPending(display)) { getwinkey (retkey); if (retkey[0]) { break; } } /* prepare to wait for key */ FD_ZERO(&readfds); if (winfd) { FD_SET(winfd, &readfds); } FD_SET(termfd, &readfds); #elif WINDOWS if (*winkeybuff) { strcpy(retkey, winkeybuff); winkeybuff[0] = '\0'; return my_strdup(retkey); } conkeybuff[0] = winkeybuff[0] = '\0'; #endif /* wait for key */ if (max >= 0) { #ifdef UNIX tv.tv_sec = left / 1000000; tv.tv_usec = left % 1000000; ret = select(maxfd + 1, &readfds, NULL, NULL, &tv); #elif WINDOWS wait_result = WaitForMultipleObjects(2, evn, FALSE, (DWORD)(left / 1000)); #endif } else { #ifdef UNIX ret = select(maxfd + 1, &readfds, NULL, NULL, NULL); #elif WINDOWS wait_result = WaitForMultipleObjects(2, evn, FALSE, INFINITE); #endif } /* report result */ #ifdef UNIX if (ret == -1) { error(ERROR, "waiting for input failed"); break; } #elif WINDOWS if (wait_result == WAIT_FAILED) { error(ERROR, "waiting for input failed"); break; } #endif /* collect key */ #ifdef UNIX if (FD_ISSET(termfd, &readfds)) { gettermkey(retkey); } else if (FD_ISSET(winfd, &readfds)) { getwinkey (retkey); } #elif WINDOWS if (wait_result == WAIT_OBJECT_0 + 1) { do { ReadConsoleInput(ConsoleInput, &inrec, 1, &num); GetNumberOfConsoleInputEvents(ConsoleInput, &num); } while (!is_valid_key(&inrec) && num > 0); conkeybuff[0] = '\0'; if (is_valid_key(&inrec)) { if (isprint(inrec.Event.KeyEvent.uChar.AsciiChar)) { conkeybuff[0] = inrec.Event.KeyEvent.uChar.AsciiChar; conkeybuff[1] = '\0'; } else { if (inrec.Event.KeyEvent.wVirtualKeyCode) { decode_key(inrec.Event.KeyEvent.wVirtualKeyCode, conkeybuff); } } } } else if (wait_result == WAIT_OBJECT_0) { /* key is already stored in winkeybuff */ } if (*winkeybuff) { strcpy(retkey, winkeybuff); } else { strcpy(retkey, conkeybuff); } conkeybuff[0] = winkeybuff[0] = '\0'; #endif /* adjust timing */ #ifdef UNIX gettimeofday(&tv, NULL); now = tv.tv_sec * 1000000 + tv.tv_usec; #elif WINDOWS now = 1000 * (GetTickCount() - initial); #endif left = max - now + start; } /* restore terminal state */ #ifdef UNIX echo(); nocbreak(); refresh (); #elif WINDOWS SetConsoleMode(ConsoleInput, oflags); #endif return my_strdup(retkey); } #ifdef WINDOWS static int is_valid_key(INPUT_RECORD * rec) /* check if input rec contains valid key */ { if (rec->EventType != KEY_EVENT || !rec->Event.KeyEvent.bKeyDown || rec->Event.KeyEvent.wVirtualKeyCode == VK_SHIFT || rec->Event.KeyEvent.wVirtualKeyCode == VK_CONTROL) { return FALSE; } return TRUE; } static void decode_key(int key, char *to) /* decode keycode into string */ { int skey; skey = -1; switch (key) { case 0x1b: skey = kESC; break; case 0x0d: skey = kENTER; break; case 0x09: skey = kTAB; break; case 0x21: skey = kSCRNUP; break; case 0x22: skey = kSCRNDOWN; break; case 0x70: skey = kF1; break; case 0x71: skey = kF2; break; case 0x72: skey = kF3; break; case 0x73: skey = kF4; break; case 0x74: skey = kF5; break; case 0x75: skey = kF6; break; case 0x76: skey = kF7; break; case 0x77: skey = kF8; break; case 0x78: skey = kF9; break; case 0x79: skey = kF10; break; case 0x7a: skey = kF11; break; case 0x7b: skey = kF12; break; case 0x24: skey = kHOME; break; case 0x23: skey = kEND; break; case 0x2d: skey = kINS; break; case 0x2e: skey = kDEL; break; case 0x08: skey = kBACKSPACE; break; case 0x27: skey = kRIGHT; break; case 0x25: skey = kLEFT; break; case 0x28: skey = kDOWN; break; case 0x26: skey = kUP; break; default: sprintf(conkeybuff, "key%x", key); } if (skey > 0) { strcpy(to, ykey[skey]); } } #endif char * replace(char *string) /* replace \n,\a, etc. */ { char *from, *to; char *p; int val; static char *hexdigits = "0123456789abcdef"; from = to = string; while (*from) { if (*from == '\\') { from++; switch (*from) { case 'n': *to = '\n'; break; case 't': *to = '\t'; break; case 'v': *to = '\v'; break; case 'b': *to = '\b'; break; case 'r': *to = '\r'; break; case 'f': *to = '\f'; break; case 'a': *to = '\a'; break; case '\\': *to = '\\'; break; case '\?': *to = '\?'; break; case '\'': *to = '\''; break; case '\"': *to = '\"'; break; case 'x': val = 0; if ((p = strchr(hexdigits, tolower(*(from + 1)))) && p - hexdigits < 16) { from++; val = p - hexdigits; if ((p = strchr(hexdigits, tolower(*(from + 1)))) && p - hexdigits < 16) { from++; val *= 16; val += p - hexdigits; } } *to = (char)val; break; default: *to = '\\'; to++; *to = *from; } } else { *to = *from; } from++; to++; } *to = '\0'; return string; } void create_myopen(int num) /* create command 'myopen' */ { struct command *cmd; cmd = add_command(cOPEN, NULL, NULL); cmd->tag = num; } void myopen(struct command *cmd) /* open specified file for given name */ { #ifdef WINDOWS char PrinterName[200]; /* Name of default Printer */ char *n; /* points into PrinterName */ DOC_INFO_1 di; #endif FILE *handle = NULL; int stream, i; char *name = NULL; char *mode = NULL; char **pmode; static char *valid_modes[] = { "r", "w", "a", "rb", "wb", "ab", "" }; static int smodes[] = { stmREAD, stmWRITE, stmWRITE, stmREAD, stmWRITE, stmWRITE }; int smode; struct stackentry *p; int has_mode, has_stream, printer; /* decode cmd->tag */ has_stream = cmd->tag & OPEN_HAS_STREAM; has_mode = cmd->tag & OPEN_HAS_MODE; printer = cmd->tag & OPEN_PRINTER; if (has_mode) { mode = my_strdup(pop(stSTRING)->pointer); } else { mode = printer ? my_strdup("w") : my_strdup("r"); } if (printer) { name = my_strdup("/usr/bin/lpr"); } else { name = my_strdup(pop(stSTRING)->pointer); } if (has_stream) { stream = (int)pop(stNUMBER)->value; } else { stream = 0; for (i = 1; i < FOPEN_MAX - 4; i++) { if (stream_modes[i] == stmCLOSED) { stream = i; break; } } if (!stream) { sprintf(errorstring, "reached maximum number of open files"); errorcode = 5; goto open_done; } } p = push(); p->value = 0.; p->type = stNUMBER; if (printer && print_to_file) { sprintf(errorstring, "cannot open printer: already printing grafics"); errorcode = 6; goto open_done; } if (badstream(stream, 1)) { sprintf(errorstring, "invalid stream number %d", stream); errorcode = 9; goto open_done; } if (stream_modes[stream] != stmCLOSED) { sprintf(errorstring, "stream already in use"); errorcode = 2; goto open_done; } smode = 0; for (pmode = valid_modes; **pmode; pmode++) { if (!strcmp(*pmode, mode)) { break; } smode++; } if (!**pmode) { sprintf(errorstring, "\'%s\' is not a valid filemode", mode); errorcode = 3; goto open_done; } if (printer) { #ifdef UNIX lineprinter = popen(name, "w"); if (!lineprinter) { sprintf (errorstring, "could not open line printer"); errorcode = 7; goto open_done; } #else /* query win.ini for default printer */ GetProfileString ("windows", "device", ",,,", PrinterName, 200); /* truncate printer name */ n = PrinterName; while (*n && *n != ',') { n++; } *n = '\0'; OpenPrinter(PrinterName, &lineprinter, NULL); di.pDocName = "yabasic text"; di.pOutputFile = (LPTSTR)NULL; di.pDatatype = "RAW"; if (!StartDocPrinter(lineprinter, 1, (LPBYTE)& di)) { sprintf(errorstring, "could not open line printer"); errorcode = 7; goto open_done; } StartPagePrinter(lineprinter); #endif lprstream = stream; } else { handle = fopen(name, mode); if (handle == NULL) { sprintf(errorstring, "could not open '%s': %s", name, my_strerror(errno)); errorcode = 4; goto open_done; } streams[stream] = handle; } stream_modes[stream] = smodes[smode]; errorcode = 0; p->value = stream; open_done: if (name) { my_free(name); } if (mode) { my_free(mode); } } void checkopen(void) /* check, if open has been sucessfull */ { double result; result = pop(stNUMBER)->value; if (result <= 0) { error(ERROR, errorstring); } } void myclose(void) /* close the specified stream */ { int s; #ifdef WINDOWS DWORD written; #endif s = (int)pop(stNUMBER)->value; if (abs(s) == STDIO_STREAM || badstream(s, 0)) { return; } if (stream_modes[s] == stmCLOSED) { sprintf(string, "stream %d already closed", s); error(WARNING, string); return; } if (s == lprstream) { #ifdef UNIX pclose(lineprinter); #else WritePrinter (lineprinter, "\f", 2, &written); EndPagePrinter (lineprinter); EndDocPrinter(lineprinter); ClosePrinter(lineprinter); lineprinter = INVALID_HANDLE_VALUE; #endif lprstream = -1; } else { fclose(streams[s]); } streams[s] = NULL; stream_modes[s] = stmCLOSED; } void myseek(struct command *cmd) /* reposition file pointer */ { int s, p, m, i; struct stackentry *pp; char *mode; if (cmd->type == cSEEK2) { mode = (char *)my_strdup(pop(stSTRING)->pointer); } else { mode = my_strdup("begin"); } p = (int)pop(stNUMBER)->value; s = (int)pop(stNUMBER)->value; pp = push(); pp->value = 0.; pp->type = stNUMBER; for (i = 0; mode[i]; i++) { mode[i] = tolower(mode[i]); } if (!strcmp(mode, "begin")) { m = SEEK_SET; } else if (!strcmp(mode, "end")) { m = SEEK_END; } else if (!strcmp(mode, "here")) { m = SEEK_CUR; } else { sprintf(errorstring, "seek mode '%s' is none of begin,end,here", mode); errorcode = 12; my_free(mode); return; } my_free(mode); if (abs(s) == STDIO_STREAM || badstream(s, 0)) { return; } if (!(stream_modes[s] & (stmREAD | stmWRITE))) { sprintf(errorstring, "stream %d not open", s); errorcode = 11; return; } if (fseek(streams[s], (long)p, m)) { sprintf(errorstring, "could not position stream %d to byte %d", s, p); errorcode = 10; return; } pp->value = 1.0; } void create_pps(int type, int input) /* create command push_stream or pop_stream */ { struct command *cmd; cmd = add_command(type, NULL, NULL); cmd->args = input; } void push_stream(struct command *cmd) /* push current stream on stack and switch to new one */ { static int oldstream = STDIO_STREAM; struct stackentry *s; int stream; stream = (int)pop(stNUMBER)->value; if (badstream(stream, 0)) { return; } if (!cmd->args) { stream = -stream; } s = push(); s->type = stNUMBER; s->value = oldstream; if (infolevel >= DEBUG) { sprintf(string, "pushing %d on stack, switching to %d", oldstream, stream); error(DEBUG, string); } oldstream = stream; mystream(stream); } void pop_stream(void) /* pop stream from stack and switch to it */ { int stream; stream = (int)pop(stNUMBER)->value; if (infolevel >= DEBUG) { sprintf(string, "popping %d from stack, switching to it", stream); error(DEBUG, string); } mystream(stream); } void mystream(int stream) /* switch to specified stream */ { int stdio, input; stdio = (abs(stream) == STDIO_STREAM); input = (stream > 0); currstr = stream; if (stream < 0) { stream = -stream; } if (badstream(stream, 0)) { return; } if (stdio) { cinstr = stdin; coutstr = stdout; } else { cinstr = coutstr = NULL; if (input) { cinstr = streams[stream]; } else { coutstr = streams[stream]; } } } int checkstream(void) /* test if currst is still valid */ { int stdio, input; stdio = (abs(currstr) == STDIO_STREAM); input = (currstr > 0); if (!stdio) { if (input && !(stream_modes[abs(currstr)] & stmREAD)) { sprintf(string, "stream %d not open for reading", abs(currstr)); error(ERROR, string); return FALSE; } if (!input && !(stream_modes[abs(currstr)] & (stmWRITE | stmPRINT))) { sprintf(string, "stream %d not open for writing or printing", abs(currstr)); error(ERROR, string); return FALSE; } } return TRUE; } void testeof(struct command *cmd) /* close the specified stream */ { int s, c; struct stackentry *result; s = (int)pop(stNUMBER)->value; if (s != STDIO_STREAM && badstream(s, 0)) { return; } result = push(); result->type = stNUMBER; if (s && !(stream_modes[s] & stmREAD)) { result->value = 1.; return; } if (!s) { result->value = 0.; return; } c = getc(streams[s]); if (c == EOF) { result->value = 1.; return; } result->value = 0.; ungetc(c, streams[s]); return; } int badstream(int stream, int errcode) /* test for valid stream id */ { if (stream != STDIO_STREAM && (stream > FOPEN_MAX - 4 || stream <= 0)) { sprintf(errcode ? errorstring : string, "invalid stream: %d (can handle only streams from 1 to %d)", stream, FOPEN_MAX - 4); if (errcode) { errorcode = errcode; } else { error(ERROR, string); } return TRUE; } return FALSE; } void create_myread(char type, int tileol) /* create command 'read' */ { struct command *cmd; cmd = add_command(cREAD, NULL, NULL); cmd->args = tileol; /* true, if read should go til eol */ cmd->tag = type; /* can be 'd' or 's' */ } void myread(struct command *cmd) /* read string or double */ { double d; static char buffer[INBUFFLEN]; /* buffer with current input */ int numread; /* number of bytes read */ int tileol; /* true, if read should go til end of line */ struct stackentry *s; int currch; /* current character */ numread = 0; /* no chars read'til now */ buffer[0] = '\0'; tileol = cmd->args; /* skip leading whitespace */ if (!tileol) { do { currch = onechar(); } while (currch == ' ' || currch == '\t'); /* put back last char */ if (currch != EOF && currch != '\0') { backchar(currch); } if (currch == '\0' || currch == EOF) { goto done; } } /* read chars */ do { currch = onechar(); buffer[numread] = currch; numread++; } while (((tileol && currch != '\0') || (!tileol && currch != ' ' && currch != '\t' && currch != '\0')) && currch != EOF && numread < INBUFFLEN); /* put back last char */ if (currch != EOF && currch != '\0') { backchar(currch); } /* and remove it from buff */ if (currch != EOF) { numread--; } buffer[numread] = '\0'; if (currch == '\0' || currch == EOF) { goto done; } /* skip trailing whitespace */ if (!tileol) { do { currch = onechar(); } while (currch == ' ' || currch == '\t'); if (currch != EOF && currch != '\0') { backchar(currch); } } done: if (cmd->tag == 's') { /* read string */ s = push(); s->type = stSTRING; s->pointer = my_strdup(buffer); } else { /* read double */ s = push(); s->type = stNUMBER; s->value = 0.0; if (buffer[0] && (sscanf(buffer, "%lf", &d) == 1)) { s->value = d; } } } static void readline(void) /* read one line from current stream */ { #ifdef UNIX char *nl; /* position of newline */ int x, y; #else int read; #endif if (!checkstream()) { return; } linebuffer[0] = '\0'; #ifdef UNIX if (curinized && cinstr == stdin) { curs_set (1); getyx (stdscr, y, x); #ifdef HAVE_GETNSTR getnstr (linebuffer, INBUFFLEN); #else getstr (linebuffer); #endif curs_set (0); if ((nl = strchr (linebuffer, '\0'))) { *nl = '\n'; *(nl + 1) = '\0'; } if (y >= LINES - 1) { scrl (1); } refresh (); } #else if (curinized && cinstr == stdin) { FlushConsoleInputBuffer(ConsoleInput); ReadConsole(ConsoleInput, linebuffer, INBUFFLEN, &read, NULL); if (read >= 2) { linebuffer[read - 2] = '\n'; linebuffer[read - 1] = '\0'; } } #endif else { fgets(linebuffer, INBUFFLEN, cinstr); } currchar = linebuffer; prompted = FALSE; } static int onechar() /* read one char from cinstr */ { int ch; if (!checkstream()) { return '\0'; } if (cinstr == stdin) { if (!currchar || !*currchar) { readline(); } do { ch = *currchar; currchar++; } while (! (!iscntrl(ch) || strchr(" \t\n", ch) || ch == '\0')); } else { do { ch = fgetc(cinstr); } while (! (!iscntrl(ch) || strchr(" \t\n", ch) || ch == '\0' || ch == EOF)); } if (ch == '\n' || ch == EOF) { return '\0'; } else { return ch; } } static void backchar(int ch) /* put char back into stream */ { if (!checkstream()) { return; } if (cinstr == stdin) { if (currchar > linebuffer) { currchar--; } } else { ungetc(ch, cinstr); } } void chkprompt() /* print an intermediate prompt if necessary */ { if (cinstr == stdin && (!currchar || !*currchar) && !prompted) { onestring("?"); } } void create_onestring(char *str) /* create command 'onestring' */ { struct command *cmd; cmd = add_command(cONESTRING, NULL, NULL); cmd->pointer = my_strdup(str); } void onestring (char *s) /* write string to current file */ { #ifdef WINDOWS DWORD len, written; DWORD consoleflags; #endif if (!checkstream()) { return; } if (curinized && abs(currstr) == STDIO_STREAM) { #ifdef UNIX addstr(s); refresh(); #else len = strlen (s); GetConsoleMode(ConsoleOutput, &consoleflags); WriteConsole(ConsoleOutput, s, len, &written, NULL); #endif } else if (abs(currstr) == lprstream) { #ifdef UNIX fprintf(lineprinter, "%s", s); fflush(lineprinter); #else len = strlen (s); WritePrinter (lineprinter, s, len, &written); #endif } else { fprintf(coutstr, "%s", s); fflush(coutstr); } prompted = TRUE; } void create_colour(int flag) /* create command 'colour' */ { struct command *c; c = add_command(cCOLOUR, NULL, NULL); c->args = flag; } void colour(struct command *cmd) /* switch on colour */ { char *fore = NULL, *back = NULL, *p; int fc, bc; if (cmd->args && !curinized) { error(ERROR, "need to call 'clear screen' first"); return; } if (cmd->args == 0) { if (!curinized) { return; } #ifdef UNIX attrset(A_NORMAL); #else SetConsoleTextAttribute (ConsoleOutput, (WORD) (stdfc | stdbc)); return; #endif } else if (cmd->args == 1) { #ifdef UNIX attrset(A_REVERSE); return; #else SetConsoleTextAttribute (ConsoleOutput, (WORD) (yc2oc(oc2yc(stdfc), 0) | yc2oc(oc2yc(stdbc), 1))); return; #endif } else { /* decode colours */ #ifdef UNIX if (!has_colors()) { pop (stSTRING); if (cmd->args == 3) { pop (stSTRING); } attrset (A_REVERSE); return; } #endif if (cmd->args == 2) { back = NULL; fore = pop(stSTRING)->pointer; for (p = fore; *p; p++) { *p = tolower(*p); } } else { back = pop(stSTRING)->pointer; for (p = back; *p; p++) { *p = tolower(*p); } fore = pop(stSTRING)->pointer; for (p = fore; *p; p++) { *p = tolower(*p); } } fc = name2yc(fore); if (fc < 0) { sprintf(string, "unknown foreground colour: '%s'", fore); error(ERROR, string); } if (back) { bc = name2yc(back); if (fc < 0) { sprintf(string, "unknown background colour: '%s'", back); error(ERROR, string); } } #ifdef UNIX if (back) { attrset(COLOR_PAIR(fc * 8 + bc)); } else { attrset (COLOR_PAIR (64 + fc)); } #else SetConsoleTextAttribute (ConsoleOutput, (WORD) (yc2oc(fc, TRUE) | (back ? yc2oc(bc, FALSE) : 0))); #endif } } static void initcol(void) /* initialize curses colors */ { static int first = TRUE; #ifdef UNIX int i, j; short f, b; #else CONSOLE_SCREEN_BUFFER_INFO csbi; #endif if (!first) { return; } first = FALSE; #ifdef UNIX if (!has_colors()) { return; } start_color (); assume_default_colors(-1,-1); for (i = 0; i < 8; i++) { for (j = 0; j < 8; j++) { if (!i && !j) { continue; } init_pair (i * 8 + j, yc2oc (i, TRUE), yc2oc (j, FALSE)); } } for (i =0; i < 8; i++) { init_pair (64 + i, yc2oc (i, TRUE), -1); /* allowed according to comments in ncurses sources */ } init_color (COLOR_YELLOW, 1000, 1000, 0); #else GetConsoleScreenBufferInfo (ConsoleOutput, &csbi); stdfc = csbi. wAttributes & (FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED); stdbc = csbi. wAttributes & (BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED); #endif } int name2yc(char *name) /* convert a color name to an integer */ { char *c; for (c = name; *c; c++) { *c = tolower(*c); } if (!strcmp(name, "black") || !strcmp(name, "bla")) { return YC_BLACK; } if (!strcmp(name, "white") || !strcmp(name, "whi")) { return YC_WHITE; } if (!strcmp(name, "red") || !strcmp(name, "red")) { return YC_RED; } if (!strcmp(name, "blue") || !strcmp(name, "blu")) { return YC_BLUE; } if (!strcmp(name, "green") || !strcmp(name, "gre")) { return YC_GREEN; } if (!strcmp(name, "yellow") || !strcmp(name, "yel")) { return YC_YELLOW; } if (!strcmp(name, "cyan") || !strcmp(name, "cya")) { return YC_CYAN; } if (!strcmp(name, "magenta") || !strcmp(name, "mag")) { return YC_MAGENTA; } return -1; } int yc2oc(int yc, int fore) /* convert a yabasic color to operating system color */ { #ifdef UNIX fore = 0; /* stop gcc from complaining */ if (yc == YC_BLACK) { return COLOR_BLACK; } if (yc == YC_WHITE) { return COLOR_WHITE; } if (yc == YC_RED) { return COLOR_RED; } if (yc == YC_BLUE) { return COLOR_BLUE; } if (yc == YC_GREEN) { return COLOR_GREEN; } if (yc == YC_YELLOW) { return COLOR_YELLOW; } if (yc == YC_CYAN) { return COLOR_CYAN; } if (yc == YC_MAGENTA) { return COLOR_MAGENTA; } #else if (fore) { if (yc == YC_BLACK) { return 0; } if (yc == YC_WHITE) { return FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE; } if (yc == YC_RED) { return FOREGROUND_RED; } if (yc == YC_BLUE) { return FOREGROUND_BLUE; } if (yc == YC_GREEN) { return FOREGROUND_GREEN; } if (yc == YC_YELLOW) { return FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_INTENSITY; } if (yc == YC_CYAN) { return FOREGROUND_GREEN | FOREGROUND_BLUE; } if (yc == YC_MAGENTA) { return FOREGROUND_BLUE | FOREGROUND_RED; } } else { if (yc == YC_BLACK) { return 0; } if (yc == YC_WHITE) { return BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE; } if (yc == YC_RED) { return BACKGROUND_RED; } if (yc == YC_BLUE) { return BACKGROUND_BLUE; } if (yc == YC_GREEN) { return BACKGROUND_GREEN; } if (yc == YC_YELLOW) { return BACKGROUND_GREEN | BACKGROUND_RED | BACKGROUND_INTENSITY; } if (yc == YC_CYAN) { return BACKGROUND_GREEN | BACKGROUND_BLUE; } if (yc == YC_MAGENTA) { return BACKGROUND_BLUE | BACKGROUND_RED; } } #endif return -1; } int oc2yc(int oc) /* convert an operating system color to yabasic color */ { #ifdef UNIX if (oc == COLOR_BLACK) { return YC_BLACK; } if (oc == COLOR_WHITE) { return YC_WHITE; } if (oc == COLOR_RED) { return YC_RED; } if (oc == COLOR_BLUE) { return YC_BLUE; } if (oc == COLOR_GREEN) { return YC_GREEN; } if (oc == COLOR_YELLOW) { return YC_YELLOW; } if (oc == COLOR_CYAN) { return YC_CYAN; } if (oc == COLOR_MAGENTA) { return YC_MAGENTA; } #else if (oc == 0) { return YC_BLACK; } if (oc == (FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_GREEN) || oc == (BACKGROUND_RED | BACKGROUND_BLUE | BACKGROUND_GREEN)) { return YC_WHITE; } if (oc == (FOREGROUND_RED) || oc == (BACKGROUND_RED)) { return YC_RED; } if (oc == (FOREGROUND_BLUE) || oc == (BACKGROUND_BLUE)) { return YC_BLUE; } if (oc == (FOREGROUND_GREEN) || oc == (BACKGROUND_GREEN)) { return YC_GREEN; } if (oc == (FOREGROUND_RED | FOREGROUND_GREEN) || oc == (BACKGROUND_RED | BACKGROUND_GREEN) || oc == (FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY) || oc == (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_INTENSITY)) { return YC_YELLOW; } if (oc == (FOREGROUND_BLUE | FOREGROUND_GREEN) || oc == (BACKGROUND_BLUE | BACKGROUND_GREEN)) { return YC_CYAN; } if (oc == (FOREGROUND_RED | FOREGROUND_BLUE) || oc == (BACKGROUND_RED | BACKGROUND_BLUE)) { return YC_MAGENTA; } #endif return -1; } void putchars(void) /* put rect onto screen */ { char *ch, text, fore[4], back[4]; int n, sx, sy, x, y, f, b; int tox, toy; int oldx, oldy; #ifdef WINDOWS CONSOLE_SCREEN_BUFFER_INFO csbi; COORD cp; WORD attributes; char buff[2]; int written; #endif toy = (int)(pop(stNUMBER)->value); tox = (int)(pop(stNUMBER)->value); ch = pop(stSTRING)->pointer; #ifdef UNIX getyx(stdscr, oldy, oldx); #else GetConsoleScreenBufferInfo (ConsoleOutput, &csbi); attributes = csbi.wAttributes; oldx = csbi.dwCursorPosition.X; oldy = csbi.dwCursorPosition.Y; #endif if (sscanf(ch, "%d,%d:%n", &sx, &sy, &n) != 2) { error(ERROR, "illegal screen string"); return; } ch += n; for (x = tox; x < tox + sx; x++) { if (x < 0 || x >= COLS) { continue; } for (y = toy; y < toy + sy; y++) { if (x < 0 || x >= COLS || y < 0 || y >= LINES) { for (n = 0; n < 10; n++) if (*ch) { ch++; } continue; } if (!*ch) { text = ' '; f = YC_BLACK; b = YC_BLACK; } else { text = *ch; strncpy(fore, ch + 2, 3); fore[3] = '\0'; strncpy(back, ch + 6, 3); back[3] = '\0'; for (n = 0; n < 10; n++) if (*ch) { ch++; } f = name2yc(fore); if (f < 0) { f = YC_WHITE; } b = name2yc(back); if (b < 0) { b = YC_WHITE; } } #ifdef UNIX if (has_colors()) { attrset(COLOR_PAIR(f * 8 + b)); } mvaddch (y, x, text); #else cp.X = x; cp.Y = y; SetConsoleCursorPosition(ConsoleOutput, cp); SetConsoleTextAttribute(ConsoleOutput, (WORD)(yc2oc(f, TRUE) | yc2oc(b, FALSE))); buff[0] = text; buff[1] = '\0'; WriteConsole(ConsoleOutput, buff, 1, &written, NULL); #endif } } #ifdef UNIX if (has_colors()) { attrset(A_NORMAL | COLOR_PAIR(0)); } else { attrset (A_NORMAL); } move (y, x); refresh (); #else cp.X = oldx; cp.Y = oldy; SetConsoleCursorPosition(ConsoleOutput, cp); SetConsoleTextAttribute(ConsoleOutput, attributes); #endif return; } char * getchars(int xf, int yf, int xt, int yt) /* get rect from screen */ { int x, y; #ifdef UNIX int c, ct, cc; #endif int cf, cb; int oldx, oldy; char *res; char cols[20]; #ifdef WINDOWS CONSOLE_SCREEN_BUFFER_INFO csbi; COORD cp; char charbuff[2]; WORD attrbuff[2]; int read; #endif if (xf > xt) { x = xf; xf = xt; xt = x; } if (yf > yt) { y = yf; yf = yt; yt = y; } res = my_malloc(12 + (xt - xf + 1) * (yt - yf + 1) * 12); sprintf(res, "%d,%d:", xt - xf + 1, yt - yf + 1); #ifdef UNIX getyx(stdscr, oldy, oldx); #else GetConsoleScreenBufferInfo (ConsoleOutput, &csbi); oldx = csbi.dwCursorPosition.X; oldy = csbi.dwCursorPosition.Y; #endif for (x = xf; x <= xt; x++) { for (y = yf; y <= yt; y++) { if (y < 0 || y >= LINES || x < 0 || x >= COLS) { strcat(res, " blbl"); } else { #ifdef UNIX c = mvinch(y, x); ct = c & A_CHARTEXT; if (!isprint (ct)) { ct = ' '; } cc = PAIR_NUMBER (c & A_COLOR); cb = cc & 7; cf = (cc - cb) / 8; if (has_colors ()) { sprintf (cols, "%c:%s:%s,", ct, yc2short (cf), yc2short (cb)); } else { sprintf (cols, "%c:???:???,", ct); } #else cp.X = x; cp.Y = y; ReadConsoleOutputCharacter(ConsoleOutput, charbuff, 1, cp, &read); charbuff[1] = '\0'; ReadConsoleOutputAttribute(ConsoleOutput, attrbuff, 1, cp, &read); cf = oc2yc(attrbuff[0] & (FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE)); cb = oc2yc(attrbuff[0] & (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE)); sprintf(cols, "%c:%s:%s,", charbuff[0], yc2short(cf), yc2short(cb)); #endif strcat(res, cols); } } } #ifdef UNIX move(oldy, oldx); #endif res[strlen (res) - 1] = '\0'; return res; } char * yc2short(int col) /* convert yabasic colours to short colour name */ { static char r1[4], r2[4]; static char *pr = r1; if (pr == r1) { pr = r2; } else { pr = r1; } strcpy(pr, "***"); if (col == YC_BLACK) { strcpy(pr, "Bla"); } if (col == YC_WHITE) { strcpy(pr, "Whi"); } if (col == YC_RED) { strcpy(pr, "Red"); } if (col == YC_BLUE) { strcpy(pr, "Blu"); } if (col == YC_GREEN) { strcpy(pr, "Gre"); } if (col == YC_YELLOW) { strcpy(pr, "Yel"); } if (col == YC_CYAN) { strcpy(pr, "Cya"); } if (col == YC_MAGENTA) { strcpy(pr, "Mag"); } return pr; } yabasic-2.78.5/graphic.c0000664000175100017510000023456313253541430011753 00000000000000/* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de graphic.c --- code for windowed graphics, printing and plotting This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ /* ------------- includes ---------------- */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* all prototypes and structures */ #endif #ifdef UNIX #include #include #include #include #ifdef HAVE_PRCTL_H #include #endif #ifndef KEY_MAX #define KEY_MAX 0777 #endif #endif /* ------------- local functions ---------------- */ static void transform (double *, double *); /* do transformation */ static void itransform (int *, int *); /* integer variant of transform() */ static int grafinit (void); /* initialize grafics (either X or Windows) */ static char *newrgb (int, int); /* create a new bitmap string */ static void addrgb (char *, unsigned short, unsigned short, unsigned short); /* add one rgb pixel to bitstring */ static int readrgb (char *, unsigned short *, unsigned short *, unsigned short *); /* read rgb pixel from string one after another */ static int change_font (char *); /* change font */ static int rgb_to_pixel (int, int, int); /* create a pixel value from rgb values */ #ifdef WINDOWS static DWORD winthread (LPWORD); /* window thread */ static void startdraw (int); /* prepare for drawing */ static void enddraw (); /* end of drawing */ #endif /* ------------- global variables ---------------- */ /* printing and plotting */ static char *printerfilename = NULL; /* filename to print on */ static int deleteprinterfile = FALSE; /* true, if we created the filename ourself an can delete it on close */ int print_to_file = FALSE; /* print to file ? */ #ifdef WINDOWS static LOGFONT logfont; /* structure for font-characteristics */ HFONT printerfont; /* handle of printer-font */ static HPEN printerpen; /* handle of printer-pen */ static HPEN revprinterpen; /* handle of reverse printer-pen */ HDC printer = NULL; /* handle of printer */ static float prnscale; /* scaling factor for printer */ static float prnoffx; /* offset for printer */ static float prnoffy; /* offset for printer */ #else FILE *printerfile = NULL; /* file to print on */ static double psscale; /* factor from window-pixels to ps-points */ static int firsttext = TRUE; /* true until text has been printed */ #endif int drawmode = 0; /* flag for drawing */ #ifdef UNIX static XFontStruct *myfont = NULL; /* properties of default font */ #else HFONT myfont; /* handle of font for screen */ #endif /* window coordinates */ int winopened = FALSE; /* flag if window is open already */ char *winorigin; /* e.g. "lt","rc"; defines origin of grafic window */ int winwidth, winheight; /* size of window */ static int winx, winy; /* position of window */ /* mouse and keyboard */ int mousex = 0, mousey = 0, mouseb = 0, mousemod = 0; /* last known mouse coordinates */ char *ykey[kLASTKEY + 1]; /* keys returned by inkey */ #ifdef UNIX #else static DWORD wtid; /* id of win thread */ static HANDLE wtevent = INVALID_HANDLE_VALUE; /* handle for win thread event */ static HANDLE drawmutex = INVALID_HANDLE_VALUE; /* handle for drawing mutex */ #endif /* text and font */ char *text_align; /* specifies alignement of text */ int fontheight; /* height of font in pixel */ /* general window stuff */ static int bitcount; /* stateful counter for bitblit operations */ char *foreground = NULL; char *background = NULL; char *geometry = NULL; char *displayname = NULL; char *fontname = NULL; #ifdef UNIX static unsigned long forepixel, backpixel; /* colors */ Display *display; /* X-Display */ static Window root; /* ID of root window */ static Window window; /* ID of grafic window */ static GC gc; /* GC for drawing */ static GC rgc; /* GC for reverse drawing */ static XSizeHints sizehints; /* hints for window manager */ #else WNDCLASS myclass; /* window class for my program */ HANDLE this_instance; static HDC devcon; /* device context for screen */ static HDC bitcon; /* device context backing bitmap */ static HBITMAP backbit; /* backing bitmap */ char *my_class = "my_class"; BOOL Commandline; /* true if launched from command line */ HANDLE mainthread = INVALID_HANDLE_VALUE; /* handle to main thread */ static COLORREF backpixel; static COLORREF forepixel; static HBRUSH backbrush; static HBRUSH forebrush; static HPEN backpen; static HPEN forepen; HWND window; /* handle of my window */ #endif #ifdef UNIX /* variables for redraw coprocess */ Pixmap backbit; int backpid = -1; /* pid of process waiting for redraw events */ Colormap colormap; /* colormap for this visual */ XVisualInfo visualinfo; /* visual info; contains masks for red, green and blue */ static unsigned long rbits_shift = 0; /* position of red bits within pixel value */ static unsigned long gbits_shift = 0; /* same for green */ static unsigned long bbits_shift = 0; /* same for blue */ static unsigned long rbits_max = 0; /* number of red bits within pixel value */ static unsigned long gbits_max = 0; /* same for green */ static unsigned long bbits_max = 0; /* same for blue */ #endif /* ------------- functions ---------------- */ void create_openwin (int fnt) { /* create Command 'openwin' */ struct command *cmd; cmd = add_command (cOPENWIN, NULL, NULL); cmd->args = fnt; } void openwin (struct command *cmd) { /* open a Window */ int fnt; static int first = TRUE; /* flag to decide if initialization is necessary */ char *fname = NULL; #ifdef UNIX static XEvent event; /* what has happened ? */ XSetWindowAttributes attrib; /* properties of window */ int rx, ry, rw, rh; XGCValues vals; /* values of gc context */ XImage *patch; XWindowAttributes attributes; XColor colour; int r, g, b; #endif if (winopened) { error (WARNING, "Window already open"); return; } fnt = cmd->args; if (fnt) { fname = (char *) pop (stSTRING)->pointer; } winheight = (int) pop (stNUMBER)->value; if (winheight < 1) { error (ERROR, "winheight less than 1 pixel"); return; } winwidth = (int) pop (stNUMBER)->value; if (winwidth < 1) { error (ERROR, "winwidth less than 1 pixel"); return; } /* initialize grafics */ if (first && !grafinit ()) { return; } if (fname && !change_font (fname)) { return; } #ifdef UNIX /* create the window */ attrib.backing_store = Always; attrib.save_under = TRUE; attrib.background_pixel = backpixel; attrib.colormap = colormap; window = XCreateWindow (display, root, winx, winy, winwidth, winheight, 0, CopyFromParent, CopyFromParent, visualinfo.visual, CWBackingStore | CWSaveUnder | CWBackPixel | CWColormap, &attrib); if (window == None) { error (ERROR, "Could not create window"); return; } /* put in name for the window */ XStoreName (display, window, progname); /* set size hints */ XSetWMNormalHints (display, window, &sizehints); /* want to get the exposure event */ XSelectInput (display, window, ExposureMask | VisibilityChangeMask); /* display it */ XMapWindow (display, window); /* wait for exposure */ XNextEvent (display, &event); XSelectInput (display, window, 0); calc_psscale (); /* create redraw pixmap */ XGetWindowAttributes (display, window, &attributes); backbit = XCreatePixmap (display, window, winwidth, winheight, attributes.depth); if (!backbit) { error (ERROR, "couldn't create backing pixmap"); return; } XFillRectangle (display, window, rgc, 0, 0, winwidth, winheight); XFillRectangle (display, backbit, rgc, 0, 0, winwidth, winheight); /* create redraw coprocess */ backpid = fork (); if (backpid == 0) { /* this is the child */ #ifdef HAVE_PRCTL_H prctl(PR_SET_PDEATHSIG, SIGHUP); #endif display = XOpenDisplay (displayname); XSelectInput (display, window, ExposureMask); XGetGCValues (display, gc, GCPlaneMask, &vals); while (TRUE) { XNextEvent (display, &event); if (event.type == Expose) { rx = event.xexpose.x; ry = event.xexpose.y; rw = event.xexpose.width; rh = event.xexpose.height; patch = XGetImage (display, backbit, rx, ry, rw, rh, vals.plane_mask, ZPixmap); if (patch) { XPutImage (display, window, gc, patch, 0, 0, rx, ry, rw, rh); XDestroyImage (patch); } } } } else if (backpid == -1) { error (ERROR, "couldn't fork child"); return; } #else /* WINDOWS */ if (wtevent == INVALID_HANDLE_VALUE) { wtevent = CreateEvent (NULL, FALSE, FALSE, "winevent"); } if (drawmutex == INVALID_HANDLE_VALUE) { drawmutex = CreateMutex (NULL, FALSE, "drawmutex"); } ResetEvent (wtevent); /* create thread to care for window */ wthandle = CreateThread (NULL, 0, (LPTHREAD_START_ROUTINE) winthread, 0, 0, (LPDWORD) & wtid); if (wthandle == NULL) { error (ERROR, "can't create thread for window"); return; } WaitForSingleObject (wtevent, INFINITE); #endif first = FALSE; winopened = TRUE; } #ifdef WINDOWS LRESULT CALLBACK mywindowproc (HWND handle, unsigned msg, UINT wparam, DWORD lparam) { RECT cr; /* client area rectangle */ PAINTSTRUCT ps; /* receives information for painting */ int skey; char *detail = NULL; int x, y, mod; switch (msg) { case WM_PAINT: if (GetUpdateRect (handle, &cr, 0)) { WaitForSingleObject (drawmutex, INFINITE); if (!BeginPaint (handle, &ps)) { return 1; } BitBlt (ps.hdc, ps.rcPaint.left, ps.rcPaint.top, ps.rcPaint.right - ps.rcPaint.left, ps.rcPaint.bottom - ps.rcPaint.top, bitcon, ps.rcPaint.left, ps.rcPaint.top, SRCCOPY); EndPaint (handle, &ps); ReleaseMutex (drawmutex); SetEvent (wtevent); } return 0; case WM_LBUTTONDOWN: if (!detail) { detail = "1d"; } case WM_LBUTTONUP: if (!detail) { detail = "1u"; } case WM_RBUTTONDOWN: if (!detail) { detail = "2d"; } case WM_RBUTTONUP: if (!detail) { detail = "2u"; } case WM_MBUTTONDOWN: if (!detail) { detail = "3d"; } case WM_MBUTTONUP: if (!detail) { detail = "3u"; } mod = 0; if (wparam & MK_CONTROL) { mod |= 4; } if (wparam & MK_SHIFT) { mod |= 1; } mousex = LOWORD (lparam); mousey = HIWORD (lparam); mouseb = atoi (detail); mousemod = mod; x = LOWORD (lparam); y = HIWORD (lparam); itransform (&x, &y); sprintf (winkeybuff, "MB%s+%d:%04d,%04d", detail, mod, x, y); SetEvent (gotwinkey); return 0; case WM_CHAR: winkeybuff[0] = wparam; winkeybuff[1] = '\0'; SetEvent (gotwinkey); return 0; case WM_KEYDOWN: skey = -1; switch (wparam) { case VK_UP: skey = kUP; break; case VK_DOWN: skey = kDOWN; break; case VK_LEFT: skey = kLEFT; break; case VK_RIGHT: skey = kRIGHT; break; case VK_DELETE: skey = kDEL; break; case VK_INSERT: skey = kINS; break; case VK_CLEAR: skey = kCLEAR; break; case VK_HOME: skey = kHOME; break; case VK_END: skey = kEND; break; case VK_F1: skey = kF0; break; case VK_F2: skey = kF2; break; case VK_F3: skey = kF3; break; case VK_F4: skey = kF4; break; case VK_F5: skey = kF5; break; case VK_F6: skey = kF6; break; case VK_F7: skey = kF7; break; case VK_F8: skey = kF8; break; case VK_F9: skey = kF9; break; case VK_F10: skey = kF10; break; case VK_F11: skey = kF11; break; case VK_F12: skey = kF12; break; case VK_F13: skey = kF13; break; case VK_F14: skey = kF14; break; case VK_F15: skey = kF15; break; case VK_F16: skey = kF16; break; case VK_F17: skey = kF17; break; case VK_F18: skey = kF18; break; case VK_F19: skey = kF19; break; case VK_F20: skey = kF20; break; case VK_F21: skey = kF21; break; case VK_F22: skey = kF22; break; case VK_F23: skey = kF23; break; case VK_F24: skey = kF24; break; case VK_BACK: skey = kBACKSPACE; break; case VK_PRIOR: skey = kSCRNDOWN; break; case VK_NEXT: skey = kSCRNUP; break; case VK_RETURN: skey = kENTER; break; case VK_ESCAPE: skey = kESC; break; case VK_TAB: skey = kTAB; break; default: break; } if (skey == -1) { return (DefWindowProc (handle, msg, wparam, lparam)); } strcpy (winkeybuff, ykey[skey]); SetEvent (gotwinkey); return 0; default: return (DefWindowProc (handle, msg, wparam, lparam)); } } static DWORD winthread (LPWORD par) { /* procedure for windows-thread */ MSG msg; int w, h; RECT cr; /* client area rectangle */ winx = winy = 30; if (!geometry) { geometry = getreg ("geometry"); } if (geometry) if (sscanf (geometry, "%ix%i+%i+%i", &w, &h, &winx, &winy) != 4 && sscanf (geometry, "+%i+%i", &winx, &winy) != 2 && sscanf (geometry, "%i+%i", &winx, &winy) != 2) { winx = winy = 30; } /* get window-size from client-area size */ cr.left = winx; cr.right = winx + winwidth; cr.top = winy; cr.bottom = winy + winheight; AdjustWindowRect (&cr, WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX, FALSE); /* create my window */ window = CreateWindow (my_class, NULL, /* my style */ WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX, /* window style */ winx, /* initial x-position */ winy, /* initial y-position */ cr.right - cr.left, /* initial x-size */ cr.bottom - cr.top, /* initial y-size */ NULL, /* parent window */ NULL, /* menu handle */ this_instance, /* my instance */ (LPVOID) NULL); /* dont know why */ /* show my window */ sprintf (string, "%s - Grafic Window", progname); SetWindowText (window, string); ShowWindow (this_instance, SW_SHOW); UpdateWindow (this_instance); SetForegroundWindow (window); winopened = TRUE; /* get colours */ backbrush = CreateSolidBrush (backpixel); backpen = CreatePen (PS_SOLID, 0, backpixel); forebrush = CreateSolidBrush (forepixel); forepen = CreatePen (PS_SOLID, 0, forepixel); /* create bitmap device context */ devcon = GetDC (window); bitcon = CreateCompatibleDC (devcon); cr.left = cr.top = 0; cr.right = winwidth; cr.bottom = winheight; backbit = CreateCompatibleBitmap (devcon, cr.right - cr.left, cr.bottom - cr.top); SelectObject (bitcon, backbit); SelectClipRgn (bitcon, NULL); IntersectClipRect (bitcon, 0, 0, winwidth, winheight); FillRect (bitcon, &cr, backbrush); SelectObject (bitcon, forebrush); SelectObject (bitcon, forepen); ReleaseDC (window, devcon); /* get and dispatch messages */ while (GetMessage ((LPMSG) & msg, NULL, 0, 0)) { TranslateMessage ((LPMSG) & msg); DispatchMessage ((LPMSG) & msg); } /* delete all those objects */ DestroyWindow (window); DeleteObject (backbit); DeleteObject (backpen); DeleteObject (backbrush); DeleteDC (devcon); DeleteDC (bitcon); ExitThread (0); return 0; } static void startdraw (int clear) { /* prepare for drawing */ RECT interior; WaitForSingleObject (drawmutex, INFINITE); devcon = GetDC (window); if (clear) { SelectObject (devcon, backpen); SelectObject (bitcon, backpen); SelectObject (devcon, backbrush); SelectObject (bitcon, backbrush); SetTextColor (devcon, backpixel); SetTextColor (bitcon, backpixel); } else { SelectObject (devcon, forepen); SelectObject (bitcon, forepen); SelectObject (devcon, forebrush); SelectObject (bitcon, forebrush); SetTextColor (devcon, forepixel); SetTextColor (bitcon, forepixel); } GetClientRect (window, &interior); SelectClipRgn (devcon, NULL); IntersectClipRect (devcon, interior.left, interior.top, interior.right, interior.bottom); if (printer) { if (clear) { SelectObject(printer, revprinterpen); } else { SelectObject(printer, printerpen); } } } static void enddraw () { /* release drawing resources */ ReleaseDC (window, devcon); ReleaseMutex (drawmutex); } char * getreg (char *name) { /* get defaults from Registry */ char *keyname = "SOFTWARE\\yabasic"; HKEY key; char reg[80]; DWORD n; RegOpenKeyEx (HKEY_LOCAL_MACHINE, keyname, 0, KEY_ALL_ACCESS, &key); n = 80; reg[0] = '\0'; RegQueryValueEx (key, name, NULL, NULL, reg, &n); if (reg[0] == '\0') { return NULL; } return my_strdup (reg); } #endif static int grafinit (void) { /* initialize grafics (either X or Windows) */ #ifdef UNIX static int screen; /* Number of Screen on Display */ static XColor asked, got; /* color is complex ... */ static XGCValues xgcvalues; /* Values for Graphics Context */ static unsigned int w, h; /* width and height of window */ int rbits_count, gbits_count, bbits_count; /* number of bits for r,g and b */ XColor exact_match, best_match; /* exact and best matches for required color */ int height; int fontid; #else /* */ int r, g, b; #endif char *fname = fontname; #ifdef UNIX /* get display */ // _Xdebug = 1; display = XOpenDisplay (displayname); if (display == NULL) { sprintf (string, "could not open display: %s", my_strerror (errno)); error (ERROR, string); return FALSE; } /* get screen */ screen = DefaultScreen (display); root = RootWindow (display, screen); /* find out, which depth is available */ if (!XMatchVisualInfo (display, DefaultScreen (display), 24, TrueColor, &visualinfo) && !XMatchVisualInfo (display, DefaultScreen (display), 32, TrueColor, &visualinfo) && !XMatchVisualInfo (display, DefaultScreen (display), 16, TrueColor, &visualinfo) && !XMatchVisualInfo (display, DefaultScreen (display), 12, TrueColor, &visualinfo) && !XMatchVisualInfo (display, DefaultScreen (display), 8, TrueColor, &visualinfo)) { error (ERROR, "Could not get any TrueColor visual"); return FALSE; } /* convert color masks in more convenient values */ for (rbits_shift = 0; (visualinfo.red_mask & 1 << rbits_shift) == 0; rbits_shift++); rbits_max = visualinfo.red_mask >> rbits_shift; for (rbits_count = 0; rbits_max & (1 << rbits_count); rbits_count++); for (gbits_shift = 0; (visualinfo.green_mask & 1 << gbits_shift) == 0; gbits_shift++); gbits_max = visualinfo.green_mask >> gbits_shift; for (gbits_count = 0; gbits_max & (1 << gbits_count); gbits_count++); for (bbits_shift = 0; (visualinfo.blue_mask & 1 << bbits_shift) == 0; bbits_shift++); bbits_max = visualinfo.blue_mask >> bbits_shift; for (bbits_count = 0; bbits_max & (1 << bbits_count); bbits_count++); sprintf (string, "Creating a %d bit True Color map", visualinfo.depth); error (NOTE, string); sprintf (string, "with %d, %d and %d bits for red, green and blue respectively", rbits_count, gbits_count, bbits_count); error (NOTE, string); /* create the colormap */ colormap = XCreateColormap (display, DefaultRootWindow (display), visualinfo.visual, AllocNone); /* now, that we have the colormap, we try to get the colors requested for fore- and background */ if (!foreground) { foreground = XGetDefault (display, "yabasic", "foreground"); } if (!foreground) { foreground = "black"; } if (!XLookupColor (display, colormap, foreground, &exact_match, &best_match)) { sprintf (string, "Could not find foreground color '%s'\n", background); error (ERROR, string); return FALSE; } forepixel = rgb_to_pixel (best_match.red >> 8, best_match.green >> 8, best_match.blue >> 8); if (!background) { background = XGetDefault (display, "yabasic", "background"); } if (!background) { background = "white"; } if (!XLookupColor (display, colormap, background, &exact_match, &best_match)) { sprintf (string, "Could not find background color '%s'\n", background); error (ERROR, string); return FALSE; } backpixel = rgb_to_pixel (best_match.red >> 8, best_match.green >> 8, best_match.blue >> 8); /* get size hints */ if (geometry == NULL) { geometry = XGetDefault (display, "yabasic", "geometry"); } XParseGeometry (geometry, &winx, &winy, &w, &h); sizehints.x = winx; sizehints.y = winy; sizehints.flags = USPosition; /* create graphics context, accept defaults ... */ xgcvalues.foreground = forepixel; xgcvalues.background = backpixel; gc = XCreateGC (display, root, GCForeground | GCBackground, &xgcvalues); /* create graphics context for reverse drawing */ xgcvalues.foreground = backpixel; xgcvalues.background = forepixel; rgc = XCreateGC (display, root, GCForeground | GCBackground, &xgcvalues); /* get font */ if (!fname) { fname = XGetDefault (display, "yabasic", "font"); } if (!fname) { fname = "6x10"; } if (!change_font (fname)) { return FALSE; } #elif WINDOWS /* choose font */ if (!fname) { fname = getreg ("font"); } if (!fname) { fname = "swiss13"; } if (!change_font (fname)) { return FALSE; } /* get colours */ if (!foreground) { foreground = getreg ("foreground"); } if (!foreground) { foreground = "0,0,0"; } if (sscanf (foreground, "%d,%d,%d", &r, &g, &b) != 3 || r < 0 || r > 255 || g < 0 || g > 255 || b < 0 || b > 255) { sprintf (string, "command line option -foreground must be three numbers between 0 and 255, separated by commas (not '%s')", foreground); error (ERROR, string); return FALSE; } forepixel = RGB (r, g, b); if (!background) { background = getreg ("background"); } if (!background) { background = "255,255,255"; } if (sscanf (background, "%d,%d,%d", &r, &g, &b) != 3 || r < 0 || r > 255 || g < 0 || g > 255 || b < 0 || b > 255) { sprintf (string, "command line option -background must be three numbers between 0 and 255, separated by commas (not '%s')", background); error (ERROR, string); return FALSE; } backpixel = RGB (r, g, b); #endif return TRUE; } static int change_font (char *fname) { /* change font */ #ifdef WINDOWS int n; int f; /* int-value of font */ char *family; /* font family */ #else static XGCValues xgcvalues; /* Values for Graphics Context */ #endif #ifdef UNIX if (fontname) { if (myfont && !strcmp (fontname, fname)) { return TRUE; } else { if (myfont) { XUnloadFont (display, myfont->fid); } } if (fontname!=fname) my_free(fontname); } fontname = my_strdup (fname); myfont = XLoadQueryFont (display, fontname); if (!myfont) { sprintf (string, "could not load font '%s', trying 'fixed' instead", fontname); error (WARNING, string); myfont = XLoadQueryFont (display, "fixed"); if (!myfont) { error (ERROR, "could not get it"); return FALSE; } } fontheight = myfont->ascent; xgcvalues.font = myfont->fid; if (!XChangeGC (display, gc, GCFont, &xgcvalues)) { sprintf (string, "Could not change font to '%s'", fontname); error (ERROR, string); return FALSE; } firsttext = TRUE; #else if (fontname) { if (strcmp (fontname, fname)) { DeleteObject (myfont); } else { return TRUE; } my_free (fontname); } fontname = my_strdup (fname); f = FF_SWISS; fontheight = 13; family = my_strdup (fontname); for (n = 0; *(family + n) != '\0' && !isdigit (*(family + n)); n++) { *(family + n) = tolower ((int) *(family + n)); } if (isdigit (*(family + n))) { sscanf (family + n, "%d", &fontheight); } *(family + n) = '\0'; if (!strcmp ("decorative", family)) { f = FF_DECORATIVE; } else if (!strcmp ("dontcare", family)) { f = FF_DONTCARE; } else if (!strcmp ("modern", family)) { f = FF_MODERN; } else if (!strcmp ("roman", family)) { f = FF_ROMAN; } else if (!strcmp ("script", family)) { f = FF_SCRIPT; } else if (!strcmp ("swiss", family)) { f = FF_SWISS; } else { sprintf (string, "Don't know font '%s' using 'swiss' instead", fontname); error (WARNING, string); f = FF_SWISS; } logfont.lfHeight = -fontheight; logfont.lfWidth = 0; logfont.lfEscapement = 0; logfont.lfOrientation = 0; logfont.lfWeight = FW_DONTCARE; logfont.lfItalic = FALSE; logfont.lfUnderline = FALSE; logfont.lfStrikeOut = FALSE; logfont.lfCharSet = DEFAULT_CHARSET; logfont.lfOutPrecision = OUT_DEFAULT_PRECIS; logfont.lfClipPrecision = CLIP_DEFAULT_PRECIS; logfont.lfQuality = DEFAULT_QUALITY; logfont.lfPitchAndFamily = DEFAULT_PITCH | f; logfont.lfFaceName[0] = '\0'; myfont = CreateFontIndirect (&logfont); if (myfont == NULL) { sprintf (string, "Could not create font '%s' for screen", fontname); error (ERROR, string); return FALSE; } my_free (family); if (printer) { /* delete and create printerfont */ if (printerfont) { DeleteObject (printerfont); } logfont.lfHeight = (long) (-fontheight * prnscale); printerfont = CreateFontIndirect (&logfont); if (printerfont == NULL) { sprintf (string, "Could not create font for printer"); error (ERROR, string); return FALSE; } if (!SelectObject (printer, printerfont)) { error (ERROR, "could not select printerfont"); } } #endif return TRUE; } #ifdef UNIX void calc_psscale () { /* calculate scale-factor for postscript */ if ((float) winwidth / winheight > (float) 18 / 25) { psscale = 18 * 0.39 * 72 / winwidth; } else { psscale = 25 * 0.39 * 72 / winheight; } } #endif void putindrawmode (int mode) { /* store drawmode in previous command */ if (mode) { lastcmd->tag = mode; } else { lastcmd->tag = drawmode; } drawmode = 0; } void dot (struct command *cmd) { /* draw a dot */ double x, y; int clear; y = pop (stNUMBER)->value; x = pop (stNUMBER)->value; transform (&x, &y); clear = cmd->tag & dmCLEAR; if (!winopened) { error (ERROR, "Got no window to draw"); return; } #ifdef UNIX if (clear) { XDrawPoint (display, window, rgc, x, y); XDrawPoint (display, backbit, rgc, x, y); } else { XDrawPoint (display, window, gc, x, y); XDrawPoint (display, backbit, gc, x, y); } XFlush (display); if (printerfile) { fprintf (printerfile, "%g %g (%c) DO\n", (x - 0.5) * psscale, (winheight - y + 0.5) * psscale, clear ? 'y' : 'n'); } #elif WINDOWS startdraw (clear); if (clear) { SetPixelV (devcon, (int) x, (int) y, backpixel); SetPixelV (bitcon, (int) x, (int) y, backpixel); if (printer) { MoveToEx (printer, (int) (x * prnscale + prnoffx), (int) (y * prnscale + prnoffy), NULL); LineTo (printer, (int) (x * prnscale + prnoffx), (int) (y * prnscale + prnoffy)); } } else { SetPixelV (devcon, (int) x, (int) y, forepixel); SetPixelV (bitcon, (int) x, (int) y, forepixel); if (printer) { MoveToEx (printer, (int) (x * prnscale + prnoffx), (int) (y * prnscale + prnoffy), NULL); LineTo (printer, (int) (x * prnscale + prnoffx), (int) (y * prnscale + prnoffy)); } } enddraw (); #endif } void create_line (int numpoints) { /* create Command 'line' */ struct command *cmd; cmd = add_command (cLINE, NULL, NULL); cmd->args = numpoints; cmd->tag = dmNORMAL; } void line (struct command *cmd) { /* draw a line */ double x1, y1, x2, y2; static double lastx, lasty; static int lastvalid = FALSE; static double initialx, initialy; static int initialvalid = FALSE; int numpoints; int clear; if (!winopened) { error (ERROR, "Got no window to draw"); return; } clear = cmd->tag & dmCLEAR; numpoints = cmd->args; if (numpoints == -1) { /* new curve */ lastvalid = FALSE; initialvalid = FALSE; return; } else if (numpoints == 0) { /* close curve */ if (!lastvalid || !initialvalid) { return; } lastvalid = FALSE; initialvalid = FALSE; x1 = lastx; y1 = lasty; x2 = initialx; y2 = initialy; } else { /* line to x2,y2 */ y2 = pop (stNUMBER)->value; x2 = pop (stNUMBER)->value; if (numpoints == 1) { if (!lastvalid) { initialx = lastx = x2; initialy = lasty = y2; initialvalid = lastvalid = TRUE; return; } y1 = lasty; x1 = lastx; } else { /* line x1,y1 to x2,y2 */ y1 = pop (stNUMBER)->value; x1 = pop (stNUMBER)->value; } } lastx = x2; lasty = y2; if (!initialvalid) { initialx = x1; initialy = y2; initialvalid = TRUE; } transform (&x1, &y1); transform (&x2, &y2); #ifdef UNIX if (clear) { XDrawLine (display, window, rgc, x1, y1, x2, y2); XDrawLine (display, backbit, rgc, x1, y1, x2, y2); } else { XDrawLine (display, window, gc, x1, y1, x2, y2); XDrawLine (display, backbit, gc, x1, y1, x2, y2); } XFlush (display); if (printerfile) { fprintf (printerfile, "%g %g %g %g (%c) LI\n", x1 * psscale, (winheight - y1) * psscale, x2 * psscale, (winheight - y2) * psscale, clear ? 'y' : 'n'); } fflush (printerfile); #elif WINDOWS startdraw (clear); MoveToEx (devcon, (int) x1, (int) y1, NULL); LineTo (devcon, (int) x2, (int) y2); if (clear) { SetPixelV (devcon, (int) x2, (int) y2, backpixel); } else { SetPixelV (devcon, (int) x2, (int) y2, forepixel); } MoveToEx (bitcon, (int) x1, (int) y1, NULL); LineTo (bitcon, (int) x2, (int) y2); if (clear) { SetPixelV (bitcon, (int) x2, (int) y2, backpixel); } else { SetPixelV (bitcon, (int) x2, (int) y2, forepixel); } if (printer) { MoveToEx (printer, (int) (x1 * prnscale + prnoffx), (int) (y1 * prnscale + prnoffy), NULL); LineTo (printer, (int) (x2 * prnscale + prnoffx), (int) (y2 * prnscale + prnoffy)); } enddraw (); #endif } void change_colour (struct command *cmd) { /* change colour for graphics */ int r, g, b; #ifdef UNIX int pixel; int ret; char xerr[200]; #else #endif if (!winopened) { error (ERROR, "Got no window to draw"); return; } if (cmd->type == cGCOLOUR || cmd->type == cGBACKCOLOUR) { b = (int) pop (stNUMBER)->value; g = (int) pop (stNUMBER)->value; r = (int) pop (stNUMBER)->value; if (r < 0 || r > 255 || g < 0 || g > 255 || b < 0 || b > 255) { sprintf (string, "arguments to command colour must be between 0 and 255 (not %d,%d,%d)", r, g, b); error (ERROR, string); return; } } else { char *h; h = (char *) (pop (stSTRING)->pointer); if (sscanf (h, "%d,%d,%d", &r, &g, &b) != 3 || r < 0 || r > 255 || g < 0 || g > 255 || b < 0 || b > 255) { sprintf (string, "string argument to command colour must be three numbers between 0 and 255, separated by commas (not '%s')", h); error (ERROR, string); return; } } #ifdef UNIX pixel = rgb_to_pixel (r, g, b); forepixel = pixel; if (cmd->type == cGCOLOUR || cmd->type == cGCOLOUR2) { XSetForeground (display, gc, pixel); XSetBackground (display, gc, pixel); if (printerfile) { fprintf (printerfile, "rgb /r %g put\n", ((double) r) / 255); fprintf (printerfile, "rgb /g %g put\n", ((double) g) / 255); fprintf (printerfile, "rgb /b %g put\n", ((double) b) / 255); fprintf (printerfile, "(n) CLYN\n"); fflush (printerfile); } } else { XSetForeground (display, rgc, pixel); XSetBackground (display, rgc, pixel); } #else /* */ if (cmd->type == cGCOLOUR || cmd->type == cGCOLOUR2) { forepixel = RGB (r, g, b); DeleteObject (forebrush); forebrush = CreateSolidBrush (forepixel); DeleteObject (forepen); forepen = CreatePen (PS_SOLID, 0, forepixel); } else { backpixel = RGB (r, g, b); DeleteObject (backbrush); backbrush = CreateSolidBrush (backpixel); DeleteObject (backpen); backpen = CreatePen (PS_SOLID, 0, backpixel); } #endif } int rgb_to_pixel (int r, int g, int b) { /* create a pixel value from rgb values */ long pixel; #ifdef UNIX pixel = (visualinfo. red_mask & ((long) (r * rbits_max / 255) << rbits_shift)) + (visualinfo. green_mask & ((long) (g * gbits_max / 255) << gbits_shift)) + (visualinfo. blue_mask & ((long) (b * bbits_max / 255) << bbits_shift)); #else /* */ pixel = RGB (r, g, b); #endif return pixel; } static int pixel_to_rgb (int *r, int *g, int *b, int pixel) { /* create an rgb value from pixel */ #ifdef UNIX *r = (int) (((pixel >> rbits_shift) & rbits_max) * 255 / rbits_max); *g = (int) (((pixel >> gbits_shift) & gbits_max) * 255 / gbits_max); *b = (int) (((pixel >> bbits_shift) & bbits_max) * 255 / bbits_max); #else /* */ *r = GetRValue (pixel); *g = GetGValue (pixel); *b = GetBValue (pixel); #endif } void circle (struct command *cmd) { /* draw a circle */ double x, y, r; int fill, clear; fill = cmd->tag & dmFILL; clear = cmd->tag & dmCLEAR; r = pop (stNUMBER)->value; y = pop (stNUMBER)->value; x = pop (stNUMBER)->value; transform (&x, &y); if (!winopened) { error (ERROR, "Got no window to draw"); return; } #ifdef UNIX if (clear) { if (fill) { XFillArc (display, window, rgc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); XFillArc (display, backbit, rgc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); } else { XDrawArc (display, window, rgc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); XDrawArc (display, backbit, rgc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); } } else { if (fill) { XFillArc (display, window, gc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); XFillArc (display, backbit, gc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); } else { XDrawArc (display, window, gc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); XDrawArc (display, backbit, gc, x - r, y - r, 2 * r, 2 * r, 0 * 64, 360 * 64); } } XFlush (display); if (printerfile) { fprintf (printerfile, "N\n"); fprintf (printerfile, "%g %g %g (%c) (%c) CI\n", (winheight - y) * psscale, x * psscale, r * psscale, clear ? 'y' : 'n', fill ? 'y' : 'n'); fflush (printerfile); } #else /* WINDOWS */ startdraw (clear); if (fill) { Ellipse (devcon, (int) (x - r), (int) (y - r), (int) (x + r), (int) (y + r)); Ellipse (bitcon, (int) (x - r), (int) (y - r), (int) (x + r), (int) (y + r)); if (printer) { Ellipse (printer, (int) ((x - r) * prnscale + prnoffx), (int) ((y - r) * prnscale + prnoffy), (int) ((x + r) * prnscale + prnoffx), (int) ((y + r) * prnscale + prnoffy)); } } else { Arc (devcon, (int) (x - r), (int) (y - r), (int) (x + r), (int) (y + r), 0, 0, 0, 0); Arc (bitcon, (int) (x - r), (int) (y - r), (int) (x + r), (int) (y + r), 0, 0, 0, 0); if (printer) { Arc (printer, (int) ((x - r) * prnscale + prnoffx), (int) ((y - r) * prnscale + prnoffy), (int) ((x + r) * prnscale + prnoffx), (int) ((y + r) * prnscale + prnoffy), 0, 0, 0, 0); } } enddraw (); #endif } void triangle (struct command *cmd) { /* draw a triangle */ double x0, y0, x1, y1, x2, y2; #ifdef UNIX XPoint points[4]; #else /* */ POINT points[4]; POINT prpoints[4]; #endif int fill, clear; fill = cmd->tag & dmFILL; clear = cmd->tag & dmCLEAR; y2 = pop (stNUMBER)->value; x2 = pop (stNUMBER)->value; y1 = pop (stNUMBER)->value; x1 = pop (stNUMBER)->value; y0 = pop (stNUMBER)->value; x0 = pop (stNUMBER)->value; transform (&x0, &y0); transform (&x1, &y1); transform (&x2, &y2); points[2].y = (long) y2; points[2].x = (long) x2; points[1].y = (long) y1; points[1].x = (long) x1; points[0].y = (long) y0; points[0].x = (long) x0; points[3].y = (long) y0; points[3].x = (long) x0; if (!winopened) { error (ERROR, "Got no window to draw"); return; } #ifdef UNIX if (clear) { if (fill) { XFillPolygon (display, window, rgc, points, 4, Convex, CoordModeOrigin); XFillPolygon (display, backbit, rgc, points, 4, Convex, CoordModeOrigin); } else { XDrawLines (display, window, rgc, points, 4, CoordModeOrigin); XDrawLines (display, backbit, rgc, points, 4, CoordModeOrigin); } } else { if (fill) { XFillPolygon (display, window, gc, points, 4, Convex, CoordModeOrigin); XFillPolygon (display, backbit, gc, points, 4, Convex, CoordModeOrigin); } else { XDrawLines (display, window, gc, points, 4, CoordModeOrigin); XDrawLines (display, backbit, gc, points, 4, CoordModeOrigin); } } XFlush (display); if (printerfile) { fprintf (printerfile, "N\n"); fprintf (printerfile, "%g %g %g %g %g %g (%c) (%c) TRI\n", x0 * psscale, (winheight - y0) * psscale, x1 * psscale, (winheight - y1) * psscale, x2 * psscale, (winheight - y2) * psscale, clear ? 'y' : 'n', fill ? 'y' : 'n'); fflush (printerfile); } #else /* WINDOWS */ startdraw (clear); if (printer) { int i; for (i = 0; i < 3; i++) { prpoints[i].x = (long) (points[i].x * prnscale + prnoffx); prpoints[i].y = (long) (points[i].y * prnscale + prnoffy); } } if (fill) { Polygon (devcon, points, 3); Polygon (bitcon, points, 3); if (printer) { Polygon (printer, prpoints, 3); } } else { Polyline (devcon, points, 4); Polyline (bitcon, points, 4); if (printer) { Polyline (printer, prpoints, 3); } } enddraw (); #endif } void text (struct command *cmd) { /* write a text */ double x, y; char *text; char *arg1 = NULL; char *arg2 = NULL; char *align = NULL; char *fname = NULL; int xoff, yoff, len; #ifdef UNIX int i, d1, d2, d3; /* dummies */ XCharStruct size; static char *sample = "The Quick Brown Fox Jumped Over The Lazy Dog 0123456789"; #else UINT algn; #endif if (cmd->type == cTEXT3) { arg2 = pop (stSTRING)->pointer; } if (cmd->type == cTEXT2 || cmd->type == cTEXT3) { arg1 = pop (stSTRING)->pointer; } if (arg1) { if (check_alignment (arg1)) { align = arg1; } else { fname = arg1; } } if (arg2) { if (check_alignment (arg2)) { if (align) { sprintf (string, "Found two possible alignments: '%s' and '%s'", arg1, arg2); error (ERROR, string); } align = arg2; } else { fname = arg2; } } if (arg2 && check_alignment (arg2)) { align = arg2; if (arg1) { fname = arg1; } } if (arg1 && arg2 && !align) { error (ERROR, "There should be a specification for a text alignment (e.g. 'ct')"); error (ERROR, "among the last two arguments"); return; } if (!align) { align = text_align; } if (fname && !change_font (my_strdup(fname))) { return; } text = pop (stSTRING)->pointer; y = pop (stNUMBER)->value; x = pop (stNUMBER)->value; transform (&x, &y); if (!winopened) { error (ERROR, "Got no window to draw"); return; } len = strlen (text); #ifdef UNIX XTextExtents (myfont, text, len, &d1, &d2, &d3, &size); if (align[0] == 'l') { xoff = 0; } else if (align[0] == 'r') { xoff = -size.width; } else { xoff = -size.width / 2; } if (align[1] == 't') { yoff = fontheight; } else if (align[1] == 'b') { yoff = 0; } else { yoff = fontheight / 2; } XDrawString (display, window, gc, x + xoff, y + yoff, text, len); XDrawString (display, backbit, gc, x + xoff, y + yoff, text, len); XFlush (display); if (printerfile) { for (i = 0; i < INBUFFLEN; i++) { if (*text == '(' || *text == ')') { string[i] = '\\'; i++; } string[i] = *text; if (!*text) { break; } text++; } if (firsttext) { firsttext = FALSE; XTextExtents (myfont, sample, strlen (sample), &d1, &d2, &d3, &size); fprintf (printerfile, "/Helvetica findfont setfont newpath 0 0 moveto\n"); fprintf (printerfile, "(%s) false charpath flattenpath pathbbox\n", sample); fprintf (printerfile, "3 -1 roll pop pop sub abs %g exch div\n", (double) psscale * size.width * 1.095 /* mysterious scaling factor ! */ ); fprintf (printerfile, "/Helvetica findfont exch scalefont setfont\n"); } fprintf (printerfile, "%g %g (%c) (%s) AT\n", x * psscale, (winheight - y - yoff) * psscale, align[0], string); } #else /* WINDOWS */ startdraw (FALSE); SelectObject (devcon, myfont); SetBkMode (devcon, TRANSPARENT); SelectObject (bitcon, myfont); SetBkMode (bitcon, TRANSPARENT); algn = 0; xoff = yoff = 0; if (align[0] == 'l') { algn |= TA_LEFT; } else if (align[0] == 'r') { algn |= TA_RIGHT; } else { algn |= TA_CENTER; } if (align[1] == 't') { algn |= TA_TOP; } else if (align[1] == 'b') { algn |= TA_BOTTOM; } else { algn |= TA_BOTTOM; yoff = fontheight / 2; } SetTextAlign (devcon, algn); TextOut (devcon, (int) (x + xoff), (int) (y + yoff), text, len); SetTextAlign (bitcon, algn); TextOut (bitcon, (int) (x + xoff), (int) (y + yoff), text, len); enddraw (); if (printer) { SetBkMode (printer, TRANSPARENT); SetTextAlign (printer, algn); TextOut (printer, (int) ((x + xoff) * prnscale + prnoffx), (int) ((y + yoff) * prnscale + prnoffy), text, strlen (text)); } #endif } int check_alignment (char *al) { /* checks, if text-alignement is valid */ if (!al[0] || !al[1]) { return FALSE; } al[0] = tolower ((int) al[0]); al[1] = tolower ((int) al[1]); if (!strchr ("clr", al[0]) || !strchr ("ctb", al[1])) { return FALSE; } else { return TRUE; } } void closewin () { /* close the window */ #ifdef UNIX int status; #endif if (!winopened) { error (WARNING, "Got no window to close"); return; } winopened = FALSE; #ifdef UNIX if (backpid > 0) { kill (backpid, SIGKILL); waitpid (backpid, &status, 0); backpid = -1; } XFreePixmap (display, backbit); XDestroyWindow (display, window); XFlush (display); if (printerfile) { closeprinter (); } #else /* WINDOWS */ PostThreadMessage (wtid, WM_QUIT, 0, 0); #endif } void clearwin () { /* clear the window */ #ifdef WINDOWS RECT interior; #endif if (!winopened) { error (WARNING, "Got no window to clear"); return; } #ifdef UNIX XFillRectangle (display, window, rgc, 0, 0, winwidth, winheight); XFillRectangle (display, backbit, rgc, 0, 0, winwidth, winheight); XFlush (display); if (printerfile) { fprintf (printerfile, "showpage\n"); fflush (printerfile); } #else /* WINDOWS */ startdraw (FALSE); GetClientRect (window, &interior); FillRect (devcon, &interior, backbrush); FillRect (bitcon, &interior, backbrush); if (printer) { EndPage (printer); StartPage (printer); } enddraw (); #endif } void moveorigin (char *or) { /* move origin of window */ if (or == NULL) { or = pop (stSTRING)->pointer; } or[0] = tolower ((int) or[0]); or[1] = tolower ((int) or[1]); if (or[2] != '\0' || !strchr ("lcr", or[0]) || !strchr ("tbc", or[1])) { error (ERROR, "invalid window origin"); return; } strcpy (winorigin, or); return; } static void itransform (int *ix, int *iy) { /* integer variant of transform() */ double dx, dy; dx = *ix; dy = *iy; transform (&dx, &dy); *ix = (int) dx; *iy = (int) dy; } static void transform (double *x, double *y) { /* do coordinate transformation */ double xz, yz, xd, yd; double xalt, yalt; if (infolevel >= DEBUG) { xalt = *x; yalt = *y; } switch (winorigin[0]) { case 'l': xz = 0; xd = 1.0; break; case 'c': xz = winwidth / 2; xd = 1.0; break; case 'r': xz = winwidth; xd = -1.0; break; } switch (winorigin[1]) { case 't': yz = 0; yd = 1.0; break; case 'c': yz = winheight / 2; yd = 1.0; break; case 'b': yz = winheight; yd = -1.0; break; } if (infolevel >= DEBUG) { sprintf (string, "transforming (%g,%g) into (%g,%g)", xalt, yalt, *x, *y); error (DEBUG, string); } *x = xz + (*x) * xd; *y = yz + (*y) * yd; } void rect (struct command *cmd) { /* draw a (filled) rect */ #ifdef WINDOWS RECT box, prbox; #endif int fill, clear; double x1, y1, x2, y2, s; if (!winopened) { error (ERROR, "Got no window to draw"); return; } fill = cmd->tag & dmFILL; clear = cmd->tag & dmCLEAR; y2 = pop (stNUMBER)->value; x2 = pop (stNUMBER)->value; y1 = pop (stNUMBER)->value; x1 = pop (stNUMBER)->value; transform (&x1, &y1); transform (&x2, &y2); if (x1 > x2) { s = x2; x2 = x1; x1 = s; } if (y1 > y2) { s = y2; y2 = y1; y1 = s; } #ifdef UNIX if (clear) { if (fill) { XFillRectangle (display, window, rgc, x1, y1, x2 - x1 + 1, y2 - y1 + 1); XFillRectangle (display, backbit, rgc, x1, y1, x2 - x1 + 1, y2 - y1 + 1); } else { XDrawRectangle (display, window, rgc, x1, y1, x2 - x1, y2 - y1); XDrawRectangle (display, backbit, rgc, x1, y1, x2 - x1, y2 - y1); } } else { if (fill) { XFillRectangle (display, window, gc, x1, y1, x2 - x1 + 1, y2 - y1 + 1); XFillRectangle (display, backbit, gc, x1, y1, x2 - x1 + 1, y2 - y1 + 1); } else { XDrawRectangle (display, window, gc, x1, y1, x2 - x1, y2 - y1); XDrawRectangle (display, backbit, gc, x1, y1, x2 - x1, y2 - y1); } } XFlush (display); if (printerfile) { fprintf (printerfile, "%g %g %g %g (%c) (%c) RE\n", x1 * psscale, (winheight - y1) * psscale, x2 * psscale, (winheight - y2) * psscale, clear ? 'y' : 'n', fill ? 'y' : 'n'); fflush (printerfile); } #else startdraw (clear); box.left = (long) x1; box.right = (long) x2 + 1; box.top = (long) y1; box.bottom = (long) y2 + 1; prbox.left = (long) (x1 * prnscale + prnoffx); prbox.right = (long) (x2 * prnscale + prnoffx); prbox.top = (long) (y1 * prnscale + prnoffy); prbox.bottom = (long) (y2 * prnscale + prnoffy); if (fill) { if (clear) { FillRect (devcon, &box, backbrush); } else { FillRect (devcon, &box, forebrush); } if (clear) { FillRect (bitcon, &box, backbrush); } else { FillRect (bitcon, &box, forebrush); } if (printer) { FillRect (printer, &prbox, GetStockObject (clear ? WHITE_BRUSH : BLACK_BRUSH)); } } else { if (clear) { FrameRect (devcon, &box, backbrush); } else { FrameRect (devcon, &box, forebrush); } if (clear) { FrameRect (bitcon, &box, backbrush); } else { FrameRect (bitcon, &box, forebrush); } if (printer) { MoveToEx (printer, prbox.left, prbox.top, NULL); LineTo (printer, prbox.left, prbox.bottom); LineTo (printer, prbox.right, prbox.bottom); LineTo (printer, prbox.right, prbox.top); LineTo (printer, prbox.left, prbox.top); } } enddraw (); #endif } void putbit (void) { /* put rect into win */ char *mode, *pm, *bitstring, *pb; char m; int xe, ye, we, he; int x, y, xdest, ydest, w, h, n, badimage; unsigned short red, green, blue; #ifdef UNIX int should_pixel; XImage *bits = NULL; XGCValues vals; #else /* */ static COLORREF should_pixel; #endif /* */ mode = pop (stSTRING)->pointer; if (print_to_file) { error (ERROR, "Cannot bitblit to printer"); return; } if (!winopened) { error (ERROR, "Got no window to draw"); return; } for (pm = mode; *pm; pm++) { *pm = tolower (*pm); } if (strlen (mode) && !strncmp (mode, "solid", strlen (mode))) { m = 's'; } else if (strlen (mode) && !strncmp (mode, "transparent", strlen (mode))) { m = 't'; } else { sprintf (string, "Invalid mode for bitblit: '%s', only 'solid' and 'transparent' are allowed", mode); error (ERROR, string); } ydest = (int) pop (stNUMBER)->value; xdest = (int) pop (stNUMBER)->value; itransform (&xdest, &ydest); bitstring = pop (stSTRING)->pointer; badimage = FALSE; if (sscanf (bitstring, "rgb %d,%d:%n", &w, &h, &n) != 2) { badimage = TRUE; } for (pb = bitstring + n; *pb; pb++) { *pb = tolower (*pb); if (!strchr ("0123456789abcdef", *pb)) { badimage = TRUE; break; } } if (badimage || w < 0 || h < 0) { error (ERROR, "Invalid bitmap (must start with 'rgb X,Y:', where X and Y are >0)"); return; } if (xdest >= winwidth || ydest >= winheight || xdest + w < 0 || ydest + h < 0) { return; } xe = xdest; ye = ydest; we = w; he = h; if (xe < 0) { we += xe; xe = 0; } if (ye < 0) { he += ye; ye = 0; } if (we > winwidth - xe) { we = winwidth - xe; } if (he > winheight - ye) { he = winheight - ye; } if (!readrgb (bitstring + n, &red, &green, &blue)) { return; } #ifdef UNIX if (xe + we > 0 && ye + he > 0) { XGetGCValues (display, gc, GCPlaneMask, &vals); bits = XGetImage (display, backbit, xe, ye, we, he, vals.plane_mask, XYPixmap); if (!bits) { error (ERROR, "Couldn't get bits from window"); return; } } #else /* */ startdraw (FALSE); #endif /* */ for (y = 0; y < h; y++) { for (x = 0; x < w; x++) { if (!readrgb (NULL, &red, &green, &blue)) { error (ERROR, "Invalid bitmap"); return; } should_pixel = rgb_to_pixel (red, green, blue); if (x + xdest >= xe && x + xdest < xe + we && y + ydest >= ye && y + ydest < ye + he) { if (m == 't' && backpixel == should_pixel) { /* do nothing */ } else { #ifdef UNIX XPutPixel (bits, x - xe + xdest, y - ye + ydest, should_pixel); #else SetPixelV (bitcon, xdest + x, ydest + y, should_pixel); #endif } } } } #ifdef UNIX if (bits) { XPutImage (display, window, gc, bits, 0, 0, xe, ye, we, he); XPutImage (display, backbit, gc, bits, 0, 0, xe, ye, we, he); XFlush (display); XDestroyImage (bits); } #else BitBlt (devcon, xe, ye, we, he, bitcon, xe, ye, SRCCOPY); enddraw (); #endif return; } char * getbit (int x1, int y1, int x2, int y2) { /* get rect from win */ int s, x, y, pixel; int xe1, ye1, xe2, ye2; char *bitstring; #ifdef UNIX XImage *bits = NULL; XGCValues vals; int red, green, blue; #endif if (!winopened) { error (ERROR, "Got no window to draw"); return my_strdup (""); } itransform (&x1, &y1); itransform (&x2, &y2); if (x2 < x1) { s = x1; x1 = x2; x2 = s; } if (y2 < y1) { s = y1; y1 = y2; y2 = s; } xe1 = x1; ye1 = y1; xe2 = x2; ye2 = y2; if (xe1 < 0) { xe1 = 0; } if (ye1 < 0) { ye1 = 0; } if (xe2 >= winwidth) { xe2 = winwidth - 1; } if (ye2 >= winheight) { ye2 = winheight - 1; } #ifdef UNIX if (xe1 <= xe2 && ye1 <= ye2) { XGetGCValues (display, gc, GCPlaneMask, &vals); bits = XGetImage (display, backbit, xe1, ye1, xe2 - xe1 + 1, ye2 - ye1 + 1, vals.plane_mask, XYPixmap); if (!bits) { error (ERROR, "Couldn't get bits from window"); return my_strdup (""); } } bitstring = newrgb (x2 - x1 + 1, y2 - y1 + 1); for (y = y1; y <= y2; y++) { for (x = x1; x <= x2; x++) { if (x >= xe1 && x <= xe2 && y >= ye1 && y <= ye2) { pixel = XGetPixel (bits, x - xe1, y - ye1); } else { pixel = backpixel; } pixel_to_rgb (&red, &green, &blue, pixel); addrgb (bitstring, red, green, blue); } } if (bits) { XDestroyImage (bits); } #else /* */ startdraw (FALSE); bitstring = newrgb (x2 - x1 + 1, y2 - y1 + 1); for (y = y1; y <= y2; y++) { for (x = x1; x <= x2; x++) { if (x >= xe1 && x <= xe2 && y >= ye1 && y <= ye2) { pixel = GetPixel (bitcon, x, y); } else { pixel = backpixel; } addrgb (bitstring, GetRValue (pixel), GetGValue (pixel), GetBValue (pixel)); } } enddraw (); #endif return bitstring; } static char * newrgb (int w, int h) { /* create a new bitmap string */ char *bits; sprintf (string, "rgb %d,%d:", w, h); bits = my_malloc (strlen (string) + ((w * h) * 6) + 2); strcpy (bits, string); bitcount = 0; return bits; } static void addrgb (char *bits, unsigned short red, unsigned short green, unsigned short blue) { /* add one rgb pixel to bitstring */ static char *pbits; if (bitcount == 0) { pbits = bits + strlen (bits); } bitcount++; sprintf (pbits, "%02x%02x%02x", red, green, blue); pbits += 6; } static int readrgb (char *bits, unsigned short *red, unsigned short *green, unsigned short *blue) { /* read rgb bit from string one after another */ static char *bitpt; int r, g, b; if (bits) { bitpt = bits; return 1; } if (sscanf (bitpt, "%02x%02x%02x", &r, &g, &b) == 3) { *red = r; *green = g; *blue = b; bitpt += 6; return 1; } return 0; } void create_openprinter (int num) { /* create command 'openprinter' */ struct command *cmd; cmd = add_command (cOPENPRN, NULL, NULL); cmd->args = num; } void openprinter (struct command *cmd) { /* opens a printer */ #ifdef WINDOWS char PrinterName[200]; /* Name of default Printer */ char *p; /* points into PrinterName */ static int first = TRUE; DOCINFO di; float width, height, prnscalex, prnscaley; LOGBRUSH mybrush; RECT interior; #endif /* close file, if already open */ #ifdef UNIX if (printerfile) { closeprinter (); } #endif if (cmd->args == 1) { printerfilename = my_strdup ((char *) (pop (stSTRING)->pointer)); print_to_file = TRUE; } else { printerfilename = my_strdup ("\0"); print_to_file = FALSE; } #ifdef UNIX if (*printerfilename == '\0') { #ifdef HAVE_MKSTEMP int fd; my_free (printerfilename); printerfilename = my_strdup ("/tmp/yabasic-postscript-output-XXXXXX"); fd = mkstemp (printerfilename); if (fd > 0) { printerfile = fdopen (fd, "w"); } else { printerfile = NULL; } #else struct stat s; my_free (printerfilename); printerfilename = my_strdup ("/tmp/yabasic.ps"); if (stat (printerfilename, &s) && errno != ENOENT) { sprintf (string, "could not check printerfile '%s': %s", printerfilename, my_strerror (errno)); error (ERROR, string); return; } if (s.st_mode & S_IFLNK) { sprintf (string, "could not print to file '%s'; it is a symbolic link"); error (ERROR, string); return; } printerfile = fopen (printerfilename, "w"); #endif deleteprinterfile = TRUE; } else { printerfile = fopen (printerfilename, "w"); deleteprinterfile = FALSE; } if (!printerfile) { sprintf (string, "could not open file '%s' for printing: %s", printerfilename, my_strerror (errno)); error (ERROR, string); } #endif #ifdef WINDOWS if (first) { /* query win.ini for default printer */ GetProfileString ("windows", "device", ",,,", PrinterName, 200); /* truncate printer name */ p = PrinterName; while (*p && *p != ',') { p++; } *p = '\0'; printer = CreateDC (NULL, PrinterName, NULL, NULL); if (!printer) { printer = CreateDC (NULL, "winspool", NULL, NULL); } if (!printer) { error (ERROR, "Couldn't get handle for printer"); return; } /* calculate scaling-factors */ width = (float) GetDeviceCaps (printer, PHYSICALWIDTH); prnoffx = (float) GetDeviceCaps (printer, PHYSICALOFFSETX); prnscalex = (float) (width - 4 * prnoffx) / winwidth; height = (float) GetDeviceCaps (printer, PHYSICALHEIGHT); prnoffy = (float) GetDeviceCaps (printer, PHYSICALOFFSETY); prnscaley = (float) (height - 4 * prnoffy) / winheight; prnscale = (prnscalex < prnscaley) ? prnscalex : prnscaley; /* create printerpens */ mybrush.lbStyle = BS_SOLID; mybrush.lbColor = RGB (255, 255, 255); mybrush.lbHatch = HS_DIAGCROSS; revprinterpen = ExtCreatePen (PS_GEOMETRIC, (long) prnscale, &mybrush, 0, NULL); mybrush.lbStyle = BS_SOLID; mybrush.lbColor = RGB (0, 0, 0); mybrush.lbHatch = HS_DIAGCROSS; printerpen = ExtCreatePen (PS_GEOMETRIC, (long) prnscale, &mybrush, 0, NULL); /* set clipping region */ GetClientRect (window, &interior); SelectClipRgn (printer, NULL); IntersectClipRect (printer, (int) (interior.left * prnscalex + prnoffx), (int) (interior.top * prnscaley + prnoffy), (int) (interior.right * prnscalex + prnoffx), (int) (interior.bottom * prnscaley + prnoffy)); /* create printerfont */ logfont.lfHeight = (long) (-fontheight * prnscale); printerfont = CreateFontIndirect (&logfont); if (printerfont == NULL) { sprintf (string, "Could not create font for printer"); error (ERROR, string); return; } if (!SelectObject (printer, printerfont)) { error (ERROR, "could not select printerfont"); } } di.cbSize = sizeof (DOCINFO); di.lpszDocName = "yabasic grafics"; di.lpszOutput = (print_to_file) ? printerfilename : (LPTSTR) NULL; di.lpszDatatype = (LPTSTR) NULL; di.fwType = 0; if (StartDoc (printer, &di) == SP_ERROR) { error (ERROR, "Couldn't start printing"); return; } StartPage (printer); first = FALSE; #else /* UNIX */ fprintf (printerfile, "%%!PS-Adobe-1.0\n"); fprintf (printerfile, "%%%%Title: %s grafic\n", progname); fprintf (printerfile, "%%%%BoundingBox: 0 0 %i %i\n", (int) (winwidth * psscale), (int) (winheight * psscale)); fprintf (printerfile, "%%%%DocumentFonts: Helvetica\n"); fprintf (printerfile, "%%%%Creator: yabasic\n"); fprintf (printerfile, "%%%%Pages: (atend)\n"); fprintf (printerfile, "%%%%EndComments\n"); fprintf (printerfile, "gsave\n"); fprintf (printerfile, "/txt 4 dict def\n"); fprintf (printerfile, "/rec 6 dict def\n"); fprintf (printerfile, "/tri 8 dict def\n"); fprintf (printerfile, "/cir 5 dict def\n"); fprintf (printerfile, "/rgb 3 dict def\n"); fprintf (printerfile, "rgb /r 0 put\n"); fprintf (printerfile, "rgb /g 0 put\n"); fprintf (printerfile, "rgb /b 0 put\n"); fprintf (printerfile, "0 setgray\n"); fprintf (printerfile, "/M {moveto} def\n"); fprintf (printerfile, "/RL {rlineto} def\n"); fprintf (printerfile, "/L {lineto} def\n"); fprintf (printerfile, "/N {newpath} def\n"); fprintf (printerfile, "/S {stroke} def\n"); fprintf (printerfile, "/CLYN {(y) eq {1 setgray} {rgb /r get rgb /g get rgb /b get setrgbcolor} ifelse} def\n"); fprintf (printerfile, "/DO {CLYN N M 0 %g RL %g 0 RL 0 %g RL" " closepath fill (n) CLYN} def\n", psscale, psscale, -psscale); fprintf (printerfile, "/LI {CLYN N M L stroke (n) CLYN} def\n"); fprintf (printerfile, "/CI {mark 6 1 roll cir /fi 3 -1 roll put\n"); fprintf (printerfile, " cir /cl 3 -1 roll put\n"); fprintf (printerfile, " cir /r 3 -1 roll put\n"); fprintf (printerfile, " cir /x 3 -1 roll put\n"); fprintf (printerfile, " cir /y 3 -1 roll put\n"); fprintf (printerfile, " cir /cl get (y) CLYN\n"); fprintf (printerfile, " N cir /x get cir /y get cir /r get 0 360 arc\n"); fprintf (printerfile, " closepath cir /fi get (y) eq {fill} {stroke} ifelse\n"); fprintf (printerfile, " (n) CLYN cleartomark} def\n"); fprintf (printerfile, "/AT {mark 5 1 roll txt /txt 3 -1 roll put\n"); fprintf (printerfile, " txt /xa 3 -1 roll put\n"); fprintf (printerfile, " txt /y 3 -1 roll put\n"); fprintf (printerfile, " txt /x 3 -1 roll put\n"); fprintf (printerfile, " N txt /x get txt /y get M\n"); fprintf (printerfile, " txt /txt get false charpath flattenpath pathbbox\n"); fprintf (printerfile, " pop exch pop exch sub\n"); fprintf (printerfile, " txt /x get exch\n"); fprintf (printerfile, " txt /xa get (c) eq {2 div sub} if\n"); fprintf (printerfile, " txt /xa get (l) eq {pop} if\n"); fprintf (printerfile, " txt /xa get (r) eq {sub} if\n"); fprintf (printerfile, " txt /y get M\n"); fprintf (printerfile, " txt /txt get show cleartomark\n"); fprintf (printerfile, " } def\n"); fprintf (printerfile, "/RE {mark 7 1 roll rec /fi 3 -1 roll put\n"); fprintf (printerfile, " rec /cl 3 -1 roll put\n"); fprintf (printerfile, " rec /y2 3 -1 roll put\n"); fprintf (printerfile, " rec /x2 3 -1 roll put\n"); fprintf (printerfile, " rec /y1 3 -1 roll put\n"); fprintf (printerfile, " rec /x1 3 -1 roll put\n"); fprintf (printerfile, " rec /cl get CLYN\n"); fprintf (printerfile, " N rec /x1 get rec /y1 get M\n"); fprintf (printerfile, " rec /x1 get rec /y2 get L\n"); fprintf (printerfile, " rec /x2 get rec /y2 get L\n"); fprintf (printerfile, " rec /x2 get rec /y1 get L\n"); fprintf (printerfile, " rec /x1 get rec /y1 get L\n"); fprintf (printerfile, " closepath rec /fi get (y) eq {fill} {stroke} ifelse\n"); fprintf (printerfile, " (n) CLYN cleartomark} def\n"); fprintf (printerfile, "/TRI {mark 9 1 roll tri /fi 3 -1 roll put\n"); fprintf (printerfile, " tri /cl 3 -1 roll put\n"); fprintf (printerfile, " tri /y3 3 -1 roll put\n"); fprintf (printerfile, " tri /x3 3 -1 roll put\n"); fprintf (printerfile, " tri /y2 3 -1 roll put\n"); fprintf (printerfile, " tri /x2 3 -1 roll put\n"); fprintf (printerfile, " tri /y1 3 -1 roll put\n"); fprintf (printerfile, " tri /x1 3 -1 roll put\n"); fprintf (printerfile, " tri /cl get CLYN\n"); fprintf (printerfile, " N tri /x1 get tri /y1 get M\n"); fprintf (printerfile, " tri /x2 get tri /y2 get L\n"); fprintf (printerfile, " tri /x3 get tri /y3 get L\n"); fprintf (printerfile, " closepath tri /fi get (y) eq {fill} {stroke} ifelse\n"); fprintf (printerfile, " (n) CLYN cleartomark} def\n"); fprintf (printerfile, "30 30 translate\n"); fprintf (printerfile, "%g setlinewidth\n", psscale); firsttext = TRUE; /* font will be set in text-command */ fflush (printerfile); #endif } void closeprinter () { /* close printer */ #ifdef WINDOWS EndPage (printer); EndDoc (printer); #else /* UNIX */ if (printerfile) { fprintf (printerfile, "showpage\ngrestore\n%%%%Trailer\n"); fclose (printerfile); printerfile = NULL; if (deleteprinterfile) { deleteprinterfile = FALSE; sprintf (string, "lpr %s", printerfilename); if (system (string)) { sprintf (string, "couldn't print '%s'", printerfilename); error (ERROR, string); return; } remove (printerfilename); } } #endif if (printerfilename) { my_free (printerfilename); printerfilename = NULL; } print_to_file = FALSE; } #ifdef UNIX void getwinkey (char *retkey) { /* read a key from grafics window */ static XEvent event; /* what has happened ? */ static KeySym sym; /* keysmbol */ KeySym *keysym = NULL; int numsym; int yk, len, x, y; XSelectInput (display, window, KeyPressMask | ButtonPressMask | ButtonReleaseMask); do { if (keysym) { XFree(keysym); } if (!XCheckWindowEvent(display, window, KeyPressMask | ButtonPressMask | ButtonReleaseMask, &event)) { return; } len = XLookupString ((XKeyPressedEvent *) & event, retkey, 100, &sym, NULL); if (event.type == KeyPress) { keysym = XGetKeyboardMapping(display, event.xkey.keycode, 1,&numsym); sym = keysym[0]; XFree(keysym); } } while (event.type == KeyPress && (sym == XK_Shift_L || sym == XK_Shift_R || sym == XK_Control_L || sym == XK_Control_R || sym == XK_Alt_L || sym == XK_Alt_R || sym == XK_Caps_Lock || sym == XK_Shift_Lock)); XSelectInput (display, window, 0); if (event.type == ButtonPress) { x = event.xbutton.x; y = event.xbutton.y; itransform (&x, &y); sprintf (retkey, "MB%dd+%d:%04d,%04d", event.xbutton.button, event.xbutton.state & 15, x, y); return; } if (event.type == ButtonRelease) { x = event.xbutton.x; y = event.xbutton.y; itransform (&x, &y); sprintf (retkey, "MB%du+%d:%04d,%04d", event.xbutton.button, event.xbutton.state & 15, x, y); return; } len = XLookupString ((XKeyPressedEvent *) & event, retkey, 100, &sym, NULL); retkey[len] = '\0'; if (len != 1 || !isprint (retkey[0])) { yk = -1; keysym = XGetKeyboardMapping(display, event.xkey.keycode, 1,&numsym); sym = keysym[0]; XFree(keysym); switch (sym) { case XK_BackSpace: yk = kBACKSPACE; break; case XK_Tab: yk = kTAB; break; case XK_Insert: yk = kINS; break; case XK_Home: yk = kHOME; break; case XK_End: yk = kEND; break; case XK_Clear: yk = kCLEAR; break; case XK_Return: yk = kENTER; break; case XK_KP_Enter: yk = kENTER; break; case XK_Escape: yk = kESC; break; case XK_Delete: yk = kDEL; break; case XK_Left: yk = kLEFT; break; case XK_Up: yk = kUP; break; case XK_Right: yk = kRIGHT; break; case XK_Down: yk = kDOWN; break; case XK_Page_Up: yk = kSCRNUP; break; case XK_Page_Down: yk = kSCRNDOWN; break; case XK_F1: yk = kF1; break; case XK_F2: yk = kF2; break; case XK_F3: yk = kF3; break; case XK_F4: yk = kF4; break; case XK_F5: yk = kF5; break; case XK_F6: yk = kF6; break; case XK_F7: yk = kF7; break; case XK_F8: yk = kF8; break; case XK_F9: yk = kF9; break; case XK_F10: yk = kF10; break; case XK_F11: yk = kF11; break; case XK_F12: yk = kF12; break; case XK_F13: yk = kF13; break; case XK_F14: yk = kF14; break; case XK_F15: yk = kF15; break; case XK_F16: yk = kF16; break; case XK_F17: yk = kF17; break; case XK_F18: yk = kF18; break; case XK_F19: yk = kF19; break; case XK_F20: yk = kF20; break; case XK_F21: yk = kF21; break; case XK_F22: yk = kF22; break; case XK_F23: yk = kF23; break; case XK_F24: yk = kF24; break; default: break; } if (yk > 0) { strcpy (retkey, ykey[yk]); } else { sprintf (retkey, "key%x", (int) sym); } if (!strncmp ("MB", retkey, 2)) { getmousexybm (retkey, &mousex, &mousey, &mouseb, &mousemod); } } } void gettermkey (char *keybuff) { /* read a key from terminal */ char *skey = NULL; int key; /* returned key */ key = getch (); switch (key) { case ERR: return; case KEY_UP: skey = ykey[kUP]; break; case KEY_DOWN: skey = ykey[kDOWN]; break; case KEY_LEFT: skey = ykey[kLEFT]; break; case KEY_RIGHT: skey = ykey[kRIGHT]; break; case KEY_DC: skey = ykey[kDEL]; break; case KEY_IC: skey = ykey[kINS]; break; case KEY_IL: skey = ykey[kINS]; break; case KEY_CLEAR: skey = ykey[kCLEAR]; break; case KEY_HOME: skey = ykey[kHOME]; break; #ifdef KEY_END case KEY_END: skey = ykey[kEND]; break; #endif case KEY_F0: skey = ykey[kF0]; break; case KEY_F (1): skey = ykey[kF1]; break; case KEY_F (2): skey = ykey[kF2]; break; case KEY_F (3): skey = ykey[kF3]; break; case KEY_F (4): skey = ykey[kF4]; break; case KEY_F (5): skey = ykey[kF5]; break; case KEY_F (6): skey = ykey[kF6]; break; case KEY_F (7): skey = ykey[kF7]; break; case KEY_F (8): skey = ykey[kF8]; break; case KEY_F (9): skey = ykey[kF9]; break; case KEY_F (10): skey = ykey[kF10]; break; case KEY_F (11): skey = ykey[kF11]; break; case KEY_F (12): skey = ykey[kF12]; break; case KEY_F (13): skey = ykey[kF13]; break; case KEY_F (14): skey = ykey[kF14]; break; case KEY_F (15): skey = ykey[kF15]; break; case KEY_F (16): skey = ykey[kF16]; break; case KEY_F (17): skey = ykey[kF17]; break; case KEY_F (18): skey = ykey[kF18]; break; case KEY_F (19): skey = ykey[kF19]; break; case KEY_F (20): skey = ykey[kF20]; break; case KEY_F (21): skey = ykey[kF21]; break; case KEY_F (22): skey = ykey[kF22]; break; case KEY_F (23): skey = ykey[kF23]; break; case KEY_F (24): skey = ykey[kF24]; break; case KEY_BACKSPACE: skey = ykey[kBACKSPACE]; break; case KEY_NPAGE: skey = ykey[kSCRNDOWN]; break; case KEY_PPAGE: skey = ykey[kSCRNUP]; break; case KEY_ENTER: skey = ykey[kENTER]; break; default: if (isprint (key)) { keybuff[0] = key; keybuff[1] = '\0'; } else if (key < 0 || key >= KEY_MAX) { keybuff[0] = '\0'; } else { switch (key) { case 0x1b: skey = ykey[kESC]; break; case 0x7f: skey = ykey[kDEL]; break; case 0xa: skey = ykey[kENTER]; break; case 0x9: skey = ykey[kTAB]; break; default: sprintf (keybuff, "key%x", key); } } break; } if (skey) { strcpy (keybuff, skey); } } #endif yabasic-2.78.5/COPYING0000775000175100017510000000020113031224210011170 00000000000000 Yabasic may be copied only under the terms of the MIT License, which can be found in the file LICENSE within this directory. yabasic-2.78.5/demo.yab0000775000175100017510000001504513031224210011572 00000000000000// // This program demos yabasic // // Check, if screen is large enough clear screen sw=peek("screenwidth"):sh=peek("screenheight") if (sw<78 or sh<24) then print print " Sorry, but your screen (",sw," x ",sh,") is to small (minimum 78 x 24) to run this demo !" print end endif sw=78:sh=24 // Initialize everything restore mmdata read mmnum:dim mmtext$(mmnum) for a=1 to mmnum:read mmtext$(a):next a // Main loop selection of demo ysel=1 label mainloop clear screen print colour("cyan","magenta") at(7,2) "################################" print colour("cyan","magenta") at(7,3) "################################" print colour("cyan","magenta") at(7,4) "################################" print colour("yellow","blue") at(8,3) " This is the demo for yabasic " yoff=7 for a=1 to mmnum if (a=mmnum) then ydisp=1:else ydisp=0:fi if (a=ysel) then print colour("blue","green") at(5,yoff+ydisp+a) mmtext$(a); else print at(5,yoff+ydisp+a) mmtext$(a); endif next a print at(3,sh-3) "Move selection with CURSOR KEYS (or u and d)," print at(3,sh-2) "Press RETURN or SPACE to choose, ESC to quit." do // loop for keys pressed rev=1 do // loop for blinking k$=inkey$(0.4) if (k$="") then if (ysel=mmnum) then if (rev=1) then print colour("blue","green") at(5,yoff+mmnum+1) mmtext$(mmnum); rev=0 else print colour("yellow","red") at(5,yoff+mmnum+1) mmtext$(mmnum); rev=1 endif endif else // key has been pressed, leave loop break endif loop // loop for blinking yalt=ysel if (k$="up" or k$="u") then if (ysel=1) then ysel=mmnum else ysel=ysel-1 fi redraw():heal():continue fi if (k$="down" or k$="d") then if (ysel=mmnum) then ysel=1 else ysel=ysel+1 fi redraw():heal():continue fi if (k$=" " or k$="enter" or k$="right") then on ysel gosub overview,bitmap,tetraeder,endit goto mainloop fi if (k$="esc") then endit() fi beep print at(3,sh-5) "Invalid key: ",k$," " loop // loop for keys pressed // redraw line sub redraw() if (yalt=mmnum) then ydisp=1:else ydisp=0:fi print at(5,yoff+yalt+ydisp) mmtext$(yalt); if (ysel=mmnum) then ydisp=1:else ydisp=0:fi print colour("blue","green") at(5,yoff+ysel+ydisp) mmtext$(ysel); return end sub // erase a line sub heal() print at(3,sh-5) " " return end sub // Go here to exit label endit print at(3,sh-8) "Bye ...\n "; sleep 1 exit return // Present a short overview label overview clear screen print print " Yabasic is a quite traditional basic: It comes with" print " print, input, for-next-loops, goto, gosub, while and" print " repeat. It has user defined procedures and libraries," print " however, it is not object oriented.\n" print " Yabasic makes it easy to open a window, draw lines" print " and print the resulting picture.\n" print " Yabasic programs are interpreted and run under Unix" print " and Windows. The Yabasic interpreter (around 200K)" print " and any Yabasic program can be glued together to" print " form a standalone executable.\n" print " Yabasic is free software, i.e. subject to the" print " MIT License.\n" print "\n\n\n While you read this, I am calculating prime numbers,\n" print " Press any key to return to main menu ..." can=1 print at(6,17) "This is a prime number: " label nextcan can=can+2 for i=2 to sqrt(can):if (frac(can/i)=0) then goto notprime:fi:next i print at(32,17) can; label notprime if (lower$(inkey$(0))<>"") then print at(10,sh) "Wrapping around once ..."; for x=1 to sw a$=getscreen$(0,0,1,sh-2) b$=getscreen$(1,0,sw-1,sh-2) putscreen b$,0,0 putscreen a$,sw-1,0 sleep 0.02 next x sleep 1 return fi goto nextcan // Show some animated bitmaps label bitmap clear screen print print "Yabasic offers some commands for drawing simple graphics." print reverse at(5,12) " Press any key to return to main menu ... " n=20 open window 400,400 for b=20 to 0 step -1 color 255-b*12,0,b*12 fill circle 200,200,b next b c$=getbit$(179,179,221,221) for a=1 to 2000 color ran(255),ran(255),ran(255) x=ran(500)-100:y=ran(500)-100 fill rectangle ran(500)-100,ran(500)-100,ran(500)-100,ran(500)-100 next a x=200:y=200:phi=ran(2*pi):dx=2*sin(phi):dy=2*cos(phi) o$="" count=0 label pong count=count+1 if (o$<>"") putbit o$,xo-2,yo-2 if (count>1000) then phi=ran(2*pi):dx=2*sin(phi):dy=2*cos(phi) sleep 2 count=0 endif xo=x:yo=y x=x+dx:y=y+dy o$=getbit$(x-2,y-2,x+46,y+46) putbit c$,x,y,"t" if (x<0 or x>360) dx=-dx if (y<0 or y>360) dy=-dy if (inkey$(0.01)<>"") then close window return endif goto pong return label tetraeder open window 400,400 clear window clear screen print reverse at(5,12) " Press any key to return to main menu ... " dim opoints(4,3) restore points for n=1 to 4:for p=1 to 3:read opoints(n,p):next p:next n dim triangles(4,3) restore triangles for n=1 to 4:for p=1 to 3:read triangles(n,p):next p:next n phi=0:dphi=0.1:psi=0:dpsi=0.05 dim points(4,3) r=60:g=20 dr=0.5:dg=1.2:db=3 label main phi=phi+dphi psi=psi+dpsi for n=1 to 4 points(n,1)=opoints(n,1)*cos(phi)-opoints(n,2)*sin(phi) points(n,2)=opoints(n,2)*cos(phi)+opoints(n,1)*sin(phi) p2= points(n,2)*cos(psi)-opoints(n,3)*sin(psi) points(n,3)=opoints(n,3)*cos(psi)+ points(n,2)*sin(psi) points(n,2)=p2 next n r=r+dr:if (r<0 or r>60) dr=-dr g=g+dg:if (g<0 or g>60) dg=-dg b=b+db:if (b<0 or b>60) db=-db dm=dm+0.01 m=120-80*sin(dm) for n=1 to 4 p1=triangles(n,1) p2=triangles(n,2) p3=triangles(n,3) n1=points(p1,1)+points(p2,1)+points(p3,1) n2=points(p1,2)+points(p2,2)+points(p3,2) n3=points(p1,3)+points(p2,3)+points(p3,3) if (n3>0) then sp=n1*0.5-n2*0.7-n3*0.6 color 60+r+30*sp,60+g+30*sp,60+b+30*sp fill triangle 200+m*points(p1,1),200+m*points(p1,2),200+m*points(p2,1),200+m*points(p2,2),200+m*points(p3,1),200+m*points(p3,2) endif next n if (inkey$(0.1)<>"") close window:return clear window goto main label points data -1,-1,+1, +1,-1,-1, +1,+1,+1, -1,+1,-1 label triangles data 1,2,4, 2,3,4, 1,3,4, 1,2,3 // Data section ... label mmdata // Data for main menu: Number and text of entries in main menu data 4 data " Yabasic in a nutshell " data " Some graphics " data " A rotating Tetraeder " data " Exit this demo " yabasic-2.78.5/yabasic.bison0000775000175100017510000010625513260510356012641 00000000000000%{ /* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de BISON part This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* definitions of yabasic */ #endif #ifdef WINDOWS #include #else #ifdef HAVE_MALLOC_H #include #else #include #endif #endif #if HAVE_ALLOCA_H #ifndef WINDOWS #include #endif #endif void __yy_bcopy(char *,char *,int); /* prototype missing */ int tileol; /* true, read should go to eon of line */ int mylineno = 1; /* line number; counts fresh in every new file */ int function_type=ftNONE; /* contains function type while parsing function */ char *current_function=NULL; /* name of currently parsed function */ int exported=FALSE; /* true, if function is exported */ int yylex(void); extern struct libfile_name *current_libfile; /* defined in main.c: name of currently parsed file */ int missing_endif=0; int missing_endif_line=0; int missing_endsub=0; int missing_endsub_line=0; int missing_next=0; int missing_next_line=0; int missing_wend=0; int missing_wend_line=0; int missing_until=0; int missing_until_line=0; int missing_loop=0; int missing_loop_line=0; int loop_nesting=0; int switch_nesting=0; void report_missing(int severity,char *text) { if (missing_loop || missing_endif || missing_next || missing_until || missing_wend) { error(severity,text); string[0]='\0'; if (missing_endif) sprintf(string,"if statement starting at line %d has seen no 'endif' yet",missing_endif_line); else if (missing_next) sprintf(string,"for-loop starting at line %d has seen no 'next' yet",missing_next_line); else if (missing_wend) sprintf(string,"while-loop starting at line %d has seen no 'wend' yet",missing_wend_line); else if (missing_until) sprintf(string,"repeat-loop starting at line %d has seen no 'until' yet",missing_until_line); else if (missing_loop) sprintf(string,"do-loop starting at line %d has seen no 'loop' yet",missing_loop_line); if (string[0]) error(severity,string); } } %} %union { double fnum; /* double number */ int inum; /* integer number */ int token; /* token of command */ int sep; /* number of newlines */ char *string; /* quoted string */ char *symbol; /* general symbol */ char *digits; /* string of digits */ char *docu; /* embedded documentation */ } %type const %type number %type symbol_or_lineno %type function_name %type function_or_array %type stringfunction_or_array %type tSEP sep_list %token tFNUM %token tSYMBOL %token tSTRSYM %token tDOCU %token tDIGITS %token tSTRING %token tFOR tTO tSTEP tNEXT tWHILE tWEND tREPEAT tUNTIL tIMPORT %token tGOTO tGOSUB tLABEL tON tSUB tENDSUB tLOCAL tSTATIC tEXPORT tERROR %token tEXECUTE tEXECUTE2 tCOMPILE tRUNTIME_CREATED_SUB %token tINTERRUPT tBREAK tCONTINUE tSWITCH tSEND tCASE tDEFAULT tLOOP tDO tSEP tEOPROG %token tIF tTHEN tELSE tELSIF tENDIF tUSING %token tPRINT tINPUT tRETURN tDIM tEND tEXIT tAT tSCREEN %token tREVERSE tCOLOUR tBACKCOLOUR %token tAND tOR tNOT tEOR %token tNEQ tLEQ tGEQ tLTN tGTN tEQU tPOW %token tREAD tDATA tRESTORE %token tOPEN tCLOSE tSEEK tTELL tAS tREADING tWRITING tORIGIN %token tWINDOW tDOT tLINE tCIRCLE tTRIANGLE tTEXT tCLEAR tFILL tPRINTER %token tWAIT tBELL tLET tARDIM tARSIZE tBIND %token tRECT tGETBIT tPUTBIT tGETCHAR tPUTCHAR tNEW tCURVE %token tSIN tASIN tCOS tACOS tTAN tATAN tEXP tLOG %token tSQRT tSQR tMYEOF tABS tSIG %token tINT tFRAC tMOD tRAN tVAL tLEFT tRIGHT tMID tLEN tMIN tMAX %token tSTR tINKEY tCHR tASC tHEX tDEC tBIN tUPPER tLOWER tMOUSEX tMOUSEY tMOUSEB tMOUSEMOD %token tTRIM tLTRIM tRTRIM tINSTR tRINSTR %token tSYSTEM tSYSTEM2 tPEEK tPEEK2 tPOKE %token tDATE tTIME tTOKEN tTOKENALT tSPLIT tSPLITALT tGLOB %left tOR %left tAND %left tNOT %left tNEQ %left tGEQ %left tLEQ %left tLTN %left tGTN %left tEQU %left '-' '+' %left '*' '/' %nonassoc UMINUS %left tPOW %% program: statement_list tEOPROG {YYACCEPT;} ; statement_list: statement | statement_list {if (errorlevel<=ERROR) {YYABORT;}} tSEP {if ($3>=0) mylineno+=$3;} statement ; statement: /* empty */ | string_assignment | tLET string_assignment | assignment | tLET assignment | tIMPORT {report_missing(ERROR,"can not import a library in a loop or an if-statement");} | tERROR string_expression {add_command(cERROR,NULL,NULL);} | for_loop | switch_number_or_string | repeat_loop | while_loop | do_loop | tBREAK {add_command(cPOP_MULTI,NULL,NULL);create_mybreak(1);if (!loop_nesting && !switch_nesting) error(ERROR,"break outside loop or switch");} | tBREAK tDIGITS {add_command(cPOP_MULTI,NULL,NULL);create_mybreak(atoi($2));if (!loop_nesting && !switch_nesting) error(ERROR,"break outside loop or switch");} | tCONTINUE {add_command(cPOP_MULTI,NULL,NULL);add_command_with_switch_state(cCONTINUE);if (!loop_nesting) error(ERROR,"continue outside loop");} | function_definition | function_or_array {create_call($1);add_command(cPOP,NULL,NULL);} | stringfunction_or_array {create_call($1);add_command(cPOP,NULL,NULL);} | tLOCAL {if (function_type==ftNONE) error(ERROR,"no use for 'local' outside functions");} local_list | tSTATIC {if (function_type==ftNONE) error(ERROR,"no use for 'static' outside functions");} static_list | if_clause | short_if | tGOTO symbol_or_lineno {create_goto((function_type!=ftNONE)?dotify($2,TRUE):$2);} | tGOSUB symbol_or_lineno {create_gosub((function_type!=ftNONE)?dotify($2,TRUE):$2);} | tON tINTERRUPT tBREAK {create_exception(TRUE);} | tON tINTERRUPT tCONTINUE {create_exception(FALSE);} | tON expression tGOTO {add_command(cSKIPPER,NULL,NULL);} goto_list {add_command(cNOP,NULL,NULL);} | tON expression tGOSUB {add_command(cSKIPPER,NULL,NULL);} gosub_list {add_command(cNOP,NULL,NULL);} | tLABEL symbol_or_lineno {create_label((function_type!=ftNONE)?dotify($2,TRUE):$2,cLABEL);} | open_clause {add_command(cCHECKOPEN,NULL,NULL);} | tCLOSE hashed_number {add_command(cCLOSE,NULL,NULL);} | seek_clause {add_command(cCHECKSEEK,NULL,NULL);} | tCOMPILE string_expression {add_command(cCOMPILE,NULL,NULL);} | tEXECUTE '(' call_list ')' {create_execute(0);add_command(cPOP,NULL,NULL);add_command(cPOP,NULL,NULL);} | tEXECUTE2 '(' call_list ')' {create_execute(1);add_command(cPOP,NULL,NULL);add_command(cPOP,NULL,NULL);} | tPRINT printintro printlist {create_colour(0);create_print('n');create_pps(cPOPSTREAM,0);} | tPRINT printintro printlist ';' {create_colour(0);create_pps(cPOPSTREAM,0);} | tPRINT printintro printlist ',' {create_colour(0);create_print('t');create_pps(cPOPSTREAM,0);} | tINPUT {tileol=FALSE;} inputbody | tLINE tINPUT {tileol=TRUE;} inputbody | tCOLOUR expression ',' expression ',' expression {add_command(cGCOLOUR,NULL,NULL);} | tCOLOUR string_expression {add_command(cGCOLOUR2,NULL,NULL);} | tBACKCOLOUR expression ',' expression ',' expression {add_command(cGBACKCOLOUR,NULL,NULL);} | tBACKCOLOUR string_expression {add_command(cGBACKCOLOUR2,NULL,NULL);} | tREAD readlist | tDATA datalist | tRESTORE {create_restore("");} | tRESTORE symbol_or_lineno {create_restore((function_type!=ftNONE)?dotify($2,TRUE):$2);} | tRETURN {if (function_type!=ftNONE) { add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref; add_command(cPOPSYMLIST,NULL,NULL); create_check_return_value(ftNONE,function_type); add_command(cRETURN_FROM_CALL,NULL,NULL); } else { add_command(cRETURN_FROM_GOSUB,NULL,NULL); }} | tRETURN expression {if (function_type==ftNONE) {error(ERROR,"a value can only be returned from a subroutine"); YYABORT;} add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref;add_command(cPOPSYMLIST,NULL,NULL);create_check_return_value(ftNUMBER,function_type);add_command(cRETURN_FROM_CALL,NULL,NULL);} | tRETURN string_expression {if (function_type==ftNONE) {error(ERROR,"can not return value"); YYABORT;} add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref;add_command(cPOPSYMLIST,NULL,NULL);create_check_return_value(ftSTRING,function_type);add_command(cRETURN_FROM_CALL,NULL,NULL);} | tDIM dimlist | tOPEN tWINDOW expression ',' expression {create_openwin(FALSE);} | tOPEN tWINDOW expression ',' expression ',' string_expression {create_openwin(TRUE);} | tWINDOW tORIGIN string_expression {add_command(cMOVEORIGIN,NULL,NULL);} | tDOT coordinates {add_command(cDOT,NULL,NULL);} | tCLEAR tDOT coordinates {add_command(cDOT,NULL,NULL);putindrawmode(dmCLEAR);} | tLINE coordinates to coordinates {create_line(2);} | tCLEAR tLINE coordinates to coordinates {create_line(2);putindrawmode(dmCLEAR);} | tLINE tTO coordinates {create_line(1);} | tLINE coordinates {create_line(1);} | tCLEAR tLINE tTO coordinates {create_line(1);putindrawmode(dmCLEAR);} | tCLEAR tLINE coordinates {create_line(1);putindrawmode(dmCLEAR);} | tPUTBIT string_expression to expression ',' expression ',' string_expression {add_command(cPUTBIT,NULL,NULL);} | tPUTBIT string_expression to expression ',' expression {create_pushstr("solid"); add_command(cPUTBIT,NULL,NULL);} | tPUTCHAR string_expression to expression ',' expression {add_command(cPUTCHAR,NULL,NULL);} | tNEW tCURVE {create_line(-1);} | tCLOSE tCURVE {create_line(0);} | clear_fill_clause tCIRCLE coordinates ',' expression {add_command(cCIRCLE,NULL,NULL);putindrawmode(0);} | clear_fill_clause tTRIANGLE coordinates to coordinates to coordinates {add_command(cTRIANGLE,NULL,NULL);putindrawmode(0);} | tTEXT coordinates ',' string_expression {add_command(cTEXT1,NULL,NULL);} | tTEXT coordinates ',' string_expression ',' string_expression {add_command(cTEXT2,NULL,NULL);} | tTEXT coordinates ',' string_expression ',' string_expression ',' string_expression {add_command(cTEXT3,NULL,NULL);} | clear_fill_clause tRECT coordinates to coordinates {add_command(cRECT,NULL,NULL);putindrawmode(0);} | tCLOSE tWINDOW {add_command(cCLOSEWIN,NULL,NULL);} | tCLEAR tWINDOW {add_command(cCLEARWIN,NULL,NULL);} | tCLEAR tSCREEN {add_command(cCLEARSCR,NULL,NULL);} | tOPEN tPRINTER {create_openprinter(0);} | tOPEN tPRINTER string_expression {create_openprinter(1);} | tCLOSE tPRINTER {add_command(cCLOSEPRN,NULL,NULL);} | tWAIT expression {add_command(cWAIT,NULL,NULL);} | tBELL {add_command(cBELL,NULL,NULL);} | tINKEY {create_pushdbl(-1);create_function(fINKEY);add_command(cPOP,NULL,NULL);} | tINKEY '(' ')' {create_pushdbl(-1);create_function(fINKEY);add_command(cPOP,NULL,NULL);} | tINKEY '(' expression ')' {create_function(fINKEY);add_command(cPOP,NULL,NULL);} | tSYSTEM2 '(' string_expression ')' {create_function(fSYSTEM2); add_command(cPOP,NULL,NULL);} | tPOKE string_expression ',' string_expression {create_poke('s');} | tPOKE string_expression ',' expression {create_poke('d');} | tPOKE hashed_number ',' string_expression {create_poke('S');} | tPOKE hashed_number ',' expression {create_poke('D');} | tEND {add_command(cEND,NULL,NULL);} | tEXIT {create_pushdbl(0);add_command(cEXIT,NULL,NULL);} | tEXIT expression {add_command(cEXIT,NULL,NULL);} | tDOCU {create_docu($1);} | tBIND string_expression {add_command(cBIND,NULL,NULL);} ; clear_fill_clause: /* empty */ {drawmode=0;} | tCLEAR {drawmode=dmCLEAR;} | tFILL {drawmode=dmFILL;} | tCLEAR tFILL {drawmode=dmFILL+dmCLEAR;} | tFILL tCLEAR {drawmode=dmFILL+dmCLEAR;} ; string_assignment: tSTRSYM tEQU string_expression {add_command(cPOPSTRSYM,dotify($1,FALSE),NULL);} | tMID '(' string_scalar_or_array ',' expression ',' expression ')' tEQU string_expression {create_changestring(fMID);} | tMID '(' string_scalar_or_array ',' expression ')' tEQU string_expression {create_changestring(fMID2);} | tLEFT '(' string_scalar_or_array ',' expression ')' tEQU string_expression {create_changestring(fLEFT);} | tRIGHT '(' string_scalar_or_array ',' expression ')' tEQU string_expression {create_changestring(fRIGHT);} | stringfunction_or_array tEQU string_expression {create_doarray(dotify($1,FALSE),ASSIGNSTRINGARRAY);} ; to: ',' | tTO ; open_clause: tOPEN hashed_number ',' string_expression ',' string_expression {create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} | tOPEN hashed_number ',' string_expression {create_myopen(OPEN_HAS_STREAM);} | tOPEN hashed_number ',' tPRINTER {create_myopen(OPEN_HAS_STREAM+OPEN_PRINTER);} | tOPEN string_expression tFOR tREADING tAS hashed_number {add_command(cSWAP,NULL,NULL);create_pushstr("r");create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} | tOPEN string_expression tFOR tWRITING tAS hashed_number {add_command(cSWAP,NULL,NULL);create_pushstr("w");create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} ; seek_clause: tSEEK hashed_number ',' expression {add_command(cSEEK,NULL,NULL);} | tSEEK hashed_number ',' expression ',' string_expression {add_command(cSEEK2,NULL,NULL);} ; string_scalar_or_array: tSTRSYM {add_command(cPUSHSTRPTR,dotify($1,FALSE),NULL);} | tSTRSYM '(' call_list ')' {create_doarray(dotify($1,FALSE),GETSTRINGPOINTER);} ; string_expression: tSTRSYM {add_command(cPUSHSTRSYM,dotify($1,FALSE),NULL);} | string_function | stringfunction_or_array {add_command(cSTRINGFUNCTION_OR_ARRAY,$1,NULL);} | tSTRING {if ($1==NULL) {error(ERROR,"String not terminated");create_pushstr("");} else {create_pushstr($1);}} | string_expression '+' string_expression {add_command(cCONCAT,NULL,NULL);} | '(' string_expression ')' ; string_function: tLEFT '(' string_expression ',' expression ')' {create_function(fLEFT);} | tRIGHT '(' string_expression ',' expression ')' {create_function(fRIGHT);} | tMID '(' string_expression ',' expression ',' expression ')' {create_function(fMID);} | tMID '(' string_expression ',' expression ')' {create_function(fMID2);} | tSTR '(' expression ')' {create_function(fSTR);} | tSTR '(' expression ',' string_expression ')' {create_function(fSTR2);} | tSTR '(' expression ',' string_expression ',' string_expression ')' {create_function(fSTR3);} | tINKEY {create_pushdbl(-1);create_function(fINKEY);} | tINKEY '(' ')' {create_pushdbl(-1);create_function(fINKEY);} | tINKEY '(' expression ')' {create_function(fINKEY);} | tCHR '(' expression ')' {create_function(fCHR);} | tUPPER '(' string_expression ')' {create_function(fUPPER);} | tLOWER '(' string_expression ')' {create_function(fLOWER);} | tLTRIM '(' string_expression ')' {create_function(fLTRIM);} | tRTRIM '(' string_expression ')' {create_function(fRTRIM);} | tTRIM '(' string_expression ')' {create_function(fTRIM);} | tSYSTEM '(' string_expression ')' {create_function(fSYSTEM);} | tDATE {create_function(fDATE);} | tDATE '(' ')' {create_function(fDATE);} | tTIME {create_function(fTIME);} | tTIME '(' ')' {create_function(fTIME);} | tPEEK2 '(' string_expression ')' {create_function(fPEEK2);} | tPEEK2 '(' string_expression ',' string_expression ')' {create_function(fPEEK3);} | tTOKENALT '(' string_scalar_or_array ',' string_expression ')' {add_command(cTOKENALT2,NULL,NULL);} | tTOKENALT '(' string_scalar_or_array ')' {add_command(cTOKENALT,NULL,NULL);} | tSPLITALT '(' string_scalar_or_array ',' string_expression ')' {add_command(cSPLITALT2,NULL,NULL);} | tSPLITALT '(' string_scalar_or_array ')' {add_command(cSPLITALT,NULL,NULL);} | tGETBIT '(' coordinates to coordinates ')' {create_function(fGETBIT);} | tGETCHAR '(' expression ',' expression to expression ',' expression ')' {create_function(fGETCHAR);} | tHEX '(' expression ')' {create_function(fHEX);} | tBIN '(' expression ')' {create_function(fBIN);} | tEXECUTE2 '(' call_list ')' {create_execute(1);add_command(cSWAP,NULL,NULL);add_command(cPOP,NULL,NULL);} ; assignment: tSYMBOL tEQU expression {add_command(cPOPDBLSYM,dotify($1,FALSE),NULL);} | function_or_array tEQU expression {create_doarray($1,ASSIGNARRAY);} ; expression: expression tOR {add_command(cORSHORT,NULL,NULL);pushlabel();} expression {poplabel();create_boole('|');} | expression tAND {add_command(cANDSHORT,NULL,NULL);pushlabel();} expression {poplabel();create_boole('&');} | tNOT expression {create_boole('!');} | expression tEQU expression {create_dblrelop('=');} | expression tNEQ expression {create_dblrelop('!');} | expression tLTN expression {create_dblrelop('<');} | expression tLEQ expression {create_dblrelop('{');} | expression tGTN expression {create_dblrelop('>');} | expression tGEQ expression {create_dblrelop('}');} | tMYEOF '(' hashed_number ')' {add_command(cTESTEOF,NULL,NULL);} | tGLOB '(' string_expression ',' string_expression ')' {add_command(cGLOB,NULL,NULL);} | number {create_pushdbl($1);} | tARDIM '(' arrayref ')' {add_command(cARDIM,"",NULL);} | tARDIM '(' string_arrayref ')' {add_command(cARDIM,"",NULL);} | tARSIZE '(' arrayref ',' expression ')' {add_command(cARSIZE,"",NULL);} | tARSIZE '(' string_arrayref ',' expression ')' {add_command(cARSIZE,"",NULL);} | function_or_array {add_command(cFUNCTION_OR_ARRAY,$1,NULL);} | tSYMBOL {add_command(cPUSHDBLSYM,dotify($1,FALSE),NULL);} | expression '+' expression {create_dblbin('+');} | expression '-' expression {create_dblbin('-');} | expression '*' expression {create_dblbin('*');} | expression '/' expression {create_dblbin('/');} | expression tPOW expression {create_dblbin('^');} | '-' expression %prec UMINUS {add_command(cNEGATE,NULL,NULL);} | string_expression tEQU string_expression {create_strrelop('=');} | string_expression tNEQ string_expression {create_strrelop('!');} | string_expression tLTN string_expression {create_strrelop('<');} | string_expression tLEQ string_expression {create_strrelop('{');} | string_expression tGTN string_expression {create_strrelop('>');} | string_expression tGEQ string_expression {create_strrelop('}');} | function | '(' expression ')' ; arrayref: tSYMBOL '(' ')' {create_pusharrayref(dotify($1,FALSE),stNUMBERARRAYREF);} ; string_arrayref: tSTRSYM '(' ')' {create_pusharrayref(dotify($1,FALSE),stSTRINGARRAYREF);} ; coordinates: expression ',' expression ; function: tSIN '(' expression ')' {create_function(fSIN);} | tASIN '(' expression ')' {create_function(fASIN);} | tCOS '(' expression ')' {create_function(fCOS);} | tACOS '(' expression ')' {create_function(fACOS);} | tTAN '(' expression ')' {create_function(fTAN);} | tATAN '(' expression ')' {create_function(fATAN);} | tATAN '(' expression ',' expression ')' {create_function(fATAN2);} | tEXP '(' expression ')' {create_function(fEXP);} | tLOG '(' expression ')' {create_function(fLOG);} | tLOG '(' expression ',' expression ')' {create_function(fLOG2);} | tSQRT '(' expression ')' {create_function(fSQRT);} | tSQR '(' expression ')' {create_function(fSQR);} | tINT '(' expression ')' {create_function(fINT);} | tFRAC '(' expression ')' {create_function(fFRAC);} | tABS '(' expression ')' {create_function(fABS);} | tSIG '(' expression ')' {create_function(fSIG);} | tMOD '(' expression ',' expression ')' {create_function(fMOD);} | tRAN '(' expression ')' {create_function(fRAN);} | tRAN '(' ')' {create_function(fRAN2);} | tMIN '(' expression ',' expression ')' {create_function(fMIN);} | tMAX '(' expression ',' expression ')' {create_function(fMAX);} | tLEN '(' string_expression ')' {create_function(fLEN);} | tVAL '(' string_expression ')' {create_function(fVAL);} | tASC '(' string_expression ')' {create_function(fASC);} | tDEC '(' string_expression ')' {create_function(fDEC);} | tDEC '(' string_expression ',' expression ')' {create_function(fDEC2);} | tINSTR '(' string_expression ',' string_expression ')' {if (check_compat) error(WARNING,"instr() has changed in version 2.712"); create_function(fINSTR);} | tINSTR '(' string_expression ',' string_expression ',' expression ')' {create_function(fINSTR2);} | tRINSTR '(' string_expression ',' string_expression ')' {create_function(fRINSTR);} | tRINSTR '(' string_expression ',' string_expression ',' expression ')' {create_function(fRINSTR2);} | tSYSTEM2 '(' string_expression ')' {create_function(fSYSTEM2);} | tPEEK '(' hashed_number ')' {create_function(fPEEK4);} | tPEEK '(' string_expression ')' {create_function(fPEEK);} | tMOUSEX '(' string_expression ')' {create_function(fMOUSEX);} | tMOUSEX {create_pushstr("");create_function(fMOUSEX);} | tMOUSEX '(' ')' {create_pushstr("");create_function(fMOUSEX);} | tMOUSEY '(' string_expression ')' {create_function(fMOUSEY);} | tMOUSEY {create_pushstr("");create_function(fMOUSEY);} | tMOUSEY '(' ')' {create_pushstr("");create_function(fMOUSEY);} | tMOUSEB '(' string_expression ')' {create_function(fMOUSEB);} | tMOUSEB {create_pushstr("");create_function(fMOUSEB);} | tMOUSEB '(' ')' {create_pushstr("");create_function(fMOUSEB);} | tMOUSEMOD '(' string_expression ')' {create_function(fMOUSEMOD);} | tMOUSEMOD {create_pushstr("");create_function(fMOUSEMOD);} | tMOUSEMOD '(' ')' {create_pushstr("");create_function(fMOUSEMOD);} | tAND '(' expression ',' expression ')' {create_function(fAND);} | tOR '(' expression ',' expression ')' {create_function(fOR);} | tEOR '(' expression ',' expression ')' {create_function(fEOR);} | tTELL '(' hashed_number ')' {create_function(fTELL);} | tTOKEN '(' string_expression ',' string_arrayref ',' string_expression ')' {add_command(cTOKEN2,NULL,NULL);} | tTOKEN '(' string_expression ',' string_arrayref ')' {add_command(cTOKEN,NULL,NULL);} | tSPLIT '(' string_expression ',' string_arrayref ',' string_expression ')' {add_command(cSPLIT2,NULL,NULL);} | tSPLIT '(' string_expression ',' string_arrayref ')' {add_command(cSPLIT,NULL,NULL);} | tEXECUTE '(' call_list ')' {create_execute(0);add_command(cSWAP,NULL,NULL);add_command(cPOP,NULL,NULL);} | tOPEN '(' tPRINTER ')' {create_myopen(OPEN_PRINTER);} | tOPEN '(' string_expression ')' {create_myopen(0);} | tOPEN '(' string_expression ',' string_expression ')' {create_myopen(OPEN_HAS_MODE);} | tOPEN '(' hashed_number ',' tPRINTER ')' {create_myopen(OPEN_PRINTER+OPEN_HAS_STREAM);} | tOPEN '(' hashed_number ',' string_expression ')' {create_myopen(OPEN_HAS_STREAM);} | tOPEN '(' hashed_number ',' string_expression ',' string_expression ')' {create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} ; const: number {$$=$1;} | '+' number {$$=$2;} | '-' number {$$=-$2;} ; number: tFNUM {$$=$1;} | tDIGITS {$$=strtod($1,NULL);} ; symbol_or_lineno: tDIGITS {$$=my_strdup(dotify($1,FALSE));} | tSYMBOL {$$=my_strdup(dotify($1,FALSE));} ; dimlist: tSYMBOL '(' call_list ')' {create_dim(dotify($1,FALSE),'D');} | dimlist ',' tSYMBOL '(' call_list ')' {create_dim(dotify($3,FALSE),'D');} | tSTRSYM '(' call_list ')' {create_dim(dotify($1,FALSE),'S');} | dimlist ',' tSTRSYM '(' call_list ')' {create_dim(dotify($3,FALSE),'S');} ; function_or_array: tSYMBOL '(' call_list ')' {$$=my_strdup(dotify($1,FALSE));} ; stringfunction_or_array: tSTRSYM '(' call_list ')' {$$=my_strdup(dotify($1,FALSE));} ; call_list: {add_command(cPUSHFREE,NULL,NULL);} calls ; calls: /* empty */ | call_item | calls ',' call_item ; call_item: string_expression | expression ; function_definition: export tSUB {missing_endsub++;missing_endsub_line=mylineno;pushlabel();report_missing(WARNING,"do not define a function in a loop or an if-statement");if (function_type!=ftNONE) {error(ERROR,"nested functions not allowed");YYABORT;}} function_name {if (exported) create_subr_link($4); create_label($4,cUSER_FUNCTION); add_command(cPUSHSYMLIST,NULL,NULL);add_command(cCLEARREFS,NULL,NULL);firstref=lastref=lastcmd; create_count_params();} '(' paramlist ')' {create_require(stFREE);add_command(cPOP,NULL,NULL);} statement_list endsub {add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref;add_command(cPOPSYMLIST,NULL,NULL);create_check_return_value(ftNONE,function_type);function_type=ftNONE;add_command(cRETURN_FROM_CALL,NULL,NULL);lastref=NULL;create_endfunction();poplabel();} ; endsub: tEOPROG {if (missing_endsub) {sprintf(string,"%d end-sub(s) are missing (last at line %d)",missing_endsub,missing_endsub_line);error(ERROR,string);} YYABORT;} | tENDSUB {missing_endsub--;} ; function_name: tSYMBOL {function_type=ftNUMBER;current_function=my_strdup(dotify($1,FALSE));$$=my_strdup(dotify($1,FALSE));} | tSTRSYM {function_type=ftSTRING;current_function=my_strdup(dotify($1,FALSE));$$=my_strdup(dotify($1,FALSE));} ; export: /* empty */ {exported=FALSE;} | tEXPORT {exported=TRUE;} | tRUNTIME_CREATED_SUB {exported=FALSE;} | tRUNTIME_CREATED_SUB tEXPORT {exported=TRUE;} ; local_list: local_item | local_list ',' local_item ; local_item: tSYMBOL {create_makelocal(dotify($1,FALSE),syNUMBER);} | tSTRSYM {create_makelocal(dotify($1,FALSE),sySTRING);} | tSYMBOL '(' call_list ')' {create_makelocal(dotify($1,FALSE),syARRAY);create_dim(dotify($1,FALSE),'d');} | tSTRSYM '(' call_list ')' {create_makelocal(dotify($1,FALSE),syARRAY);create_dim(dotify($1,FALSE),'s');} ; static_list: static_item | static_list ',' static_item ; static_item: tSYMBOL {create_makestatic(dotify($1,TRUE),syNUMBER);} | tSTRSYM {create_makestatic(dotify($1,TRUE),sySTRING);} | tSYMBOL '(' call_list ')' {create_makestatic(dotify($1,TRUE),syARRAY);create_dim(dotify($1,TRUE),'D');} | tSTRSYM '(' call_list ')' {create_makestatic(dotify($1,TRUE),syARRAY);create_dim(dotify($1,TRUE),'S');} ; paramlist: /* empty */ | paramitem | paramlist ',' paramitem ; paramitem: tSYMBOL {create_require(stNUMBER);create_makelocal(dotify($1,FALSE),syNUMBER);add_command(cPOPDBLSYM,dotify($1,FALSE),NULL);} | tSTRSYM {create_require(stSTRING);create_makelocal(dotify($1,FALSE),sySTRING);add_command(cPOPSTRSYM,dotify($1,FALSE),NULL);} | tSYMBOL '(' ')' {create_require(stNUMBERARRAYREF);create_arraylink(dotify($1,FALSE),stNUMBERARRAYREF);} | tSTRSYM '(' ')' {create_require(stSTRINGARRAYREF);create_arraylink(dotify($1,FALSE),stSTRINGARRAYREF);} ; for_loop: tFOR {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);missing_next++;missing_next_line=mylineno;} tSYMBOL tEQU {pushname(dotify($3,FALSE)); /* will be used by next_symbol to check equality,NULL */ add_command(cRESETSKIPONCE,NULL,NULL); pushgoto();add_command_with_switch_state(cCONTINUE_HERE);} expression tTO expression step_part { /* pushes another expression */ add_command(cSKIPONCE,NULL,NULL); pushlabel(); add_command(cSTARTFOR,NULL,NULL); add_command(cPOPDBLSYM,dotify($3,FALSE),NULL); poplabel(); add_command(cPUSHDBLSYM,dotify($3,FALSE),NULL); add_command(cFORINCREMENT,NULL,NULL); add_command(cPOPDBLSYM,dotify($3,FALSE),NULL); add_command(cPUSHDBLSYM,dotify($3,FALSE),NULL); add_command(cFORCHECK,NULL,NULL); add_command(cDECIDE,NULL,NULL); pushlabel();} statement_list { swap();popgoto();poplabel();} next next_symbol {add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} ; next: tEOPROG {if (missing_next) {sprintf(string,"%d next(s) are missing (last at line %d)",missing_next,missing_next_line);error(ERROR,string);} YYABORT;} | tNEXT {missing_next--;} ; step_part: {create_pushdbl(1);} /* can be omitted */ | tSTEP expression ; next_symbol: {pop(stSTRING);}/* can be omitted */ | tSYMBOL {if (strcmp(pop(stSTRING)->pointer,dotify($1,FALSE))) {error(ERROR,"'for' and 'next' do not match"); YYABORT;} } ; switch_number_or_string: tSWITCH {push_switch_id();add_command(cBEGIN_SWITCH_MARK,NULL,NULL);} number_or_string sep_list case_list default tSEND {add_command(cBREAK_HERE,NULL,NULL);add_command(cPOP,NULL,NULL);add_command(cEND_SWITCH_MARK,NULL,NULL);pop_switch_id();} ; sep_list: tSEP {if ($1>=0) mylineno+=$1;} | sep_list tSEP {if ($2>=0) mylineno+=$2;} ; number_or_string: expression | string_expression ; case_list: /* empty */ | case_list tCASE number_or_string {add_command(cSWITCH_COMPARE,NULL,NULL);add_command(cDECIDE,NULL,NULL);add_command(cNEXT_CASE,NULL,NULL);} statement_list {add_command(cNEXT_CASE_HERE,NULL,NULL);} ; default: /* empty */ | tDEFAULT tSEP {if ($2>=0) mylineno+=$2; add_command(cNEXT_CASE_HERE,NULL,NULL);} statement_list ; do_loop: tDO {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);add_command_with_switch_state(cCONTINUE_HERE);missing_loop++;missing_loop_line=mylineno;pushgoto();} statement_list loop ; loop: tEOPROG {if (missing_loop) {sprintf(string,"%d loop(s) are missing (last at line %d)",missing_loop,missing_loop_line);error(ERROR,string);} YYABORT;} | tLOOP {missing_loop--;popgoto();add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} ; while_loop: tWHILE {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);add_command_with_switch_state(cCONTINUE_HERE);missing_wend++;missing_wend_line=mylineno;pushgoto();} '(' expression ')' {add_command(cDECIDE,NULL,NULL); pushlabel();} statement_list wend ; wend: tEOPROG {if (missing_wend) {sprintf(string,"%d wend(s) are missing (last at line %d)",missing_wend,missing_wend_line);error(ERROR,string);} YYABORT;} | tWEND {missing_wend--;swap();popgoto();poplabel();add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} ; repeat_loop: tREPEAT {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);add_command_with_switch_state(cCONTINUE_HERE);missing_until++;missing_until_line=mylineno;pushgoto();} statement_list until ; until: tEOPROG {if (missing_until) {sprintf(string,"%d until(s) are missing (last at line %d)",missing_until,missing_until_line);error(ERROR,string);} YYABORT;} | tUNTIL '(' expression ')' {missing_until--;add_command(cDECIDE,NULL,NULL);popgoto();add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} ; if_clause: tIF expression {add_command(cDECIDE,NULL,NULL);storelabel();pushlabel();} tTHEN {missing_endif++;missing_endif_line=mylineno;} statement_list {swap();matchgoto();swap();poplabel();} elsif_part else_part {poplabel();} endif ; endif: tEOPROG {if (missing_endif) {sprintf(string,"%d endif(s) are missing (last at line %d)",missing_endif,missing_endif_line);error(ERROR,string);} YYABORT;} | tENDIF {missing_endif--;} ; short_if: tIF expression {fi_pending++;add_command(cDECIDE,NULL,NULL);pushlabel();} statement_list tENDIF {poplabel();} ; else_part: /* can be omitted */ | tELSE statement_list ; elsif_part: /* can be omitted */ | tELSIF expression maybe_then {add_command(cDECIDE,NULL,NULL);pushlabel();} statement_list {swap();matchgoto();swap();poplabel();} elsif_part ; maybe_then: /* can be omitted */ | tTHEN ; inputlist: input | input ',' {add_command(cCHKPROMPT,NULL,NULL);} inputlist ; input: tSYMBOL {create_myread('d',tileol);add_command(cPOPDBLSYM,dotify($1,FALSE),FALSE);} | tSYMBOL '(' call_list ')' {create_myread('d',tileol);create_doarray(dotify($1,FALSE),ASSIGNARRAY);} | tSTRSYM {create_myread('s',tileol);add_command(cPOPSTRSYM,dotify($1,FALSE),FALSE);} | tSTRSYM '(' call_list ')' {create_myread('s',tileol);create_doarray(dotify($1,FALSE),ASSIGNSTRINGARRAY);} ; readlist: readitem | readlist ',' readitem ; readitem: tSYMBOL {create_readdata('d');add_command(cPOPDBLSYM,dotify($1,FALSE),FALSE);} | tSYMBOL '(' call_list ')' {create_readdata('d');create_doarray(dotify($1,FALSE),ASSIGNARRAY);} | tSTRSYM {create_readdata('s');add_command(cPOPSTRSYM,dotify($1,FALSE),FALSE);} | tSTRSYM '(' call_list ')' {create_readdata('s');create_doarray(dotify($1,FALSE),ASSIGNSTRINGARRAY);} ; datalist: tSTRING {create_strdata($1);} | const {create_dbldata($1);} | datalist ',' tSTRING {create_strdata($3);} | datalist ',' const {create_dbldata($3);} ; printlist: /* possible empty */ | expression using | printlist ',' expression using | string_expression {create_print('s');} | printlist ',' string_expression {create_print('s');} ; using: {create_print('d');} /* possible empty */ | tUSING string_expression {create_print('u');} | tUSING '(' string_expression ',' string_expression ')' {create_print('U');} ; inputbody: '#' tSYMBOL {add_command(cPUSHDBLSYM,dotify($2,FALSE),FALSE);create_pps(cPUSHSTREAM,1);} inputlist {create_pps(cPOPSTREAM,0);} | '#' tDIGITS {create_pushdbl(atoi($2));create_pps(cPUSHSTREAM,1);} inputlist {create_pps(cPOPSTREAM,0);} | '#' '(' expression ')' {create_pps(cPUSHSTREAM,1);} inputlist {create_pps(cPOPSTREAM,0);} | tAT '(' expression ',' expression ')' {add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,1);} prompt inputlist {create_pps(cPOPSTREAM,0);} | {create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,1);} prompt inputlist {create_pps(cPOPSTREAM,0);} ; prompt: /* empty */ {create_pushstr("?");create_print('s');} | tSTRING {create_pushstr($1);create_print('s');} ; printintro: /* may be empty */ {create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | '#' tSYMBOL {add_command(cPUSHDBLSYM,dotify($2,FALSE),FALSE);create_pps(cPUSHSTREAM,0);} | '#' tDIGITS {create_pushdbl(atoi($2));create_pps(cPUSHSTREAM,0);} | '#' '(' expression ')' {create_pps(cPUSHSTREAM,0);} | tREVERSE {create_colour(1);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tCOLOUR '(' string_expression ')' {create_colour(2);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tCOLOUR '(' string_expression ',' string_expression ')' {create_colour(3);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tAT '(' expression ',' expression ')' {add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tREVERSE tAT '(' expression ',' expression ')' {add_command(cMOVE,NULL,NULL);create_colour(1);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tCOLOUR '(' string_expression ')' tAT '(' expression ',' expression ')' {add_command(cMOVE,NULL,NULL);create_colour(2);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tCOLOUR '(' string_expression ',' string_expression ')' tAT '(' expression ',' expression ')' {add_command(cMOVE,NULL,NULL);create_colour(3);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tAT '(' expression ',' expression ')' tREVERSE {create_colour(1);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);add_command(cMOVE,NULL,NULL);} | tAT '(' expression ',' expression ')' tCOLOUR '(' string_expression ')' {create_colour(2);add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} | tAT '(' expression ',' expression ')' tCOLOUR '(' string_expression ',' string_expression ')' {create_colour(3);add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} ; hashed_number: '#' expression | expression; goto_list: symbol_or_lineno {create_goto((function_type!=ftNONE)?dotify($1,TRUE):$1);add_command(cFINDNOP,NULL,NULL);} | goto_list ',' symbol_or_lineno {create_goto((function_type!=ftNONE)?dotify($3,TRUE):$3);add_command(cFINDNOP,NULL,NULL);} ; gosub_list: symbol_or_lineno {create_gosub((function_type!=ftNONE)?dotify($1,TRUE):$1);add_command(cFINDNOP,NULL,NULL);} | gosub_list ',' symbol_or_lineno {create_gosub((function_type!=ftNONE)?dotify($3,TRUE):$3);add_command(cFINDNOP,NULL,NULL);} ; yabasic-2.78.5/configure0000775000175100017510000172747113260170606012110 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for yabasic 2.78.5. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='yabasic' PACKAGE_TARNAME='yabasic' PACKAGE_VERSION='2.78.5' PACKAGE_STRING='yabasic 2.78.5' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="main.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS ALLOCA POW_LIB LIBOBJS X_EXTRA_LIBS X_LIBS X_PRE_LIBS X_CFLAGS XMKMF CCOPTIONS CPP LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_shared enable_static with_pic enable_fast_install with_aix_soname enable_dependency_tracking with_gnu_ld with_sysroot enable_libtool_lock with_x ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS LT_SYS_LIBRARY_PATH CPP XMKMF' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures yabasic 2.78.5 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/yabasic] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names X features: --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of yabasic 2.78.5:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-x use the X Window System Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory LT_SYS_LIBRARY_PATH User-defined run-time library search path. CPP C preprocessor XMKMF Path to xmkmf, Makefile generator for X Window System Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF yabasic configure 2.78.5 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by yabasic $as_me 2.78.5, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu #AC_CONFIG_LINKS am__api_version='1.15' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='yabasic' VERSION='2.78.5' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.6' macro_revision='2.4.6' ltmain=$ac_aux_dir/ltmain.sh # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case $ECHO in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n "$lt_cv_sys_max_cmd_len"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 $as_echo "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 $as_echo_n "checking for a working dd... " >&6; } if ${ac_cv_path_lt_DD+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in dd; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 $as_echo "$ac_cv_path_lt_DD" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 $as_echo_n "checking how to truncate binary pipes... " >&6; } if ${lt_cv_truncate_bin+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 $as_echo "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[012][,.]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac else pic_mode=default fi # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac else enable_fast_install=yes fi shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 $as_echo_n "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test "${with_aix_soname+set}" = set; then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else if ${lt_cv_with_aix_soname+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 $as_echo "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o func_cc_basename $compiler cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/${ac_tool_prefix}file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC=$CC ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test no = "$hard_links"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' $wl-bernotok' allow_undefined_flag=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; osf3*) if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='$wl-z,text' allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Add ABI-specific directories to the system library path. sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen=shl_load else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen=dlopen else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi fi fi fi fi fi ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report what library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC=$lt_save_CC ac_config_commands="$ac_config_commands libtool" # Only expand once: ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CCOPTIONS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CCOPTIONS"; then ac_cv_prog_CCOPTIONS="$CCOPTIONS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CCOPTIONS="-Wall" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CCOPTIONS=$ac_cv_prog_CCOPTIONS if test -n "$CCOPTIONS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CCOPTIONS" >&5 $as_echo "$CCOPTIONS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 $as_echo_n "checking for X... " >&6; } # Check whether --with-x was given. if test "${with_x+set}" = set; then : withval=$with_x; fi # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else case $x_includes,$x_libraries in #( *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : $as_echo_n "(cached) " >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -f -r conftest.dir if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' incroot: @echo incroot='${INCROOT}' usrlibdir: @echo usrlibdir='${USRLIBDIR}' libdir: @echo libdir='${LIBDIR}' _ACEOF if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. for ac_var in incroot usrlibdir libdir; do eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" done # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl dylib la dll; do if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && test -f "$ac_im_libdir/libX11.$ac_extension"; then ac_im_usrlibdir=$ac_im_libdir; break fi done # Screen out bogus values from the imake configuration. They are # bogus both because they are the default anyway, and because # using them would break gcc on systems where it needs fixed includes. case $ac_im_incroot in /usr/include) ac_x_includes= ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /usr/lib64 | /lib | /lib64) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -f -r conftest.dir fi # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include /usr/X11R7/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R7 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R7/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R7 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 /usr/include /usr/local/include /usr/unsupported/include /usr/athena/include /usr/local/x11r5/include /usr/lpp/Xamples/include /usr/openwin/include /usr/openwin/share/include' if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Xlib.h. # First, try using that file with no special directory specified. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # We can compile using X headers with no special include directory. ac_x_includes= else for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi done fi rm -f conftest.err conftest.i conftest.$ac_ext fi # $ac_x_includes = no if test "$ac_x_libraries" = no; then # Check for the libraries. # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { XrmInitialize () ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else LIBS=$ac_save_LIBS for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl dylib la dll; do if test -r "$ac_dir/libX11.$ac_extension"; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no case $ac_x_includes,$ac_x_libraries in #( no,* | *,no | *\'*) # Didn't find X, or a directory has "'" in its name. ac_cv_have_x="have_x=no";; #( *) # Record where we found X for the cache. ac_cv_have_x="have_x=yes\ ac_x_includes='$ac_x_includes'\ ac_x_libraries='$ac_x_libraries'" esac fi ;; #( *) have_x=yes;; esac eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 $as_echo "$have_x" >&6; } no_x=yes else # If each of the values was on the command line, it overrides each guess. test "x$x_includes" = xNONE && x_includes=$ac_x_includes test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes\ ac_x_includes='$x_includes'\ ac_x_libraries='$x_libraries'" { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 $as_echo "libraries $x_libraries, headers $x_includes" >&6; } fi if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it. $as_echo "#define X_DISPLAY_MISSING 1" >>confdefs.h X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else if test -n "$x_includes"; then X_CFLAGS="$X_CFLAGS -I$x_includes" fi # It would also be nice to do this for all -L options, not just this one. if test -n "$x_libraries"; then X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . . { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 $as_echo_n "checking whether -R must be followed by a space... " >&6; } ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ac_xsave_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } X_LIBS="$X_LIBS -R $x_libraries" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 $as_echo "neither works" >&6; } fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_c_werror_flag=$ac_xsave_c_werror_flag LIBS=$ac_xsave_LIBS fi # Check for system-dependent libraries X programs must link with. # Do this before checking for the system-independent R6 libraries # (-lICE), since we may need -lsocket or whatever for X linking. if test "$ISC" = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" else # Martyn Johnson says this is needed for Ultrix, if the X # libraries were built with DECnet support. And Karl Berry says # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XOpenDisplay (); int main () { return XOpenDisplay (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dnet_dnet_ntoa=yes else ac_cv_lib_dnet_dnet_ntoa=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (); int main () { return dnet_ntoa (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dnet_stub_dnet_ntoa=yes else ac_cv_lib_dnet_stub_dnet_ntoa=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS" # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, # to get the SysV transport functions. # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) # needs -lnsl. # The nsl library prevents programs from opening the X display # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" if test "x$ac_cv_func_gethostbyname" = xyes; then : fi if test $ac_cv_func_gethostbyname = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; } if ${ac_cv_lib_nsl_gethostbyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_nsl_gethostbyname=yes else ac_cv_lib_nsl_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 $as_echo_n "checking for gethostbyname in -lbsd... " >&6; } if ${ac_cv_lib_bsd_gethostbyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_bsd_gethostbyname=yes else ac_cv_lib_bsd_gethostbyname=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi fi fi # lieder@skyler.mavd.honeywell.com says without -lsocket, # socket/setsockopt and other routines are undefined under SCO ODT # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary # on later versions), says Simon Leinen: it contains gethostby* # variants that don't use the name server (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" if test "x$ac_cv_func_connect" = xyes; then : fi if test $ac_cv_func_connect = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 $as_echo_n "checking for connect in -lsocket... " >&6; } if ${ac_cv_lib_socket_connect+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char connect (); int main () { return connect (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_socket_connect=yes else ac_cv_lib_socket_connect=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 $as_echo "$ac_cv_lib_socket_connect" >&6; } if test "x$ac_cv_lib_socket_connect" = xyes; then : X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi fi # Guillermo Gomez says -lposix is necessary on A/UX. ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove" if test "x$ac_cv_func_remove" = xyes; then : fi if test $ac_cv_func_remove = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 $as_echo_n "checking for remove in -lposix... " >&6; } if ${ac_cv_lib_posix_remove+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char remove (); int main () { return remove (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_posix_remove=yes else ac_cv_lib_posix_remove=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 $as_echo "$ac_cv_lib_posix_remove" >&6; } if test "x$ac_cv_lib_posix_remove" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat" if test "x$ac_cv_func_shmat" = xyes; then : fi if test $ac_cv_func_shmat = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 $as_echo_n "checking for shmat in -lipc... " >&6; } if ${ac_cv_lib_ipc_shmat+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shmat (); int main () { return shmat (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_ipc_shmat=yes else ac_cv_lib_ipc_shmat=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 $as_echo "$ac_cv_lib_ipc_shmat" >&6; } if test "x$ac_cv_lib_ipc_shmat" = xyes; then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi fi fi # Check for libraries that X11R6 Xt/Xaw programs need. ac_save_LDFLAGS=$LDFLAGS test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to # check for ICE first), but we must link in the order -lSM -lICE or # we get undefined symbols. So assume we have SM if we have ICE. # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char IceConnectionNumber (); int main () { return IceConnectionNumber (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_ICE_IceConnectionNumber=yes else ac_cv_lib_ICE_IceConnectionNumber=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then : X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi LDFLAGS=$ac_save_LDFLAGS fi if test "X$no_x" = "Xyes"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not find X11 header files; please install libx11-devel or similar." >&5 $as_echo "$as_me: WARNING: Could not find X11 header files; please install libx11-devel or similar." >&2;} fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 $as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } if ${ac_cv_header_sys_wait_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #ifndef WEXITSTATUS # define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) #endif #ifndef WIFEXITED # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) #endif int main () { int s; wait (&s); s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_sys_wait_h=yes else ac_cv_header_sys_wait_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 $as_echo "$ac_cv_header_sys_wait_h" >&6; } if test $ac_cv_header_sys_wait_h = yes; then $as_echo "#define HAVE_SYS_WAIT_H 1" >>confdefs.h fi for ac_header in fcntl.h limits.h stddef.h stdlib.h stdio.h float.h\ math.h time.h sys/time.h string.h strings.h Intrinsic.h\ unistd.h signal.h ctype.h malloc.h sys/prctl.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF else \ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Header file is missing (see above)" >&5 $as_echo "$as_me: WARNING: Header file is missing (see above)" >&2;} fi done for ac_header in string.h strings.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 $as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } if ${ac_cv_header_time+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { if ((struct tm *) 0) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_time=yes else ac_cv_header_time=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time" >&5 $as_echo "$ac_cv_header_time" >&6; } if test $ac_cv_header_time = yes; then $as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for error_at_line" >&5 $as_echo_n "checking for error_at_line... " >&6; } if ${ac_cv_lib_error_at_line+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { error_at_line (0, 0, "", 0, "an error occurred"); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_error_at_line=yes else ac_cv_lib_error_at_line=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_error_at_line" >&5 $as_echo "$ac_cv_lib_error_at_line" >&6; } if test $ac_cv_lib_error_at_line = no; then case " $LIBOBJS " in *" error.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS error.$ac_objext" ;; esac fi ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" if test "x$ac_cv_type_pid_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define pid_t int _ACEOF fi for ac_header in vfork.h do : ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default" if test "x$ac_cv_header_vfork_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_VFORK_H 1 _ACEOF fi done for ac_func in fork vfork do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done if test "x$ac_cv_func_fork" = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 $as_echo_n "checking for working fork... " >&6; } if ${ac_cv_func_fork_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_fork_works=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { /* By Ruediger Kuhlmann. */ return fork () < 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_fork_works=yes else ac_cv_func_fork_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fork_works" >&5 $as_echo "$ac_cv_func_fork_works" >&6; } else ac_cv_func_fork_works=$ac_cv_func_fork fi if test "x$ac_cv_func_fork_works" = xcross; then case $host in *-*-amigaos* | *-*-msdosdjgpp*) # Override, as these systems have only a dummy fork() stub ac_cv_func_fork_works=no ;; *) ac_cv_func_fork_works=yes ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5 $as_echo "$as_me: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&2;} fi ac_cv_func_vfork_works=$ac_cv_func_vfork if test "x$ac_cv_func_vfork" = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 $as_echo_n "checking for working vfork... " >&6; } if ${ac_cv_func_vfork_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_vfork_works=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Thanks to Paul Eggert for this test. */ $ac_includes_default #include #ifdef HAVE_VFORK_H # include #endif /* On some sparc systems, changes by the child to local and incoming argument registers are propagated back to the parent. The compiler is told about this with #include , but some compilers (e.g. gcc -O) don't grok . Test for this by using a static variable whose address is put into a register that is clobbered by the vfork. */ static void #ifdef __cplusplus sparc_address_test (int arg) # else sparc_address_test (arg) int arg; #endif { static pid_t child; if (!child) { child = vfork (); if (child < 0) { perror ("vfork"); _exit(2); } if (!child) { arg = getpid(); write(-1, "", 0); _exit (arg); } } } int main () { pid_t parent = getpid (); pid_t child; sparc_address_test (0); child = vfork (); if (child == 0) { /* Here is another test for sparc vfork register problems. This test uses lots of local variables, at least as many local variables as main has allocated so far including compiler temporaries. 4 locals are enough for gcc 1.40.3 on a Solaris 4.1.3 sparc, but we use 8 to be safe. A buggy compiler should reuse the register of parent for one of the local variables, since it will think that parent can't possibly be used any more in this routine. Assigning to the local variable will thus munge parent in the parent process. */ pid_t p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(), p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid(); /* Convince the compiler that p..p7 are live; otherwise, it might use the same hardware register for all 8 local variables. */ if (p != p1 || p != p2 || p != p3 || p != p4 || p != p5 || p != p6 || p != p7) _exit(1); /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent from child file descriptors. If the child closes a descriptor before it execs or exits, this munges the parent's descriptor as well. Test for this by closing stdout in the child. */ _exit(close(fileno(stdout)) != 0); } else { int status; struct stat st; while (wait(&status) != child) ; return ( /* Was there some problem with vforking? */ child < 0 /* Did the child fail? (This shouldn't happen.) */ || status /* Did the vfork/compiler bug occur? */ || parent != getpid() /* Did the file descriptor bug occur? */ || fstat(fileno(stdout), &st) != 0 ); } } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_vfork_works=yes else ac_cv_func_vfork_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_vfork_works" >&5 $as_echo "$ac_cv_func_vfork_works" >&6; } fi; if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_vfork_works=$ac_cv_func_vfork { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5 $as_echo "$as_me: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&2;} fi if test "x$ac_cv_func_vfork_works" = xyes; then $as_echo "#define HAVE_WORKING_VFORK 1" >>confdefs.h else $as_echo "#define vfork fork" >>confdefs.h fi if test "x$ac_cv_func_fork_works" = xyes; then $as_echo "#define HAVE_WORKING_FORK 1" >>confdefs.h fi for ac_header in sys/select.h sys/socket.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking types of arguments for select" >&5 $as_echo_n "checking types of arguments for select... " >&6; } if ${ac_cv_func_select_args+:} false; then : $as_echo_n "(cached) " >&6 else for ac_arg234 in 'fd_set *' 'int *' 'void *'; do for ac_arg1 in 'int' 'size_t' 'unsigned long int' 'unsigned int'; do for ac_arg5 in 'struct timeval *' 'const struct timeval *'; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default #ifdef HAVE_SYS_SELECT_H # include #endif #ifdef HAVE_SYS_SOCKET_H # include #endif int main () { extern int select ($ac_arg1, $ac_arg234, $ac_arg234, $ac_arg234, $ac_arg5); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_func_select_args="$ac_arg1,$ac_arg234,$ac_arg5"; break 3 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done done done # Provide a safe default value. : "${ac_cv_func_select_args=int,int *,struct timeval *}" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_select_args" >&5 $as_echo "$ac_cv_func_select_args" >&6; } ac_save_IFS=$IFS; IFS=',' set dummy `echo "$ac_cv_func_select_args" | sed 's/\*/\*/g'` IFS=$ac_save_IFS shift cat >>confdefs.h <<_ACEOF #define SELECT_TYPE_ARG1 $1 _ACEOF cat >>confdefs.h <<_ACEOF #define SELECT_TYPE_ARG234 ($2) _ACEOF cat >>confdefs.h <<_ACEOF #define SELECT_TYPE_ARG5 ($3) _ACEOF rm -f conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 $as_echo_n "checking return type of signal handlers... " >&6; } if ${ac_cv_type_signal+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { return *(signal (0, 0)) (0) == 1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_type_signal=int else ac_cv_type_signal=void fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 $as_echo "$ac_cv_type_signal" >&6; } cat >>confdefs.h <<_ACEOF #define RETSIGTYPE $ac_cv_type_signal _ACEOF for ac_func in strftime do : ac_fn_c_check_func "$LINENO" "strftime" "ac_cv_func_strftime" if test "x$ac_cv_func_strftime" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRFTIME 1 _ACEOF else # strftime is in -lintl on SCO UNIX. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strftime in -lintl" >&5 $as_echo_n "checking for strftime in -lintl... " >&6; } if ${ac_cv_lib_intl_strftime+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strftime (); int main () { return strftime (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_strftime=yes else ac_cv_lib_intl_strftime=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_strftime" >&5 $as_echo "$ac_cv_lib_intl_strftime" >&6; } if test "x$ac_cv_lib_intl_strftime" = xyes; then : $as_echo "#define HAVE_STRFTIME 1" >>confdefs.h LIBS="-lintl $LIBS" fi fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working strtod" >&5 $as_echo_n "checking for working strtod... " >&6; } if ${ac_cv_func_strtod+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_strtod=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default #ifndef strtod double strtod (); #endif int main() { { /* Some versions of Linux strtod mis-parse strings with leading '+'. */ char *string = " +69"; char *term; double value; value = strtod (string, &term); if (value != 69 || term != (string + 4)) return 1; } { /* Under Solaris 2.4, strtod returns the wrong value for the terminating character under some conditions. */ char *string = "NaN"; char *term; strtod (string, &term); if (term != string && *(term - 1) == 0) return 1; } return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_strtod=yes else ac_cv_func_strtod=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_strtod" >&5 $as_echo "$ac_cv_func_strtod" >&6; } if test $ac_cv_func_strtod = no; then case " $LIBOBJS " in *" strtod.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS strtod.$ac_objext" ;; esac ac_fn_c_check_func "$LINENO" "pow" "ac_cv_func_pow" if test "x$ac_cv_func_pow" = xyes; then : fi if test $ac_cv_func_pow = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pow in -lm" >&5 $as_echo_n "checking for pow in -lm... " >&6; } if ${ac_cv_lib_m_pow+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pow (); int main () { return pow (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_pow=yes else ac_cv_lib_m_pow=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_pow" >&5 $as_echo "$ac_cv_lib_m_pow" >&6; } if test "x$ac_cv_lib_m_pow" = xyes; then : POW_LIB=-lm else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cannot find library containing definition of pow" >&5 $as_echo "$as_me: WARNING: cannot find library containing definition of pow" >&2;} fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether setpgrp takes no argument" >&5 $as_echo_n "checking whether setpgrp takes no argument... " >&6; } if ${ac_cv_func_setpgrp_void+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : as_fn_error $? "cannot check setpgrp when cross compiling" "$LINENO" 5 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { /* If this system has a BSD-style setpgrp which takes arguments, setpgrp(1, 1) will fail with ESRCH and return -1, in that case exit successfully. */ return setpgrp (1,1) != -1; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_setpgrp_void=no else ac_cv_func_setpgrp_void=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_setpgrp_void" >&5 $as_echo "$ac_cv_func_setpgrp_void" >&6; } if test $ac_cv_func_setpgrp_void = yes; then $as_echo "#define SETPGRP_VOID 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash" >&5 $as_echo_n "checking whether lstat correctly handles trailing slash... " >&6; } if ${ac_cv_func_lstat_dereferences_slashed_symlink+:} false; then : $as_echo_n "(cached) " >&6 else rm -f conftest.sym conftest.file echo >conftest.file if test "$as_ln_s" = "ln -s" && ln -s conftest.file conftest.sym; then if test "$cross_compiling" = yes; then : ac_cv_func_lstat_dereferences_slashed_symlink=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { struct stat sbuf; /* Linux will dereference the symlink and fail, as required by POSIX. That is better in the sense that it means we will not have to compile and use the lstat wrapper. */ return lstat ("conftest.sym/", &sbuf) == 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_lstat_dereferences_slashed_symlink=yes else ac_cv_func_lstat_dereferences_slashed_symlink=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi else # If the `ln -s' command failed, then we probably don't even # have an lstat function. ac_cv_func_lstat_dereferences_slashed_symlink=no fi rm -f conftest.sym conftest.file fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_lstat_dereferences_slashed_symlink" >&5 $as_echo "$ac_cv_func_lstat_dereferences_slashed_symlink" >&6; } test $ac_cv_func_lstat_dereferences_slashed_symlink = yes && cat >>confdefs.h <<_ACEOF #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 _ACEOF if test "x$ac_cv_func_lstat_dereferences_slashed_symlink" = xno; then case " $LIBOBJS " in *" lstat.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS lstat.$ac_objext" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat accepts an empty string" >&5 $as_echo_n "checking whether stat accepts an empty string... " >&6; } if ${ac_cv_func_stat_empty_string_bug+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_stat_empty_string_bug=yes else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { struct stat sbuf; return stat ("", &sbuf) == 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_stat_empty_string_bug=no else ac_cv_func_stat_empty_string_bug=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_stat_empty_string_bug" >&5 $as_echo "$ac_cv_func_stat_empty_string_bug" >&6; } if test $ac_cv_func_stat_empty_string_bug = yes; then case " $LIBOBJS " in *" stat.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS stat.$ac_objext" ;; esac cat >>confdefs.h <<_ACEOF #define HAVE_STAT_EMPTY_STRING_BUG 1 _ACEOF fi for ac_func in floor pow select sqrt strchr strerror strpbrk strrchr strstr mkstemp do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_header_mongrel "$LINENO" "string.h" "ac_cv_header_string_h" "$ac_includes_default" if test "x$ac_cv_header_string_h" = xyes; then : $as_echo "#define HAVE_STRING_HEADER 1" >>confdefs.h fi ac_fn_c_check_header_mongrel "$LINENO" "strings.h" "ac_cv_header_strings_h" "$ac_includes_default" if test "x$ac_cv_header_strings_h" = xyes; then : $as_echo "#define HAVE_STRINGS_HEADER 1" >>confdefs.h fi ac_fn_c_check_header_mongrel "$LINENO" "ncurses.h" "ac_cv_header_ncurses_h" "$ac_includes_default" if test "x$ac_cv_header_ncurses_h" = xyes; then : $as_echo "#define HAVE_NCURSES_HEADER 1" >>confdefs.h fi ac_fn_c_check_header_mongrel "$LINENO" "curses.h" "ac_cv_header_curses_h" "$ac_includes_default" if test "x$ac_cv_header_curses_h" = xyes; then : $as_echo "#define HAVE_CURSES_HEADER 1" >>confdefs.h fi if test "X$ac_cv_header_curses_h" = "Xno" && test "X$ac_cv_header_curses_h" = "Xno"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not find curses or ncurses header files; please install ncurses-devel." >&5 $as_echo "$as_me: WARNING: Could not find curses or ncurses header files; please install ncurses-devel." >&2;} fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for initscr in -lncurses" >&5 $as_echo_n "checking for initscr in -lncurses... " >&6; } if ${ac_cv_lib_ncurses_initscr+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lncurses $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char initscr (); int main () { return initscr (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_ncurses_initscr=yes else ac_cv_lib_ncurses_initscr=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncurses_initscr" >&5 $as_echo "$ac_cv_lib_ncurses_initscr" >&6; } if test "x$ac_cv_lib_ncurses_initscr" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBNCURSES 1 _ACEOF LIBS="-lncurses $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for initscr in -lcurses" >&5 $as_echo_n "checking for initscr in -lcurses... " >&6; } if ${ac_cv_lib_curses_initscr+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char initscr (); int main () { return initscr (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_curses_initscr=yes else ac_cv_lib_curses_initscr=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_initscr" >&5 $as_echo "$ac_cv_lib_curses_initscr" >&6; } if test "x$ac_cv_lib_curses_initscr" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBCURSES 1 _ACEOF LIBS="-lcurses $LIBS" fi for ac_func in getnstr do : ac_fn_c_check_func "$LINENO" "getnstr" "ac_cv_func_getnstr" if test "x$ac_cv_func_getnstr" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETNSTR 1 _ACEOF fi done for ac_func in setitimer do : ac_fn_c_check_func "$LINENO" "setitimer" "ac_cv_func_setitimer" if test "x$ac_cv_func_setitimer" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SETITIMER 1 _ACEOF fi done for ac_func in difftime do : ac_fn_c_check_func "$LINENO" "difftime" "ac_cv_func_difftime" if test "x$ac_cv_func_difftime" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DIFFTIME 1 _ACEOF fi done # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 $as_echo_n "checking for working alloca.h... " >&6; } if ${ac_cv_working_alloca_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char *p = (char *) alloca (2 * sizeof (int)); if (p) return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_working_alloca_h=yes else ac_cv_working_alloca_h=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_alloca_h" >&5 $as_echo "$ac_cv_working_alloca_h" >&6; } if test $ac_cv_working_alloca_h = yes; then $as_echo "#define HAVE_ALLOCA_H 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 $as_echo_n "checking for alloca... " >&6; } if ${ac_cv_func_alloca_works+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __GNUC__ # define alloca __builtin_alloca #else # ifdef _MSC_VER # include # define alloca _alloca # else # ifdef HAVE_ALLOCA_H # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ void *alloca (size_t); # endif # endif # endif # endif #endif int main () { char *p = (char *) alloca (1); if (p) return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_func_alloca_works=yes else ac_cv_func_alloca_works=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_alloca_works" >&5 $as_echo "$ac_cv_func_alloca_works" >&6; } if test $ac_cv_func_alloca_works = yes; then $as_echo "#define HAVE_ALLOCA 1" >>confdefs.h else # The SVR3 libPW and SVR4 libucb both contain incompatible functions # that cause trouble. Some versions do not even contain alloca or # contain a buggy version. If you still want to use their alloca, # use ar to extract alloca.o from them instead of compiling alloca.c. ALLOCA=\${LIBOBJDIR}alloca.$ac_objext $as_echo "#define C_ALLOCA 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } if ${ac_cv_os_cray+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined CRAY && ! defined CRAY2 webecray #else wenotbecray #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "webecray" >/dev/null 2>&1; then : ac_cv_os_cray=yes else ac_cv_os_cray=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_os_cray" >&5 $as_echo "$ac_cv_os_cray" >&6; } if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define CRAY_STACKSEG_END $ac_func _ACEOF break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 $as_echo_n "checking stack direction for C alloca... " >&6; } if ${ac_cv_c_stack_direction+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_c_stack_direction=0 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int find_stack_direction (int *addr, int depth) { int dir, dummy = 0; if (! addr) addr = &dummy; *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1; dir = depth ? find_stack_direction (addr, depth - 1) : 0; return dir + dummy; } int main (int argc, char **argv) { return find_stack_direction (0, argc + !argv + 20) < 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_c_stack_direction=1 else ac_cv_c_stack_direction=-1 fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_stack_direction" >&5 $as_echo "$ac_cv_c_stack_direction" >&6; } cat >>confdefs.h <<_ACEOF #define STACK_DIRECTION $ac_cv_c_stack_direction _ACEOF fi cat >>confdefs.h <<_ACEOF #define UNIX_ARCHITECTURE "$host" _ACEOF cat >>confdefs.h <<_ACEOF #define BUILD_TIME "`date -u -d @$SOURCE_DATE_EPOCH 2>/dev/null || date -u -r $SOURCE_DATE_EPOCH 2>/dev/null || date -u`" _ACEOF ac_config_headers="$ac_config_headers config.h:config.h.in" ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by yabasic $as_me 2.78.5, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ yabasic config.status 2.78.5 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.h.in" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi yabasic-2.78.5/runme0000775000175100017510000000343513025160552011235 00000000000000#!/bin/sh # # This script is used to compile yabasic # echo # remove files, that might interfere echo "===output of 'make clean'" >runme.log make clean >>runme.log 2>&1 rm -f ./yabasic config.cache config.log config.status # get version from yabasic.h echo "===Version from configure" >>runme.log grep "VERSION=" configure >>runme.log 2>&1 # get username echo "===Output of who" >>runme.log who -m >>runme.log 2>&1 # get host information echo "===Output of uname" >>runme.log uname >>runme.log 2>&1 # list current file echo "===Files in current directory" >>runme.log ls -l >>runme.log 2>&1 # preset returncode RC=0 echo "===Running configure ..." | tee -a runme.log | tr -d = ./configure >>runme.log 2>&1 # success ? if [ $? -eq 0 ] then echo "===Trying to make yabasic ..." | tee -a runme.log | tr -d = make >>runme.log 2>&1 # success ? if [ $? -eq 0 ] then echo "===Testing yabasic ..." | tee -a runme.log | tr -d = make check >>runme.log 2>&1 # success ? if [ $? -eq 0 ] then echo echo "===SUCCESS, you may now start yabasic from this directory" | tee -a runme.log | tr -d = echo "===or install it in system by typing 'make install' (need to be root)" | tee -a runme.log | tr -d = echo else echo echo "===FAILURE, the tests have failed" | tee -a runme.log | tr -d = echo "===yabasic has not been built properly !" | tee -a runme.log | tr -d = echo RC=1 fi else echo echo "===FAILURE, could not make yabasic !" | tee -a runme.log | tr -d = echo RC=2 fi else echo echo "===FAILURE, could not configure yabasic" | tee -a runme.log | tr -d = echo RC=3 fi # append config.log to runme.log echo "===config.log:" >>runme.log touch config.log cat config.log >>runme.log 2>&1 exit $RC yabasic-2.78.5/Makefile.in0000664000175100017510000013010213260170606012220 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = yabasic$(EXEEXT) subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" PROGRAMS = $(bin_PROGRAMS) am_yabasic_OBJECTS = main.$(OBJEXT) function.$(OBJEXT) io.$(OBJEXT) \ graphic.$(OBJEXT) symbol.$(OBJEXT) flow.$(OBJEXT) \ flex.$(OBJEXT) bison.$(OBJEXT) yabasic_OBJECTS = $(am_yabasic_OBJECTS) yabasic_LDADD = $(LDADD) yabasic_DEPENDENCIES = AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(yabasic_SOURCES) DIST_SOURCES = $(yabasic_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man1dir = $(mandir)/man1 NROFF = nroff MANS = $(man_MANS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope AM_RECURSIVE_TARGETS = cscope check recheck am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` RECHECK_LOGS = $(TEST_LOGS) TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \ COPYING ChangeLog INSTALL NEWS README compile config.guess \ config.sub depcomp install-sh ltmain.sh missing mkinstalldirs \ test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CCOPTIONS = @CCOPTIONS@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POW_LIB = @POW_LIB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ yabasic_SOURCES = main.c function.c io.c graphic.c symbol.c flow.c flex.c bison.c yabasic.h bison.h man_MANS = yabasic.1 LDADD = @X_PRE_LIBS@ -lm @LIBS@ -lX11 @X_LIBS@ @X_EXTRA_LIBS@ AM_CPPFLAGS = -DUNIX EXTRA_DIST = runme yabasic.htm yabasic.flex yabasic.bison tests configure.ac LICENSE demo.yab $(man_MANS) AUTOMAKE_OPTIONS = check-news subdir-objects TESTS = tests/break.yab tests/bugs.yab tests/grammar.yab tests/io.yab tests/long_variable_name.yab tests/simple.yab # flags for flex (-d for debugging) flexflags = -i -I -L -s # perl -i -n -e 'if (!/^\#include\s+\s+$$/) {print if $$i;$$i++}' flex.c # flags for bison (-t -v for debugging) bisonflags = -d -l -t -v all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list yabasic$(EXEEXT): $(yabasic_OBJECTS) $(yabasic_DEPENDENCIES) $(EXTRA_yabasic_DEPENDENCIES) @rm -f yabasic$(EXEEXT) $(AM_V_CCLD)$(LINK) $(yabasic_OBJECTS) $(yabasic_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bison.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flex.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flow.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/function.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/graphic.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/io.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/symbol.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-man1: $(man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? tests/break.yab.log: tests/break.yab @p='tests/break.yab'; \ b='tests/break.yab'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/bugs.yab.log: tests/bugs.yab @p='tests/bugs.yab'; \ b='tests/bugs.yab'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/grammar.yab.log: tests/grammar.yab @p='tests/grammar.yab'; \ b='tests/grammar.yab'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/io.yab.log: tests/io.yab @p='tests/io.yab'; \ b='tests/io.yab'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/long_variable_name.yab.log: tests/long_variable_name.yab @p='tests/long_variable_name.yab'; \ b='tests/long_variable_name.yab'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) tests/simple.yab.log: tests/simple.yab @p='tests/simple.yab'; \ b='tests/simple.yab'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(DISTFILES) @case `sed 15q $(srcdir)/NEWS` in \ *"$(VERSION)"*) : ;; \ *) \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1;; \ esac $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(PROGRAMS) $(MANS) config.h installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-libtool distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-man uninstall-man: uninstall-man1 .MAKE: all check-am install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-TESTS \ check-am clean clean-binPROGRAMS clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ dist-xz dist-zip distcheck distclean distclean-compile \ distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-man1 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am recheck tags tags-am \ uninstall uninstall-am uninstall-binPROGRAMS uninstall-man \ uninstall-man1 .PRECIOUS: Makefile # create scanner and remove include for unistd.h (needed for windows) flex: yabasic.flex Makefile flex $(flexflags) -t yabasic.flex >flex.c bison: yabasic.bison Makefile bison $(bisonflags) --output-file bison.c yabasic.bison # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: yabasic-2.78.5/NEWS0000775000175100017510000000033113260635155010662 00000000000000Version 2.78.5 (April 3, 2018) - Within a bound yabasic-programs the name is correctly set (as returned by peeking "program_name") - Introduced new string-peeks "program_name" and "program_file_name" - Bugfixes yabasic-2.78.5/flex.c0000664000175100017510000035274113260634342011276 00000000000000 #line 3 "" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 #define YY_FLEX_SUBMINOR_VERSION 0 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif extern yy_size_t yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define yywrap() (/*CONSTCOND*/1) #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #ifdef yytext_ptr #undef yytext_ptr #endif #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); #if defined(__GNUC__) && __GNUC__ >= 3 __attribute__((__noreturn__)) #endif static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ (yytext_ptr) -= (yy_more_len); \ yyleng = (size_t) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 209 #define YY_END_OF_BUFFER 210 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_acclist[892] = { 0, 16386, 4, 4, 210, 208, 209, 1, 208, 209, 7, 209, 197, 208, 209, 208, 209, 198, 208, 209, 198, 208, 209, 198, 200, 208, 209, 198, 208, 209, 199, 200, 208, 209, 8, 198, 208, 209, 195, 208, 209, 194, 208, 209, 196, 208, 209, 80, 208, 209, 175, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 205, 208, 209, 189, 208, 209, 1, 208, 209,16386, 208, 209, 208, 209, 8194, 199, 200, 208, 209, 209, 3, 209, 4, 209, 5, 209, 209, 16, 209, 1, 6, 207, 207, 190, 200, 10, 200, 199, 200, 192, 191, 193, 206, 205, 205, 205, 205, 205, 43, 205, 174, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 41, 205, 205, 205, 205, 205, 205, 205, 205, 68, 205, 205, 205, 205, 205, 205, 205, 62, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 58, 205, 205, 91, 205, 205, 205, 201, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 42, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 1,16386, 8194, 18, 19, 8194, 199, 200, 3, 4, 15, 15, 14, 15, 200, 10, 205, 142, 205, 205, 90, 205, 205, 170, 205, 205, 205, 205, 205, 205, 205, 205, 109, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 132, 205, 205, 205, 173, 205, 205, 83, 205, 17, 205, 98, 205, 205, 85, 205, 160, 205, 93, 205, 205, 205, 205, 205, 136, 205, 205, 205, 35, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 140, 205, 205, 205, 158, 205, 124, 205, 205, 205, 137, 205, 205, 205, 205, 147, 205, 205, 146, 205, 144, 205, 205, 118, 205, 205, 92, 205, 205, 205, 205, 205, 205, 205, 205, 205, 145, 205, 205, 205, 205, 12, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 143, 205, 130, 205, 205, 205, 139, 205, 205, 205, 205, 54, 205, 205, 205, 134, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 159, 205, 205, 205, 205, 205, 205, 94, 205, 14, 205, 133, 205, 205, 131, 205, 135, 205, 205, 123, 205, 122, 205, 172, 206, 129, 205, 205, 205, 38, 205, 169, 206, 205, 205, 205, 205, 205, 205, 205, 88, 205, 205, 205, 17, 17, 205, 64, 205, 205, 205, 205, 205, 205, 86, 205, 205, 205, 104, 205, 141, 205, 205, 205, 188, 205, 205, 52, 205, 171, 206, 205, 205, 205, 205, 205, 205, 205, 99, 205, 205, 40, 205, 205, 205, 150, 206, 205, 47, 205, 205, 69, 205, 205, 205, 181, 205, 183, 205, 205, 205, 205, 87, 205, 108, 205, 205, 9, 11, 205, 205, 205, 205, 205, 205, 205, 205, 205, 71, 205, 205, 205, 138, 205, 205, 46, 205, 161, 206, 205, 205, 205, 72, 205, 106, 205, 63, 205, 205, 205, 205, 205, 203, 205, 205, 205, 205, 119, 205, 49, 205, 205, 205, 205, 14, 205, 205, 205, 36, 205, 205, 103, 205, 70, 205, 76, 205, 205, 205, 205, 100, 205, 179, 206, 205, 17, 17, 205, 205, 65, 205, 67, 205, 34, 205, 202, 205, 205, 205, 204, 205, 205, 205, 205, 53, 205, 205, 205, 81, 205, 156, 205, 205, 61, 205, 148, 206, 56, 205, 205, 205, 205, 205, 205, 120, 205, 182, 206, 73, 205, 205, 205, 205, 205, 84, 205, 9, 9, 205, 205, 205, 205, 205, 205, 205, 205, 205, 121, 205, 186, 205, 205, 205, 205, 205, 180, 206, 184, 205, 205, 155, 206, 51, 205, 205, 74, 205, 48, 205, 205, 205, 14, 205, 205, 205, 205, 111, 205, 101, 205, 77, 205, 205, 205, 205, 205, 66, 205, 25, 26, 205, 33, 205, 105, 205, 205, 205, 13, 205, 162, 206, 205, 151, 206, 153, 206, 165, 205, 205, 163, 205, 164, 205, 205, 96, 205, 205, 112, 205, 205, 205, 205, 50, 205, 205, 82, 205, 205, 149, 206, 157, 205, 154, 206, 205, 176, 205, 187, 206, 57, 205, 205, 37, 205, 178, 205, 185, 206, 205, 152, 206, 95, 205, 205, 205, 205, 205, 110, 205, 113, 206, 22, 205, 205, 39, 205, 205, 24, 20, 205, 115, 206, 205, 205, 205, 205, 205, 97, 205, 205, 44, 205, 205, 89, 205, 75, 205, 205, 205, 177, 206, 205, 45, 205, 125, 205, 205, 205, 114, 206, 60, 205, 205, 21, 206, 205, 205, 205, 167, 205, 128, 205, 205, 205, 205, 205, 102, 205, 205, 127, 205, 78, 205, 205, 205, 27, 28, 205, 59, 205, 205, 205, 128, 205, 116, 205, 107, 205, 205, 205, 205, 79, 205, 205, 29, 30, 117, 206, 205, 205, 128, 205, 55, 205, 205, 205, 31, 32, 166, 205, 205, 205, 205, 205, 205, 205, 205, 17, 205, 168, 205, 205, 126, 205, 205, 205, 205, 205, 205, 23, 205 } ; static yyconst flex_int16_t yy_accept[670] = { 0, 1, 1, 2, 2, 2, 3, 4, 4, 4, 4, 4, 5, 7, 10, 12, 15, 17, 20, 23, 27, 30, 34, 38, 41, 44, 47, 50, 53, 56, 59, 62, 65, 68, 71, 74, 77, 80, 83, 86, 89, 92, 95, 98, 101, 104, 107, 110, 113, 116, 119, 122, 126, 128, 130, 135, 136, 138, 140, 142, 143, 145, 146, 147, 147, 148, 149, 150, 151, 151, 152, 153, 155, 156, 157, 158, 159, 159, 160, 161, 162, 163, 164, 166, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 184, 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, 196, 197, 198, 199, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 216, 217, 219, 220, 221, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 260, 261, 261, 262, 262, 263, 266, 267, 268, 269, 270, 272, 272, 273, 274, 275, 277, 278, 280, 281, 283, 284, 285, 286, 287, 288, 289, 290, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 303, 304, 305, 307, 308, 310, 312, 314, 315, 317, 319, 321, 322, 323, 324, 325, 327, 328, 329, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 343, 344, 345, 347, 349, 350, 351, 353, 354, 355, 356, 358, 359, 361, 363, 364, 366, 367, 369, 370, 371, 372, 373, 374, 375, 376, 377, 379, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 396, 398, 399, 400, 402, 403, 404, 405, 407, 408, 409, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 423, 424, 425, 426, 427, 428, 430, 430, 431, 432, 434, 435, 437, 439, 440, 442, 444, 446, 448, 449, 450, 452, 454, 455, 456, 457, 458, 459, 460, 461, 463, 464, 465, 466, 468, 470, 471, 471, 471, 472, 473, 474, 475, 477, 478, 479, 481, 483, 484, 485, 487, 488, 490, 492, 493, 494, 495, 496, 497, 498, 499, 501, 502, 504, 505, 506, 508, 509, 511, 512, 514, 515, 516, 518, 520, 521, 522, 523, 525, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542, 543, 545, 546, 548, 550, 551, 552, 553, 555, 557, 559, 560, 561, 562, 563, 565, 566, 567, 568, 570, 572, 573, 574, 575, 576, 577, 578, 579, 581, 582, 584, 586, 588, 589, 590, 591, 593, 595, 596, 597, 598, 599, 600, 602, 602, 602, 602, 602, 602, 602, 604, 606, 608, 609, 610, 612, 613, 614, 615, 617, 618, 619, 621, 623, 624, 626, 628, 630, 631, 632, 633, 634, 635, 637, 639, 641, 642, 643, 644, 645, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 660, 662, 663, 664, 665, 666, 668, 670, 671, 673, 675, 676, 678, 680, 681, 682, 683, 684, 685, 686, 687, 689, 691, 693, 694, 695, 696, 697, 699, 700, 700, 700, 700, 701, 701, 701, 702, 704, 706, 707, 708, 710, 712, 713, 715, 717, 719, 720, 722, 724, 725, 727, 728, 730, 731, 732, 733, 735, 736, 738, 739, 741, 743, 745, 746, 748, 750, 752, 753, 755, 757, 759, 760, 762, 764, 765, 766, 767, 768, 770, 772, 774, 775, 777, 778, 779, 779, 779, 779, 779, 781, 783, 784, 785, 786, 787, 788, 790, 791, 793, 794, 796, 798, 799, 800, 802, 803, 805, 807, 808, 809, 811, 813, 814, 814, 814, 814, 814, 816, 817, 818, 819, 821, 823, 824, 825, 826, 827, 829, 830, 832, 834, 835, 836, 836, 837, 837, 838, 839, 841, 842, 843, 843, 843, 845, 847, 849, 850, 851, 852, 854, 855, 856, 857, 859, 860, 861, 861, 862, 863, 865, 866, 867, 868, 869, 871, 872, 873, 874, 875, 876, 877, 878, 880, 882, 883, 885, 886, 887, 888, 889, 890, 892, 892 } ; static yyconst YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 5, 6, 7, 1, 1, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 13, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 1, 1, 1, 50, 51, 1, 52, 53, 54, 55, 56, 57, 58, 59, 60, 33, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst YY_CHAR yy_meta[77] = { 0, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 4, 1, 5, 1, 1, 1, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6 } ; static yyconst flex_uint16_t yy_base[686] = { 0, 0, 75, 512, 505, 515, 489, 485, 483, 0, 0, 481, 2715, 472, 469, 2715, 75, 2715, 445, 62, 434, 67, 2715, 65, 2715, 381, 2715, 2715, 117, 181, 243, 81, 308, 84, 100, 99, 138, 82, 376, 165, 183, 197, 423, 488, 553, 605, 240, 87, 667, 119, 2715, 146, 377, 364, 151, 2715, 341, 0, 2715, 735, 2715, 351, 2715, 95, 98, 2715, 2715, 201, 214, 0, 215, 236, 2715, 2715, 2715, 2715, 0, 97, 193, 245, 261, 279, 265, 154, 286, 306, 311, 283, 322, 317, 292, 320, 356, 380, 324, 359, 370, 114, 383, 396, 403, 416, 398, 445, 461, 447, 462, 418, 382, 456, 463, 495, 483, 176, 504, 508, 538, 547, 518, 651, 498, 499, 534, 607, 595, 560, 620, 208, 593, 580, 349, 624, 209, 652, 640, 664, 638, 779, 752, 697, 669, 755, 753, 762, 756, 765, 772, 822, 678, 759, 783, 821, 832, 828, 823, 846, 855, 850, 853, 857, 862, 868, 866, 881, 894, 895, 897, 197, 334, 341, 2715, 319, 2715, 673, 283, 0, 2715, 965, 270, 249, 242, 0, 237, 321, 922, 433, 901, 489, 925, 953, 985, 986, 987, 989, 988, 565, 990, 907, 579, 1003, 1013, 991, 1016, 1017, 992, 703, 1019, 1023, 707, 1043, 710, 1038, 713, 1048, 1070, 768, 786, 1054, 1059, 1063, 1079, 1083, 1081, 1090, 927, 1086, 1103, 1109, 1092, 1099, 929, 1120, 1126, 1124, 1131, 1150, 1152, 1140, 932, 936, 1162, 1136, 939, 1164, 1166, 1177, 941, 942, 1096, 1146, 1182, 1184, 1189, 1198, 1200, 1204, 1205, 1210, 1214, 1216, 1219, 1235, 1221, 1231, 1238, 1242, 1282, 1254, 1247, 1263, 1284, 1280, 1258, 1286, 1298, 1291, 1308, 1240, 1307, 1309, 1313, 1314, 1318, 1323, 1328, 1329, 1343, 1344, 1341, 1345, 1348, 1357, 1364, 1367, 1386, 1368, 1370, 1383, 1397, 1393, 1402, 1420, 1418, 1421, 1422, 1425, 0, 225, 187, 1435, 1436, 1437, 1439, 1448, 1449, 1451, 2715, 1452, 1453, 1455, 1462, 2715, 1464, 1466, 1475, 1476, 1478, 1480, 1490, 1471, 1489, 1491, 174, 1506, 1507, 1494, 1517, 1495, 1521, 1517, 1538, 1545, 1518, 1541, 1559, 1565, 1550, 1566, 1568, 1569, 1585, 1581, 2715, 1584, 1588, 1590, 1604, 1605, 1616, 1617, 1620, 1622, 1627, 1633, 1632, 2715, 1634, 1643, 1646, 1649, 1660, 1672, 1662, 1673, 1674, 1676, 1678, 1679, 1690, 1695, 171, 2715, 1700, 1711, 1706, 1712, 1718, 1722, 1715, 1731, 1728, 1733, 1747, 1752, 1753, 1757, 1762, 2715, 1764, 1778, 1768, 1766, 1775, 1790, 1791, 1793, 1794, 1792, 1796, 1803, 1805, 1812, 1808, 1818, 1819, 1821, 1828, 0, 1834, 1830, 1837, 1833, 1849, 1847, 1848, 1859, 1872, 1875, 1877, 1876, 2715, 1886, 0, 149, 1887, 1889, 1891, 135, 1332, 151, 213, 47, 214, 1893, 1902, 1904, 1909, 1913, 1915, 1918, 1916, 1919, 1920, 1929, 1932, 1935, 1942, 1947, 1946, 2715, 1948, 1951, 1960, 1969, 1962, 1963, 1967, 2715, 1978, 1982, 1983, 1989, 1994, 1995, 0, 145, 2004, 2005, 2022, 2006, 2021, 2026, 2035, 2042, 2047, 2048, 2049, 2053, 2054, 2065, 2070, 2715, 2074, 2080, 2715, 2075, 2076, 2085, 2086, 2097, 2102, 0, 2108, 2112, 2101, 2106, 2107, 2111, 2113, 2122, 2127, 2138, 2140, 2139, 2715, 231, 257, 375, 2715, 476, 584, 2141, 2144, 2145, 2150, 2160, 2167, 2715, 2176, 2715, 2715, 2177, 2172, 2178, 2179, 2188, 2192, 2194, 2198, 2199, 2208, 2211, 2204, 2215, 2210, 2217, 2715, 2221, 2715, 2224, 2227, 2715, 2239, 2242, 2243, 2244, 2715, 2246, 2715, 2249, 2253, 2260, 2267, 2263, 2269, 2715, 2272, 2279, 2282, 2283, 2715, 150, 234, 268, 307, 2284, 2715, 2285, 2288, 2295, 2302, 2315, 2299, 2317, 2318, 2324, 2327, 2329, 2333, 2340, 2715, 2343, 2345, 2349, 2354, 2360, 2715, 2355, 2359, 606, 659, 750, 826, 2715, 2361, 2372, 2373, 2374, 2388, 2387, 2405, 2406, 2402, 2378, 2407, 2411, 2412, 2422, 2431, 864, 2715, 874, 2715, 2433, 2434, 2438, 2440, 108, 2448, 2463, 2447, 2449, 2452, 2466, 2468, 2470, 2472, 133, 124, 2715, 2477, 2473, 2489, 2715, 2491, 2493, 2502, 2500, 2715, 2715, 2506, 2511, 2516, 2520, 2509, 2529, 2535, 2538, 2541, 2542, 2544, 2545, 2554, 2548, 2559, 2564, 2569, 2573, 2715, 2635, 2641, 2647, 2653, 2657, 2663, 2669, 2675, 2681, 2687, 124, 2690, 2694, 81, 2700, 2706, 2708 } ; static yyconst flex_int16_t yy_def[686] = { 0, 668, 1, 669, 669, 670, 670, 669, 669, 671, 671, 668, 668, 668, 668, 668, 672, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 29, 673, 673, 29, 673, 673, 673, 673, 668, 668, 674, 675, 668, 668, 668, 676, 668, 677, 668, 668, 668, 672, 672, 668, 668, 668, 668, 678, 668, 668, 668, 668, 668, 668, 679, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 668, 674, 668, 675, 668, 668, 668, 676, 668, 677, 680, 668, 668, 678, 681, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 682, 680, 681, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 683, 673, 673, 673, 668, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 684, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 685, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 683, 683, 673, 673, 673, 668, 668, 668, 668, 668, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 673, 673, 684, 684, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 668, 673, 673, 673, 673, 673, 673, 685, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 668, 668, 668, 668, 668, 668, 673, 673, 673, 673, 673, 673, 668, 673, 668, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 668, 673, 673, 668, 673, 673, 673, 673, 668, 673, 668, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 668, 668, 668, 668, 668, 673, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 673, 673, 673, 673, 673, 668, 673, 673, 668, 668, 668, 668, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 668, 668, 668, 668, 673, 673, 673, 673, 668, 668, 673, 673, 673, 673, 673, 673, 673, 673, 668, 668, 668, 673, 673, 668, 668, 673, 673, 673, 673, 668, 668, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 0, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668 } ; static yyconst flex_uint16_t yy_nxt[2792] = { 0, 12, 13, 14, 15, 16, 12, 12, 12, 17, 17, 18, 17, 17, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 37, 38, 39, 40, 41, 42, 37, 43, 44, 45, 46, 47, 48, 49, 37, 37, 50, 37, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 37, 43, 44, 45, 46, 47, 48, 49, 37, 37, 51, 64, 67, 65, 52, 70, 53, 71, 72, 73, 417, 75, 75, 68, 75, 54, 519, 75, 68, 76, 76, 64, 76, 65, 64, 76, 65, 75, 95, 75, 75, 105, 96, 627, 160, 76, 97, 76, 76, 106, 628, 68, 98, 519, 75, 107, 68, 75, 108, 75, 112, 109, 76, 182, 649, 76, 95, 76, 110, 105, 96, 111, 160, 648, 97, 78, 79, 106, 75, 98, 475, 167, 107, 210, 433, 108, 76, 80, 112, 109, 166, 81, 82, 83, 75, 110, 168, 514, 111, 70, 113, 173, 76, 78, 79, 75, 475, 114, 115, 433, 210, 189, 68, 76, 80, 517, 75, 166, 81, 82, 83, 75, 121, 75, 76, 514, 599, 75, 113, 76, 122, 76, 167, 75, 114, 115, 123, 75, 84, 189, 68, 76, 85, 517, 124, 76, 86, 168, 75, 75, 121, 67, 87, 599, 125, 88, 76, 76, 122, 179, 126, 179, 68, 123, 180, 67, 84, 127, 183, 128, 85, 129, 124, 306, 86, 518, 68, 75, 520, 87, 75, 125, 88, 75, 70, 75, 71, 126, 76, 570, 68, 76, 180, 76, 127, 183, 128, 68, 129, 180, 89, 75, 600, 518, 68, 75, 520, 90, 91, 76, 157, 92, 158, 76, 93, 159, 184, 570, 306, 75, 94, 185, 571, 75, 187, 68, 75, 76, 89, 600, 188, 76, 75, 174, 76, 90, 91, 157, 92, 158, 76, 93, 159, 184, 601, 190, 75, 94, 75, 185, 571, 75, 187, 186, 76, 172, 76, 75, 188, 76, 75, 75, 75, 195, 75, 76, 198, 191, 76, 76, 76, 601, 76, 190, 192, 602, 99, 170, 100, 101, 186, 193, 102, 196, 168, 103, 61, 194, 104, 75, 195, 174, 197, 198, 199, 191, 75, 76, 206, 75, 172, 192, 602, 99, 76, 100, 101, 76, 193, 102, 75, 196, 103, 170, 194, 104, 75, 200, 76, 197, 75, 199, 75, 75, 76, 206, 257, 201, 76, 208, 76, 76, 209, 116, 74, 207, 75, 117, 75, 225, 572, 118, 211, 75, 76, 200, 76, 119, 202, 203, 204, 76, 120, 257, 201, 205, 75, 208, 75, 212, 209, 116, 207, 214, 76, 117, 76, 225, 572, 118, 211, 213, 217, 75, 119, 202, 203, 204, 215, 120, 130, 76, 205, 69, 131, 75, 212, 75, 132, 66, 216, 214, 224, 76, 133, 76, 75, 134, 213, 217, 135, 75, 75, 75, 76, 62, 215, 61, 130, 76, 76, 76, 131, 218, 668, 222, 132, 216, 59, 224, 59, 133, 219, 75, 134, 58, 220, 135, 75, 75, 223, 76, 226, 221, 227, 75, 76, 76, 75, 75, 218, 573, 222, 76, 75, 136, 76, 76, 75, 137, 219, 58, 76, 138, 220, 56, 76, 223, 75, 226, 221, 227, 56, 230, 139, 140, 76, 668, 668, 573, 228, 229, 245, 136, 75, 232, 231, 137, 75, 246, 233, 138, 76, 234, 235, 668, 76, 75, 240, 668, 230, 139, 140, 75, 247, 76, 236, 228, 229, 245, 75, 76, 232, 231, 248, 75, 246, 233, 76, 237, 234, 235, 141, 76, 142, 240, 668, 238, 143, 321, 75, 144, 247, 239, 236, 145, 146, 76, 76, 147, 148, 248, 149, 75, 150, 75, 253, 237, 668, 668, 141, 76, 142, 76, 238, 256, 143, 75, 144, 574, 239, 668, 145, 146, 255, 76, 147, 148, 668, 149, 75, 150, 151, 253, 75, 619, 152, 249, 76, 153, 154, 668, 76, 256, 251, 252, 155, 574, 75, 156, 75, 668, 255, 668, 250, 258, 76, 668, 76, 254, 151, 75, 75, 619, 152, 249, 668, 153, 154, 76, 76, 251, 252, 155, 75, 260, 156, 75, 262, 75, 241, 250, 76, 258, 242, 76, 254, 76, 75, 259, 620, 70, 243, 173, 161, 668, 76, 668, 162, 668, 244, 163, 164, 260, 68, 262, 285, 75, 241, 274, 261, 165, 242, 75, 668, 76, 259, 75, 620, 243, 75, 76, 161, 75, 668, 76, 162, 244, 76, 163, 164, 76, 68, 668, 285, 668, 274, 261, 165, 176, 177, 273, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 75, 75, 668, 75, 75, 668, 273, 75, 76, 76, 75, 76, 76, 75, 668, 76, 75, 621, 76, 668, 75, 76, 276, 271, 76, 279, 176, 75, 76, 668, 272, 75, 286, 277, 75, 76, 668, 275, 668, 76, 278, 280, 76, 668, 263, 621, 264, 265, 668, 668, 276, 271, 668, 279, 281, 668, 266, 272, 668, 267, 286, 277, 268, 269, 275, 270, 287, 278, 280, 75, 75, 75, 263, 668, 264, 265, 75, 76, 76, 76, 75, 281, 668, 266, 76, 668, 267, 282, 76, 268, 269, 283, 270, 287, 75, 622, 668, 291, 75, 288, 292, 75, 76, 75, 284, 75, 76, 668, 289, 76, 75, 76, 668, 76, 75, 282, 75, 668, 76, 283, 290, 293, 76, 622, 76, 291, 288, 292, 294, 75, 298, 284, 668, 297, 296, 289, 637, 76, 299, 668, 295, 300, 75, 75, 301, 75, 638, 290, 293, 75, 76, 76, 668, 76, 302, 75, 294, 76, 298, 668, 297, 296, 668, 76, 637, 299, 310, 295, 304, 300, 75, 301, 303, 75, 638, 75, 320, 352, 76, 305, 75, 76, 302, 76, 75, 76, 668, 75, 76, 75, 365, 668, 76, 668, 310, 76, 304, 76, 76, 303, 668, 75, 668, 311, 320, 309, 305, 176, 177, 76, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 311, 312, 309, 75, 75, 75, 75, 316, 75, 75, 75, 76, 76, 76, 76, 76, 76, 76, 76, 668, 668, 75, 668, 668, 318, 319, 176, 317, 312, 76, 313, 75, 668, 315, 75, 75, 314, 75, 668, 76, 322, 75, 76, 76, 324, 76, 327, 668, 323, 76, 668, 332, 318, 319, 668, 317, 75, 313, 329, 668, 315, 75, 330, 314, 76, 325, 75, 326, 322, 76, 668, 324, 75, 327, 76, 328, 323, 75, 331, 668, 76, 75, 668, 336, 668, 76, 329, 334, 75, 76, 330, 335, 325, 333, 326, 337, 76, 75, 340, 75, 341, 75, 328, 339, 75, 76, 331, 76, 75, 76, 75, 668, 76, 338, 75, 334, 76, 75, 76, 335, 333, 75, 76, 346, 668, 76, 340, 75, 341, 76, 339, 668, 343, 342, 344, 76, 345, 668, 75, 347, 668, 338, 75, 668, 75, 349, 76, 350, 351, 75, 76, 346, 76, 668, 75, 668, 348, 76, 75, 343, 342, 344, 76, 345, 75, 354, 76, 347, 75, 353, 75, 361, 76, 349, 350, 351, 76, 668, 76, 355, 75, 668, 75, 348, 75, 356, 668, 668, 76, 357, 76, 358, 76, 354, 359, 75, 353, 668, 668, 361, 75, 360, 75, 76, 668, 363, 355, 75, 76, 668, 76, 668, 356, 668, 362, 76, 75, 357, 75, 358, 364, 359, 75, 75, 76, 668, 76, 668, 75, 360, 76, 76, 75, 363, 75, 366, 76, 75, 668, 75, 76, 362, 76, 367, 668, 76, 370, 76, 364, 75, 368, 668, 369, 75, 668, 373, 75, 76, 75, 372, 75, 76, 366, 371, 76, 75, 76, 374, 76, 377, 367, 375, 75, 76, 370, 668, 75, 368, 668, 369, 76, 75, 668, 373, 76, 379, 372, 668, 376, 76, 371, 668, 378, 382, 374, 380, 381, 377, 75, 375, 75, 383, 75, 668, 75, 668, 76, 668, 76, 75, 76, 387, 76, 379, 668, 376, 75, 76, 384, 378, 668, 382, 386, 385, 76, 75, 75, 75, 383, 388, 390, 75, 75, 76, 76, 76, 75, 668, 387, 76, 76, 75, 668, 668, 76, 384, 397, 75, 392, 76, 386, 385, 389, 391, 76, 76, 393, 388, 390, 75, 668, 75, 75, 75, 668, 668, 75, 76, 394, 76, 76, 76, 395, 396, 76, 75, 392, 668, 668, 389, 391, 398, 75, 76, 393, 75, 75, 515, 75, 516, 76, 401, 668, 76, 76, 394, 76, 399, 400, 395, 396, 75, 402, 404, 75, 403, 405, 408, 398, 76, 668, 75, 76, 409, 515, 75, 516, 668, 401, 76, 75, 406, 410, 76, 399, 400, 668, 668, 76, 402, 668, 404, 403, 407, 405, 408, 75, 668, 75, 75, 75, 409, 668, 75, 76, 411, 76, 76, 76, 406, 410, 76, 668, 75, 75, 75, 412, 75, 413, 415, 407, 76, 76, 76, 414, 76, 75, 75, 668, 75, 75, 75, 411, 75, 76, 76, 416, 76, 76, 76, 75, 76, 75, 412, 75, 419, 413, 415, 76, 75, 76, 414, 76, 75, 75, 418, 75, 76, 75, 420, 421, 76, 76, 416, 76, 668, 76, 430, 75, 75, 422, 668, 75, 419, 424, 76, 76, 76, 423, 332, 76, 427, 418, 428, 75, 75, 420, 421, 425, 429, 336, 426, 76, 76, 436, 75, 75, 422, 440, 75, 668, 668, 424, 76, 76, 423, 431, 76, 441, 427, 435, 428, 442, 434, 668, 425, 75, 429, 426, 75, 437, 443, 436, 75, 76, 668, 440, 76, 75, 444, 438, 76, 668, 431, 439, 441, 76, 75, 435, 442, 434, 668, 668, 75, 75, 76, 75, 75, 437, 443, 445, 76, 76, 447, 76, 76, 444, 438, 448, 75, 446, 439, 75, 75, 449, 451, 75, 76, 75, 450, 76, 76, 668, 668, 76, 668, 76, 445, 668, 668, 447, 452, 75, 75, 668, 668, 448, 446, 668, 668, 76, 76, 449, 451, 75, 459, 453, 450, 75, 668, 75, 668, 76, 76, 455, 75, 76, 454, 76, 452, 75, 75, 75, 76, 668, 668, 456, 457, 76, 76, 76, 75, 458, 453, 75, 668, 668, 75, 460, 76, 668, 455, 76, 463, 454, 76, 668, 668, 75, 462, 467, 464, 668, 456, 457, 461, 76, 668, 76, 458, 75, 75, 75, 668, 75, 460, 75, 75, 76, 76, 76, 463, 76, 465, 76, 76, 462, 668, 75, 464, 668, 466, 461, 75, 668, 470, 76, 668, 75, 469, 668, 76, 471, 668, 75, 472, 76, 668, 468, 75, 75, 465, 76, 75, 668, 476, 75, 76, 76, 466, 75, 76, 473, 470, 76, 668, 75, 469, 76, 75, 471, 75, 668, 472, 76, 468, 668, 76, 478, 76, 477, 668, 482, 476, 479, 75, 668, 484, 668, 473, 75, 75, 480, 76, 483, 75, 481, 668, 76, 76, 75, 668, 75, 76, 75, 478, 75, 477, 76, 482, 76, 479, 76, 75, 76, 484, 75, 485, 668, 480, 487, 76, 483, 481, 76, 668, 486, 490, 75, 491, 494, 75, 75, 488, 75, 489, 76, 76, 76, 76, 76, 75, 76, 75, 485, 668, 75, 668, 487, 76, 75, 76, 668, 486, 76, 490, 75, 75, 76, 75, 488, 492, 493, 489, 76, 76, 75, 76, 75, 495, 668, 75, 75, 497, 76, 75, 76, 496, 498, 76, 76, 668, 668, 76, 668, 75, 75, 75, 492, 493, 499, 500, 502, 76, 76, 76, 495, 75, 668, 504, 505, 497, 668, 668, 496, 76, 498, 503, 507, 668, 75, 506, 668, 75, 75, 75, 668, 499, 76, 500, 502, 76, 76, 76, 75, 75, 504, 75, 505, 75, 668, 75, 76, 76, 503, 76, 507, 76, 506, 76, 75, 509, 75, 668, 508, 510, 512, 75, 76, 513, 76, 75, 511, 75, 75, 76, 75, 75, 75, 76, 668, 76, 76, 668, 76, 76, 76, 75, 509, 668, 527, 508, 510, 75, 512, 76, 523, 513, 76, 511, 75, 76, 668, 521, 75, 75, 75, 522, 76, 529, 524, 525, 76, 76, 76, 668, 668, 76, 530, 668, 75, 75, 668, 526, 523, 75, 76, 75, 76, 76, 521, 668, 668, 76, 522, 76, 75, 524, 525, 528, 75, 75, 668, 668, 76, 531, 668, 75, 76, 76, 526, 536, 75, 75, 535, 76, 532, 537, 668, 668, 76, 76, 75, 75, 75, 668, 528, 533, 534, 668, 76, 76, 76, 531, 668, 539, 538, 540, 536, 546, 75, 535, 541, 532, 75, 537, 668, 76, 76, 668, 668, 668, 76, 548, 533, 534, 668, 543, 542, 545, 75, 76, 539, 538, 540, 75, 75, 551, 76, 541, 544, 75, 75, 76, 76, 76, 668, 668, 547, 76, 76, 668, 668, 75, 543, 542, 545, 668, 75, 549, 552, 76, 556, 75, 558, 550, 76, 544, 75, 668, 76, 76, 76, 75, 75, 547, 76, 554, 668, 553, 668, 76, 76, 668, 668, 75, 549, 555, 552, 75, 75, 557, 550, 76, 75, 565, 75, 76, 76, 75, 75, 75, 76, 76, 76, 554, 553, 76, 76, 76, 75, 668, 668, 668, 555, 75, 668, 563, 76, 557, 560, 561, 668, 76, 559, 562, 75, 75, 75, 75, 564, 566, 75, 75, 76, 76, 76, 76, 576, 668, 76, 76, 668, 668, 563, 668, 76, 560, 75, 561, 575, 559, 567, 562, 668, 75, 76, 564, 569, 566, 75, 668, 568, 76, 75, 75, 75, 75, 76, 577, 668, 668, 76, 76, 76, 76, 75, 668, 575, 567, 75, 668, 75, 668, 76, 569, 75, 75, 76, 568, 76, 580, 75, 581, 76, 76, 75, 577, 75, 75, 76, 578, 579, 75, 76, 75, 76, 76, 583, 75, 668, 76, 75, 76, 668, 75, 582, 76, 580, 584, 76, 581, 585, 76, 586, 668, 587, 75, 578, 579, 75, 75, 590, 588, 75, 76, 583, 75, 76, 76, 76, 75, 76, 582, 668, 76, 668, 584, 75, 76, 585, 75, 586, 668, 587, 75, 76, 596, 668, 76, 75, 588, 591, 76, 592, 76, 589, 75, 76, 668, 75, 75, 603, 75, 668, 76, 75, 593, 76, 76, 76, 76, 595, 75, 76, 668, 668, 75, 597, 591, 75, 76, 592, 589, 604, 76, 668, 594, 76, 668, 668, 668, 668, 75, 593, 75, 75, 598, 605, 595, 607, 76, 75, 76, 76, 75, 597, 75, 668, 606, 76, 75, 604, 76, 594, 76, 609, 668, 75, 76, 668, 75, 608, 75, 598, 605, 76, 75, 607, 76, 610, 76, 75, 75, 668, 76, 606, 75, 75, 75, 76, 76, 613, 612, 609, 76, 76, 76, 614, 608, 75, 75, 75, 615, 618, 611, 75, 610, 76, 76, 76, 627, 668, 668, 76, 75, 75, 668, 628, 623, 613, 612, 616, 76, 76, 617, 614, 626, 668, 668, 75, 615, 618, 75, 75, 75, 624, 625, 76, 75, 75, 76, 76, 76, 668, 630, 623, 76, 76, 616, 75, 629, 617, 632, 631, 626, 668, 668, 76, 75, 633, 639, 75, 624, 625, 634, 75, 76, 75, 76, 76, 642, 630, 668, 76, 75, 76, 75, 629, 643, 75, 632, 631, 76, 635, 76, 627, 633, 76, 668, 641, 75, 634, 628, 75, 636, 75, 640, 75, 76, 75, 75, 76, 668, 76, 75, 76, 668, 76, 76, 668, 635, 642, 76, 644, 645, 668, 668, 641, 75, 643, 75, 636, 668, 640, 647, 651, 76, 75, 76, 75, 646, 668, 668, 75, 650, 76, 75, 76, 75, 652, 644, 76, 645, 75, 76, 668, 76, 75, 668, 668, 668, 76, 647, 651, 653, 76, 75, 646, 654, 655, 656, 650, 75, 332, 76, 75, 658, 652, 75, 75, 76, 75, 75, 76, 668, 75, 76, 76, 657, 76, 76, 75, 653, 76, 668, 654, 75, 655, 656, 76, 659, 75, 662, 658, 76, 661, 75, 668, 660, 76, 75, 663, 668, 668, 76, 657, 668, 668, 76, 668, 668, 668, 668, 668, 667, 668, 668, 659, 668, 664, 662, 665, 661, 668, 668, 660, 668, 668, 666, 663, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 667, 668, 668, 668, 668, 668, 665, 668, 668, 668, 668, 668, 668, 666, 55, 55, 55, 55, 55, 55, 57, 57, 57, 57, 57, 57, 60, 60, 60, 60, 60, 60, 63, 63, 63, 63, 63, 63, 77, 77, 77, 77, 169, 169, 169, 169, 169, 169, 171, 171, 171, 171, 171, 171, 175, 668, 175, 175, 175, 175, 178, 668, 178, 178, 178, 178, 181, 668, 181, 181, 181, 181, 307, 307, 307, 308, 668, 308, 308, 432, 668, 432, 432, 432, 432, 474, 668, 474, 474, 474, 474, 501, 501, 11, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668 } ; static yyconst flex_int16_t yy_chk[2792] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 16, 19, 16, 2, 21, 2, 21, 23, 23, 682, 31, 37, 19, 33, 2, 441, 47, 21, 31, 37, 63, 33, 63, 64, 47, 64, 77, 31, 35, 34, 33, 31, 627, 47, 77, 31, 35, 34, 33, 627, 19, 31, 441, 97, 33, 21, 28, 33, 49, 35, 34, 97, 679, 638, 28, 31, 49, 34, 33, 31, 34, 47, 637, 31, 28, 28, 33, 36, 31, 475, 51, 33, 97, 433, 33, 36, 28, 35, 34, 49, 28, 28, 28, 83, 34, 51, 437, 34, 54, 36, 54, 83, 28, 28, 39, 380, 36, 36, 332, 97, 83, 54, 39, 28, 439, 113, 49, 28, 28, 28, 29, 39, 40, 113, 437, 571, 308, 36, 29, 39, 40, 167, 78, 36, 36, 39, 41, 29, 83, 54, 78, 29, 439, 40, 41, 29, 167, 127, 132, 39, 67, 29, 571, 40, 29, 127, 132, 39, 68, 40, 68, 67, 39, 68, 70, 29, 41, 78, 41, 29, 41, 40, 307, 29, 440, 70, 182, 442, 29, 46, 40, 29, 30, 71, 79, 71, 40, 46, 515, 67, 30, 180, 79, 41, 78, 41, 71, 41, 179, 30, 80, 572, 440, 70, 82, 442, 30, 30, 80, 46, 30, 46, 82, 30, 46, 79, 515, 178, 81, 30, 80, 516, 87, 82, 71, 84, 81, 30, 572, 82, 87, 90, 174, 84, 30, 30, 46, 30, 46, 90, 30, 46, 79, 573, 84, 85, 30, 32, 80, 516, 86, 82, 81, 85, 171, 32, 89, 82, 86, 91, 183, 88, 87, 94, 89, 90, 85, 91, 183, 88, 573, 94, 84, 85, 574, 32, 169, 32, 32, 81, 86, 32, 88, 168, 32, 61, 86, 32, 130, 87, 56, 89, 90, 91, 85, 92, 130, 94, 95, 53, 85, 574, 32, 92, 32, 32, 95, 86, 32, 96, 88, 32, 52, 86, 32, 38, 92, 96, 89, 93, 91, 108, 98, 38, 94, 130, 92, 93, 96, 108, 98, 96, 38, 25, 95, 99, 38, 102, 108, 517, 38, 98, 100, 99, 92, 102, 38, 93, 93, 93, 100, 38, 130, 92, 93, 101, 96, 107, 98, 96, 38, 95, 100, 101, 38, 107, 108, 517, 38, 98, 99, 102, 185, 38, 93, 93, 93, 101, 38, 42, 185, 93, 20, 42, 103, 98, 105, 42, 18, 101, 100, 107, 103, 42, 105, 109, 42, 99, 102, 42, 104, 106, 110, 109, 14, 101, 13, 42, 104, 106, 110, 42, 103, 11, 105, 42, 101, 8, 107, 7, 42, 104, 112, 42, 6, 104, 42, 43, 187, 106, 112, 109, 104, 110, 111, 43, 187, 120, 121, 103, 519, 105, 111, 114, 43, 120, 121, 115, 43, 104, 5, 114, 43, 104, 4, 115, 106, 118, 109, 104, 110, 3, 112, 43, 43, 118, 0, 0, 519, 111, 111, 120, 43, 122, 115, 114, 43, 116, 121, 115, 43, 122, 115, 115, 0, 116, 117, 118, 0, 112, 43, 43, 44, 122, 117, 116, 111, 111, 120, 125, 44, 115, 114, 122, 195, 121, 115, 125, 117, 115, 115, 44, 195, 44, 118, 0, 117, 44, 198, 129, 44, 122, 117, 116, 44, 44, 198, 129, 44, 44, 122, 44, 128, 44, 124, 125, 117, 0, 0, 44, 128, 44, 124, 117, 129, 44, 123, 44, 520, 117, 0, 44, 44, 128, 123, 44, 44, 0, 44, 126, 44, 45, 125, 131, 599, 45, 123, 126, 45, 45, 0, 131, 129, 124, 124, 45, 520, 136, 45, 134, 0, 128, 0, 123, 131, 136, 0, 134, 126, 45, 119, 133, 599, 45, 123, 0, 45, 45, 119, 133, 124, 124, 45, 135, 134, 45, 48, 136, 140, 119, 123, 135, 131, 119, 48, 126, 140, 148, 133, 600, 173, 119, 173, 48, 0, 148, 0, 48, 0, 119, 48, 48, 134, 173, 136, 148, 139, 119, 140, 135, 48, 119, 205, 0, 139, 133, 208, 600, 119, 210, 205, 48, 212, 0, 208, 48, 119, 210, 48, 48, 212, 173, 0, 148, 0, 140, 135, 48, 59, 59, 139, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 138, 142, 0, 141, 144, 0, 139, 149, 138, 142, 143, 141, 144, 145, 0, 149, 215, 601, 143, 0, 146, 145, 142, 138, 215, 144, 59, 137, 146, 0, 138, 150, 149, 143, 216, 137, 0, 141, 0, 150, 143, 145, 216, 0, 137, 601, 137, 137, 0, 0, 142, 138, 0, 144, 146, 0, 137, 138, 0, 137, 149, 143, 137, 137, 141, 137, 150, 143, 145, 151, 147, 154, 137, 0, 137, 137, 153, 151, 147, 154, 152, 146, 0, 137, 153, 0, 137, 147, 152, 137, 137, 147, 137, 150, 155, 602, 0, 153, 157, 151, 154, 158, 155, 156, 147, 159, 157, 0, 152, 158, 160, 156, 0, 159, 162, 147, 161, 0, 160, 147, 152, 155, 162, 602, 161, 153, 151, 154, 156, 163, 159, 147, 0, 158, 157, 152, 619, 163, 160, 0, 156, 161, 164, 165, 162, 166, 621, 152, 155, 186, 164, 165, 0, 166, 163, 197, 156, 186, 159, 0, 158, 157, 0, 197, 619, 160, 186, 156, 165, 161, 184, 162, 164, 188, 621, 224, 197, 230, 184, 166, 238, 188, 163, 224, 239, 230, 0, 242, 238, 246, 247, 0, 239, 0, 186, 242, 165, 246, 247, 164, 0, 189, 0, 188, 197, 184, 166, 177, 177, 189, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 188, 189, 184, 190, 191, 192, 194, 193, 196, 201, 204, 190, 191, 192, 194, 193, 196, 201, 204, 0, 0, 199, 0, 0, 194, 196, 177, 193, 189, 199, 190, 200, 0, 192, 202, 203, 191, 206, 0, 200, 199, 207, 202, 203, 201, 206, 204, 0, 200, 207, 0, 211, 194, 196, 0, 193, 211, 190, 207, 0, 192, 209, 207, 191, 211, 202, 213, 203, 199, 209, 0, 201, 217, 204, 213, 206, 200, 218, 209, 0, 217, 219, 0, 214, 0, 218, 207, 213, 214, 219, 207, 213, 202, 211, 203, 214, 214, 220, 218, 222, 219, 221, 206, 217, 225, 220, 209, 222, 223, 221, 228, 0, 225, 214, 248, 213, 223, 229, 228, 213, 211, 226, 248, 225, 0, 229, 218, 227, 219, 226, 217, 0, 221, 220, 222, 227, 223, 0, 231, 226, 0, 214, 233, 0, 232, 227, 231, 228, 229, 234, 233, 225, 232, 0, 241, 0, 226, 234, 237, 221, 220, 222, 241, 223, 249, 232, 237, 226, 235, 231, 236, 241, 249, 227, 228, 229, 235, 0, 236, 233, 240, 0, 243, 226, 244, 234, 0, 0, 240, 235, 243, 236, 244, 232, 237, 245, 231, 0, 0, 241, 250, 240, 251, 245, 0, 244, 233, 252, 250, 0, 251, 0, 234, 0, 243, 252, 253, 235, 254, 236, 245, 237, 255, 256, 253, 0, 254, 0, 257, 240, 255, 256, 258, 244, 259, 250, 257, 260, 0, 262, 258, 243, 259, 252, 0, 260, 256, 262, 245, 263, 254, 0, 255, 261, 0, 259, 264, 263, 277, 258, 265, 261, 250, 257, 264, 268, 277, 260, 265, 263, 252, 261, 267, 268, 256, 0, 272, 254, 0, 255, 267, 269, 0, 259, 272, 265, 258, 0, 261, 269, 257, 0, 264, 267, 260, 266, 266, 263, 271, 261, 266, 268, 270, 0, 273, 0, 271, 0, 266, 275, 270, 272, 273, 265, 0, 261, 274, 275, 269, 264, 0, 267, 271, 270, 274, 278, 276, 279, 268, 273, 275, 280, 281, 278, 276, 279, 282, 0, 272, 280, 281, 283, 0, 0, 282, 269, 284, 285, 279, 283, 271, 270, 274, 276, 284, 285, 280, 273, 275, 288, 0, 286, 287, 289, 0, 0, 290, 288, 281, 286, 287, 289, 282, 283, 290, 291, 279, 0, 0, 274, 276, 285, 292, 291, 280, 293, 295, 438, 296, 438, 292, 289, 0, 293, 295, 281, 296, 286, 287, 282, 283, 297, 290, 292, 294, 291, 293, 295, 285, 297, 0, 299, 294, 296, 438, 298, 438, 0, 289, 299, 300, 294, 297, 298, 286, 287, 0, 0, 300, 290, 0, 292, 291, 294, 293, 295, 302, 0, 301, 303, 304, 296, 0, 305, 302, 298, 301, 303, 304, 294, 297, 305, 0, 309, 310, 311, 300, 312, 301, 303, 294, 309, 310, 311, 302, 312, 313, 314, 0, 315, 317, 318, 298, 319, 313, 314, 304, 315, 317, 318, 320, 319, 322, 300, 323, 313, 301, 303, 320, 329, 322, 302, 323, 324, 325, 310, 326, 329, 327, 318, 319, 324, 325, 304, 326, 0, 327, 330, 328, 331, 322, 0, 335, 313, 324, 330, 328, 331, 323, 333, 335, 326, 310, 327, 333, 334, 318, 319, 325, 328, 336, 325, 333, 334, 335, 339, 342, 322, 337, 338, 0, 0, 324, 339, 342, 323, 331, 338, 337, 326, 334, 327, 337, 333, 0, 325, 340, 328, 325, 343, 336, 338, 335, 341, 340, 0, 337, 343, 346, 339, 336, 341, 0, 331, 336, 337, 346, 344, 334, 337, 333, 0, 0, 345, 347, 344, 348, 349, 336, 338, 340, 345, 347, 343, 348, 349, 339, 336, 344, 351, 341, 336, 353, 350, 345, 348, 354, 351, 355, 347, 353, 350, 0, 0, 354, 0, 355, 340, 0, 0, 343, 350, 356, 357, 0, 0, 344, 341, 0, 0, 356, 357, 345, 348, 358, 359, 353, 347, 360, 0, 361, 0, 358, 359, 355, 362, 360, 354, 361, 350, 364, 363, 366, 362, 0, 0, 356, 357, 364, 363, 366, 367, 358, 353, 368, 0, 0, 369, 361, 367, 0, 355, 368, 366, 354, 369, 0, 0, 370, 364, 372, 368, 0, 356, 357, 363, 370, 0, 372, 358, 371, 373, 374, 0, 375, 361, 376, 377, 371, 373, 374, 366, 375, 370, 376, 377, 364, 0, 378, 368, 0, 371, 363, 379, 0, 376, 378, 0, 382, 375, 0, 379, 377, 0, 384, 378, 382, 0, 374, 383, 385, 370, 384, 388, 0, 382, 386, 383, 385, 371, 387, 388, 379, 376, 386, 0, 390, 375, 387, 389, 377, 391, 0, 378, 390, 374, 0, 389, 384, 391, 383, 0, 388, 382, 385, 392, 0, 390, 0, 379, 393, 394, 386, 392, 389, 395, 387, 0, 393, 394, 396, 0, 398, 395, 401, 384, 400, 383, 396, 388, 398, 385, 401, 402, 400, 390, 399, 392, 0, 386, 395, 402, 389, 387, 399, 0, 393, 400, 403, 404, 407, 405, 406, 398, 408, 399, 403, 404, 407, 405, 406, 409, 408, 410, 392, 0, 412, 0, 395, 409, 411, 410, 0, 393, 412, 400, 413, 414, 411, 415, 398, 405, 406, 399, 413, 414, 416, 415, 419, 409, 0, 421, 418, 411, 416, 420, 419, 410, 414, 421, 418, 0, 0, 420, 0, 423, 424, 422, 405, 406, 415, 416, 418, 423, 424, 422, 409, 425, 0, 419, 420, 411, 0, 0, 410, 425, 414, 418, 422, 0, 426, 420, 0, 427, 429, 428, 0, 415, 426, 416, 418, 427, 429, 428, 431, 434, 419, 435, 420, 436, 0, 443, 431, 434, 418, 435, 422, 436, 420, 443, 444, 427, 445, 0, 426, 428, 434, 446, 444, 435, 445, 447, 431, 448, 450, 446, 449, 451, 452, 447, 0, 448, 450, 0, 449, 451, 452, 453, 427, 0, 454, 426, 428, 455, 434, 453, 449, 435, 454, 431, 456, 455, 0, 446, 458, 457, 460, 447, 456, 461, 450, 451, 458, 457, 460, 0, 0, 461, 462, 0, 464, 465, 0, 453, 449, 466, 462, 463, 464, 465, 446, 0, 0, 466, 447, 463, 468, 450, 451, 457, 469, 470, 0, 0, 468, 463, 0, 471, 469, 470, 453, 465, 472, 473, 464, 471, 463, 468, 0, 0, 472, 473, 476, 477, 479, 0, 457, 463, 463, 0, 476, 477, 479, 463, 0, 470, 469, 471, 465, 480, 478, 464, 472, 463, 481, 468, 0, 480, 478, 0, 0, 0, 481, 482, 463, 463, 0, 477, 476, 479, 483, 482, 470, 469, 471, 484, 485, 486, 483, 472, 478, 487, 488, 484, 485, 486, 0, 0, 481, 487, 488, 0, 0, 489, 477, 476, 479, 0, 490, 483, 487, 489, 492, 495, 496, 484, 490, 478, 493, 0, 492, 495, 496, 497, 498, 481, 493, 489, 0, 488, 0, 497, 498, 0, 0, 499, 483, 490, 487, 504, 500, 493, 484, 499, 505, 506, 502, 504, 500, 507, 503, 508, 505, 506, 502, 489, 488, 507, 503, 508, 509, 0, 0, 0, 490, 510, 0, 504, 509, 493, 500, 502, 0, 510, 499, 503, 511, 513, 512, 521, 505, 509, 522, 523, 511, 513, 512, 521, 524, 0, 522, 523, 0, 0, 504, 0, 524, 500, 525, 502, 521, 499, 510, 503, 0, 526, 525, 505, 512, 509, 532, 0, 511, 526, 528, 531, 533, 534, 532, 525, 0, 0, 528, 531, 533, 534, 535, 0, 521, 510, 536, 0, 537, 0, 535, 512, 538, 539, 536, 511, 537, 532, 542, 535, 538, 539, 540, 525, 544, 541, 542, 528, 531, 543, 540, 545, 544, 541, 539, 547, 0, 543, 549, 545, 0, 550, 537, 547, 532, 540, 549, 535, 541, 550, 543, 0, 545, 552, 528, 531, 553, 554, 555, 549, 557, 552, 539, 559, 553, 554, 555, 560, 557, 537, 0, 559, 0, 540, 561, 560, 541, 563, 543, 0, 545, 562, 561, 564, 0, 563, 566, 549, 557, 562, 560, 564, 553, 567, 566, 0, 568, 569, 575, 577, 0, 567, 578, 561, 568, 569, 575, 577, 563, 579, 578, 0, 0, 582, 567, 557, 580, 579, 560, 553, 577, 582, 0, 562, 580, 0, 0, 0, 0, 581, 561, 583, 584, 569, 578, 563, 580, 581, 585, 583, 584, 586, 567, 587, 0, 579, 585, 588, 577, 586, 562, 587, 583, 0, 589, 588, 0, 591, 581, 592, 569, 578, 589, 593, 580, 591, 585, 592, 594, 597, 0, 593, 579, 598, 595, 604, 594, 597, 591, 589, 583, 598, 595, 604, 593, 581, 605, 606, 607, 594, 598, 588, 613, 585, 605, 606, 607, 608, 0, 0, 613, 609, 608, 0, 608, 604, 591, 589, 595, 609, 608, 595, 593, 607, 0, 0, 612, 594, 598, 610, 611, 614, 605, 606, 612, 615, 616, 610, 611, 614, 0, 609, 604, 615, 616, 595, 617, 608, 595, 611, 610, 607, 0, 0, 617, 618, 612, 623, 624, 605, 606, 614, 625, 618, 626, 623, 624, 628, 609, 0, 625, 630, 626, 631, 608, 628, 632, 611, 610, 630, 617, 631, 629, 612, 632, 0, 626, 629, 614, 629, 633, 618, 634, 625, 635, 629, 636, 641, 633, 0, 634, 640, 635, 0, 636, 641, 0, 617, 642, 640, 632, 633, 0, 0, 626, 644, 642, 645, 618, 0, 625, 636, 641, 644, 647, 645, 646, 634, 0, 0, 650, 640, 647, 654, 646, 651, 644, 632, 650, 633, 652, 654, 0, 651, 653, 0, 0, 0, 652, 636, 641, 646, 653, 655, 634, 647, 651, 652, 640, 656, 658, 655, 657, 654, 644, 658, 659, 656, 660, 661, 657, 0, 663, 658, 659, 653, 660, 661, 662, 646, 663, 0, 647, 664, 651, 652, 662, 655, 665, 660, 654, 664, 657, 666, 0, 656, 665, 667, 662, 0, 0, 666, 653, 0, 0, 667, 0, 0, 0, 0, 0, 666, 0, 0, 655, 0, 663, 660, 664, 657, 0, 0, 656, 0, 0, 665, 662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 666, 0, 0, 0, 0, 0, 664, 0, 0, 0, 0, 0, 0, 665, 669, 669, 669, 669, 669, 669, 670, 670, 670, 670, 670, 670, 671, 671, 671, 671, 671, 671, 672, 672, 672, 672, 672, 672, 673, 673, 673, 673, 674, 674, 674, 674, 674, 674, 675, 675, 675, 675, 675, 675, 676, 0, 676, 676, 676, 676, 677, 0, 677, 677, 677, 677, 678, 0, 678, 678, 678, 678, 680, 680, 680, 681, 0, 681, 681, 683, 0, 683, 683, 683, 683, 684, 0, 684, 684, 684, 684, 685, 685, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668, 668 } ; extern int yy_flex_debug; int yy_flex_debug = 0; static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; static char *yy_full_match; static int yy_lp; static int yy_looking_for_trail_begin = 0; static int yy_full_lp; static int *yy_full_state; #define YY_TRAILING_MASK 0x2000 #define YY_TRAILING_HEAD_MASK 0x4000 #define REJECT \ { \ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ (yy_lp) = (yy_full_lp); /* restore orig. accepting pos. */ \ (yy_state_ptr) = (yy_full_state); /* restore orig. state */ \ yy_current_state = *(yy_state_ptr); /* restore curr. state */ \ ++(yy_lp); \ goto find_rule; \ } static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() ((yy_more_flag) = 1) #define YY_MORE_ADJ (yy_more_len) #define YY_RESTORE_YY_MORE_OFFSET char *yytext; /* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de FLEX part This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ #include #include "bison.h" /* get tokens from BISON */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* definitions of yabasic */ #endif extern int mylineno; int import_lib(char *); /* import library */ #define MAX_INCLUDE_DEPTH 5 #define MAX_INCLUDE_NUMBER 100 static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH]; /* stack for included libraries */ int include_depth; /* current position in libfile_stack */ struct libfile_name *libfile_stack[MAX_INCLUDE_DEPTH]; /* stack for library file names */ int libfile_chain_length=0; /* length of libfile_chain */ struct libfile_name *libfile_chain[MAX_INCLUDE_NUMBER]; /* list of all library file names in order of appearance */ struct libfile_name *currlib; /* current libfile as relevant to bison */ int inlib; /* true, while in library */ int fi_pending=0; /* true, if within a short if */ int flex_line=0; /* line number counted in flex */ #define INITIAL 0 #define PRELNO 1 #define PASTLNO 2 #define IMPORT 3 #define IMPORT_DONE 4 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * _in_str ); FILE *yyget_out (void ); void yyset_out (FILE * _out_str ); yy_size_t yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int _line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef YY_NO_UNPUT static void yyunput (int c,char *buf_ptr ); #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK /*LINTED*/break; #endif #define YY_RULE_SETUP \ if ( yyleng > 0 ) \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif /* Create the reject buffer large enough to save one state per allowed character. */ if ( ! (yy_state_buf) ) (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); if ( ! (yy_state_buf) ) YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } { while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); (yy_more_flag) = 0; } yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); (yy_state_ptr) = (yy_state_buf); *(yy_state_ptr)++ = yy_current_state; yy_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 669 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *(yy_state_ptr)++ = yy_current_state; ++yy_cp; } while ( yy_base[yy_current_state] != 2715 ); yy_find_action: yy_current_state = *--(yy_state_ptr); (yy_lp) = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) { yy_act = yy_acclist[(yy_lp)]; if ( yy_act & YY_TRAILING_HEAD_MASK || (yy_looking_for_trail_begin) ) { if ( yy_act == (yy_looking_for_trail_begin) ) { (yy_looking_for_trail_begin) = 0; yy_act &= ~YY_TRAILING_HEAD_MASK; break; } } else if ( yy_act & YY_TRAILING_MASK ) { (yy_looking_for_trail_begin) = yy_act & ~YY_TRAILING_MASK; (yy_looking_for_trail_begin) |= YY_TRAILING_HEAD_MASK; } else { (yy_full_match) = yy_cp; (yy_full_state) = (yy_state_ptr); (yy_full_lp) = (yy_lp); break; } ++(yy_lp); goto find_rule; } --yy_cp; yy_current_state = *--(yy_state_ptr); (yy_lp) = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(PRELNO): case YY_STATE_EOF(PASTLNO): case YY_STATE_EOF(IMPORT): case YY_STATE_EOF(IMPORT_DONE): { if (infolevel>=DEBUG) { sprintf(string,"closing file '%s'",currlib->s); error(DEBUG,string); } if (--include_depth<0) { return tEOPROG; } else { if (!is_bound) { yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(include_stack[include_depth]); } leave_lib(); flex_line+=yylval.sep=-1; return tSEP; } } YY_BREAK case 1: YY_RULE_SETUP {BEGIN(INITIAL);} /* ignore whitespace */ YY_BREAK case 2: YY_RULE_SETUP {BEGIN(PRELNO);return tLABEL;} YY_BREAK case 3: YY_RULE_SETUP { BEGIN(PASTLNO); yylval.symbol=(char *)my_strdup(yytext); return tSYMBOL; } YY_BREAK case 4: YY_RULE_SETUP {BEGIN(INITIAL);flex_line+=yylval.sep=0;yyless(0);return tSEP;} YY_BREAK case 5: /* rule 5 can match eol */ YY_RULE_SETUP {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}BEGIN(INITIAL);flex_line+=yylval.sep=1;return tSEP;} YY_BREAK case 6: /* rule 6 can match eol */ YY_RULE_SETUP {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}if (interactive && !inlib) {return tEOPROG;} else {flex_line+=yylval.sep=2;return tSEP;}} YY_BREAK case 7: /* rule 7 can match eol */ YY_RULE_SETUP {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}flex_line+=yylval.sep=1;return tSEP;} YY_BREAK case 8: YY_RULE_SETUP {if (fi_pending && check_compat) error_with_line(WARNING,"short-if has changed in version 2.71",flex_line);flex_line+=yylval.sep=0;return tSEP;} YY_BREAK case 9: YY_RULE_SETUP {flex_line+=yylval.sep=0;return tSEP;} /* comments span 'til end of line */ YY_BREAK case 10: YY_RULE_SETUP {flex_line+=yylval.sep=0;return tSEP;} /* comments span 'til end of line */ YY_BREAK case 11: /* rule 11 can match eol */ YY_RULE_SETUP {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}flex_line+=yylval.sep=1;return tSEP;} YY_BREAK case 12: YY_RULE_SETUP {yymore();} YY_BREAK case 13: YY_RULE_SETUP {BEGIN(IMPORT);} YY_BREAK case 14: YY_RULE_SETUP {if (!import_lib(my_strdup(yytext))) return tSEP;BEGIN(IMPORT_DONE);return tIMPORT;} YY_BREAK case 15: YY_RULE_SETUP {error_with_line(WARNING,"invalid import statement; please check documentation.",flex_line);} YY_BREAK case 16: /* rule 16 can match eol */ YY_RULE_SETUP {if (yytext[0]=='\n' && fi_pending) {fi_pending--;yyless(0);return tENDIF;}BEGIN(INITIAL);yyless(0);flex_line+=yylval.sep=0;return tSEP;} YY_BREAK case 17: YY_RULE_SETUP { char *where=strpbrk(yytext," \t\r\f\v"); yylval.docu=(char *)my_strdup(where ? where+1 : NULL); return tDOCU; } YY_BREAK case 18: /* rule 18 can match eol */ YY_RULE_SETUP {flex_line+=yylval.sep=1;return tSEP;} /* '#' as first character may introduce comments too */ YY_BREAK case 19: /* rule 19 can match eol */ YY_RULE_SETUP {flex_line+=yylval.sep=1;return tSEP;} /* ' as first character may introduce comments too */ YY_BREAK case 20: YY_RULE_SETUP return tEXECUTE; YY_BREAK case 21: YY_RULE_SETUP return tEXECUTE2; YY_BREAK case 22: YY_RULE_SETUP return tCOMPILE; YY_BREAK case 23: YY_RULE_SETUP return tRUNTIME_CREATED_SUB; YY_BREAK case 24: YY_RULE_SETUP return tENDSUB; YY_BREAK case 25: YY_RULE_SETUP return tENDIF; YY_BREAK case 26: YY_RULE_SETUP return tENDIF; YY_BREAK case 27: YY_RULE_SETUP return tWEND; YY_BREAK case 28: YY_RULE_SETUP return tWEND; YY_BREAK case 29: YY_RULE_SETUP return tSEND; YY_BREAK case 30: YY_RULE_SETUP return tSEND; YY_BREAK case 31: YY_RULE_SETUP return tSEND; YY_BREAK case 32: YY_RULE_SETUP return tSEND; YY_BREAK case 33: YY_RULE_SETUP return tEXPORT; YY_BREAK case 34: YY_RULE_SETUP return tERROR; YY_BREAK case 35: YY_RULE_SETUP return tFOR; YY_BREAK case 36: YY_RULE_SETUP return tBREAK; YY_BREAK case 37: YY_RULE_SETUP return tSWITCH; YY_BREAK case 38: YY_RULE_SETUP return tCASE; YY_BREAK case 39: YY_RULE_SETUP return tDEFAULT; YY_BREAK case 40: YY_RULE_SETUP return tLOOP; YY_BREAK case 41: YY_RULE_SETUP return tDO; YY_BREAK case 42: YY_RULE_SETUP return tTO; YY_BREAK case 43: YY_RULE_SETUP return tAS; YY_BREAK case 44: YY_RULE_SETUP return tREADING; YY_BREAK case 45: YY_RULE_SETUP return tWRITING; YY_BREAK case 46: YY_RULE_SETUP return tSTEP; YY_BREAK case 47: YY_RULE_SETUP return tNEXT; YY_BREAK case 48: YY_RULE_SETUP return tWHILE; YY_BREAK case 49: YY_RULE_SETUP return tWEND; YY_BREAK case 50: YY_RULE_SETUP return tREPEAT; YY_BREAK case 51: YY_RULE_SETUP return tUNTIL; YY_BREAK case 52: YY_RULE_SETUP return tGOTO; YY_BREAK case 53: YY_RULE_SETUP return tGOSUB; YY_BREAK case 54: YY_RULE_SETUP return tSUB; YY_BREAK case 55: YY_RULE_SETUP return tSUB; YY_BREAK case 56: YY_RULE_SETUP return tLOCAL; YY_BREAK case 57: YY_RULE_SETUP return tSTATIC; YY_BREAK case 58: YY_RULE_SETUP return tON; YY_BREAK case 59: YY_RULE_SETUP return tINTERRUPT; YY_BREAK case 60: YY_RULE_SETUP return tCONTINUE; YY_BREAK case 61: YY_RULE_SETUP return tLABEL; YY_BREAK case 62: YY_RULE_SETUP return tIF; YY_BREAK case 63: YY_RULE_SETUP return tTHEN; YY_BREAK case 64: YY_RULE_SETUP return tELSE; YY_BREAK case 65: YY_RULE_SETUP return tELSIF; YY_BREAK case 66: YY_RULE_SETUP return tELSIF; YY_BREAK case 67: YY_RULE_SETUP return tENDIF; YY_BREAK case 68: YY_RULE_SETUP return tENDIF; YY_BREAK case 69: YY_RULE_SETUP return tOPEN; YY_BREAK case 70: YY_RULE_SETUP return tCLOSE; YY_BREAK case 71: YY_RULE_SETUP return tSEEK; YY_BREAK case 72: YY_RULE_SETUP return tTELL; YY_BREAK case 73: YY_RULE_SETUP return tPRINT; YY_BREAK case 74: YY_RULE_SETUP return tUSING; YY_BREAK case 75: YY_RULE_SETUP return tREVERSE; YY_BREAK case 76: YY_RULE_SETUP return tCOLOUR; YY_BREAK case 77: YY_RULE_SETUP return tCOLOUR; YY_BREAK case 78: YY_RULE_SETUP return tBACKCOLOUR; YY_BREAK case 79: YY_RULE_SETUP return tBACKCOLOUR; YY_BREAK case 80: YY_RULE_SETUP return tPRINT; YY_BREAK case 81: YY_RULE_SETUP return tINPUT; YY_BREAK case 82: YY_RULE_SETUP return tRETURN; YY_BREAK case 83: YY_RULE_SETUP return tDIM; YY_BREAK case 84: YY_RULE_SETUP return tDIM; YY_BREAK case 85: YY_RULE_SETUP return tEND; YY_BREAK case 86: YY_RULE_SETUP return tEXIT; YY_BREAK case 87: YY_RULE_SETUP return tREAD; YY_BREAK case 88: YY_RULE_SETUP return tDATA; YY_BREAK case 89: YY_RULE_SETUP return tRESTORE; YY_BREAK case 90: YY_RULE_SETUP return tAND; YY_BREAK case 91: YY_RULE_SETUP return tOR; YY_BREAK case 92: YY_RULE_SETUP return tNOT; YY_BREAK case 93: YY_RULE_SETUP return tEOR; YY_BREAK case 94: YY_RULE_SETUP return tEOR; YY_BREAK case 95: YY_RULE_SETUP return tWINDOW; YY_BREAK case 96: YY_RULE_SETUP return tORIGIN; YY_BREAK case 97: YY_RULE_SETUP return tPRINTER; YY_BREAK case 98: YY_RULE_SETUP return tDOT; YY_BREAK case 99: YY_RULE_SETUP return tLINE; YY_BREAK case 100: YY_RULE_SETUP return tCURVE; YY_BREAK case 101: YY_RULE_SETUP return tCIRCLE; YY_BREAK case 102: YY_RULE_SETUP return tTRIANGLE; YY_BREAK case 103: YY_RULE_SETUP return tCLEAR; YY_BREAK case 104: YY_RULE_SETUP return tFILL; YY_BREAK case 105: YY_RULE_SETUP return tFILL; YY_BREAK case 106: YY_RULE_SETUP return tTEXT; YY_BREAK case 107: YY_RULE_SETUP return tRECT; YY_BREAK case 108: YY_RULE_SETUP return tRECT; YY_BREAK case 109: YY_RULE_SETUP return tRECT; YY_BREAK case 110: YY_RULE_SETUP return tPUTBIT; YY_BREAK case 111: YY_RULE_SETUP return tPUTBIT; YY_BREAK case 112: YY_RULE_SETUP return tPUTBIT; YY_BREAK case 113: YY_RULE_SETUP return tGETBIT; YY_BREAK case 114: YY_RULE_SETUP return tGETBIT; YY_BREAK case 115: YY_RULE_SETUP return tGETBIT; YY_BREAK case 116: YY_RULE_SETUP return tPUTCHAR; YY_BREAK case 117: YY_RULE_SETUP return tGETCHAR; YY_BREAK case 118: YY_RULE_SETUP return tNEW; YY_BREAK case 119: YY_RULE_SETUP return tWAIT; YY_BREAK case 120: YY_RULE_SETUP return tWAIT; YY_BREAK case 121: YY_RULE_SETUP return tWAIT; YY_BREAK case 122: YY_RULE_SETUP return tBELL; YY_BREAK case 123: YY_RULE_SETUP return tBELL; YY_BREAK case 124: YY_RULE_SETUP return tLET; YY_BREAK case 125: YY_RULE_SETUP return tARDIM; YY_BREAK case 126: YY_RULE_SETUP return tARDIM; YY_BREAK case 127: YY_RULE_SETUP return tARSIZE; YY_BREAK case 128: YY_RULE_SETUP {yylval.symbol=(char *)my_strdup("numparams"); return tSYMBOL;} YY_BREAK case 129: YY_RULE_SETUP return tBIND; YY_BREAK case 130: YY_RULE_SETUP return tSIN; YY_BREAK case 131: YY_RULE_SETUP return tASIN; YY_BREAK case 132: YY_RULE_SETUP return tCOS; YY_BREAK case 133: YY_RULE_SETUP return tACOS; YY_BREAK case 134: YY_RULE_SETUP return tTAN; YY_BREAK case 135: YY_RULE_SETUP return tATAN; YY_BREAK case 136: YY_RULE_SETUP return tEXP; YY_BREAK case 137: YY_RULE_SETUP return tLOG; YY_BREAK case 138: YY_RULE_SETUP return tSQRT; YY_BREAK case 139: YY_RULE_SETUP return tSQR; YY_BREAK case 140: YY_RULE_SETUP return tINT; YY_BREAK case 141: YY_RULE_SETUP return tFRAC; YY_BREAK case 142: YY_RULE_SETUP return tABS; YY_BREAK case 143: YY_RULE_SETUP return tSIG; YY_BREAK case 144: YY_RULE_SETUP return tMOD; YY_BREAK case 145: YY_RULE_SETUP return tRAN; YY_BREAK case 146: YY_RULE_SETUP return tMIN; YY_BREAK case 147: YY_RULE_SETUP return tMAX; YY_BREAK case 148: YY_RULE_SETUP return tLEFT; YY_BREAK case 149: YY_RULE_SETUP return tRIGHT; YY_BREAK case 150: YY_RULE_SETUP return tMID; YY_BREAK case 151: YY_RULE_SETUP return tLOWER; YY_BREAK case 152: YY_RULE_SETUP return tUPPER; YY_BREAK case 153: YY_RULE_SETUP return tLTRIM; YY_BREAK case 154: YY_RULE_SETUP return tRTRIM; YY_BREAK case 155: YY_RULE_SETUP return tTRIM; YY_BREAK case 156: YY_RULE_SETUP return tINSTR; YY_BREAK case 157: YY_RULE_SETUP return tRINSTR; YY_BREAK case 158: YY_RULE_SETUP return tLEN; YY_BREAK case 159: YY_RULE_SETUP return tVAL; YY_BREAK case 160: YY_RULE_SETUP return tMYEOF; YY_BREAK case 161: YY_RULE_SETUP return tSTR; YY_BREAK case 162: YY_RULE_SETUP return tINKEY; YY_BREAK case 163: YY_RULE_SETUP return tMOUSEX; YY_BREAK case 164: YY_RULE_SETUP return tMOUSEY; YY_BREAK case 165: YY_RULE_SETUP return tMOUSEB; YY_BREAK case 166: YY_RULE_SETUP return tMOUSEB; YY_BREAK case 167: YY_RULE_SETUP return tMOUSEMOD; YY_BREAK case 168: YY_RULE_SETUP return tMOUSEMOD; YY_BREAK case 169: YY_RULE_SETUP return tCHR; YY_BREAK case 170: YY_RULE_SETUP return tASC; YY_BREAK case 171: YY_RULE_SETUP return tHEX; YY_BREAK case 172: YY_RULE_SETUP return tBIN; YY_BREAK case 173: YY_RULE_SETUP return tDEC; YY_BREAK case 174: YY_RULE_SETUP return tAT; YY_BREAK case 175: YY_RULE_SETUP return tAT; YY_BREAK case 176: YY_RULE_SETUP return tSCREEN; YY_BREAK case 177: YY_RULE_SETUP return tSYSTEM; YY_BREAK case 178: YY_RULE_SETUP return tSYSTEM2; YY_BREAK case 179: YY_RULE_SETUP return tDATE; YY_BREAK case 180: YY_RULE_SETUP return tTIME; YY_BREAK case 181: YY_RULE_SETUP return tPEEK; YY_BREAK case 182: YY_RULE_SETUP return tPEEK2; YY_BREAK case 183: YY_RULE_SETUP return tPOKE; YY_BREAK case 184: YY_RULE_SETUP return tTOKEN; YY_BREAK case 185: YY_RULE_SETUP return tTOKENALT; YY_BREAK case 186: YY_RULE_SETUP return tSPLIT; YY_BREAK case 187: YY_RULE_SETUP return tSPLITALT; YY_BREAK case 188: YY_RULE_SETUP return tGLOB; YY_BREAK case 189: YY_RULE_SETUP return tPOW; YY_BREAK case 190: YY_RULE_SETUP return tPOW; YY_BREAK case 191: YY_RULE_SETUP return tNEQ; YY_BREAK case 192: YY_RULE_SETUP return tLEQ; YY_BREAK case 193: YY_RULE_SETUP return tGEQ; YY_BREAK case 194: YY_RULE_SETUP return tEQU; YY_BREAK case 195: YY_RULE_SETUP return tLTN; YY_BREAK case 196: YY_RULE_SETUP return tGTN; YY_BREAK case 197: YY_RULE_SETUP return tNOT; YY_BREAK case 198: YY_RULE_SETUP {return yytext[0];} YY_BREAK case 199: YY_RULE_SETUP { yylval.digits=(char *)my_strdup(yytext); return tDIGITS; } YY_BREAK case 200: YY_RULE_SETUP { { double d; sscanf(yytext,"%lg",&d); yylval.fnum=d; return tFNUM; } } YY_BREAK case 201: YY_RULE_SETUP {yylval.fnum=3.1415926535897932;return tFNUM;} YY_BREAK case 202: YY_RULE_SETUP {yylval.fnum=2.7182818284590452;return tFNUM;} YY_BREAK case 203: YY_RULE_SETUP {yylval.fnum=1; return tFNUM;} YY_BREAK case 204: YY_RULE_SETUP {yylval.fnum=0; return tFNUM;} YY_BREAK case 205: YY_RULE_SETUP { yylval.symbol=(char *)my_strdup(yytext); return tSYMBOL; } YY_BREAK /* Symbols with a trailing $-sign are treated special */ case 206: YY_RULE_SETUP { yylval.symbol=(char *)my_strdup(yytext); return tSTRSYM; } YY_BREAK case 207: /* rule 207 can match eol */ YY_RULE_SETUP { int cnt; if (yytext[yyleng-1]=='\n' && fi_pending) {fi_pending--;yyless(0);return tENDIF;} if (yytext[yyleng-1]=='\n') { yylval.string=NULL; return tSTRING; } for(cnt=0;yytext[yyleng-cnt-2]=='\\';cnt++) ; if (cnt%2) { yyless(yyleng-1); yymore(); } else { yylval.string=(char *)my_strdup(yytext+1); *(yylval.string+yyleng-2)='\0'; replace(yylval.string); return tSTRING; } } YY_BREAK case 208: YY_RULE_SETUP {if (isprint(yytext[0])) return yytext[0]; else return ' ';} YY_BREAK case 209: YY_RULE_SETUP YY_FATAL_ERROR( "flex scanner jammed" ); YY_BREAK case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of user's declarations */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); yy_size_t number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (yy_size_t) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { yy_state_type yy_current_state; char *yy_cp; yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); (yy_state_ptr) = (yy_state_buf); *(yy_state_ptr)++ = yy_current_state; for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 669 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *(yy_state_ptr)++ = yy_current_state; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { int yy_is_jam; YY_CHAR yy_c = 1; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 669 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 668); if ( ! yy_is_jam ) *(yy_state_ptr)++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT static void yyunput (int c, char * yy_bp ) { char *yy_cp; yy_cp = (yy_c_buf_p); /* undo effects of setting up yytext */ *yy_cp = (yy_hold_char); if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ yy_size_t number_to_move = (yy_n_chars) + 2; char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; char *source = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; (yytext_ptr) = yy_bp; (yy_hold_char) = *yy_cp; (yy_c_buf_p) = yy_cp; } #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return EOF; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n'); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = (yy_size_t)size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; // After all that talk, this was set to 1 anyways... (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ yy_size_t grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; yy_size_t i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg ) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param _line_number line number * */ void yyset_lineno (int _line_number ) { yylineno = _line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param _in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * _in_str ) { yyin = _in_str ; } void yyset_out (FILE * _out_str ) { yyout = _out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int _bdebug ) { yy_flex_debug = _bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (yy_buffer_stack) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; (yy_state_buf) = 0; (yy_state_ptr) = 0; (yy_full_match) = 0; (yy_lp) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; yyfree ( (yy_state_buf) ); (yy_state_buf) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" void yyerror(char *msg) { int i,j; sprintf(string,"%s at %n",msg,&j); if (*yytext=='\n' || *yytext=='\0') { sprintf(string+j,"end of line"); } else { i=0; string[j++]='\"'; while(yytext[i]) { if (isprint(yytext[i])) string[j++]=yytext[i++]; else { sprintf(string+j,"0x%02x",yytext[i]); j+=4; break; } } string[j++]='\"'; string[j]='\0'; } error(ERROR,string); return; } void open_main(FILE *file,char *explicit,char *main_file_name) /* open main file */ { include_depth=0; if (explicit) { include_stack[include_depth]=yy_scan_string(explicit); } else { include_stack[include_depth]=yy_create_buffer(file,YY_BUF_SIZE); } libfile_stack[include_depth]=new_file(main_file_name,"main"); libfile_chain[libfile_chain_length++]=libfile_stack[include_depth]; if (!explicit) yy_switch_to_buffer(include_stack[include_depth]); currlib=libfile_stack[0]; inlib=FALSE; return; } void open_string(char *cmd) /* open string with commands */ { yy_switch_to_buffer(yy_scan_string(cmd)); } int import_lib(char *name) /* import library */ { char *full; static int end_of_all_imports=FALSE; static int ignore_nested_imports=FALSE; if (!*name) name=pop(stSTRING)->pointer; while(isspace(*name)) name++; /* This can only occur in bound programs; void all further import-statements */ if (!strcmp(name,"__END_OF_ALL_IMPORTS")) { error(DEBUG,"Encountered special import __END_OF_ALL_IMPORTS"); end_of_all_imports=TRUE; } if (end_of_all_imports) return TRUE; /* This can only occur in bound programs, close currently imported library */ if (!strcmp(name,"__END_OF_CURRENT_IMPORT")) { error(DEBUG,"Encountered special import __END_OF_CURRENT_IMPORT"); include_depth--; leave_lib(); ignore_nested_imports=FALSE; return TRUE; } /* This can only occur in bound programs, ignore nested import-statement */ if (!strcmp(name,"__IGNORE_NESTED_IMPORTS")) { error(DEBUG,"Encountered special import __IGNORE_NESTED_IMPORTS"); ignore_nested_imports=TRUE; } if (ignore_nested_imports) return TRUE; /* start line numbers anew */ libfile_stack[include_depth]->lineno=mylineno; include_depth++; inlib=TRUE; if (include_depth>=MAX_INCLUDE_DEPTH) { sprintf(string,"Could not import '%s': nested too deep (%d)",name,include_depth); error(ERROR,string); return FALSE; } if (is_bound) { full=name; } else { yyin=open_library(name,&full,FALSE); if (!yyin) return FALSE; yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); include_stack[include_depth]=YY_CURRENT_BUFFER; } libfile_stack[include_depth]=new_file(full,NULL); libfile_chain[libfile_chain_length++]=libfile_stack[include_depth]; if (libfile_chain_length>=MAX_INCLUDE_NUMBER) { sprintf(string,"Cannot import more than %d libraries",MAX_INCLUDE_NUMBER); error(ERROR,string); return FALSE; } if (!libfile_stack[include_depth]) { sprintf(string,"library '%s' has already been imported",full); error(ERROR,string); return FALSE; } if (infolevel>=NOTE) { if (isbound) { sprintf(string,"importing library '%s'",name); } else { sprintf(string,"importing from file '%s'",full); } error(NOTE,string); } currlib=libfile_stack[include_depth]; /* switch late because error() uses currlib */ return TRUE; } FILE *open_library(char *name,char **fullreturn,int without) /* search and open a library */ { static char full[200]; char unquoted[200]; char *p; FILE *lib; int i; char *trail; if (fullreturn) *fullreturn=full; for(p=name;strchr(" \"'`",*p);p++) if (!*p) break; strncpy(unquoted,p,200); for(;!strchr(" \"'`",*p);p++) if (!*p) break; if (*p) unquoted[p-name-2]='\0'; name=unquoted; if (strchr(name,'.')) { sprintf(string,"library name '%s' contains '.'",name); error(ERROR,string); return NULL; } if (!strcmp(name,"main")) { if (is_bound) return NULL; error(ERROR,"invalid library name 'main'"); return NULL; } /* search local */ trail=".yab"; for(i=0;i<2;i++) { strncpy(full,name,200); if (!strchr(full,'.')) strcat(full,trail); lib=fopen(full,"r"); if (lib) return lib; trail=""; if (!without) break; } /* search in global location */ trail=".yab"; for(i=0;i<2;i++) { strncpy(full,library_path,200); if (full[0] && !strchr("\\/",full[strlen(full)-1])) { #ifdef UNIX strcat(full,"/"); #else strcat(full,"\\"); #endif } strcat(full,name); if (!strchr(full,'.')) strcat(full,trail); lib=fopen(full,"r"); if (lib) return lib; trail=""; if (!without) break; } sprintf(string,"could not open library '%s'",full); error(ERROR,string); return NULL; } void leave_lib(void) /* processing, when end of library is found */ { if (include_depth<0) return; if (infolevel>=DEBUG) { sprintf(string,"End of library '%s', continue with '%s', include depth is now %d",currlib->s,libfile_stack[include_depth]->s,include_depth); error(DEBUG,string); } currlib=libfile_stack[include_depth]; mylineno=currlib->lineno; inlib=(include_depth>0); } yabasic-2.78.5/bison.c0000664000175100017510000057166413260510366011460 00000000000000/* A Bison parser, made by GNU Bison 3.0.4. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "3.0.4" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Copy the first part of user declarations. */ /* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de BISON part This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* definitions of yabasic */ #endif #ifdef WINDOWS #include #else #ifdef HAVE_MALLOC_H #include #else #include #endif #endif #if HAVE_ALLOCA_H #ifndef WINDOWS #include #endif #endif void __yy_bcopy(char *,char *,int); /* prototype missing */ int tileol; /* true, read should go to eon of line */ int mylineno = 1; /* line number; counts fresh in every new file */ int function_type=ftNONE; /* contains function type while parsing function */ char *current_function=NULL; /* name of currently parsed function */ int exported=FALSE; /* true, if function is exported */ int yylex(void); extern struct libfile_name *current_libfile; /* defined in main.c: name of currently parsed file */ int missing_endif=0; int missing_endif_line=0; int missing_endsub=0; int missing_endsub_line=0; int missing_next=0; int missing_next_line=0; int missing_wend=0; int missing_wend_line=0; int missing_until=0; int missing_until_line=0; int missing_loop=0; int missing_loop_line=0; int loop_nesting=0; int switch_nesting=0; void report_missing(int severity,char *text) { if (missing_loop || missing_endif || missing_next || missing_until || missing_wend) { error(severity,text); string[0]='\0'; if (missing_endif) sprintf(string,"if statement starting at line %d has seen no 'endif' yet",missing_endif_line); else if (missing_next) sprintf(string,"for-loop starting at line %d has seen no 'next' yet",missing_next_line); else if (missing_wend) sprintf(string,"while-loop starting at line %d has seen no 'wend' yet",missing_wend_line); else if (missing_until) sprintf(string,"repeat-loop starting at line %d has seen no 'until' yet",missing_until_line); else if (missing_loop) sprintf(string,"do-loop starting at line %d has seen no 'loop' yet",missing_loop_line); if (string[0]) error(severity,string); } } # ifndef YY_NULLPTR # if defined __cplusplus && 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* In a future release of Bison, this section will be replaced by #include "bison.h". */ #ifndef YY_YY_BISON_H_INCLUDED # define YY_YY_BISON_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif #if YYDEBUG extern int yydebug; #endif /* Token type. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { tFNUM = 258, tSYMBOL = 259, tSTRSYM = 260, tDOCU = 261, tDIGITS = 262, tSTRING = 263, tFOR = 264, tTO = 265, tSTEP = 266, tNEXT = 267, tWHILE = 268, tWEND = 269, tREPEAT = 270, tUNTIL = 271, tIMPORT = 272, tGOTO = 273, tGOSUB = 274, tLABEL = 275, tON = 276, tSUB = 277, tENDSUB = 278, tLOCAL = 279, tSTATIC = 280, tEXPORT = 281, tERROR = 282, tEXECUTE = 283, tEXECUTE2 = 284, tCOMPILE = 285, tRUNTIME_CREATED_SUB = 286, tINTERRUPT = 287, tBREAK = 288, tCONTINUE = 289, tSWITCH = 290, tSEND = 291, tCASE = 292, tDEFAULT = 293, tLOOP = 294, tDO = 295, tSEP = 296, tEOPROG = 297, tIF = 298, tTHEN = 299, tELSE = 300, tELSIF = 301, tENDIF = 302, tUSING = 303, tPRINT = 304, tINPUT = 305, tRETURN = 306, tDIM = 307, tEND = 308, tEXIT = 309, tAT = 310, tSCREEN = 311, tREVERSE = 312, tCOLOUR = 313, tBACKCOLOUR = 314, tAND = 315, tOR = 316, tNOT = 317, tEOR = 318, tNEQ = 319, tLEQ = 320, tGEQ = 321, tLTN = 322, tGTN = 323, tEQU = 324, tPOW = 325, tREAD = 326, tDATA = 327, tRESTORE = 328, tOPEN = 329, tCLOSE = 330, tSEEK = 331, tTELL = 332, tAS = 333, tREADING = 334, tWRITING = 335, tORIGIN = 336, tWINDOW = 337, tDOT = 338, tLINE = 339, tCIRCLE = 340, tTRIANGLE = 341, tTEXT = 342, tCLEAR = 343, tFILL = 344, tPRINTER = 345, tWAIT = 346, tBELL = 347, tLET = 348, tARDIM = 349, tARSIZE = 350, tBIND = 351, tRECT = 352, tGETBIT = 353, tPUTBIT = 354, tGETCHAR = 355, tPUTCHAR = 356, tNEW = 357, tCURVE = 358, tSIN = 359, tASIN = 360, tCOS = 361, tACOS = 362, tTAN = 363, tATAN = 364, tEXP = 365, tLOG = 366, tSQRT = 367, tSQR = 368, tMYEOF = 369, tABS = 370, tSIG = 371, tINT = 372, tFRAC = 373, tMOD = 374, tRAN = 375, tVAL = 376, tLEFT = 377, tRIGHT = 378, tMID = 379, tLEN = 380, tMIN = 381, tMAX = 382, tSTR = 383, tINKEY = 384, tCHR = 385, tASC = 386, tHEX = 387, tDEC = 388, tBIN = 389, tUPPER = 390, tLOWER = 391, tMOUSEX = 392, tMOUSEY = 393, tMOUSEB = 394, tMOUSEMOD = 395, tTRIM = 396, tLTRIM = 397, tRTRIM = 398, tINSTR = 399, tRINSTR = 400, tSYSTEM = 401, tSYSTEM2 = 402, tPEEK = 403, tPEEK2 = 404, tPOKE = 405, tDATE = 406, tTIME = 407, tTOKEN = 408, tTOKENALT = 409, tSPLIT = 410, tSPLITALT = 411, tGLOB = 412, UMINUS = 413 }; #endif /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { double fnum; /* double number */ int inum; /* integer number */ int token; /* token of command */ int sep; /* number of newlines */ char *string; /* quoted string */ char *symbol; /* general symbol */ char *digits; /* string of digits */ char *docu; /* embedded documentation */ }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif extern YYSTYPE yylval; int yyparse (void); #endif /* !YY_YY_BISON_H_INCLUDED */ /* Copy the second part of user declarations. */ #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #else typedef signed char yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE # if (defined __GNUC__ \ && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C # define YY_ATTRIBUTE(Spec) __attribute__(Spec) # else # define YY_ATTRIBUTE(Spec) /* empty */ # endif #endif #ifndef YY_ATTRIBUTE_PURE # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__)) #endif #ifndef YY_ATTRIBUTE_UNUSED # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) #endif #if !defined _Noreturn \ && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112) # if defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn YY_ATTRIBUTE ((__noreturn__)) # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(E) ((void) (E)) #else # define YYUSE(E) /* empty */ #endif #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ /* Suppress an incorrect diagnostic about yylval being uninitialized. */ # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else # define YY_INITIAL_VALUE(Value) Value #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif #ifndef YY_INITIAL_VALUE # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's 'empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (0) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 248 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 5290 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 168 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 109 /* YYNRULES -- Number of rules. */ #define YYNRULES 427 /* YYNSTATES -- Number of states. */ #define YYNSTATES 1002 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned by yylex, with out-of-bounds checking. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 413 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex, without out-of-bounds checking. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 167, 2, 2, 2, 2, 163, 164, 160, 159, 166, 158, 2, 161, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 165, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 162 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 145, 145, 148, 149, 150, 149, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 171, 172, 172, 173, 174, 175, 176, 177, 178, 179, 179, 181, 181, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 193, 194, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 250, 251, 252, 253, 254, 255, 256, 257, 258, 262, 263, 264, 265, 266, 270, 271, 272, 273, 274, 275, 278, 279, 282, 283, 284, 285, 286, 289, 290, 293, 294, 297, 298, 299, 300, 301, 302, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 339, 340, 343, 343, 344, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 377, 380, 383, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 448, 449, 450, 453, 454, 457, 458, 461, 462, 463, 464, 467, 470, 473, 473, 476, 477, 478, 481, 482, 485, 486, 489, 485, 494, 495, 498, 499, 502, 503, 504, 505, 508, 509, 512, 513, 514, 515, 518, 519, 522, 523, 524, 525, 528, 529, 530, 533, 534, 535, 536, 539, 540, 544, 558, 539, 563, 564, 567, 568, 571, 572, 577, 577, 581, 582, 585, 586, 590, 592, 591, 596, 597, 597, 601, 601, 607, 608, 612, 613, 612, 619, 620, 624, 624, 629, 630, 634, 635, 635, 637, 634, 641, 642, 645, 645, 649, 650, 653, 655, 657, 654, 661, 662, 665, 666, 666, 669, 670, 672, 673, 677, 678, 681, 682, 684, 685, 689, 690, 691, 692, 695, 696, 697, 698, 699, 702, 703, 704, 707, 707, 708, 708, 709, 709, 710, 710, 711, 711, 714, 715, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 734, 735, 737, 738, 741, 742 }; #endif #if YYDEBUG || YYERROR_VERBOSE || 0 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "tFNUM", "tSYMBOL", "tSTRSYM", "tDOCU", "tDIGITS", "tSTRING", "tFOR", "tTO", "tSTEP", "tNEXT", "tWHILE", "tWEND", "tREPEAT", "tUNTIL", "tIMPORT", "tGOTO", "tGOSUB", "tLABEL", "tON", "tSUB", "tENDSUB", "tLOCAL", "tSTATIC", "tEXPORT", "tERROR", "tEXECUTE", "tEXECUTE2", "tCOMPILE", "tRUNTIME_CREATED_SUB", "tINTERRUPT", "tBREAK", "tCONTINUE", "tSWITCH", "tSEND", "tCASE", "tDEFAULT", "tLOOP", "tDO", "tSEP", "tEOPROG", "tIF", "tTHEN", "tELSE", "tELSIF", "tENDIF", "tUSING", "tPRINT", "tINPUT", "tRETURN", "tDIM", "tEND", "tEXIT", "tAT", "tSCREEN", "tREVERSE", "tCOLOUR", "tBACKCOLOUR", "tAND", "tOR", "tNOT", "tEOR", "tNEQ", "tLEQ", "tGEQ", "tLTN", "tGTN", "tEQU", "tPOW", "tREAD", "tDATA", "tRESTORE", "tOPEN", "tCLOSE", "tSEEK", "tTELL", "tAS", "tREADING", "tWRITING", "tORIGIN", "tWINDOW", "tDOT", "tLINE", "tCIRCLE", "tTRIANGLE", "tTEXT", "tCLEAR", "tFILL", "tPRINTER", "tWAIT", "tBELL", "tLET", "tARDIM", "tARSIZE", "tBIND", "tRECT", "tGETBIT", "tPUTBIT", "tGETCHAR", "tPUTCHAR", "tNEW", "tCURVE", "tSIN", "tASIN", "tCOS", "tACOS", "tTAN", "tATAN", "tEXP", "tLOG", "tSQRT", "tSQR", "tMYEOF", "tABS", "tSIG", "tINT", "tFRAC", "tMOD", "tRAN", "tVAL", "tLEFT", "tRIGHT", "tMID", "tLEN", "tMIN", "tMAX", "tSTR", "tINKEY", "tCHR", "tASC", "tHEX", "tDEC", "tBIN", "tUPPER", "tLOWER", "tMOUSEX", "tMOUSEY", "tMOUSEB", "tMOUSEMOD", "tTRIM", "tLTRIM", "tRTRIM", "tINSTR", "tRINSTR", "tSYSTEM", "tSYSTEM2", "tPEEK", "tPEEK2", "tPOKE", "tDATE", "tTIME", "tTOKEN", "tTOKENALT", "tSPLIT", "tSPLITALT", "tGLOB", "'-'", "'+'", "'*'", "'/'", "UMINUS", "'('", "')'", "';'", "','", "'#'", "$accept", "program", "statement_list", "$@1", "$@2", "statement", "$@3", "$@4", "$@5", "$@6", "$@7", "$@8", "clear_fill_clause", "string_assignment", "to", "open_clause", "seek_clause", "string_scalar_or_array", "string_expression", "string_function", "assignment", "expression", "$@9", "$@10", "arrayref", "string_arrayref", "coordinates", "function", "const", "number", "symbol_or_lineno", "dimlist", "function_or_array", "stringfunction_or_array", "call_list", "$@11", "calls", "call_item", "function_definition", "$@12", "$@13", "$@14", "endsub", "function_name", "export", "local_list", "local_item", "static_list", "static_item", "paramlist", "paramitem", "for_loop", "$@15", "$@16", "$@17", "$@18", "next", "step_part", "next_symbol", "switch_number_or_string", "$@19", "sep_list", "number_or_string", "case_list", "$@20", "default", "$@21", "do_loop", "$@22", "loop", "while_loop", "$@23", "$@24", "wend", "repeat_loop", "$@25", "until", "if_clause", "$@26", "$@27", "$@28", "$@29", "endif", "short_if", "$@30", "else_part", "elsif_part", "$@31", "$@32", "maybe_then", "inputlist", "$@33", "input", "readlist", "readitem", "datalist", "printlist", "using", "inputbody", "$@34", "$@35", "$@36", "$@37", "$@38", "prompt", "printintro", "hashed_number", "goto_list", "gosub_list", YY_NULLPTR }; #endif # ifdef YYPRINT /* YYTOKNUM[NUM] -- (External) token number corresponding to the (internal) symbol number NUM (which must be that of a token). */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 45, 43, 42, 47, 413, 40, 41, 59, 44, 35 }; # endif #define YYPACT_NINF -719 #define yypact_value_is_default(Yystate) \ (!!((Yystate) == (-719))) #define YYTABLE_NINF -355 #define yytable_value_is_error(Yytable_value) \ 0 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int16 yypact[] = { 3543, -49, -38, -719, -719, -719, -719, -719, 83, 83, 83, 2731, -719, -719, -719, 3199, -123, -109, 3199, 133, 82, -719, -719, -719, 3045, 6, -719, 3045, 73, -719, 3045, 3045, 3045, 108, 48, 83, 1617, 1082, 1931, 97, 3045, 2574, 3045, -8, 80, 3045, -719, 23, 3199, 3199, 3199, 96, 22, 64, 90, 98, 109, 1931, 214, 170, -719, -52, -719, -719, -719, -719, 233, 254, -719, 305, -719, -719, -719, -719, -719, -719, -719, 3045, -719, 3199, -719, 339, 201, 3407, -719, -719, -719, -719, -719, -719, 220, 256, -719, -719, 297, 327, 88, 349, 360, 3045, 361, 368, 369, 370, 378, 381, 385, 395, 404, 405, 408, 418, 420, 423, 424, 425, 426, 428, 429, 430, 431, 432, 433, 438, 441, 445, 447, 449, 451, 457, 460, 462, 468, 470, 471, 472, 473, 474, 475, 484, 487, 488, 490, 491, 492, 493, 494, 495, 496, 499, 503, 508, 509, 510, 511, 512, 517, 526, 527, 530, 3045, 3045, 281, -719, 439, -719, -719, -719, -719, 132, 331, 3199, 279, -719, -719, 279, -719, -719, 3045, 3407, 485, 531, 389, 539, 17, 3045, -41, 281, 871, 540, 541, 284, 871, 281, 1197, 281, 1265, 542, 543, 436, -719, -719, 298, 298, -719, -719, 464, -719, 3045, 3199, 3045, 3, 871, 466, -719, -719, -719, -719, 482, 3199, 1398, -719, 3045, -719, -3, 544, -719, -719, 3045, 2888, -719, -719, 871, -719, -719, 233, 254, 279, -6, -6, -719, 529, 529, 529, 2088, 3199, 51, 546, -719, -719, 572, 3045, 3045, 3045, 3045, 3199, -719, 871, 545, 3045, 279, 550, 515, 3045, 49, -719, -719, -719, -719, 3045, 3045, 1407, 3045, 1774, 1931, 377, 377, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 1931, 3045, 3045, 3045, 3045, 3045, 2250, 3199, 3199, 3199, 3199, 3199, 3045, 3045, 3045, 2412, 3045, 3199, 3045, 3199, 3045, 3199, 3199, 313, 1152, 1248, 1387, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 1931, 3199, 553, 564, 3199, 529, 3199, 529, 3199, 556, 173, 1636, 3199, 3199, 3199, 3199, 3199, 3199, 3199, -719, -719, -719, -719, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 566, 574, 575, -719, 579, 580, 583, -719, -134, 582, 588, 281, 871, 667, 119, 663, 3679, 3045, 591, 3199, -719, -719, 3045, 281, 631, 226, 592, 19, -719, 730, -719, -719, 427, 3045, 3045, -719, -719, 108, -719, -719, 50, 1429, 279, 871, 373, 1519, 3045, 279, 3045, -719, -41, -719, -719, 3045, 3199, -719, 3045, -3, 3045, 3045, 594, 593, 595, 596, -719, 4098, -61, 3045, 3045, -719, 597, -3, -3, 871, 279, 467, -719, 281, 871, 598, -719, -719, -719, 4109, 603, -719, -719, 604, 607, 1789, 1946, 2103, 608, 28, 601, 609, 616, 620, 621, 629, 614, 618, -3, 2265, 4120, 4142, 4167, 4178, 4222, 655, 4244, 666, 4280, 4291, 630, 4302, 4324, 4346, 4357, 2427, -719, 4404, 29, -120, -58, 25, 52, 2589, 2746, 808, -719, 4426, 4459, 66, 4470, 92, 4481, 117, 158, -719, 253, -719, 269, -719, 275, -719, 287, 302, 304, 311, 38, 39, 325, 351, 358, 632, 101, -719, -719, 77, -64, 103, 62, 104, -719, -719, 279, 279, 279, 279, 279, 279, -719, 83, 83, 3045, 3045, 320, 337, 87, 458, -10, 16, -719, -55, -55, 556, 556, -719, -719, 132, -719, -719, 331, -719, -719, -719, 757, -719, -719, -719, -719, 755, 2903, 3045, 107, 4506, 3254, -719, -719, 3045, 3045, -719, -719, 3045, -719, 469, 639, 640, 642, 644, 3064, 3811, 645, 646, -719, -719, -719, 3045, 734, 740, -719, 145, 3858, 871, -719, -719, 154, -719, 3045, 3881, 3914, -719, 3045, 3045, 3045, -719, -719, 281, 871, 281, 871, 3407, 3045, 3045, 3045, -719, -719, -719, 3045, 3045, -719, 3045, -719, -719, 3045, 3045, 3045, -719, -719, 3199, 3115, -719, 656, 658, -719, -719, 3045, 3045, 3045, 3045, -719, -719, -719, -719, -719, -719, 3045, -719, -719, 3045, -719, -719, -719, -719, -719, -719, -719, 3045, -719, -719, 3045, 3045, 3045, -719, 3045, 3045, -719, 3199, -719, -719, -719, -719, -719, 3045, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, 3199, 3199, -719, -719, -719, -719, -719, 3199, 803, -719, 3199, 803, -719, 3199, 3199, -719, 657, -719, 662, 1407, 3447, 665, 669, -719, 671, 672, -719, -719, 450, 3407, -719, 3045, 3925, 776, 3199, -719, 3199, 279, 281, 631, 3936, 469, 469, 4528, 675, 676, -719, 674, -719, -719, -719, -719, 3045, 3045, -719, -719, 3961, 1931, 1931, 3199, 3199, 3199, -719, 3045, 3045, 677, 4539, 4583, 860, -719, 871, -3, -719, 681, -719, 74, 3407, 4608, 4641, 4652, 4663, 352, 682, 174, -719, -719, 4685, 4710, 683, 63, 4721, 4765, 4787, 4823, 4834, 934, 4845, 4867, 175, 4889, 203, 204, 354, 86, 355, 116, 371, 383, 83, 83, -719, -719, -719, -719, 3045, 804, 812, 810, 4900, 3045, 686, 397, 212, -719, 3045, -719, -719, -719, -719, -719, -719, 688, 689, 871, 871, 3199, -719, -719, 279, 279, 160, 3984, 871, -719, 785, 786, 787, 3045, 3045, 497, 3045, 24, -719, -719, -719, -719, -719, -719, -719, 3199, -719, -719, -719, 3045, -719, -719, -719, -719, -719, -719, 3045, -719, -719, -719, 3199, -719, -719, 3045, -719, 3045, -719, -719, 3199, -719, -719, 3199, -719, -719, -719, -719, -719, -719, -719, 813, 463, 4947, 3045, 805, 3199, 4969, 469, 694, 697, 469, -719, -719, 279, 3199, 3199, 3199, 3199, 3199, 5002, -719, 699, 700, 208, -719, 333, -719, -719, -719, 398, 3995, 5013, 400, 5024, 5049, 401, 410, 3407, 3815, 3045, 820, -719, 704, -719, 4039, 707, 411, -719, -719, -719, -719, -719, 279, 279, 279, 279, 279, 802, 715, 717, -719, 497, 3045, -719, -719, 3045, -719, -719, -719, -719, -719, -719, 810, 846, 617, 3407, -719, 3199, 3045, 3045, -719, 730, 3199, -719, -719, 3407, -719, 871, 3407, 5071, -719, -719, 810, 535, 250, 5082, 4064, 469, 279, 65, 810, -719, 3407, -719, -719, -719, -719, 3199, -719, 3045, -719, -719, -719, -719, 10, 810, 421, 5126, -719, -719, 880, 813, -719, -719, -719, -719, -719 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. Performed when YYTABLE does not specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 108, 0, 0, 106, 318, 345, 350, 12, 0, 0, 0, 0, 25, 27, 296, 0, 0, 0, 0, 297, 19, 21, 329, 341, 0, 408, 49, 61, 0, 103, 104, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 109, 110, 0, 94, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 4, 3, 0, 8, 40, 42, 10, 23, 24, 22, 0, 14, 15, 18, 17, 16, 29, 30, 0, 280, 0, 280, 0, 0, 7, 273, 272, 31, 32, 39, 270, 189, 130, 271, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 0, 0, 0, 0, 0, 0, 0, 241, 244, 247, 250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 155, 0, 0, 0, 0, 0, 0, 0, 0, 131, 0, 202, 183, 188, 132, 0, 0, 0, 13, 280, 280, 43, 298, 20, 0, 7, 361, 0, 412, 0, 0, 388, 404, 63, 62, 0, 0, 64, 105, 54, 0, 56, 0, 380, 382, 57, 378, 384, 0, 0, 385, 267, 58, 60, 0, 90, 0, 0, 423, 0, 87, 92, 80, 41, 0, 0, 0, 68, 0, 51, 73, 0, 89, 88, 0, 0, 111, 112, 93, 9, 11, 0, 0, 107, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 287, 168, 0, 282, 113, 0, 0, 0, 4, 280, 280, 33, 34, 0, 0, 174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 37, 172, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301, 302, 26, 299, 307, 308, 28, 305, 0, 0, 0, 334, 333, 0, 4, 0, 108, 0, 0, 0, 409, 410, 0, 391, 393, 46, 0, 0, 50, 406, 280, 280, 0, 0, 0, 280, 280, 0, 269, 268, 0, 0, 91, 422, 0, 0, 0, 67, 0, 72, 404, 120, 119, 0, 0, 69, 0, 75, 0, 0, 128, 0, 0, 0, 96, 0, 0, 0, 0, 5, 0, 0, 0, 169, 118, 0, 278, 285, 286, 281, 283, 279, 319, 0, 0, 352, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 0, 0, 0, 0, 0, 0, 0, 0, 242, 0, 245, 0, 248, 0, 251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 156, 0, 0, 0, 0, 0, 135, 203, 197, 199, 201, 198, 200, 196, 134, 0, 0, 0, 0, 176, 178, 180, 177, 179, 175, 194, 191, 190, 192, 193, 280, 280, 0, 280, 280, 0, 44, 45, 331, 335, 344, 343, 342, 355, 4, 0, 0, 0, 0, 0, 389, 47, 48, 0, 396, 398, 0, 407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 386, 387, 0, 0, 0, 123, 122, 126, 206, 52, 70, 83, 74, 0, 0, 0, 280, 0, 0, 0, 97, 98, 99, 100, 101, 102, 7, 0, 0, 0, 293, 294, 288, 0, 0, 346, 0, 260, 167, 0, 0, 0, 261, 262, 0, 0, 255, 0, 0, 184, 185, 0, 0, 0, 0, 207, 208, 209, 210, 211, 212, 0, 214, 215, 0, 217, 218, 181, 221, 222, 219, 220, 0, 224, 229, 0, 0, 0, 228, 0, 0, 140, 0, 145, 146, 230, 165, 231, 0, 166, 147, 148, 240, 243, 246, 249, 151, 149, 150, 0, 0, 152, 237, 239, 238, 157, 0, 0, 160, 0, 0, 162, 0, 0, 424, 36, 426, 38, 173, 171, 0, 0, 300, 0, 0, 306, 332, 338, 7, 362, 0, 0, 413, 0, 411, 0, 394, 392, 393, 0, 0, 0, 0, 374, 376, 405, 371, 274, 276, 280, 280, 0, 0, 381, 383, 65, 0, 0, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 6, 81, 0, 86, 0, 284, 0, 7, 0, 0, 0, 0, 0, 0, 0, 204, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303, 304, 309, 310, 0, 0, 0, 356, 0, 0, 0, 0, 0, 390, 0, 397, 399, 400, 280, 280, 372, 0, 0, 53, 55, 0, 124, 125, 121, 127, 84, 77, 78, 129, 0, 0, 0, 0, 0, 311, 0, 4, 353, 252, 253, 254, 263, 264, 265, 0, 186, 187, 163, 0, 213, 216, 223, 136, 137, 139, 0, 226, 227, 141, 0, 232, 233, 0, 235, 0, 158, 257, 0, 159, 259, 0, 161, 182, 425, 427, 336, 339, 330, 365, 415, 0, 0, 414, 0, 0, 0, 0, 0, 0, 275, 277, 66, 0, 0, 0, 0, 0, 0, 82, 314, 315, 0, 312, 325, 349, 348, 347, 0, 0, 0, 0, 0, 0, 0, 0, 7, 108, 0, 363, 419, 0, 416, 0, 0, 0, 402, 401, 375, 377, 373, 85, 76, 116, 117, 115, 0, 0, 0, 289, 0, 0, 320, 266, 0, 138, 142, 234, 236, 256, 258, 337, 4, 369, 7, 357, 0, 0, 0, 395, 406, 0, 316, 317, 7, 313, 326, 7, 0, 370, 366, 364, 0, 0, 0, 0, 0, 114, 4, 321, 164, 7, 359, 360, 358, 420, 0, 417, 0, 403, 292, 291, 290, 0, 367, 0, 0, 324, 323, 327, 365, 421, 418, 328, 322, 368 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -719, -719, -70, -719, -719, 276, -719, -719, -719, -719, -719, -719, -719, 839, -228, -719, -719, -73, 738, -719, 840, 5, -719, -719, 612, -275, -33, -719, 498, -31, 9, -719, 0, 2, -63, -719, -719, 273, -719, -719, -719, -719, -719, -719, -719, -719, 344, -719, 342, -719, -42, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, 100, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -719, -99, -719, -719, -719, -718, -719, -719, -719, 504, -719, -719, 179, 501, -719, -719, -719, -719, -719, -54, -719, 42, -719, -719 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 58, 59, 250, 609, 60, 169, 170, 530, 531, 186, 407, 61, 62, 410, 63, 64, 418, 162, 163, 65, 220, 533, 532, 455, 456, 221, 165, 204, 166, 86, 191, 167, 168, 258, 259, 436, 437, 68, 432, 755, 960, 988, 615, 69, 359, 360, 363, 364, 898, 899, 70, 81, 617, 963, 989, 995, 938, 1000, 71, 178, 554, 370, 710, 912, 798, 913, 72, 179, 557, 73, 82, 758, 903, 74, 83, 443, 75, 372, 711, 875, 968, 980, 76, 373, 951, 915, 977, 996, 966, 728, 885, 729, 199, 200, 206, 382, 565, 385, 723, 724, 882, 956, 386, 573, 185, 213, 698, 700 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule whose number is the opposite. If YYTABLE_NINF, syntax error. */ static const yytype_int16 yytable[] = { 66, 458, 67, 205, 408, 807, 808, 408, 224, 225, 415, 416, 401, 264, 383, 352, 164, 261, 87, 88, 77, 377, 993, 569, 378, 341, 570, 1, 2, 180, 521, 79, 188, 251, 252, 192, 194, 196, 901, 341, 173, 212, 212, 212, 207, 253, 658, 235, 226, 236, 232, 89, 994, 89, 174, 92, 201, 92, 583, 351, 352, 181, 212, 182, 183, 441, 902, 335, 336, 337, 338, 339, 340, 408, 227, 228, 229, 189, 190, 217, 218, 230, 257, 66, 832, 67, 352, 84, 986, 177, 85, 442, 335, 336, 337, 338, 339, 340, 341, 247, 691, 341, 692, 604, 271, 355, 356, 987, 659, 371, 366, 367, 197, 198, 78, 335, 336, 337, 338, 339, 340, 267, 268, 344, 345, 80, 384, 346, 347, 348, 349, 350, 351, 352, 344, 345, 357, 358, 346, 347, 348, 349, 350, 351, 352, 52, 53, 54, 353, 354, 355, 356, 347, 341, 349, 350, 351, 352, 555, 176, 409, 556, 341, 409, 923, 332, 334, 926, 231, 419, 420, 395, 396, 184, 353, 354, 355, 356, 219, 66, 379, 67, 571, 369, 341, 241, 596, 341, 341, 406, 381, 660, 626, 657, 627, 412, 414, 341, 341, 240, 611, 612, 444, 445, 682, 683, 202, 203, 202, 203, 341, 341, 249, 398, 248, 400, 661, 424, 427, 428, 429, 353, 354, 355, 356, 341, 694, 242, 695, 409, 668, 636, 353, 354, 355, 356, 341, 335, 336, 337, 338, 339, 340, 690, 459, 353, 354, 355, 356, 422, 863, 341, 864, 243, 985, 517, 670, 519, 671, 430, 341, 244, 341, 341, 435, 688, 341, 689, 440, 693, 696, 715, 245, 716, 446, 447, 341, 448, 212, 212, 866, 673, 867, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 212, 472, 473, 474, 475, 476, 478, 89, 254, 559, 341, 92, 484, 485, 486, 488, 489, 741, 491, 341, 493, 451, 452, 341, 91, 341, 743, 93, 674, 255, 574, 575, 889, 256, 212, 580, 581, 471, 341, 341, 341, 361, 362, 521, 840, 855, 841, 856, 95, 262, 937, 335, 336, 337, 338, 339, 340, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 341, 341, 263, 512, 205, 858, 860, 859, 861, 341, 935, 66, 936, 67, 521, 593, 880, 560, 595, 453, 454, 78, 563, 347, 348, 349, 350, 351, 352, 566, 567, 344, 345, 578, 579, 346, 347, 348, 349, 350, 351, 352, 349, 350, 351, 352, 590, 341, 591, 105, 341, 106, 981, 785, 982, 675, 787, 80, 597, 598, 335, 336, 337, 338, 339, 340, 341, 606, 608, 576, 577, 676, 341, 125, 126, 127, 341, 677, 341, 131, 132, 133, 375, 135, 341, 137, 138, 139, 389, 678, 586, 587, 144, 145, 146, 342, 343, 149, 265, 341, 152, 341, 153, 154, 679, 156, 680, 158, 341, 613, 614, 726, 727, 681, 171, 496, 353, 354, 355, 356, 703, 704, 341, 706, 707, 796, 797, 684, 266, 353, 354, 355, 356, 353, 354, 355, 356, 344, 345, 896, 897, 346, 347, 348, 349, 350, 351, 352, 341, 341, 269, 341, 341, 685, 838, 341, 862, 865, 916, 917, 686, 270, 272, 830, 350, 351, 352, -354, 341, 273, 274, 275, 417, 868, 747, 701, 702, 697, 699, 276, 341, 845, 277, 344, 345, 869, 278, 346, 347, 348, 349, 350, 351, 352, 341, 341, 279, 341, 341, 879, 939, 744, 942, 945, 714, 280, 281, 341, 341, 282, 721, 722, 946, 955, 725, 978, 753, 754, 341, 283, 979, 284, 439, 997, 285, 286, 287, 288, 738, 289, 290, 291, 292, 293, 294, 353, 354, 355, 356, 295, 394, 770, 296, 748, 749, 750, 297, 66, 298, 67, 299, 426, 300, 752, 353, 354, 355, 356, 301, 435, 757, 302, 759, 303, 352, 760, 761, 762, 397, 304, 402, 305, 306, 307, 308, 309, 310, 768, 769, 799, 771, 353, 354, 355, 356, 311, 403, 772, 312, 313, 773, 314, 315, 316, 317, 318, 319, 320, 774, 965, 321, 775, 776, 777, 322, 778, 779, 813, 814, 323, 324, 325, 326, 327, 781, 344, 345, 564, 328, 346, 347, 348, 349, 350, 351, 352, 833, 329, 330, 344, 345, 331, 374, 346, 347, 348, 349, 350, 351, 352, 376, 387, 388, 392, 393, 558, 553, 433, 411, 66, 425, 67, 438, 344, 345, 514, 800, 346, 347, 348, 349, 350, 351, 352, 344, 345, 515, 545, 346, 347, 348, 349, 350, 351, 352, 546, 572, 815, 816, 547, 548, 549, 212, 212, 551, 883, 884, 550, 823, 824, 552, 172, 561, 568, 175, 599, 66, 600, 67, 601, 602, 610, 616, 187, 619, 628, 620, 193, 195, 621, 625, 629, 211, 353, 354, 355, 356, 630, 634, 818, 819, 631, 635, 632, 237, 238, 239, 353, 354, 355, 356, 633, 650, 246, 687, 895, 709, 870, 871, 369, 712, 730, 731, 732, 877, 733, 454, 736, 737, 881, 739, 353, 354, 355, 356, 260, 740, 643, 766, 644, 767, 790, 353, 354, 355, 356, 791, 792, 646, 802, 647, 793, 894, 794, 795, 900, 810, 811, 812, 825, 947, 948, 831, 873, 839, 844, 874, 878, 905, -4, 886, 887, 891, 892, 893, 906, 924, 914, 920, 925, 933, 934, 908, 950, 909, 952, 344, 345, 954, 957, 346, 347, 348, 349, 350, 351, 352, 958, 967, 959, -340, 919, 999, 751, 233, 234, 457, 756, 974, 705, 708, 975, 961, 584, 872, 1001, 582, 333, 805, 0, 972, 0, 0, 0, 0, 990, 592, 365, 0, 0, 66, 66, 67, 67, 368, 0, 0, 949, 344, 345, 0, 380, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 962, 0, 0, 964, 0, 399, 0, 0, 66, 0, 67, 0, 0, 0, 0, 404, 970, 971, 66, 0, 67, 66, 0, 67, 353, 354, 355, 356, 0, 0, 664, 0, 665, 0, 0, 66, 0, 67, 0, 0, 0, 423, 0, 0, 0, 0, 0, 992, 0, 0, 0, 431, 344, 345, 0, 434, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 828, 0, 829, 0, 0, 353, 354, 355, 356, 0, 479, 480, 481, 482, 483, 0, 0, 0, 0, 0, 490, 0, 492, 0, 494, 495, 497, 499, 501, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 0, 0, 516, 0, 518, 0, 520, 0, 0, 0, 523, 524, 525, 526, 527, 528, 529, 0, 0, 0, 0, 0, 89, 90, 91, 0, 92, 93, 0, 353, 354, 355, 356, 0, 0, 851, 0, 852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 95, 0, 0, 562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 589, 0, 97, 98, 99, 100, 0, 0, 0, 594, 0, 0, 0, 0, 0, 0, 101, 91, 0, 102, 93, 0, 605, 607, 214, 0, 0, 0, 0, 0, 0, 0, 215, 0, 0, 0, 103, 104, 0, 0, 105, 95, 106, 0, 0, 216, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 0, 0, 0, 161, 0, 0, 0, 210, 105, 0, 106, 91, 0, 0, 93, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 125, 126, 127, 95, 0, 0, 131, 132, 133, 0, 135, 0, 137, 138, 139, 0, 0, 0, 0, 144, 145, 146, 0, 0, 149, 0, 0, 152, 719, 153, 154, 720, 156, 0, 158, 0, 0, 0, 0, 0, 0, 171, 498, 0, 0, 0, 0, 0, 0, 0, 0, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 0, 106, 0, 0, 0, 0, 0, 434, 353, 354, 355, 356, 0, 0, 0, 0, 390, 0, 763, 765, 0, 0, 0, 125, 126, 127, 0, 0, 0, 131, 132, 133, 0, 135, 0, 137, 138, 139, 0, 0, 0, 0, 144, 145, 146, 91, 0, 149, 93, 0, 152, 0, 153, 154, 0, 156, 780, 158, 0, 0, 0, 0, 0, 0, 171, 500, 0, 0, 0, 95, 0, 0, 0, 782, 783, 0, 353, 354, 355, 356, 784, 0, 0, 786, 391, 0, 788, 789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 803, 0, 804, 0, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 820, 821, 822, 0, 0, 0, 105, 0, 106, 0, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 126, 127, 0, 0, 0, 131, 132, 133, 0, 135, 0, 137, 138, 139, 91, 0, 0, 93, 144, 145, 146, 0, 0, 149, 368, 0, 152, 0, 153, 154, 0, 156, 0, 158, 0, 0, 0, 0, 95, 0, 171, 502, 0, 0, 0, 888, 353, 354, 355, 356, 0, 0, 0, 0, 405, 353, 354, 355, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 904, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 907, 585, 0, 0, 0, 0, 0, 0, 910, 0, 0, 911, 0, 0, 0, 588, 0, 0, 0, 0, 0, 0, 0, 105, 921, 106, 89, 90, 91, 0, 92, 93, 0, 927, 928, 929, 930, 931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 126, 127, 0, 94, 95, 131, 132, 133, 0, 135, 0, 137, 138, 139, 0, 0, 0, 0, 144, 145, 146, 0, 0, 149, 0, 0, 152, 0, 153, 154, 0, 156, 0, 158, 0, 97, 98, 99, 100, 0, 171, 0, 0, 0, 0, 0, 0, 0, 969, 101, 0, 0, 102, 973, 344, 345, 0, 208, 346, 347, 348, 349, 350, 351, 352, 209, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 991, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 89, 90, 91, 161, 92, 93, 0, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 522, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 449, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 89, 90, 91, 161, 92, 93, 0, 210, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 622, 0, 0, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 89, 90, 91, 161, 92, 93, 0, 210, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 623, 0, 0, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 0, 0, 0, 161, 421, 89, 90, 91, 0, 92, 93, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 624, 0, 0, 0, 0, 0, 0, 0, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 0, 0, 0, 161, 477, 89, 90, 91, 0, 92, 93, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 637, 0, 0, 0, 0, 0, 0, 0, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 0, 0, 0, 161, 487, 89, 90, 91, 0, 92, 93, 0, 222, 353, 354, 355, 356, 0, 0, 0, 0, 655, 0, 0, 0, 0, 0, 0, 0, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 89, 90, 91, 161, 92, 93, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 662, 0, 0, 0, 94, 95, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 89, 90, 91, 161, 92, 93, 0, 413, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 663, 0, 0, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 344, 345, 102, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 103, 104, 0, 0, 105, 0, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 0, 89, 90, 91, 161, 92, 93, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 713, 0, 0, 0, 94, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 91, 0, 102, 93, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 103, 104, 0, 0, 105, 95, 106, 0, 0, 0, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, 153, 154, 155, 156, 157, 158, 159, 160, 91, 764, 0, 93, 161, 0, 0, 0, 0, 105, 0, 106, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 95, 0, 734, 0, 0, 0, 0, 0, 0, 125, 126, 127, 0, 0, 0, 131, 132, 133, 0, 135, 0, 137, 138, 139, 0, 0, 0, 0, 144, 145, 146, 91, 0, 149, 93, 0, 152, 0, 153, 154, 0, 156, 0, 158, 0, 0, 0, 0, 0, 0, 171, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 126, 127, 0, 0, 0, 131, 132, 133, 0, 135, 0, 137, 138, 139, 0, 0, 0, 0, 144, 145, 146, 0, 0, 149, 0, 0, 152, 0, 153, 154, 105, 156, 106, 158, 0, 0, 0, 0, 0, 0, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 126, 127, 0, 0, 0, 131, 132, 133, 0, 135, 0, 137, 138, 139, 0, 0, 0, 0, 144, 145, 146, 0, 0, 149, 0, 0, 152, 0, 153, 154, 0, 156, 0, 158, 1, 2, 3, 0, 0, 4, 718, 0, 0, 5, 0, 6, 0, 7, 8, 9, 10, 11, -295, 0, 12, 13, 14, 15, 16, 17, 18, 19, 0, 20, 21, 22, 0, 0, 0, 0, 23, 0, 0, 24, 0, 0, 0, 0, 0, 25, 26, 27, 28, 29, 30, 0, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 34, 35, 36, 37, 38, 0, 0, 0, 0, 0, 39, 40, 41, -108, -108, 42, 43, 44, 0, 45, 46, 47, 0, 0, 48, -108, 0, 49, 344, 50, 51, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 53, 54, 0, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 4, 0, 56, 0, 5, 57, 6, 0, 7, 8, 9, 10, 11, -295, 0, 12, 13, 14, 15, 16, 17, 18, 19, 0, 20, 21, 22, 0, 0, 0, 0, 23, -7, -7, 24, 0, 0, 0, 0, 0, 25, 26, 27, 28, 29, 30, 0, 0, 0, 31, 32, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 0, 33, 34, 35, 36, 37, 38, 0, 0, 0, 0, 0, 39, 40, 41, 0, 0, 42, 43, 44, 0, 45, 46, 47, 0, 0, 48, 0, 0, 49, 0, 50, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 53, 54, 0, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 4, 0, 56, 0, 5, 57, 6, 0, 7, 8, 9, 10, 11, -295, 0, 12, 13, 14, 15, 16, 17, 18, 19, 0, 20, 21, 22, 0, 0, 0, 0, 23, -7, 0, 24, 0, 0, 0, -7, 0, 25, 26, 27, 28, 29, 30, 0, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 34, 35, 36, 37, 38, 0, 0, 0, 0, 0, 39, 40, 41, 0, 0, 42, 43, 44, 0, 45, 46, 47, 0, 0, 48, 0, 0, 49, 0, 50, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 53, 54, 0, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 4, 0, 56, 0, 5, 57, 6, 0, 7, 8, 9, 10, 11, -295, 0, 12, 13, 14, 15, 16, 17, 18, 19, 0, 20, 21, 22, -7, 0, 0, 0, 23, -7, 0, 24, 0, 0, 0, 0, 0, 25, 26, 27, 28, 29, 30, 0, 344, 345, 31, 32, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 33, 34, 35, 36, 37, 38, 0, 0, 0, 0, 0, 39, 40, 41, 0, 0, 42, 43, 44, 0, 45, 46, 47, 0, 0, 48, 0, 0, 49, 0, 50, 51, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 52, 53, 54, 0, 344, 345, 0, 55, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 0, 0, 57, 0, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 735, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 742, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 745, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 746, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 801, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 806, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 817, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 0, 0, 890, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 940, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 953, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 344, 345, 0, 984, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 603, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 618, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 638, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 639, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 640, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 641, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 642, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 645, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 648, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 649, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 651, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 652, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 653, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 654, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 656, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 666, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 667, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 669, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 672, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 717, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 809, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 826, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 827, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 834, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 835, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 836, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 837, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 842, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 843, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 846, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 847, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 848, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 849, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 850, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 853, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 854, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 857, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 876, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 918, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 922, 0, 346, 347, 348, 349, 350, 351, 352, 344, 345, 0, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 932, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 941, 0, 0, 0, 0, 353, 354, 355, 356, 344, 345, 943, 0, 346, 347, 348, 349, 350, 351, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 976, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 354, 355, 356, 0, 0, 998 }; static const yytype_int16 yycheck[] = { 0, 276, 0, 34, 10, 723, 724, 10, 41, 42, 238, 239, 9, 83, 55, 70, 11, 80, 9, 10, 69, 4, 12, 4, 7, 159, 7, 4, 5, 24, 164, 69, 27, 85, 86, 30, 31, 32, 14, 159, 163, 36, 37, 38, 35, 97, 166, 47, 56, 47, 45, 3, 42, 3, 163, 7, 8, 7, 8, 69, 70, 55, 57, 57, 58, 16, 42, 64, 65, 66, 67, 68, 69, 10, 82, 83, 84, 4, 5, 37, 38, 89, 77, 83, 10, 83, 70, 4, 23, 7, 7, 42, 64, 65, 66, 67, 68, 69, 159, 57, 164, 159, 166, 164, 99, 160, 161, 42, 166, 179, 173, 174, 4, 5, 163, 64, 65, 66, 67, 68, 69, 33, 34, 60, 61, 163, 167, 64, 65, 66, 67, 68, 69, 70, 60, 61, 4, 5, 64, 65, 66, 67, 68, 69, 70, 122, 123, 124, 158, 159, 160, 161, 65, 159, 67, 68, 69, 70, 39, 26, 166, 42, 159, 166, 882, 160, 161, 885, 88, 242, 243, 202, 203, 167, 158, 159, 160, 161, 81, 179, 163, 179, 163, 178, 159, 163, 414, 159, 159, 222, 185, 166, 164, 164, 166, 228, 229, 159, 159, 103, 428, 429, 265, 266, 166, 166, 158, 159, 158, 159, 159, 159, 42, 208, 0, 210, 164, 166, 251, 252, 253, 158, 159, 160, 161, 159, 164, 163, 166, 166, 164, 459, 158, 159, 160, 161, 159, 64, 65, 66, 67, 68, 69, 166, 277, 158, 159, 160, 161, 244, 164, 159, 166, 163, 972, 328, 164, 330, 166, 254, 159, 163, 159, 159, 259, 164, 159, 166, 263, 166, 166, 164, 163, 166, 269, 270, 159, 272, 273, 274, 164, 164, 166, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 3, 69, 373, 159, 7, 301, 302, 303, 304, 305, 166, 307, 159, 309, 273, 274, 159, 5, 159, 166, 8, 164, 69, 387, 388, 166, 22, 323, 392, 393, 289, 159, 159, 159, 4, 5, 164, 164, 164, 166, 166, 29, 4, 11, 64, 65, 66, 67, 68, 69, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 159, 159, 163, 323, 397, 164, 164, 166, 166, 159, 164, 373, 166, 373, 164, 410, 166, 374, 413, 4, 5, 163, 379, 65, 66, 67, 68, 69, 70, 165, 166, 60, 61, 390, 391, 64, 65, 66, 67, 68, 69, 70, 67, 68, 69, 70, 403, 159, 405, 98, 159, 100, 164, 690, 166, 164, 693, 163, 415, 416, 64, 65, 66, 67, 68, 69, 159, 424, 425, 4, 5, 164, 159, 122, 123, 124, 159, 164, 159, 128, 129, 130, 55, 132, 159, 134, 135, 136, 166, 164, 79, 80, 141, 142, 143, 18, 19, 146, 163, 159, 149, 159, 151, 152, 164, 154, 164, 156, 159, 4, 5, 4, 5, 164, 163, 164, 158, 159, 160, 161, 545, 546, 159, 548, 549, 37, 38, 164, 163, 158, 159, 160, 161, 158, 159, 160, 161, 60, 61, 4, 5, 64, 65, 66, 67, 68, 69, 70, 159, 159, 163, 159, 159, 164, 164, 159, 164, 164, 57, 58, 164, 163, 163, 753, 68, 69, 70, 44, 159, 163, 163, 163, 5, 164, 599, 532, 533, 530, 531, 163, 159, 771, 163, 60, 61, 164, 163, 64, 65, 66, 67, 68, 69, 70, 159, 159, 163, 159, 159, 164, 164, 596, 164, 164, 561, 163, 163, 159, 159, 163, 567, 568, 164, 164, 571, 42, 611, 612, 159, 163, 47, 163, 69, 164, 163, 163, 163, 163, 585, 163, 163, 163, 163, 163, 163, 158, 159, 160, 161, 163, 166, 636, 163, 600, 601, 602, 163, 609, 163, 609, 163, 41, 163, 610, 158, 159, 160, 161, 163, 616, 617, 163, 619, 163, 70, 622, 623, 624, 166, 163, 166, 163, 163, 163, 163, 163, 163, 634, 635, 711, 637, 158, 159, 160, 161, 163, 166, 644, 163, 163, 647, 163, 163, 163, 163, 163, 163, 163, 655, 44, 163, 658, 659, 660, 163, 662, 663, 732, 733, 163, 163, 163, 163, 163, 671, 60, 61, 48, 163, 64, 65, 66, 67, 68, 69, 70, 758, 163, 163, 60, 61, 163, 163, 64, 65, 66, 67, 68, 69, 70, 163, 163, 163, 163, 163, 44, 41, 164, 166, 711, 166, 711, 164, 60, 61, 164, 713, 64, 65, 66, 67, 68, 69, 70, 60, 61, 164, 163, 64, 65, 66, 67, 68, 69, 70, 163, 8, 734, 735, 166, 163, 163, 739, 740, 164, 810, 811, 166, 745, 746, 164, 15, 163, 163, 18, 163, 758, 166, 758, 166, 166, 166, 166, 27, 163, 166, 164, 31, 32, 164, 164, 164, 36, 158, 159, 160, 161, 163, 166, 739, 740, 163, 166, 164, 48, 49, 50, 158, 159, 160, 161, 164, 164, 57, 164, 830, 41, 790, 791, 796, 47, 164, 164, 163, 801, 163, 5, 164, 164, 806, 78, 158, 159, 160, 161, 79, 78, 164, 164, 166, 164, 166, 158, 159, 160, 161, 166, 164, 164, 55, 166, 164, 829, 164, 164, 832, 163, 163, 166, 164, 912, 913, 163, 41, 164, 164, 36, 163, 845, 41, 164, 164, 69, 69, 69, 852, 164, 46, 55, 164, 163, 163, 859, 45, 861, 163, 60, 61, 163, 69, 64, 65, 66, 67, 68, 69, 70, 164, 950, 164, 36, 878, 4, 609, 47, 47, 276, 616, 960, 547, 550, 963, 936, 397, 796, 996, 394, 161, 721, -1, 956, -1, -1, -1, -1, 977, 407, 171, -1, -1, 912, 913, 912, 913, 178, -1, -1, 914, 60, 61, -1, 185, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 937, -1, -1, 940, -1, 209, -1, -1, 950, -1, 950, -1, -1, -1, -1, 219, 953, 954, 960, -1, 960, 963, -1, 963, 158, 159, 160, 161, -1, -1, 164, -1, 166, -1, -1, 977, -1, 977, -1, -1, -1, 245, -1, -1, -1, -1, -1, 984, -1, -1, -1, 255, 60, 61, -1, 259, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, 273, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, 166, -1, -1, 158, 159, 160, 161, -1, 296, 297, 298, 299, 300, -1, -1, -1, -1, -1, 306, -1, 308, -1, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, -1, -1, 327, -1, 329, -1, 331, -1, -1, -1, 335, 336, 337, 338, 339, 340, 341, -1, -1, -1, -1, -1, 3, 4, 5, -1, 7, 8, -1, 158, 159, 160, 161, -1, -1, 164, -1, 166, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, -1, -1, 376, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 402, -1, 60, 61, 62, 63, -1, -1, -1, 411, -1, -1, -1, -1, -1, -1, 74, 5, -1, 77, 8, -1, 424, 425, 82, -1, -1, -1, -1, -1, -1, -1, 90, -1, -1, -1, 94, 95, -1, -1, 98, 29, 100, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, -1, -1, -1, 163, -1, -1, -1, 167, 98, -1, 100, 5, -1, -1, 8, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, 122, 123, 124, 29, -1, -1, 128, 129, 130, -1, 132, -1, 134, 135, 136, -1, -1, -1, -1, 141, 142, 143, -1, -1, 146, -1, -1, 149, 564, 151, 152, 567, 154, -1, 156, -1, -1, -1, -1, -1, -1, 163, 164, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, 100, -1, -1, -1, -1, -1, 616, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, 627, 628, -1, -1, -1, 122, 123, 124, -1, -1, -1, 128, 129, 130, -1, 132, -1, 134, 135, 136, -1, -1, -1, -1, 141, 142, 143, 5, -1, 146, 8, -1, 149, -1, 151, 152, -1, 154, 665, 156, -1, -1, -1, -1, -1, -1, 163, 164, -1, -1, -1, 29, -1, -1, -1, 682, 683, -1, 158, 159, 160, 161, 689, -1, -1, 692, 166, -1, 695, 696, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 716, -1, 718, -1, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, 741, 742, 743, -1, -1, -1, 98, -1, 100, -1, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, -1, -1, 128, 129, 130, -1, 132, -1, 134, 135, 136, 5, -1, -1, 8, 141, 142, 143, -1, -1, 146, 796, -1, 149, -1, 151, 152, -1, 154, -1, 156, -1, -1, -1, -1, 29, -1, 163, 164, -1, -1, -1, 817, 158, 159, 160, 161, -1, -1, -1, -1, 166, 158, 159, 160, 161, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 841, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, 856, 166, -1, -1, -1, -1, -1, -1, 864, -1, -1, 867, -1, -1, -1, 90, -1, -1, -1, -1, -1, -1, -1, 98, 880, 100, 3, 4, 5, -1, 7, 8, -1, 889, 890, 891, 892, 893, -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, 28, 29, 128, 129, 130, -1, 132, -1, 134, 135, 136, -1, -1, -1, -1, 141, 142, 143, -1, -1, 146, -1, -1, 149, -1, 151, 152, -1, 154, -1, 156, -1, 60, 61, 62, 63, -1, 163, -1, -1, -1, -1, -1, -1, -1, 952, 74, -1, -1, 77, 957, 60, 61, -1, 82, 64, 65, 66, 67, 68, 69, 70, 90, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, 982, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, 3, 4, 5, 163, 7, 8, -1, 167, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, 90, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, 3, 4, 5, 163, 7, 8, -1, 167, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, 3, 4, 5, 163, 7, 8, -1, 167, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, -1, -1, -1, 163, 164, 3, 4, 5, -1, 7, 8, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, -1, -1, -1, 163, 164, 3, 4, 5, -1, 7, 8, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, -1, -1, -1, 163, 164, 3, 4, 5, -1, 7, 8, -1, 10, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 50, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, 3, 4, 5, 163, 7, 8, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, 28, 29, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, 3, 4, 5, 163, 7, 8, -1, 10, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 60, 61, 77, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 94, 95, -1, -1, 98, -1, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, -1, 3, 4, 5, 163, 7, 8, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, -1, 28, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 74, 5, -1, 77, 8, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, 94, 95, -1, -1, 98, 29, 100, -1, -1, -1, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, -1, 151, 152, 153, 154, 155, 156, 157, 158, 5, 90, -1, 8, 163, -1, -1, -1, -1, 98, -1, 100, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 29, -1, 166, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, -1, -1, 128, 129, 130, -1, 132, -1, 134, 135, 136, -1, -1, -1, -1, 141, 142, 143, 5, -1, 146, 8, -1, 149, -1, 151, 152, -1, 154, -1, 156, -1, -1, -1, -1, -1, -1, 163, -1, -1, -1, -1, 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, 100, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, -1, -1, 128, 129, 130, -1, 132, -1, 134, 135, 136, -1, -1, -1, -1, 141, 142, 143, -1, -1, 146, -1, -1, 149, -1, 151, 152, 98, 154, 100, 156, -1, -1, -1, -1, -1, -1, 163, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, -1, -1, 128, 129, 130, -1, 132, -1, 134, 135, 136, -1, -1, -1, -1, 141, 142, 143, -1, -1, 146, -1, -1, 149, -1, 151, 152, -1, 154, -1, 156, 4, 5, 6, -1, -1, 9, 163, -1, -1, 13, -1, 15, -1, 17, 18, 19, 20, 21, 22, -1, 24, 25, 26, 27, 28, 29, 30, 31, -1, 33, 34, 35, -1, -1, -1, -1, 40, -1, -1, 43, -1, -1, -1, -1, -1, 49, 50, 51, 52, 53, 54, -1, -1, -1, 58, 59, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 72, 73, 74, 75, 76, -1, -1, -1, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, 93, -1, -1, 96, 97, -1, 99, 60, 101, 102, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 4, 5, 6, -1, -1, 9, -1, 147, -1, 13, 150, 15, -1, 17, 18, 19, 20, 21, 22, -1, 24, 25, 26, 27, 28, 29, 30, 31, -1, 33, 34, 35, -1, -1, -1, -1, 40, 41, 42, 43, -1, -1, -1, -1, -1, 49, 50, 51, 52, 53, 54, -1, -1, -1, 58, 59, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, -1, 71, 72, 73, 74, 75, 76, -1, -1, -1, -1, -1, 82, 83, 84, -1, -1, 87, 88, 89, -1, 91, 92, 93, -1, -1, 96, -1, -1, 99, -1, 101, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 4, 5, 6, -1, -1, 9, -1, 147, -1, 13, 150, 15, -1, 17, 18, 19, 20, 21, 22, -1, 24, 25, 26, 27, 28, 29, 30, 31, -1, 33, 34, 35, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, 47, -1, 49, 50, 51, 52, 53, 54, -1, -1, -1, 58, 59, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 72, 73, 74, 75, 76, -1, -1, -1, -1, -1, 82, 83, 84, -1, -1, 87, 88, 89, -1, 91, 92, 93, -1, -1, 96, -1, -1, 99, -1, 101, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 4, 5, 6, -1, -1, 9, -1, 147, -1, 13, 150, 15, -1, 17, 18, 19, 20, 21, 22, -1, 24, 25, 26, 27, 28, 29, 30, 31, -1, 33, 34, 35, 36, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, 49, 50, 51, 52, 53, 54, -1, 60, 61, 58, 59, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, 71, 72, 73, 74, 75, 76, -1, -1, -1, -1, -1, 82, 83, 84, -1, -1, 87, 88, 89, -1, 91, 92, 93, -1, -1, 96, -1, -1, 99, -1, 101, 102, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, 122, 123, 124, -1, 60, 61, -1, 129, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 147, -1, -1, 150, -1, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, -1, -1, 166, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, 60, 61, -1, 166, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, 60, 61, -1, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, 60, 61, 164, -1, 64, 65, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 159, 160, 161, -1, -1, 164 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 4, 5, 6, 9, 13, 15, 17, 18, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 40, 43, 49, 50, 51, 52, 53, 54, 58, 59, 71, 72, 73, 74, 75, 76, 82, 83, 84, 87, 88, 89, 91, 92, 93, 96, 99, 101, 102, 122, 123, 124, 129, 147, 150, 169, 170, 173, 180, 181, 183, 184, 188, 200, 201, 206, 212, 219, 227, 235, 238, 242, 245, 251, 69, 163, 69, 163, 220, 239, 243, 4, 7, 198, 198, 198, 3, 4, 5, 7, 8, 28, 29, 32, 60, 61, 62, 63, 74, 77, 94, 95, 98, 100, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 153, 154, 155, 156, 157, 158, 163, 186, 187, 189, 195, 197, 200, 201, 174, 175, 163, 186, 163, 163, 186, 26, 7, 228, 236, 189, 55, 57, 58, 167, 273, 178, 186, 189, 4, 5, 199, 189, 186, 189, 186, 189, 4, 5, 261, 262, 8, 158, 159, 196, 197, 263, 198, 82, 90, 167, 186, 189, 274, 82, 90, 103, 274, 274, 81, 189, 194, 10, 50, 194, 194, 56, 82, 83, 84, 89, 88, 189, 181, 188, 200, 201, 186, 186, 186, 103, 163, 163, 163, 163, 163, 186, 274, 0, 42, 171, 85, 86, 97, 69, 69, 22, 189, 202, 203, 186, 202, 4, 163, 170, 163, 163, 33, 34, 163, 163, 189, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 189, 186, 189, 64, 65, 66, 67, 68, 69, 159, 18, 19, 60, 61, 64, 65, 66, 67, 68, 69, 70, 158, 159, 160, 161, 4, 5, 213, 214, 4, 5, 215, 216, 186, 202, 202, 186, 189, 230, 170, 246, 252, 163, 55, 163, 4, 7, 163, 186, 189, 264, 55, 167, 266, 271, 163, 163, 166, 166, 166, 163, 163, 166, 197, 197, 166, 189, 186, 189, 9, 166, 166, 186, 166, 194, 179, 10, 166, 182, 166, 194, 10, 194, 182, 182, 5, 185, 185, 185, 164, 189, 186, 166, 166, 41, 194, 194, 194, 189, 186, 207, 164, 186, 189, 204, 205, 164, 69, 189, 16, 42, 244, 202, 202, 189, 189, 189, 90, 186, 274, 274, 4, 5, 192, 193, 192, 193, 194, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 274, 189, 189, 189, 189, 189, 164, 189, 186, 186, 186, 186, 186, 189, 189, 189, 164, 189, 189, 186, 189, 186, 189, 186, 186, 164, 186, 164, 186, 164, 186, 164, 186, 186, 186, 186, 186, 186, 186, 186, 186, 274, 186, 164, 164, 186, 185, 186, 185, 186, 164, 164, 186, 186, 186, 186, 186, 186, 186, 176, 177, 191, 190, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 163, 163, 166, 163, 163, 166, 164, 164, 41, 229, 39, 42, 237, 44, 170, 189, 163, 186, 189, 48, 265, 165, 166, 163, 4, 7, 163, 8, 272, 202, 202, 4, 5, 189, 189, 202, 202, 262, 8, 196, 166, 79, 80, 90, 186, 189, 189, 266, 194, 186, 194, 182, 189, 189, 163, 166, 166, 166, 164, 164, 186, 189, 186, 189, 172, 166, 182, 182, 4, 5, 211, 166, 221, 164, 163, 164, 164, 166, 166, 166, 164, 164, 166, 166, 164, 163, 163, 164, 164, 166, 166, 182, 166, 164, 164, 164, 164, 164, 164, 166, 164, 164, 166, 164, 164, 164, 164, 164, 164, 164, 166, 164, 164, 166, 166, 166, 164, 166, 166, 164, 166, 164, 164, 164, 164, 164, 166, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 166, 166, 164, 164, 164, 164, 164, 166, 166, 164, 166, 166, 164, 166, 166, 198, 275, 198, 276, 189, 189, 202, 202, 214, 202, 202, 216, 41, 231, 247, 47, 166, 189, 164, 166, 164, 163, 186, 186, 189, 189, 267, 268, 189, 4, 5, 258, 260, 164, 164, 163, 163, 166, 166, 164, 164, 189, 78, 78, 166, 166, 166, 194, 166, 166, 202, 189, 189, 189, 173, 189, 194, 194, 208, 205, 189, 240, 189, 189, 189, 189, 186, 90, 186, 164, 164, 189, 189, 194, 189, 189, 189, 189, 189, 189, 189, 189, 189, 186, 189, 186, 186, 186, 193, 186, 193, 186, 186, 166, 166, 164, 164, 164, 164, 37, 38, 233, 170, 189, 166, 55, 186, 186, 265, 166, 258, 258, 164, 163, 163, 166, 202, 202, 189, 189, 166, 274, 274, 186, 186, 186, 189, 189, 164, 164, 164, 164, 166, 182, 163, 10, 170, 164, 164, 164, 164, 164, 164, 164, 166, 164, 164, 164, 182, 164, 164, 164, 164, 164, 164, 166, 164, 164, 164, 166, 164, 164, 166, 164, 166, 164, 164, 166, 164, 164, 166, 164, 164, 198, 198, 230, 41, 36, 248, 164, 189, 163, 164, 166, 189, 269, 202, 202, 259, 164, 164, 186, 166, 166, 69, 69, 69, 189, 194, 4, 5, 217, 218, 189, 14, 42, 241, 186, 189, 189, 186, 189, 189, 186, 186, 232, 234, 46, 254, 57, 58, 164, 189, 55, 186, 164, 258, 164, 164, 258, 186, 186, 186, 186, 186, 164, 163, 163, 164, 166, 11, 225, 164, 166, 164, 164, 164, 164, 164, 164, 170, 170, 189, 45, 253, 163, 166, 163, 164, 270, 69, 164, 164, 209, 218, 189, 222, 189, 44, 257, 170, 249, 186, 189, 189, 272, 186, 170, 170, 164, 255, 42, 47, 250, 164, 166, 164, 166, 258, 23, 42, 210, 223, 170, 186, 189, 12, 42, 224, 256, 164, 164, 4, 226, 254 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 168, 169, 170, 171, 172, 170, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 174, 173, 175, 173, 173, 173, 173, 173, 173, 173, 176, 173, 177, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 178, 173, 179, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 180, 180, 180, 180, 180, 181, 181, 181, 181, 181, 181, 182, 182, 183, 183, 183, 183, 183, 184, 184, 185, 185, 186, 186, 186, 186, 186, 186, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 188, 188, 190, 189, 191, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 192, 193, 194, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 196, 196, 196, 197, 197, 198, 198, 199, 199, 199, 199, 200, 201, 203, 202, 204, 204, 204, 205, 205, 207, 208, 209, 206, 210, 210, 211, 211, 212, 212, 212, 212, 213, 213, 214, 214, 214, 214, 215, 215, 216, 216, 216, 216, 217, 217, 217, 218, 218, 218, 218, 220, 221, 222, 223, 219, 224, 224, 225, 225, 226, 226, 228, 227, 229, 229, 230, 230, 231, 232, 231, 233, 234, 233, 236, 235, 237, 237, 239, 240, 238, 241, 241, 243, 242, 244, 244, 246, 247, 248, 249, 245, 250, 250, 252, 251, 253, 253, 254, 255, 256, 254, 257, 257, 258, 259, 258, 260, 260, 260, 260, 261, 261, 262, 262, 262, 262, 263, 263, 263, 263, 264, 264, 264, 264, 264, 265, 265, 265, 267, 266, 268, 266, 269, 266, 270, 266, 271, 266, 272, 272, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 274, 274, 275, 275, 276, 276 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 2, 1, 0, 0, 5, 0, 1, 2, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 3, 0, 3, 1, 1, 2, 2, 3, 3, 0, 5, 0, 5, 2, 1, 2, 1, 2, 4, 4, 3, 4, 4, 0, 3, 0, 4, 6, 2, 6, 2, 2, 2, 1, 2, 1, 2, 2, 2, 5, 7, 3, 2, 3, 4, 5, 3, 2, 4, 3, 8, 6, 6, 2, 2, 5, 7, 4, 6, 8, 5, 2, 2, 2, 2, 3, 2, 2, 1, 1, 3, 4, 4, 4, 4, 4, 4, 1, 1, 2, 1, 2, 0, 1, 1, 2, 2, 3, 10, 8, 8, 8, 3, 1, 1, 6, 4, 4, 6, 6, 4, 6, 1, 4, 1, 1, 1, 1, 3, 3, 6, 6, 8, 6, 4, 6, 8, 1, 3, 4, 4, 4, 4, 4, 4, 4, 4, 1, 3, 1, 3, 4, 6, 6, 4, 6, 4, 6, 10, 4, 4, 4, 3, 3, 0, 4, 0, 4, 2, 3, 3, 3, 3, 3, 3, 4, 6, 1, 4, 4, 6, 6, 1, 1, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 6, 4, 4, 6, 4, 4, 4, 4, 4, 4, 6, 4, 3, 6, 6, 4, 4, 4, 4, 6, 6, 8, 6, 8, 4, 4, 4, 4, 1, 3, 4, 1, 3, 4, 1, 3, 4, 1, 3, 6, 6, 6, 4, 8, 6, 8, 6, 4, 4, 4, 6, 6, 6, 8, 1, 2, 2, 1, 1, 1, 1, 4, 6, 4, 6, 4, 4, 0, 2, 0, 1, 3, 1, 1, 0, 0, 0, 11, 1, 1, 1, 1, 0, 1, 1, 2, 1, 3, 1, 1, 4, 4, 1, 3, 1, 1, 4, 4, 0, 1, 3, 1, 1, 3, 3, 0, 0, 0, 0, 14, 1, 1, 0, 2, 0, 1, 0, 7, 1, 2, 1, 1, 0, 0, 5, 0, 0, 4, 0, 4, 1, 1, 0, 0, 8, 1, 1, 0, 4, 1, 4, 0, 0, 0, 0, 11, 1, 1, 0, 5, 0, 2, 0, 0, 0, 7, 0, 1, 1, 0, 4, 1, 4, 1, 4, 1, 3, 1, 4, 1, 4, 1, 1, 3, 3, 0, 2, 4, 1, 3, 0, 2, 6, 0, 4, 0, 4, 0, 6, 0, 9, 0, 3, 0, 1, 0, 2, 2, 4, 1, 4, 6, 6, 7, 10, 12, 7, 10, 12, 2, 1, 1, 3, 1, 3 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (0) /* Error token number */ #define YYTERROR 1 #define YYERRCODE 256 /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*----------------------------------------. | Print this symbol's value on YYOUTPUT. | `----------------------------------------*/ static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) { FILE *yyo = yyoutput; YYUSE (yyo); if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # endif YYUSE (yytype); } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) { YYFPRINTF (yyoutput, "%s %s (", yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (0) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ static void yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule) { unsigned long int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yystos[yyssp[yyi + 1 - yynrhs]], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyssp, yyvsp, Rule); \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ static YYSIZE_T yystrlen (const char *yystr) { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ static char * yystpcpy (char *yydest, const char *yysrc) { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]); YYSIZE_T yysize = yysize0; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = YY_NULLPTR; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; { YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } { YYSIZE_T yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YYUSE (yytype); YY_IGNORE_MAYBE_UNINITIALIZED_END } /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ int yyparse (void) { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: 'yyss': related to states. 'yyvs': related to semantic values. Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken = 0; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yyssp = yyss = yyssa; yyvsp = yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = yylex (); } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: '$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: {YYACCEPT;} break; case 4: {if (errorlevel<=ERROR) {YYABORT;}} break; case 5: {if ((yyvsp[0].sep)>=0) mylineno+=(yyvsp[0].sep);} break; case 12: {report_missing(ERROR,"can not import a library in a loop or an if-statement");} break; case 13: {add_command(cERROR,NULL,NULL);} break; case 19: {add_command(cPOP_MULTI,NULL,NULL);create_mybreak(1);if (!loop_nesting && !switch_nesting) error(ERROR,"break outside loop or switch");} break; case 20: {add_command(cPOP_MULTI,NULL,NULL);create_mybreak(atoi((yyvsp[0].digits)));if (!loop_nesting && !switch_nesting) error(ERROR,"break outside loop or switch");} break; case 21: {add_command(cPOP_MULTI,NULL,NULL);add_command_with_switch_state(cCONTINUE);if (!loop_nesting) error(ERROR,"continue outside loop");} break; case 23: {create_call((yyvsp[0].symbol));add_command(cPOP,NULL,NULL);} break; case 24: {create_call((yyvsp[0].symbol));add_command(cPOP,NULL,NULL);} break; case 25: {if (function_type==ftNONE) error(ERROR,"no use for 'local' outside functions");} break; case 27: {if (function_type==ftNONE) error(ERROR,"no use for 'static' outside functions");} break; case 31: {create_goto((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol));} break; case 32: {create_gosub((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol));} break; case 33: {create_exception(TRUE);} break; case 34: {create_exception(FALSE);} break; case 35: {add_command(cSKIPPER,NULL,NULL);} break; case 36: {add_command(cNOP,NULL,NULL);} break; case 37: {add_command(cSKIPPER,NULL,NULL);} break; case 38: {add_command(cNOP,NULL,NULL);} break; case 39: {create_label((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol),cLABEL);} break; case 40: {add_command(cCHECKOPEN,NULL,NULL);} break; case 41: {add_command(cCLOSE,NULL,NULL);} break; case 42: {add_command(cCHECKSEEK,NULL,NULL);} break; case 43: {add_command(cCOMPILE,NULL,NULL);} break; case 44: {create_execute(0);add_command(cPOP,NULL,NULL);add_command(cPOP,NULL,NULL);} break; case 45: {create_execute(1);add_command(cPOP,NULL,NULL);add_command(cPOP,NULL,NULL);} break; case 46: {create_colour(0);create_print('n');create_pps(cPOPSTREAM,0);} break; case 47: {create_colour(0);create_pps(cPOPSTREAM,0);} break; case 48: {create_colour(0);create_print('t');create_pps(cPOPSTREAM,0);} break; case 49: {tileol=FALSE;} break; case 51: {tileol=TRUE;} break; case 53: {add_command(cGCOLOUR,NULL,NULL);} break; case 54: {add_command(cGCOLOUR2,NULL,NULL);} break; case 55: {add_command(cGBACKCOLOUR,NULL,NULL);} break; case 56: {add_command(cGBACKCOLOUR2,NULL,NULL);} break; case 59: {create_restore("");} break; case 60: {create_restore((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol));} break; case 61: {if (function_type!=ftNONE) { add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref; add_command(cPOPSYMLIST,NULL,NULL); create_check_return_value(ftNONE,function_type); add_command(cRETURN_FROM_CALL,NULL,NULL); } else { add_command(cRETURN_FROM_GOSUB,NULL,NULL); }} break; case 62: {if (function_type==ftNONE) {error(ERROR,"a value can only be returned from a subroutine"); YYABORT;} add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref;add_command(cPOPSYMLIST,NULL,NULL);create_check_return_value(ftNUMBER,function_type);add_command(cRETURN_FROM_CALL,NULL,NULL);} break; case 63: {if (function_type==ftNONE) {error(ERROR,"can not return value"); YYABORT;} add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref;add_command(cPOPSYMLIST,NULL,NULL);create_check_return_value(ftSTRING,function_type);add_command(cRETURN_FROM_CALL,NULL,NULL);} break; case 65: {create_openwin(FALSE);} break; case 66: {create_openwin(TRUE);} break; case 67: {add_command(cMOVEORIGIN,NULL,NULL);} break; case 68: {add_command(cDOT,NULL,NULL);} break; case 69: {add_command(cDOT,NULL,NULL);putindrawmode(dmCLEAR);} break; case 70: {create_line(2);} break; case 71: {create_line(2);putindrawmode(dmCLEAR);} break; case 72: {create_line(1);} break; case 73: {create_line(1);} break; case 74: {create_line(1);putindrawmode(dmCLEAR);} break; case 75: {create_line(1);putindrawmode(dmCLEAR);} break; case 76: {add_command(cPUTBIT,NULL,NULL);} break; case 77: {create_pushstr("solid"); add_command(cPUTBIT,NULL,NULL);} break; case 78: {add_command(cPUTCHAR,NULL,NULL);} break; case 79: {create_line(-1);} break; case 80: {create_line(0);} break; case 81: {add_command(cCIRCLE,NULL,NULL);putindrawmode(0);} break; case 82: {add_command(cTRIANGLE,NULL,NULL);putindrawmode(0);} break; case 83: {add_command(cTEXT1,NULL,NULL);} break; case 84: {add_command(cTEXT2,NULL,NULL);} break; case 85: {add_command(cTEXT3,NULL,NULL);} break; case 86: {add_command(cRECT,NULL,NULL);putindrawmode(0);} break; case 87: {add_command(cCLOSEWIN,NULL,NULL);} break; case 88: {add_command(cCLEARWIN,NULL,NULL);} break; case 89: {add_command(cCLEARSCR,NULL,NULL);} break; case 90: {create_openprinter(0);} break; case 91: {create_openprinter(1);} break; case 92: {add_command(cCLOSEPRN,NULL,NULL);} break; case 93: {add_command(cWAIT,NULL,NULL);} break; case 94: {add_command(cBELL,NULL,NULL);} break; case 95: {create_pushdbl(-1);create_function(fINKEY);add_command(cPOP,NULL,NULL);} break; case 96: {create_pushdbl(-1);create_function(fINKEY);add_command(cPOP,NULL,NULL);} break; case 97: {create_function(fINKEY);add_command(cPOP,NULL,NULL);} break; case 98: {create_function(fSYSTEM2); add_command(cPOP,NULL,NULL);} break; case 99: {create_poke('s');} break; case 100: {create_poke('d');} break; case 101: {create_poke('S');} break; case 102: {create_poke('D');} break; case 103: {add_command(cEND,NULL,NULL);} break; case 104: {create_pushdbl(0);add_command(cEXIT,NULL,NULL);} break; case 105: {add_command(cEXIT,NULL,NULL);} break; case 106: {create_docu((yyvsp[0].symbol));} break; case 107: {add_command(cBIND,NULL,NULL);} break; case 108: {drawmode=0;} break; case 109: {drawmode=dmCLEAR;} break; case 110: {drawmode=dmFILL;} break; case 111: {drawmode=dmFILL+dmCLEAR;} break; case 112: {drawmode=dmFILL+dmCLEAR;} break; case 113: {add_command(cPOPSTRSYM,dotify((yyvsp[-2].symbol),FALSE),NULL);} break; case 114: {create_changestring(fMID);} break; case 115: {create_changestring(fMID2);} break; case 116: {create_changestring(fLEFT);} break; case 117: {create_changestring(fRIGHT);} break; case 118: {create_doarray(dotify((yyvsp[-2].symbol),FALSE),ASSIGNSTRINGARRAY);} break; case 121: {create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} break; case 122: {create_myopen(OPEN_HAS_STREAM);} break; case 123: {create_myopen(OPEN_HAS_STREAM+OPEN_PRINTER);} break; case 124: {add_command(cSWAP,NULL,NULL);create_pushstr("r");create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} break; case 125: {add_command(cSWAP,NULL,NULL);create_pushstr("w");create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} break; case 126: {add_command(cSEEK,NULL,NULL);} break; case 127: {add_command(cSEEK2,NULL,NULL);} break; case 128: {add_command(cPUSHSTRPTR,dotify((yyvsp[0].symbol),FALSE),NULL);} break; case 129: {create_doarray(dotify((yyvsp[-3].symbol),FALSE),GETSTRINGPOINTER);} break; case 130: {add_command(cPUSHSTRSYM,dotify((yyvsp[0].symbol),FALSE),NULL);} break; case 132: {add_command(cSTRINGFUNCTION_OR_ARRAY,(yyvsp[0].symbol),NULL);} break; case 133: {if ((yyvsp[0].string)==NULL) {error(ERROR,"String not terminated");create_pushstr("");} else {create_pushstr((yyvsp[0].string));}} break; case 134: {add_command(cCONCAT,NULL,NULL);} break; case 136: {create_function(fLEFT);} break; case 137: {create_function(fRIGHT);} break; case 138: {create_function(fMID);} break; case 139: {create_function(fMID2);} break; case 140: {create_function(fSTR);} break; case 141: {create_function(fSTR2);} break; case 142: {create_function(fSTR3);} break; case 143: {create_pushdbl(-1);create_function(fINKEY);} break; case 144: {create_pushdbl(-1);create_function(fINKEY);} break; case 145: {create_function(fINKEY);} break; case 146: {create_function(fCHR);} break; case 147: {create_function(fUPPER);} break; case 148: {create_function(fLOWER);} break; case 149: {create_function(fLTRIM);} break; case 150: {create_function(fRTRIM);} break; case 151: {create_function(fTRIM);} break; case 152: {create_function(fSYSTEM);} break; case 153: {create_function(fDATE);} break; case 154: {create_function(fDATE);} break; case 155: {create_function(fTIME);} break; case 156: {create_function(fTIME);} break; case 157: {create_function(fPEEK2);} break; case 158: {create_function(fPEEK3);} break; case 159: {add_command(cTOKENALT2,NULL,NULL);} break; case 160: {add_command(cTOKENALT,NULL,NULL);} break; case 161: {add_command(cSPLITALT2,NULL,NULL);} break; case 162: {add_command(cSPLITALT,NULL,NULL);} break; case 163: {create_function(fGETBIT);} break; case 164: {create_function(fGETCHAR);} break; case 165: {create_function(fHEX);} break; case 166: {create_function(fBIN);} break; case 167: {create_execute(1);add_command(cSWAP,NULL,NULL);add_command(cPOP,NULL,NULL);} break; case 168: {add_command(cPOPDBLSYM,dotify((yyvsp[-2].symbol),FALSE),NULL);} break; case 169: {create_doarray((yyvsp[-2].symbol),ASSIGNARRAY);} break; case 170: {add_command(cORSHORT,NULL,NULL);pushlabel();} break; case 171: {poplabel();create_boole('|');} break; case 172: {add_command(cANDSHORT,NULL,NULL);pushlabel();} break; case 173: {poplabel();create_boole('&');} break; case 174: {create_boole('!');} break; case 175: {create_dblrelop('=');} break; case 176: {create_dblrelop('!');} break; case 177: {create_dblrelop('<');} break; case 178: {create_dblrelop('{');} break; case 179: {create_dblrelop('>');} break; case 180: {create_dblrelop('}');} break; case 181: {add_command(cTESTEOF,NULL,NULL);} break; case 182: {add_command(cGLOB,NULL,NULL);} break; case 183: {create_pushdbl((yyvsp[0].fnum));} break; case 184: {add_command(cARDIM,"",NULL);} break; case 185: {add_command(cARDIM,"",NULL);} break; case 186: {add_command(cARSIZE,"",NULL);} break; case 187: {add_command(cARSIZE,"",NULL);} break; case 188: {add_command(cFUNCTION_OR_ARRAY,(yyvsp[0].symbol),NULL);} break; case 189: {add_command(cPUSHDBLSYM,dotify((yyvsp[0].symbol),FALSE),NULL);} break; case 190: {create_dblbin('+');} break; case 191: {create_dblbin('-');} break; case 192: {create_dblbin('*');} break; case 193: {create_dblbin('/');} break; case 194: {create_dblbin('^');} break; case 195: {add_command(cNEGATE,NULL,NULL);} break; case 196: {create_strrelop('=');} break; case 197: {create_strrelop('!');} break; case 198: {create_strrelop('<');} break; case 199: {create_strrelop('{');} break; case 200: {create_strrelop('>');} break; case 201: {create_strrelop('}');} break; case 204: {create_pusharrayref(dotify((yyvsp[-2].symbol),FALSE),stNUMBERARRAYREF);} break; case 205: {create_pusharrayref(dotify((yyvsp[-2].symbol),FALSE),stSTRINGARRAYREF);} break; case 207: {create_function(fSIN);} break; case 208: {create_function(fASIN);} break; case 209: {create_function(fCOS);} break; case 210: {create_function(fACOS);} break; case 211: {create_function(fTAN);} break; case 212: {create_function(fATAN);} break; case 213: {create_function(fATAN2);} break; case 214: {create_function(fEXP);} break; case 215: {create_function(fLOG);} break; case 216: {create_function(fLOG2);} break; case 217: {create_function(fSQRT);} break; case 218: {create_function(fSQR);} break; case 219: {create_function(fINT);} break; case 220: {create_function(fFRAC);} break; case 221: {create_function(fABS);} break; case 222: {create_function(fSIG);} break; case 223: {create_function(fMOD);} break; case 224: {create_function(fRAN);} break; case 225: {create_function(fRAN2);} break; case 226: {create_function(fMIN);} break; case 227: {create_function(fMAX);} break; case 228: {create_function(fLEN);} break; case 229: {create_function(fVAL);} break; case 230: {create_function(fASC);} break; case 231: {create_function(fDEC);} break; case 232: {create_function(fDEC2);} break; case 233: {if (check_compat) error(WARNING,"instr() has changed in version 2.712"); create_function(fINSTR);} break; case 234: {create_function(fINSTR2);} break; case 235: {create_function(fRINSTR);} break; case 236: {create_function(fRINSTR2);} break; case 237: {create_function(fSYSTEM2);} break; case 238: {create_function(fPEEK4);} break; case 239: {create_function(fPEEK);} break; case 240: {create_function(fMOUSEX);} break; case 241: {create_pushstr("");create_function(fMOUSEX);} break; case 242: {create_pushstr("");create_function(fMOUSEX);} break; case 243: {create_function(fMOUSEY);} break; case 244: {create_pushstr("");create_function(fMOUSEY);} break; case 245: {create_pushstr("");create_function(fMOUSEY);} break; case 246: {create_function(fMOUSEB);} break; case 247: {create_pushstr("");create_function(fMOUSEB);} break; case 248: {create_pushstr("");create_function(fMOUSEB);} break; case 249: {create_function(fMOUSEMOD);} break; case 250: {create_pushstr("");create_function(fMOUSEMOD);} break; case 251: {create_pushstr("");create_function(fMOUSEMOD);} break; case 252: {create_function(fAND);} break; case 253: {create_function(fOR);} break; case 254: {create_function(fEOR);} break; case 255: {create_function(fTELL);} break; case 256: {add_command(cTOKEN2,NULL,NULL);} break; case 257: {add_command(cTOKEN,NULL,NULL);} break; case 258: {add_command(cSPLIT2,NULL,NULL);} break; case 259: {add_command(cSPLIT,NULL,NULL);} break; case 260: {create_execute(0);add_command(cSWAP,NULL,NULL);add_command(cPOP,NULL,NULL);} break; case 261: {create_myopen(OPEN_PRINTER);} break; case 262: {create_myopen(0);} break; case 263: {create_myopen(OPEN_HAS_MODE);} break; case 264: {create_myopen(OPEN_PRINTER+OPEN_HAS_STREAM);} break; case 265: {create_myopen(OPEN_HAS_STREAM);} break; case 266: {create_myopen(OPEN_HAS_STREAM+OPEN_HAS_MODE);} break; case 267: {(yyval.fnum)=(yyvsp[0].fnum);} break; case 268: {(yyval.fnum)=(yyvsp[0].fnum);} break; case 269: {(yyval.fnum)=-(yyvsp[0].fnum);} break; case 270: {(yyval.fnum)=(yyvsp[0].fnum);} break; case 271: {(yyval.fnum)=strtod((yyvsp[0].digits),NULL);} break; case 272: {(yyval.symbol)=my_strdup(dotify((yyvsp[0].digits),FALSE));} break; case 273: {(yyval.symbol)=my_strdup(dotify((yyvsp[0].symbol),FALSE));} break; case 274: {create_dim(dotify((yyvsp[-3].symbol),FALSE),'D');} break; case 275: {create_dim(dotify((yyvsp[-3].symbol),FALSE),'D');} break; case 276: {create_dim(dotify((yyvsp[-3].symbol),FALSE),'S');} break; case 277: {create_dim(dotify((yyvsp[-3].symbol),FALSE),'S');} break; case 278: {(yyval.symbol)=my_strdup(dotify((yyvsp[-3].symbol),FALSE));} break; case 279: {(yyval.symbol)=my_strdup(dotify((yyvsp[-3].symbol),FALSE));} break; case 280: {add_command(cPUSHFREE,NULL,NULL);} break; case 287: {missing_endsub++;missing_endsub_line=mylineno;pushlabel();report_missing(WARNING,"do not define a function in a loop or an if-statement");if (function_type!=ftNONE) {error(ERROR,"nested functions not allowed");YYABORT;}} break; case 288: {if (exported) create_subr_link((yyvsp[0].symbol)); create_label((yyvsp[0].symbol),cUSER_FUNCTION); add_command(cPUSHSYMLIST,NULL,NULL);add_command(cCLEARREFS,NULL,NULL);firstref=lastref=lastcmd; create_count_params();} break; case 289: {create_require(stFREE);add_command(cPOP,NULL,NULL);} break; case 290: {add_command(cCLEARREFS,NULL,NULL);lastcmd->nextref=firstref;add_command(cPOPSYMLIST,NULL,NULL);create_check_return_value(ftNONE,function_type);function_type=ftNONE;add_command(cRETURN_FROM_CALL,NULL,NULL);lastref=NULL;create_endfunction();poplabel();} break; case 291: {if (missing_endsub) {sprintf(string,"%d end-sub(s) are missing (last at line %d)",missing_endsub,missing_endsub_line);error(ERROR,string);} YYABORT;} break; case 292: {missing_endsub--;} break; case 293: {function_type=ftNUMBER;current_function=my_strdup(dotify((yyvsp[0].symbol),FALSE));(yyval.symbol)=my_strdup(dotify((yyvsp[0].symbol),FALSE));} break; case 294: {function_type=ftSTRING;current_function=my_strdup(dotify((yyvsp[0].symbol),FALSE));(yyval.symbol)=my_strdup(dotify((yyvsp[0].symbol),FALSE));} break; case 295: {exported=FALSE;} break; case 296: {exported=TRUE;} break; case 297: {exported=FALSE;} break; case 298: {exported=TRUE;} break; case 301: {create_makelocal(dotify((yyvsp[0].symbol),FALSE),syNUMBER);} break; case 302: {create_makelocal(dotify((yyvsp[0].symbol),FALSE),sySTRING);} break; case 303: {create_makelocal(dotify((yyvsp[-3].symbol),FALSE),syARRAY);create_dim(dotify((yyvsp[-3].symbol),FALSE),'d');} break; case 304: {create_makelocal(dotify((yyvsp[-3].symbol),FALSE),syARRAY);create_dim(dotify((yyvsp[-3].symbol),FALSE),'s');} break; case 307: {create_makestatic(dotify((yyvsp[0].symbol),TRUE),syNUMBER);} break; case 308: {create_makestatic(dotify((yyvsp[0].symbol),TRUE),sySTRING);} break; case 309: {create_makestatic(dotify((yyvsp[-3].symbol),TRUE),syARRAY);create_dim(dotify((yyvsp[-3].symbol),TRUE),'D');} break; case 310: {create_makestatic(dotify((yyvsp[-3].symbol),TRUE),syARRAY);create_dim(dotify((yyvsp[-3].symbol),TRUE),'S');} break; case 314: {create_require(stNUMBER);create_makelocal(dotify((yyvsp[0].symbol),FALSE),syNUMBER);add_command(cPOPDBLSYM,dotify((yyvsp[0].symbol),FALSE),NULL);} break; case 315: {create_require(stSTRING);create_makelocal(dotify((yyvsp[0].symbol),FALSE),sySTRING);add_command(cPOPSTRSYM,dotify((yyvsp[0].symbol),FALSE),NULL);} break; case 316: {create_require(stNUMBERARRAYREF);create_arraylink(dotify((yyvsp[-2].symbol),FALSE),stNUMBERARRAYREF);} break; case 317: {create_require(stSTRINGARRAYREF);create_arraylink(dotify((yyvsp[-2].symbol),FALSE),stSTRINGARRAYREF);} break; case 318: {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);missing_next++;missing_next_line=mylineno;} break; case 319: {pushname(dotify((yyvsp[-1].symbol),FALSE)); /* will be used by next_symbol to check equality,NULL */ add_command(cRESETSKIPONCE,NULL,NULL); pushgoto();add_command_with_switch_state(cCONTINUE_HERE);} break; case 320: { /* pushes another expression */ add_command(cSKIPONCE,NULL,NULL); pushlabel(); add_command(cSTARTFOR,NULL,NULL); add_command(cPOPDBLSYM,dotify((yyvsp[-6].symbol),FALSE),NULL); poplabel(); add_command(cPUSHDBLSYM,dotify((yyvsp[-6].symbol),FALSE),NULL); add_command(cFORINCREMENT,NULL,NULL); add_command(cPOPDBLSYM,dotify((yyvsp[-6].symbol),FALSE),NULL); add_command(cPUSHDBLSYM,dotify((yyvsp[-6].symbol),FALSE),NULL); add_command(cFORCHECK,NULL,NULL); add_command(cDECIDE,NULL,NULL); pushlabel();} break; case 321: { swap();popgoto();poplabel();} break; case 322: {add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} break; case 323: {if (missing_next) {sprintf(string,"%d next(s) are missing (last at line %d)",missing_next,missing_next_line);error(ERROR,string);} YYABORT;} break; case 324: {missing_next--;} break; case 325: {create_pushdbl(1);} break; case 327: {pop(stSTRING);} break; case 328: {if (strcmp(pop(stSTRING)->pointer,dotify((yyvsp[0].symbol),FALSE))) {error(ERROR,"'for' and 'next' do not match"); YYABORT;} } break; case 329: {push_switch_id();add_command(cBEGIN_SWITCH_MARK,NULL,NULL);} break; case 330: {add_command(cBREAK_HERE,NULL,NULL);add_command(cPOP,NULL,NULL);add_command(cEND_SWITCH_MARK,NULL,NULL);pop_switch_id();} break; case 331: {if ((yyvsp[0].sep)>=0) mylineno+=(yyvsp[0].sep);} break; case 332: {if ((yyvsp[0].sep)>=0) mylineno+=(yyvsp[0].sep);} break; case 336: {add_command(cSWITCH_COMPARE,NULL,NULL);add_command(cDECIDE,NULL,NULL);add_command(cNEXT_CASE,NULL,NULL);} break; case 337: {add_command(cNEXT_CASE_HERE,NULL,NULL);} break; case 339: {if ((yyvsp[0].sep)>=0) mylineno+=(yyvsp[0].sep); add_command(cNEXT_CASE_HERE,NULL,NULL);} break; case 341: {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);add_command_with_switch_state(cCONTINUE_HERE);missing_loop++;missing_loop_line=mylineno;pushgoto();} break; case 343: {if (missing_loop) {sprintf(string,"%d loop(s) are missing (last at line %d)",missing_loop,missing_loop_line);error(ERROR,string);} YYABORT;} break; case 344: {missing_loop--;popgoto();add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} break; case 345: {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);add_command_with_switch_state(cCONTINUE_HERE);missing_wend++;missing_wend_line=mylineno;pushgoto();} break; case 346: {add_command(cDECIDE,NULL,NULL); pushlabel();} break; case 348: {if (missing_wend) {sprintf(string,"%d wend(s) are missing (last at line %d)",missing_wend,missing_wend_line);error(ERROR,string);} YYABORT;} break; case 349: {missing_wend--;swap();popgoto();poplabel();add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} break; case 350: {loop_nesting++;add_command(cBEGIN_LOOP_MARK,NULL,NULL);add_command_with_switch_state(cCONTINUE_HERE);missing_until++;missing_until_line=mylineno;pushgoto();} break; case 352: {if (missing_until) {sprintf(string,"%d until(s) are missing (last at line %d)",missing_until,missing_until_line);error(ERROR,string);} YYABORT;} break; case 353: {missing_until--;add_command(cDECIDE,NULL,NULL);popgoto();add_command(cBREAK_HERE,NULL,NULL);add_command(cEND_LOOP_MARK,NULL,NULL);loop_nesting--;} break; case 354: {add_command(cDECIDE,NULL,NULL);storelabel();pushlabel();} break; case 355: {missing_endif++;missing_endif_line=mylineno;} break; case 356: {swap();matchgoto();swap();poplabel();} break; case 357: {poplabel();} break; case 359: {if (missing_endif) {sprintf(string,"%d endif(s) are missing (last at line %d)",missing_endif,missing_endif_line);error(ERROR,string);} YYABORT;} break; case 360: {missing_endif--;} break; case 361: {fi_pending++;add_command(cDECIDE,NULL,NULL);pushlabel();} break; case 362: {poplabel();} break; case 366: {add_command(cDECIDE,NULL,NULL);pushlabel();} break; case 367: {swap();matchgoto();swap();poplabel();} break; case 372: {add_command(cCHKPROMPT,NULL,NULL);} break; case 374: {create_myread('d',tileol);add_command(cPOPDBLSYM,dotify((yyvsp[0].symbol),FALSE),FALSE);} break; case 375: {create_myread('d',tileol);create_doarray(dotify((yyvsp[-3].symbol),FALSE),ASSIGNARRAY);} break; case 376: {create_myread('s',tileol);add_command(cPOPSTRSYM,dotify((yyvsp[0].symbol),FALSE),FALSE);} break; case 377: {create_myread('s',tileol);create_doarray(dotify((yyvsp[-3].symbol),FALSE),ASSIGNSTRINGARRAY);} break; case 380: {create_readdata('d');add_command(cPOPDBLSYM,dotify((yyvsp[0].symbol),FALSE),FALSE);} break; case 381: {create_readdata('d');create_doarray(dotify((yyvsp[-3].symbol),FALSE),ASSIGNARRAY);} break; case 382: {create_readdata('s');add_command(cPOPSTRSYM,dotify((yyvsp[0].symbol),FALSE),FALSE);} break; case 383: {create_readdata('s');create_doarray(dotify((yyvsp[-3].symbol),FALSE),ASSIGNSTRINGARRAY);} break; case 384: {create_strdata((yyvsp[0].string));} break; case 385: {create_dbldata((yyvsp[0].fnum));} break; case 386: {create_strdata((yyvsp[0].string));} break; case 387: {create_dbldata((yyvsp[0].fnum));} break; case 391: {create_print('s');} break; case 392: {create_print('s');} break; case 393: {create_print('d');} break; case 394: {create_print('u');} break; case 395: {create_print('U');} break; case 396: {add_command(cPUSHDBLSYM,dotify((yyvsp[0].symbol),FALSE),FALSE);create_pps(cPUSHSTREAM,1);} break; case 397: {create_pps(cPOPSTREAM,0);} break; case 398: {create_pushdbl(atoi((yyvsp[0].digits)));create_pps(cPUSHSTREAM,1);} break; case 399: {create_pps(cPOPSTREAM,0);} break; case 400: {create_pps(cPUSHSTREAM,1);} break; case 401: {create_pps(cPOPSTREAM,0);} break; case 402: {add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,1);} break; case 403: {create_pps(cPOPSTREAM,0);} break; case 404: {create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,1);} break; case 405: {create_pps(cPOPSTREAM,0);} break; case 406: {create_pushstr("?");create_print('s');} break; case 407: {create_pushstr((yyvsp[0].string));create_print('s');} break; case 408: {create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 409: {add_command(cPUSHDBLSYM,dotify((yyvsp[0].symbol),FALSE),FALSE);create_pps(cPUSHSTREAM,0);} break; case 410: {create_pushdbl(atoi((yyvsp[0].digits)));create_pps(cPUSHSTREAM,0);} break; case 411: {create_pps(cPUSHSTREAM,0);} break; case 412: {create_colour(1);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 413: {create_colour(2);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 414: {create_colour(3);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 415: {add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 416: {add_command(cMOVE,NULL,NULL);create_colour(1);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 417: {add_command(cMOVE,NULL,NULL);create_colour(2);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 418: {add_command(cMOVE,NULL,NULL);create_colour(3);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 419: {create_colour(1);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);add_command(cMOVE,NULL,NULL);} break; case 420: {create_colour(2);add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 421: {create_colour(3);add_command(cMOVE,NULL,NULL);create_pushdbl(STDIO_STREAM);create_pps(cPUSHSTREAM,0);} break; case 424: {create_goto((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol));add_command(cFINDNOP,NULL,NULL);} break; case 425: {create_goto((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol));add_command(cFINDNOP,NULL,NULL);} break; case 426: {create_gosub((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol));add_command(cFINDNOP,NULL,NULL);} break; case 427: {create_gosub((function_type!=ftNONE)?dotify((yyvsp[0].symbol),TRUE):(yyvsp[0].symbol));add_command(cFINDNOP,NULL,NULL);} break; default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now 'shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined yyoverflow || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval); } /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif return yyresult; } yabasic-2.78.5/test-driver0000755000175100017510000001104013155154402012345 00000000000000#! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2013-07-13.22; # UTC # Copyright (C) 2011-2014 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <$log_file 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then tweaked_estatus=1 else tweaked_estatus=$estatus fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report the test outcome and exit status in the logs, so that one can # know whether the test passed or failed simply by looking at the '.log' # file, without the need of also peaking into the corresponding '.trs' # file (automake bug#11814). echo "$res $test_name (exit status: $estatus)" >>$log_file # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: yabasic-2.78.5/bison.h0000664000175100017510000001207613260510366011450 00000000000000/* A Bison parser, made by GNU Bison 3.0.4. */ /* Bison interface for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ #ifndef YY_YY_BISON_H_INCLUDED # define YY_YY_BISON_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif #if YYDEBUG extern int yydebug; #endif /* Token type. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { tFNUM = 258, tSYMBOL = 259, tSTRSYM = 260, tDOCU = 261, tDIGITS = 262, tSTRING = 263, tFOR = 264, tTO = 265, tSTEP = 266, tNEXT = 267, tWHILE = 268, tWEND = 269, tREPEAT = 270, tUNTIL = 271, tIMPORT = 272, tGOTO = 273, tGOSUB = 274, tLABEL = 275, tON = 276, tSUB = 277, tENDSUB = 278, tLOCAL = 279, tSTATIC = 280, tEXPORT = 281, tERROR = 282, tEXECUTE = 283, tEXECUTE2 = 284, tCOMPILE = 285, tRUNTIME_CREATED_SUB = 286, tINTERRUPT = 287, tBREAK = 288, tCONTINUE = 289, tSWITCH = 290, tSEND = 291, tCASE = 292, tDEFAULT = 293, tLOOP = 294, tDO = 295, tSEP = 296, tEOPROG = 297, tIF = 298, tTHEN = 299, tELSE = 300, tELSIF = 301, tENDIF = 302, tUSING = 303, tPRINT = 304, tINPUT = 305, tRETURN = 306, tDIM = 307, tEND = 308, tEXIT = 309, tAT = 310, tSCREEN = 311, tREVERSE = 312, tCOLOUR = 313, tBACKCOLOUR = 314, tAND = 315, tOR = 316, tNOT = 317, tEOR = 318, tNEQ = 319, tLEQ = 320, tGEQ = 321, tLTN = 322, tGTN = 323, tEQU = 324, tPOW = 325, tREAD = 326, tDATA = 327, tRESTORE = 328, tOPEN = 329, tCLOSE = 330, tSEEK = 331, tTELL = 332, tAS = 333, tREADING = 334, tWRITING = 335, tORIGIN = 336, tWINDOW = 337, tDOT = 338, tLINE = 339, tCIRCLE = 340, tTRIANGLE = 341, tTEXT = 342, tCLEAR = 343, tFILL = 344, tPRINTER = 345, tWAIT = 346, tBELL = 347, tLET = 348, tARDIM = 349, tARSIZE = 350, tBIND = 351, tRECT = 352, tGETBIT = 353, tPUTBIT = 354, tGETCHAR = 355, tPUTCHAR = 356, tNEW = 357, tCURVE = 358, tSIN = 359, tASIN = 360, tCOS = 361, tACOS = 362, tTAN = 363, tATAN = 364, tEXP = 365, tLOG = 366, tSQRT = 367, tSQR = 368, tMYEOF = 369, tABS = 370, tSIG = 371, tINT = 372, tFRAC = 373, tMOD = 374, tRAN = 375, tVAL = 376, tLEFT = 377, tRIGHT = 378, tMID = 379, tLEN = 380, tMIN = 381, tMAX = 382, tSTR = 383, tINKEY = 384, tCHR = 385, tASC = 386, tHEX = 387, tDEC = 388, tBIN = 389, tUPPER = 390, tLOWER = 391, tMOUSEX = 392, tMOUSEY = 393, tMOUSEB = 394, tMOUSEMOD = 395, tTRIM = 396, tLTRIM = 397, tRTRIM = 398, tINSTR = 399, tRINSTR = 400, tSYSTEM = 401, tSYSTEM2 = 402, tPEEK = 403, tPEEK2 = 404, tPOKE = 405, tDATE = 406, tTIME = 407, tTOKEN = 408, tTOKENALT = 409, tSPLIT = 410, tSPLITALT = 411, tGLOB = 412, UMINUS = 413 }; #endif /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { double fnum; /* double number */ int inum; /* integer number */ int token; /* token of command */ int sep; /* number of newlines */ char *string; /* quoted string */ char *symbol; /* general symbol */ char *digits; /* string of digits */ char *docu; /* embedded documentation */ }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif extern YYSTYPE yylval; int yyparse (void); #endif /* !YY_YY_BISON_H_INCLUDED */ yabasic-2.78.5/INSTALL0000775000175100017510000000011513025160552011205 00000000000000Just execute make install as root to install yabasic on your machine. yabasic-2.78.5/flow.c0000664000175100017510000005771513260633430011307 00000000000000/* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de flow.c --- code for subroutines and flow-control This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ /* ------------- includes ---------------- */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* all prototypes and structures */ #endif /* ------------- external references ---------------- */ extern int mylineno; /* current line number */ extern int yyparse (); /* call bison parser */ extern int switch_nesting; /* ------------- local functions ---------------- */ /* ------------- global variables ---------------- */ static struct command *labelroot = NULL; /* first label among commands */ static struct command *labelhead = NULL; /* last label seen so far */ int switch_id_stack[100]; int max_switch_id=0; /* ------------- subroutines ---------------- */ void create_check_return_value (int is, int should) /* create command 'cCHECK_RETURN_VALUE' */ { struct command *cmd; cmd = add_command (cCHECK_RETURN_VALUE, NULL, NULL); cmd->args = is; cmd->tag = should; } void check_return_value (struct command *cmd) /* check return value of function */ { int is, should; struct stackentry *s; is = cmd->args; should = cmd->tag; if (is == should) { /* okay, function returns expected type */ } else if (is == ftNONE) { /* no element on stack, create one */ s = push (); if (should == ftNUMBER) { s->type = stNUMBER; s->value = 0.0; } else { s->type = stSTRING; s->pointer = my_strdup (""); } } else { sprintf (string, "subroutine returns %s but should return %s", (is == ftSTRING) ? "a string" : "a number", (should == ftSTRING) ? "a string" : "a number"); error (ERROR, string); } if (infolevel >= DEBUG) { s = stackhead->prev; if (s->type == stNUMBER) { sprintf (string, "subroutine returns number %g", s->value); } else if (s->type == stSTRING) sprintf (string, "subroutine returns string '%s'", (char *) s->pointer); else sprintf (string, "subroutine returns something strange (%d)", s->type); error (DEBUG, string); } } void reorder_stack_after_call (int keep_topmost) /* reorganize stack after function call: keep return value and remove switch value (if any) */ { struct stackentry *keep, *kept; char *kept_string; double kept_value; int kept_type; if (keep_topmost) { keep = pop (stANY); kept_type = keep->type; if (keep->type==stSTRING) { kept_string=my_strdup((char *)keep->pointer); } else if (keep->type==stNUMBER) { kept_value=keep->value; } else { error (FATAL, "expecting only string or number on stack"); } } while (stackhead->prev->type!=stRET_ADDR && stackhead->prev->type!=stRET_ADDR_CALL) { /* discard switch values */ pop (stANY); } /* push back kept value */ if (keep_topmost) { kept=push(); if (kept_type==stSTRING) { kept->pointer = kept_string; } else { kept->value = kept_value; } swap (); /* move return address to top */ } } void reorder_stack_before_call (struct stackentry *ret) /* reorganize stack before function call */ { struct stackentry *a, *b, *c; struct stackentry *top, *bot; struct stackentry *ttop, *bbot; int args; /* this is a function call; revert stack and shuffle return address to bottom */ /* push address below parameters */ args = 0; top = a = ret->prev; while (a->type != stFREE) { a = a->prev; args++; } bot = a->next; b = a->prev; /* remove ret */ ret->prev->next = ret->next; ret->next->prev = ret->prev; /* squeeze ret between a and b */ ret->next = a; a->prev = ret; b->next = ret; ret->prev = b; /* revert stack between top and bot */ if (args > 1) { a = bot; b = a->next; bbot = bot->prev; ttop = top->next; for (; args > 1; args--) { a->prev = b; c = b->next; b->next = a; a = b; b = c; } bot->next = ttop; bot->next->prev = bot; top->prev = bbot; top->prev->next = top; } } void myreturn (struct command *cmd) /* return from gosub of function call */ { struct stackentry *address; reorder_stack_after_call(cmd->type == cRETURN_FROM_CALL); address = pop (stANY); if (cmd->type == cRETURN_FROM_CALL) { if (address->type != stRET_ADDR_CALL) { error (FATAL, "RETURN from a subroutine without CALL"); return; } } else { /* cRETURN_FROM_GOSUB */ if (address->type != stRET_ADDR) { error (FATAL, "RETURN without GOSUB"); return; } } current = (struct command *) address->pointer; } void create_subr_link (char *label) /* create link to subroutine */ { char global[200]; char *dot; struct command *cmd; if (!inlib) { error(DEBUG, "not in library, will not create link to subroutine"); return; } dot = strchr (label, '.'); strcpy (global, "main"); strcat (global, dot); /* check, if label is duplicate */ if (search_label (global, srmSUBR | srmLINK | srmLABEL)) { sprintf (string, "duplicate subroutine '%s'", strip (global)); error (ERROR, string); return; } cmd = add_command (cLINK_SUBR, NULL, label); /* store label */ cmd->pointer = my_strdup (global); link_label (cmd); } void create_endfunction (void) /* create command cEND_FUNCTION */ { struct command *cmd; cmd = add_command (cEND_FUNCTION, NULL, NULL); link_label (cmd); } void function_or_array (struct command *cmd) /* decide whether to perform function or array */ { struct command *fu; fu = search_label (cmd->symname, srmSUBR | srmLINK); if (fu) { cmd->type = cCALL; cmd->pointer = cmd->symname; cmd->symname = NULL; if (infolevel >= DEBUG) { sprintf(errorstring, "converting '%s' to '%s'",explanation[cFUNCTION_OR_ARRAY],explanation[cFUNCTION]); error(DEBUG, errorstring); } } else { if (cmd->type == cFUNCTION_OR_ARRAY) { cmd->tag = CALLARRAY; } else { cmd->tag = CALLSTRINGARRAY; } cmd->type = cDOARRAY; cmd->args = -1; if (infolevel >= DEBUG) { sprintf(errorstring, "converting '%s' to '%s'",explanation[cFUNCTION_OR_ARRAY],explanation[cDOARRAY]); error(DEBUG, errorstring); } } } void create_makelocal (char *name, int type) /* create command 'cMAKELOCAL' */ { struct command *cmd; cmd = add_command (cMAKELOCAL, name, NULL); cmd->args = type; } void makelocal (struct command *cmd) /* makes symbol local */ { if (get_sym (cmd->symname, cmd->args, amSEARCH_VERY_LOCAL)) { sprintf (string, "local variable '%s' already defined within this subroutine", strip (cmd->symname)); error (ERROR, string); return; } get_sym (cmd->symname, cmd->args, amADD_LOCAL); } void create_count_params (void) /* create command 'cCOUNT_PARAMS' */ { struct command *cmd; /* dotifying numparams at compiletime (as opposed to runtime) is essential, because the function name is not known at runtime */ cmd = add_command (cCOUNT_PARAMS, dotify ("numparams", FALSE), NULL); } void count_params (struct command *cmd) /* count number of function parameters */ { struct symbol *sym; sym = get_sym (cmd->symname, syNUMBER, amADD_LOCAL); sym->value = abs (count_args (FALSE)); } void dump_sub (int short_dump) /* dump the stack of subroutine calls */ { struct stackentry *st = stackhead; struct command *cmd; int first = TRUE; do { if (st->type == stRET_ADDR_CALL) { cmd = st->pointer; if (cmd->type == cCALL || cmd->type == cQCALL) { char *dot; dot = strchr (cmd->pointer, '.'); if (first && !short_dump) { error (DUMP, "Executing in:"); } sprintf (string, "sub %s() called in %s,%d", dot ? (dot + 1) : (char *) cmd->pointer, cmd->lib->l, cmd->line); error (DUMP, string); first = FALSE; } } st = st->prev; } while (st && st != stackroot); if (first && !short_dump) { if (!short_dump) { error (DUMP, "Executing in:"); } } if (!short_dump) { error (DUMP, "main program"); } return; } void create_goto (char *label) /* creates command goto */ { struct command *cmd; cmd = add_command (cGOTO, NULL, label); cmd->pointer = my_strdup (label); add_switch_state(cmd); } void create_gosub (char *label) /* creates command gosub */ { struct command *cmd; cmd = add_command (cGOSUB, NULL, label); /* specific info */ cmd->pointer = my_strdup (label); } void create_call (char *label) /* creates command function call */ { struct command *cmd; cmd = add_command (cCALL, NULL, label); /* specific info */ cmd->pointer = my_strdup (label); } struct command * add_switch_state(struct command *cmd) /* add switch state to a newly created command */ { cmd->switch_state = my_malloc (sizeof (struct switch_state)); cmd->switch_state->id = switch_id_stack[switch_nesting]; cmd->switch_state->nesting = switch_nesting; return cmd; } void initialize_switch_id_stack(void) /* initialize stack of switch_ids */ { switch_id_stack[0]=max_switch_id; } void push_switch_id(void) /* generate a new switch id on top of stack */ { if (switch_nesting>=100) error(FATAL, "more than 100 nested switch statements"); switch_nesting++; max_switch_id++; switch_id_stack[switch_nesting]=max_switch_id; } void pop_switch_id (void) /* pop last switch_id */ { if (switch_nesting<=0) error(FATAL, "no more switch ids to pop"); switch_nesting--; } void link_label (struct command *cmd) /* link label into list of labels */ { if (!labelroot) { labelroot = cmd; } else { labelhead->nextassoc = cmd; } labelhead = cmd; } struct command * search_label (char *name, int type) /* search label */ { struct command *curr; char *at = NULL; curr = labelroot; if (type & srmGLOBAL) { at = strchr (name, '@'); if (at) *at = '\0'; } while (curr) { if ((type & srmSUBR) && curr->type == cUSER_FUNCTION && !strcmp (curr->pointer, name)) { if (at) *at = '@'; return curr; } if ((type & srmLINK) && curr->type == cLINK_SUBR && !strcmp (curr->pointer, name)) { if (at) *at = '@'; return curr->next; } if ((type & srmLABEL) && curr->type == cLABEL && !strcmp (curr->pointer, name)) { if (at) *at = '@'; return curr; } curr = curr->nextassoc; } return NULL; } void jump (struct command *cmd) /* jump to specific Label; used as goto, gosub or function call */ { struct command *label; struct stackentry *ret; int type; char *dot; type = cmd->type; if (type == cGOSUB || type == cQGOSUB || type == cCALL || type == cQCALL) { /* leave return address for return */ ret = push (); ret->pointer = current; if (type == cGOSUB || type == cQGOSUB) { ret->type = stRET_ADDR; } else { ret->type = stRET_ADDR_CALL; reorder_stack_before_call (ret); } } if (type == cQGOSUB || type == cQGOTO || type == cQCALL) { current = (struct command *) cmd->jump; /* use remembered address */ return; } label = search_label (cmd->pointer, srmSUBR | srmLINK | srmLABEL); if (!label && type == cCALL && (dot = strchr (cmd->pointer, '.'))) { strcpy (string, "main"); strcat (string, dot); label = search_label (string, srmLINK); } if (label) { /* found right label */ current = label; /* jump to new location */ /* use the address instead of the name next time */ cmd->jump = label; switch (cmd->type) { case cGOTO: cmd->type = cQGOTO; check_leave_switch (cmd, label); break; case cGOSUB: cmd->type = cQGOSUB; break; case cCALL: cmd->type = cQCALL; break; } } else { /* label not found */ sprintf (string, "can't find %s '%s'", (type == cCALL) ? "subroutine" : "label", strip ((char *) cmd->pointer)); if (strchr (cmd->pointer, '@')) { strcat (string, " (not in this sub)"); } error (ERROR, string); } } /* Some background for the switch-statement (a note to self): The switch-statement ist tricky, because it needs a switch-value on stack against which to compare the different cases; if the program leaves the switch-statement prematurely (e.g. by 'goto' some other place), this switch-value is still in place and needs to be removed. This removal needs to be done differently depending on how the switch-statement is left. There are four ways to leave a switch-statement: return, continue, break and goto; each one has its own method to clean up left-over switch-values. Especially two tasks have to be handled: Nested switch-statements, e.g. by removing more than one switch-value. Most of these commands are converted during their first execution into a faster variant (e.g. cQGOTO), which needs to care for the stack too; and tests should be executed twice, to test the converted form too. return: May or may not return a value; this needs to be kept (stored away); then remove all switch-values up to the return address. Nested switch-statements are not a special problem. The variable switch_nesting cannot be helpful here because a gosub might happen from within an outer switch-statement, and return from an inner one; in that case only one switch-value can be removed. The switch-values are removed in reorder_stack_after_call. continue: Leave a loop; the destination is found by scanning the list of commands backward (so each command on the way can be examined for cBEGIN_SWITCH_MARK or cEND_SWITCH_MARK); during that process the number of left switch-statments is counted and stored within the preceding cPOP_MULTI-command; this is done in mycontinue with the help of load_pop_multi. break: Very similar to continue, but scans the list of commands forward. Accepts a numeric argument so it may need to leave multiple switch-statements or loops. Is handled within mybreak with load_pop_multi. goto: Might try to jump out of nested switch-statements into other nested switch-statements; however the commands between start and end of the jump are not scanned sequentially (rather with search_label); so this cannot be handled like continue or break. To allow some checking of a goto-statement, the parser (in yabasic.bison) records for each goto and label a switch_id and a switch_nesting. These are used to echeck some constellations of goto in check_leave_switch; other cases (e.g. goto from one switch-statement into another) are disallowed. */ void check_leave_switch (struct command *from, struct command *to) /* check, if goto or continue enters or leaves a switch_statement */ { if (from->switch_state->id == to->switch_state->id) { /* okay, move within a single switch statement or jump and land outside of switch statement */ } else if (from->switch_state->nesting == 1 && to->switch_state->nesting == 0) { /* okay, move out of single switch statement */ pop(stANY); } else if (from->switch_state->id == 0 && to->switch_state->id != 0) { error (ERROR, "GOTO into a switch-statement"); } else if (from->switch_state->nesting != 0 && to->switch_state->nesting == 0) { error (ERROR, "GOTO out of multiple switch-statements"); } else { error (ERROR, "GOTO between switch-statements"); } } void create_label (char *label, int type) /* creates command label */ { struct command *cmd; /* check, if label is duplicate */ if (search_label (label, srmSUBR | srmLINK | srmLABEL)) { sprintf (string, "duplicate %s '%s'", (type == cLABEL) ? "label" : "subroutine", strip (label)); error (ERROR, string); return; } cmd = add_command (type, NULL, label); cmd->pointer = my_strdup (label); add_switch_state(cmd); link_label (cmd); } void decide() /* skips next command, if not 0 on stack */ { if (pop(stNUMBER)->value != 0) { current = current->next; /* skip one command */ if (infolevel >= DEBUG) std_diag("skipping", current->type, current->symname, current->diag); } else { if (infolevel >= DEBUG) error(DEBUG, "(no command skipped)"); } } void skipper () /* used for on_goto/gosub, skip specified number of commands */ { int i, len; struct command *ahead; /* command to follow */ len = (int) pop (stNUMBER)->value; i = 1; current = current->next; /* advance to first goto/gosub */ for (i = 1; i < len; i++) { ahead = current->next->next; /* skip interleaving findnop statement */ if (ahead->type == cNOP) { break; } else { current = ahead; } } } void skiponce (struct command *cmd) /* skip next command exectly once */ { if (cmd->tag) { current = current->next; } cmd->tag = 0; } void resetskiponce (struct command *cmd) /* find and reset next skip */ { struct command *c; c = cmd; while (c->type != cSKIPONCE) { c = c->next; } c->tag = 1; } void pop_multi (struct command *cmd) /* pop and discard multiple values from stack */ { int to_pop = cmd->tag; struct stackentry *popped; while (to_pop > 0) { popped = pop(stSTRING_OR_NUMBER); to_pop--; } } void load_pop_multi (struct command *cmd, int to_pop) /* put correct value into preceding pop_multi-statement */ { if (cmd->prev->type != cPOP_MULTI) { sprintf(string, "while trying to load pop_multi; preceding command is rather '%s'", explanation[cmd->prev->type]); error(FATAL, string); } cmd->prev->tag = to_pop; if (infolevel >= DEBUG) { sprintf(string, "loading previous pop_multi-command with %d", to_pop); error(DEBUG, string); } /* and execute it for the first time */ pop_multi(cmd->prev); } void create_mybreak(int depth) /* create command mybreak */ { struct command *cmd; if (depth > 3 || depth < 1) { sprintf(string, "invalid number of levels to break: %d; only 1,2 or 3 are allowed",depth); error(ERROR,string); } cmd = add_command (cBREAK_MULTI, NULL, NULL); cmd->tag=depth; sprintf(string,"%d",depth); cmd->diag=my_strdup(string); } void mybreak (struct command *cmd) /* find break_here statement */ { struct command *curr; int loop_nesting = 0; int switch_nesting = 0; int to_break; int to_pop = 0; to_break = cmd->tag; curr = cmd; while (curr->type != cBREAK_HERE || 1-loop_nesting-switch_nesting != to_break) { if (curr->type == cBEGIN_LOOP_MARK) { loop_nesting++; } if (curr->type == cEND_LOOP_MARK) { loop_nesting--; } if (curr->type == cBEGIN_SWITCH_MARK) { switch_nesting++; to_pop--; } if (curr->type == cEND_SWITCH_MARK) { switch_nesting--; to_pop++; } curr = curr->next; if (!curr) { sprintf(string,"break has left program (loop_nesting=%d, switch_nesting=%d)",loop_nesting,switch_nesting); error (FATAL, string); } } cmd->type = cQGOTO; if (infolevel >= DEBUG) { sprintf(errorstring, "converting '%s' to '%s'",explanation[cBREAK_MULTI],explanation[cQGOTO]); error (DEBUG, errorstring); } load_pop_multi(cmd, to_pop); cmd->jump = current = curr; } void mycontinue (struct command *cmd) /* find continue_here statement */ { struct command *curr; int loop_nesting = 0; int to_pop = 0; curr = cmd; while (curr->type != cCONTINUE_HERE || loop_nesting) { if (curr->type == cBEGIN_LOOP_MARK) { loop_nesting++; } if (curr->type == cEND_LOOP_MARK) { loop_nesting--; } if (curr->type == cBEGIN_SWITCH_MARK) { to_pop++; } if (curr->type == cEND_SWITCH_MARK) { to_pop--; } curr = curr->prev; if (!curr) { sprintf(string,"continue has left program (loop_nesting=%d)",loop_nesting); error (FATAL, string); } } cmd->type = cQGOTO; if (infolevel >= DEBUG) { sprintf( errorstring, "converting '%s' to '%s'",explanation[cCONTINUE],explanation[cQGOTO]); error (DEBUG, errorstring); } load_pop_multi(cmd, to_pop); cmd->jump = current = curr; } void next_case (struct command *cmd) /* find next_case_here statement */ { struct command *curr; int loop_nesting = 0; int switch_nesting = 0; curr = cmd; while (curr->type != cNEXT_CASE_HERE || loop_nesting || switch_nesting) { if (curr->type == cBEGIN_LOOP_MARK) { loop_nesting++; } if (curr->type == cEND_LOOP_MARK) { loop_nesting--; } if (curr->type == cBEGIN_SWITCH_MARK) { switch_nesting++; } if (curr->type == cEND_SWITCH_MARK) { switch_nesting--; } curr = curr->next; if (!curr) { sprintf(string,"search for next case has left program (loop_nesting=%d, switch_nesting=%d)",loop_nesting,switch_nesting); error (FATAL, string); } } cmd->type = cQGOTO; if (infolevel >= DEBUG) { sprintf(errorstring,"converting '%s' to '%s'",explanation[cNEXT_CASE],explanation[cQGOTO]); error (DEBUG, errorstring); } cmd->jump = current = curr; } void findnop () /* used for on_gosub, find trailing nop command */ { while (current->type != cNOP) { current = current->next; /* next label */ } } void forcheck (void) /* check, if for-loop is done */ { double start, bound, step, val; val = pop (stNUMBER)->value; step = pop (stNUMBER)->value; bound = pop (stNUMBER)->value; start = stackhead->prev->value; if ((val <= bound && val >= start && step >= 0) || (val <= start && val >= bound && step <= 0)) { stackhead->prev->value = 1.; } else { stackhead->prev->value = 0.; } } void forincrement (void) /* increment value on stack */ { /* expecting on stack: BOUND,STEP,VAL,stackhead where for VAL=START to BOUND step STEP */ stackhead->prev->value += stackhead->prev->prev->value; } void startfor (void) /* compute initial value of for-variable */ { struct stackentry *p; p = push (); p->value = stackhead->prev->prev->prev->prev->value - stackhead->prev->prev->value; p->type = stNUMBER; return; } yabasic-2.78.5/config.h.in0000664000175100017510000001524313260170616012207 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* build-time, that will be displayed in banner */ #undef BUILD_TIME /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP systems. This function is required for `alloca.c' support on those systems. */ #undef CRAY_STACKSEG_END /* Define to 1 if using `alloca.c'. */ #undef C_ALLOCA /* Define to 1 if you have `alloca', as a function or macro. */ #undef HAVE_ALLOCA /* Define to 1 if you have and it should be used (not on Ultrix). */ #undef HAVE_ALLOCA_H /* Define to 1 if you have the header file. */ #undef HAVE_CTYPE_H /* defined, if ncurses.h is present */ #undef HAVE_CURSES_HEADER /* Define to 1 if you have the `difftime' function. */ #undef HAVE_DIFFTIME /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Define to 1 if you have the header file. */ #undef HAVE_FLOAT_H /* Define to 1 if you have the `floor' function. */ #undef HAVE_FLOOR /* Define to 1 if you have the `fork' function. */ #undef HAVE_FORK /* Define to 1 if you have the `getnstr' function. */ #undef HAVE_GETNSTR /* Define to 1 if you have the header file. */ #undef HAVE_INTRINSIC_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the `curses' library (-lcurses). */ #undef HAVE_LIBCURSES /* Define to 1 if you have the `ncurses' library (-lncurses). */ #undef HAVE_LIBNCURSES /* Define to 1 if you have the header file. */ #undef HAVE_LIMITS_H /* Define to 1 if you have the header file. */ #undef HAVE_MALLOC_H /* Define to 1 if you have the header file. */ #undef HAVE_MATH_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `mkstemp' function. */ #undef HAVE_MKSTEMP /* defined, if ncurses.h is present */ #undef HAVE_NCURSES_HEADER /* Define to 1 if you have the `pow' function. */ #undef HAVE_POW /* Define to 1 if you have the `select' function. */ #undef HAVE_SELECT /* Define to 1 if you have the `setitimer' function. */ #undef HAVE_SETITIMER /* Define to 1 if you have the header file. */ #undef HAVE_SIGNAL_H /* Define to 1 if you have the `sqrt' function. */ #undef HAVE_SQRT /* Define to 1 if `stat' has the bug that it succeeds when given the zero-length file name argument. */ #undef HAVE_STAT_EMPTY_STRING_BUG /* Define to 1 if you have the header file. */ #undef HAVE_STDDEF_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDIO_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `strchr' function. */ #undef HAVE_STRCHR /* Define to 1 if you have the `strerror' function. */ #undef HAVE_STRERROR /* Define to 1 if you have the `strftime' function. */ #undef HAVE_STRFTIME /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* defined, if strings.h is present */ #undef HAVE_STRINGS_HEADER /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* defined, if string.h is present */ #undef HAVE_STRING_HEADER /* Define to 1 if you have the `strpbrk' function. */ #undef HAVE_STRPBRK /* Define to 1 if you have the `strrchr' function. */ #undef HAVE_STRRCHR /* Define to 1 if you have the `strstr' function. */ #undef HAVE_STRSTR /* Define to 1 if you have the header file. */ #undef HAVE_SYS_PRCTL_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_SELECT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_SOCKET_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TIME_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have that is POSIX.1 compatible. */ #undef HAVE_SYS_WAIT_H /* Define to 1 if you have the header file. */ #undef HAVE_TIME_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the `vfork' function. */ #undef HAVE_VFORK /* Define to 1 if you have the header file. */ #undef HAVE_VFORK_H /* Define to 1 if `fork' works. */ #undef HAVE_WORKING_FORK /* Define to 1 if `vfork' works. */ #undef HAVE_WORKING_VFORK /* Define to 1 if `lstat' dereferences a symlink specified with a trailing slash. */ #undef LSTAT_FOLLOWS_SLASHED_SYMLINK /* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define as the return type of signal handlers (`int' or `void'). */ #undef RETSIGTYPE /* Define to the type of arg 1 for `select'. */ #undef SELECT_TYPE_ARG1 /* Define to the type of args 2, 3 and 4 for `select'. */ #undef SELECT_TYPE_ARG234 /* Define to the type of arg 5 for `select'. */ #undef SELECT_TYPE_ARG5 /* Define to 1 if the `setpgrp' function takes no argument. */ #undef SETPGRP_VOID /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at runtime. STACK_DIRECTION > 0 => grows toward higher addresses STACK_DIRECTION < 0 => grows toward lower addresses STACK_DIRECTION = 0 => direction of growth unknown */ #undef STACK_DIRECTION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define to 1 if you can safely include both and . */ #undef TIME_WITH_SYS_TIME /* architecture of build machine */ #undef UNIX_ARCHITECTURE /* Version number of package */ #undef VERSION /* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `int' if does not define. */ #undef pid_t /* Define to `unsigned int' if does not define. */ #undef size_t /* Define as `fork' if `vfork' does not work. */ #undef vfork yabasic-2.78.5/compile0000755000175100017510000001624512654435324011551 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: yabasic-2.78.5/missing0000775000175100017510000002403613025160552011560 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case "$1" in -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing 0.4 - GNU automake" ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; aclocal*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. You can get \`$1Help2man' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` fi if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then # We have makeinfo, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi touch $file ;; tar) shift if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 fi # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequirements for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 yabasic-2.78.5/ChangeLog0000775000175100017510000001427713260170630011743 00000000000000Version 2.78.5 (March 29, 2018) - Within a bound yabasic-programs the name is correctly set (as returned by peeking "program_name") - Introduced new string-peeks "program_name" and "program_file_name" Version 2.78.4 (March 21, 2018) - Fixed a problem with bound yabasic-programs, that include more than three libraries - Introduced new peek "secondsrunning" Version 2.78.3 (January 21, 2018) - Fixed an up to 4-times performance penalty, that has been introduced in a previous version - Brought back "Edit" to the windows context menu Version 2.78.2 (August 27, 2017) - The ran()-function is now guaranteed to return 2**30 different values Version 2.78.1 (August 13, 2017) - No more dump when using color without window open - Processing of yabasic.xml finds hellip-entity Version 2.78.0 (January 21, 2017) - Allowed for numeric argument after break - Fixed format of manpage - Reworked the switch-statement, added tests Version 2.77.3 (December 29, 2016) - Fixed insecure usage of strcpy - Better logging for windows installer - Spelling corrections Version 2.77.2 (December 17, 2016) - Fixes for coloured text under windows - msvcr140.dll is no longer required under Windows - Several spelling corrections - Updated and fixed man-page under linux Version 2.77.1 (September 7, 2016) - New poke "random_seed" to initialize random number generator - Bugfixes and additions to documentation - Yabasic is now covered by the MIT License - Switched to semantic Versioning (e.g. 2.77.1 instead of 2.771) - Adopted a development workflow based on git and github Version 2.764 (January 22, 2014) - Added support for later versions of ncurses and 64 bit Systems - Avoided forks for inkey$ Version 2.763 (September 19, 2005) - Tiny fix in the documentation: Sections now have their own toc again. Version 2.762 (September 16, 2005) - Swapped the precedence of unary minus and exponentiation to follow the mainstream of programming languages. Suggested by Mike Hoffman. - Fixed a bug with drawing the outline of a triangle. - Lots bugs and typos fixed in the docu. Thanx to A. Costa ! - rinstr() is okay again. - system$() may not dump any longer, if an external command returns no output. - Some improvements for compiling on FreeBSD. - Made the text-command working again. - Maybe yabasic does not leak resources under Windows 95 any longer. - Some fixes related with the console window under Windows - Added a list of reserved words to the documentation. - Special thanks to Derek and Mike Huffmann ! Version 2.76 (April 25, 2005) Some major improvements for grafics - Full color support ! - Different fonts for the text-command - The new command triangle Version 2.75 (May 19, 2004) - Yabasic finally has an Icon under Windows - The str$()-function, may now format numbers like 123,456.56 (or 123.456,56 for german conventions) - Changed the system()-function under Windows to use the right command-processor - Added a list of command, grouped by topics to the documentation - Yellow is no longer brown under windows - Removed a security problem related with printing under Unix - Programs, that import libraries can now be bound, including all the imported libraries Version 2.740 (January 18, 2003) - Implemented the bind-feature - More verbose messages on failing open-calls Version 2.730 (August 19, 2003) - Complete rewrite of the documentation - Updated my system, which introduced new versions of the toolchain (gcc, autoconf, ...) - No changes in yabasic itself Version 2.720 - Added two argument version of log - Changed copyright notice Version 2.717 - Bugfix by Tom Ellestad: Better Error- checking for import-statement Version 2.716 - Bugfix: fixed 'open "foo" for reading as 1' Version 2.715 - Bugfix: continue is no longer disturbed by switch statements - The special option '--' stops option processing Version 2.714 - Bigfix: >> if (not open("bad","r")) error "!" << now works as designed Version 2.713 - Fixed a memory leak associated with arrays-refs - return from within a switch statement is now possible Version 2.712: - The new Option '-check' can be used to check for compatibility with previous versions of yabasic - The instr(a$,b$)-function now returns 0, if b$ is the empty string Version 2.710: - Improved the short if-statement to be more intuitive - Added switch-case statement - Better loop-control: break and continue Version 2.70: - Allowd hex-escapes in string constants (e.g. "\xa"). - Better warnings for forgotten endif, endsub or next. - Allowed for dumping of stack of subroutine calls. - Various bugfixes related with: print using,token$() and with printing to mixed streams Version 2.690: - implemented logical shortcuts, i.e. conditions within if or while statements are only evaluated as far as needed. - New form of the open statement: open "foo" for reading as #1 - New form of the open function: open(a,"foo") intended for use in if-statements: if (not open(a,"foo")) print "Shit !" - The same time an old variant of open within if has gone: if (not open a,"foo") print "Shit !" is no longer valid. - You may now write: print #a "Hello" - Finally: there is no distinction between expressions and conditions any more, i.e. wihin the condition of an if-statement you may now use arbitrary expressions; even something like this: if (cos(x)) print "Strange" - Fixed a bug with printing under Windows: The screen now scrolls up if the cursor has reached the bottom Version 2.681: Finished the work started with 2.680; yabasic can now parse its own demo again correctly. Version 2.680: Essentially removed the distinction between expressions and conditions, i.e. you may write things like this: okay=(1<10) : if (okay) print "Hallo" Included the man page with the distribution. Thanx to Dejan Lekic ! Version 2.671: Bugfix, yabasic will now build under hpux. Version 2.670: Changed the scheme of version numbers: 2.67 Release 0 is now 2.670 Unix only: Used automake to generate Makefile.in. Therefore you now have all the standard GNU make targets: make check, make install, make uninstall. yabasic-2.78.5/yabasic.flex0000775000175100017510000003271513260634315012466 00000000000000%{ /* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de FLEX part This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ #include #include "bison.h" /* get tokens from BISON */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* definitions of yabasic */ #endif extern int mylineno; int import_lib(char *); /* import library */ #define MAX_INCLUDE_DEPTH 5 #define MAX_INCLUDE_NUMBER 100 static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH]; /* stack for included libraries */ int include_depth; /* current position in libfile_stack */ struct libfile_name *libfile_stack[MAX_INCLUDE_DEPTH]; /* stack for library file names */ int libfile_chain_length=0; /* length of libfile_chain */ struct libfile_name *libfile_chain[MAX_INCLUDE_NUMBER]; /* list of all library file names in order of appearance */ struct libfile_name *currlib; /* current libfile as relevant to bison */ int inlib; /* true, while in library */ int fi_pending=0; /* true, if within a short if */ int flex_line=0; /* line number counted in flex */ %} WS [ \t\f\r\v] NAME ([a-z_][a-z0-9_]*\.[a-z_][a-z0-9_]*)|([a-z_][a-z0-9_]*) %option noyywrap %x PRELNO %x PASTLNO %x IMPORT %x IMPORT_DONE %% <> { if (infolevel>=DEBUG) { sprintf(string,"closing file '%s'",currlib->s); error(DEBUG,string); } if (--include_depth<0) { return tEOPROG; } else { if (!is_bound) { yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(include_stack[include_depth]); } leave_lib(); flex_line+=yylval.sep=-1; return tSEP; } } {WS}+ {BEGIN(INITIAL);} /* ignore whitespace */ ^{WS}*/[0-9]+ {BEGIN(PRELNO);return tLABEL;} [0-9]+ { BEGIN(PASTLNO); yylval.symbol=(char *)my_strdup(yytext); return tSYMBOL; } .* {BEGIN(INITIAL);flex_line+=yylval.sep=0;yyless(0);return tSEP;} \n {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}BEGIN(INITIAL);flex_line+=yylval.sep=1;return tSEP;} \n\n {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}if (interactive && !inlib) {return tEOPROG;} else {flex_line+=yylval.sep=2;return tSEP;}} \n {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}flex_line+=yylval.sep=1;return tSEP;} : {if (fi_pending && check_compat) error_with_line(WARNING,"short-if has changed in version 2.71",flex_line);flex_line+=yylval.sep=0;return tSEP;} REM{WS}+.* {flex_line+=yylval.sep=0;return tSEP;} /* comments span 'til end of line */ \/\/.* {flex_line+=yylval.sep=0;return tSEP;} /* comments span 'til end of line */ REM\n {if (fi_pending) {fi_pending--;yyless(0);return tENDIF;}flex_line+=yylval.sep=1;return tSEP;} REM {yymore();} IMPORT {BEGIN(IMPORT);} {WS}+{NAME} {if (!import_lib(my_strdup(yytext))) return tSEP;BEGIN(IMPORT_DONE);return tIMPORT;} {WS}+. {error_with_line(WARNING,"invalid import statement; please check documentation.",flex_line);} (.|\n) {if (yytext[0]=='\n' && fi_pending) {fi_pending--;yyless(0);return tENDIF;}BEGIN(INITIAL);yyless(0);flex_line+=yylval.sep=0;return tSEP;} ((DOCU|DOC|DOCUMENTATION)({WS}+.*)?) { char *where=strpbrk(yytext," \t\r\f\v"); yylval.docu=(char *)my_strdup(where ? where+1 : NULL); return tDOCU; } ^#.*\n {flex_line+=yylval.sep=1;return tSEP;} /* '#' as first character may introduce comments too */ ^'.*\n {flex_line+=yylval.sep=1;return tSEP;} /* ' as first character may introduce comments too */ EXECUTE return tEXECUTE; "EXECUTE$" return tEXECUTE2; COMPILE return tCOMPILE; RUNTIME_CREATED_SUB return tRUNTIME_CREATED_SUB; END{WS}+SUB return tENDSUB; END{WS}+IF return tENDIF; END-IF return tENDIF; END{WS}+WHILE return tWEND; END-WHILE return tWEND; END{WS}+SWITCH return tSEND; END-SWITCH return tSEND; END{WS}+"SWITCH$" return tSEND; END-"SWITCH$" return tSEND; EXPORT return tEXPORT; ERROR return tERROR; FOR return tFOR; BREAK return tBREAK; SWITCH return tSWITCH; CASE return tCASE; DEFAULT return tDEFAULT; LOOP return tLOOP; DO return tDO; TO return tTO; AS return tAS; READING return tREADING; WRITING return tWRITING; STEP return tSTEP; NEXT return tNEXT; WHILE return tWHILE; WEND return tWEND; REPEAT return tREPEAT; UNTIL return tUNTIL; GOTO return tGOTO; GOSUB return tGOSUB; SUB return tSUB; SUBROUTINE return tSUB; LOCAL return tLOCAL; STATIC return tSTATIC; ON return tON; INTERRUPT return tINTERRUPT; CONTINUE return tCONTINUE; LABEL return tLABEL; IF return tIF; THEN return tTHEN; ELSE return tELSE; ELSIF return tELSIF; ELSEIF return tELSIF; ENDIF return tENDIF; FI return tENDIF; OPEN return tOPEN; CLOSE return tCLOSE; SEEK return tSEEK; TELL return tTELL; PRINT return tPRINT; USING return tUSING; REVERSE return tREVERSE; COLOR return tCOLOUR; COLOUR return tCOLOUR; BACKCOLOR return tBACKCOLOUR; BACKCOLOUR return tBACKCOLOUR; \? return tPRINT; INPUT return tINPUT; RETURN return tRETURN; DIM return tDIM; REDIM return tDIM; END return tEND; EXIT return tEXIT; READ return tREAD; DATA return tDATA; RESTORE return tRESTORE; AND return tAND; OR return tOR; NOT return tNOT; EOR return tEOR; XOR return tEOR; WINDOW return tWINDOW; ORIGIN return tORIGIN; PRINTER return tPRINTER; DOT return tDOT; LINE return tLINE; CURVE return tCURVE; CIRCLE return tCIRCLE; TRIANGLE return tTRIANGLE; CLEAR return tCLEAR; FILL return tFILL; FILLED return tFILL; TEXT return tTEXT; RECTANGLE return tRECT; RECT return tRECT; BOX return tRECT; BITBLIT return tPUTBIT; BITBLT return tPUTBIT; PUTBIT return tPUTBIT; "BITBLT$" return tGETBIT; "BITBLIT$" return tGETBIT; "GETBIT$" return tGETBIT; PUTSCREEN return tPUTCHAR; "GETSCREEN$" return tGETCHAR; NEW return tNEW; WAIT return tWAIT; PAUSE return tWAIT; SLEEP return tWAIT; BELL return tBELL; BEEP return tBELL; LET return tLET; ARRAYDIM return tARDIM; ARRAYDIMENSION return tARDIM; ARRAYSIZE return tARSIZE; NUMPARAM(S)?({WS}*\({WS}*\))? {yylval.symbol=(char *)my_strdup("numparams"); return tSYMBOL;} BIND return tBIND; SIN return tSIN; ASIN return tASIN; COS return tCOS; ACOS return tACOS; TAN return tTAN; ATAN return tATAN; EXP return tEXP; LOG return tLOG; SQRT return tSQRT; SQR return tSQR; INT return tINT; FRAC return tFRAC; ABS return tABS; SIG return tSIG; MOD return tMOD; RAN return tRAN; MIN return tMIN; MAX return tMAX; "LEFT$" return tLEFT; "RIGHT$" return tRIGHT; "MID$" return tMID; "LOWER$" return tLOWER; "UPPER$" return tUPPER; "LTRIM$" return tLTRIM; "RTRIM$" return tRTRIM; "TRIM$" return tTRIM; INSTR return tINSTR; RINSTR return tRINSTR; LEN return tLEN; VAL return tVAL; EOF return tMYEOF; "STR$" return tSTR; "INKEY$" return tINKEY; "MOUSEX" return tMOUSEX; "MOUSEY" return tMOUSEY; "MOUSEB" return tMOUSEB; "MOUSEBUTTON" return tMOUSEB; "MOUSEMOD" return tMOUSEMOD; "MOUSEMODIFIER" return tMOUSEMOD; "CHR$" return tCHR; ASC return tASC; "HEX$" return tHEX; "BIN$" return tBIN; DEC return tDEC; AT return tAT; @ return tAT; SCREEN return tSCREEN; "SYSTEM$" return tSYSTEM; SYSTEM return tSYSTEM2; "DATE$" return tDATE; "TIME$" return tTIME; PEEK return tPEEK; "PEEK$" return tPEEK2; POKE return tPOKE; TOKEN return tTOKEN; "TOKEN$" return tTOKENALT; SPLIT return tSPLIT; "SPLIT$" return tSPLITALT; GLOB return tGLOB; "^" return tPOW; "**" return tPOW; "<>" return tNEQ; "<=" return tLEQ; ">=" return tGEQ; "=" return tEQU; "<" return tLTN; ">" return tGTN; "!" return tNOT; [-+*/:(),.;] {return yytext[0];} [0-9]+ { yylval.digits=(char *)my_strdup(yytext); return tDIGITS; } (([0-9]+|([0-9]*\.[0-9]*))([eE][-+]?[0-9]+)?) { { double d; sscanf(yytext,"%lg",&d); yylval.fnum=d; return tFNUM; } } pi {yylval.fnum=3.1415926535897932;return tFNUM;} euler {yylval.fnum=2.7182818284590452;return tFNUM;} TRUE {yylval.fnum=1; return tFNUM;} FALSE {yylval.fnum=0; return tFNUM;} {NAME} { yylval.symbol=(char *)my_strdup(yytext); return tSYMBOL; } /* Symbols with a trailing $-sign are treated special */ {NAME}\$ { yylval.symbol=(char *)my_strdup(yytext); return tSTRSYM; } \"[^"]*(\"|\n) { int cnt; if (yytext[yyleng-1]=='\n' && fi_pending) {fi_pending--;yyless(0);return tENDIF;} if (yytext[yyleng-1]=='\n') { yylval.string=NULL; return tSTRING; } for(cnt=0;yytext[yyleng-cnt-2]=='\\';cnt++) ; if (cnt%2) { yyless(yyleng-1); yymore(); } else { yylval.string=(char *)my_strdup(yytext+1); *(yylval.string+yyleng-2)='\0'; replace(yylval.string); return tSTRING; } } . {if (isprint(yytext[0])) return yytext[0]; else return ' ';} %% void yyerror(char *msg) { int i,j; sprintf(string,"%s at %n",msg,&j); if (*yytext=='\n' || *yytext=='\0') { sprintf(string+j,"end of line"); } else { i=0; string[j++]='\"'; while(yytext[i]) { if (isprint(yytext[i])) string[j++]=yytext[i++]; else { sprintf(string+j,"0x%02x",yytext[i]); j+=4; break; } } string[j++]='\"'; string[j]='\0'; } error(ERROR,string); return; } void open_main(FILE *file,char *explicit,char *main_file_name) /* open main file */ { include_depth=0; if (explicit) { include_stack[include_depth]=yy_scan_string(explicit); } else { include_stack[include_depth]=yy_create_buffer(file,YY_BUF_SIZE); } libfile_stack[include_depth]=new_file(main_file_name,"main"); libfile_chain[libfile_chain_length++]=libfile_stack[include_depth]; if (!explicit) yy_switch_to_buffer(include_stack[include_depth]); currlib=libfile_stack[0]; inlib=FALSE; return; } void open_string(char *cmd) /* open string with commands */ { yy_switch_to_buffer(yy_scan_string(cmd)); } int import_lib(char *name) /* import library */ { char *full; static int end_of_all_imports=FALSE; static int ignore_nested_imports=FALSE; if (!*name) name=pop(stSTRING)->pointer; while(isspace(*name)) name++; /* This can only occur in bound programs; void all further import-statements */ if (!strcmp(name,"__END_OF_ALL_IMPORTS")) { error(DEBUG,"Encountered special import __END_OF_ALL_IMPORTS"); end_of_all_imports=TRUE; } if (end_of_all_imports) return TRUE; /* This can only occur in bound programs, close currently imported library */ if (!strcmp(name,"__END_OF_CURRENT_IMPORT")) { error(DEBUG,"Encountered special import __END_OF_CURRENT_IMPORT"); include_depth--; leave_lib(); ignore_nested_imports=FALSE; return TRUE; } /* This can only occur in bound programs, ignore nested import-statement */ if (!strcmp(name,"__IGNORE_NESTED_IMPORTS")) { error(DEBUG,"Encountered special import __IGNORE_NESTED_IMPORTS"); ignore_nested_imports=TRUE; } if (ignore_nested_imports) return TRUE; /* start line numbers anew */ libfile_stack[include_depth]->lineno=mylineno; include_depth++; inlib=TRUE; if (include_depth>=MAX_INCLUDE_DEPTH) { sprintf(string,"Could not import '%s': nested too deep (%d)",name,include_depth); error(ERROR,string); return FALSE; } if (is_bound) { full=name; } else { yyin=open_library(name,&full,FALSE); if (!yyin) return FALSE; yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); include_stack[include_depth]=YY_CURRENT_BUFFER; } libfile_stack[include_depth]=new_file(full,NULL); libfile_chain[libfile_chain_length++]=libfile_stack[include_depth]; if (libfile_chain_length>=MAX_INCLUDE_NUMBER) { sprintf(string,"Cannot import more than %d libraries",MAX_INCLUDE_NUMBER); error(ERROR,string); return FALSE; } if (!libfile_stack[include_depth]) { sprintf(string,"library '%s' has already been imported",full); error(ERROR,string); return FALSE; } if (infolevel>=NOTE) { if (isbound) { sprintf(string,"importing library '%s'",name); } else { sprintf(string,"importing from file '%s'",full); } error(NOTE,string); } currlib=libfile_stack[include_depth]; /* switch late because error() uses currlib */ return TRUE; } FILE *open_library(char *name,char **fullreturn,int without) /* search and open a library */ { static char full[200]; char unquoted[200]; char *p; FILE *lib; int i; char *trail; if (fullreturn) *fullreturn=full; for(p=name;strchr(" \"'`",*p);p++) if (!*p) break; strncpy(unquoted,p,200); for(;!strchr(" \"'`",*p);p++) if (!*p) break; if (*p) unquoted[p-name-2]='\0'; name=unquoted; if (strchr(name,'.')) { sprintf(string,"library name '%s' contains '.'",name); error(ERROR,string); return NULL; } if (!strcmp(name,"main")) { if (is_bound) return NULL; error(ERROR,"invalid library name 'main'"); return NULL; } /* search local */ trail=".yab"; for(i=0;i<2;i++) { strncpy(full,name,200); if (!strchr(full,'.')) strcat(full,trail); lib=fopen(full,"r"); if (lib) return lib; trail=""; if (!without) break; } /* search in global location */ trail=".yab"; for(i=0;i<2;i++) { strncpy(full,library_path,200); if (full[0] && !strchr("\\/",full[strlen(full)-1])) { #ifdef UNIX strcat(full,"/"); #else strcat(full,"\\"); #endif } strcat(full,name); if (!strchr(full,'.')) strcat(full,trail); lib=fopen(full,"r"); if (lib) return lib; trail=""; if (!without) break; } sprintf(string,"could not open library '%s'",full); error(ERROR,string); return NULL; } void leave_lib(void) /* processing, when end of library is found */ { if (include_depth<0) return; if (infolevel>=DEBUG) { sprintf(string,"End of library '%s', continue with '%s', include depth is now %d",currlib->s,libfile_stack[include_depth]->s,include_depth); error(DEBUG,string); } currlib=libfile_stack[include_depth]; mylineno=currlib->lineno; inlib=(include_depth>0); } yabasic-2.78.5/LICENSE0000664000175100017510000000206713025160552011166 00000000000000The MIT License (MIT) Copyright (c) 1995-2016 Marc Ihm Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. yabasic-2.78.5/AUTHORS0000775000175100017510000000022413025160552011225 00000000000000 Many Individuals have contributed to yabasic; either by testing new versions, asking for features, adding documentation or giving encouragement. yabasic-2.78.5/symbol.c0000644000175100017510000010223013231115671011622 00000000000000/* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de symbol.c --- code for symbol, stack and library management, handling of arrays This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ /* ------------- includes ---------------- */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* all prototypes and structures */ #endif /* ------------- external references ---------------- */ extern int mylineno; /* current line number */ extern int yyparse (); /* call bison parser */ extern int switch_nesting; extern int switch_id; /* ------------- local functions ---------------- */ static struct symbol *create_symbol (int, char *); /* create a new symbol */ static void stackdesc (int, char *); /* give back string describing stackentry */ static void freesym (struct symbol *); /* free contents of symbol */ static int ind_to_off (int *, int *); /* convert array of indices to single offset */ static void off_to_ind (int, int *, int *); /* convert a single offset to an array of indices */ /* ------------- global variables ---------------- */ static struct symstack *symroot = NULL; /* first element in symbol list */ static struct symstack *symhead = NULL; /* last element ind symbol list */ struct stackentry *stackroot; /* lowest element in stack */ struct stackentry *stackhead; /* topmost element in stack */ extern char *current_function; /* name of currently defined function */ struct command *lastref; /* last command in UDS referencing a symbol */ struct command *firstref; /* first command in UDS referencing a symbol */ int labelcount = 0; /* count self-generated labels */ /* ------------- subroutines ---------------- */ void pushsymlist (void) /* push a new list of symbols on symbol stack */ { struct symstack *new; new = my_malloc (sizeof (struct symstack)); if (symhead) { symhead->next_in_stack = new; } else { symroot = new; /* first time called */ } new->prev_in_stack = symhead; new->next_in_stack = NULL; new->next_in_list = NULL; symhead = new; } void popsymlist (void) /* pop list of symbols and free symbol contents */ { struct symstack *prevstack; struct symbol *currsym, *nextsym; int count = 0; currsym = symhead->next_in_list; while (currsym) { /* loop through symbol list */ freesym (currsym); count++; nextsym = currsym->next_in_list; my_free (currsym); currsym = nextsym; } if (infolevel >= DEBUG) { sprintf (string, "removed symbol list with %d symbols", count); error (DEBUG, string); } prevstack = symhead->prev_in_stack; my_free (symhead); prevstack->next_in_stack = NULL; symhead = prevstack; } static void freesym (struct symbol *s) /* free contents of symbol */ { int i; int total; struct array *ar; if (s->link) { /* it's a link, don't remove memory */ sprintf (string, "removing linked symbol '%s'", s->name); error (DEBUG, string); my_free (s->name); return; } if (s->type == sySTRING) { if (infolevel >= DEBUG) { sprintf (string, "removing string symbol '%s'", s->name); error (DEBUG, string); } my_free (s->pointer); } else if (s->type == syARRAY) { if (infolevel >= DEBUG) { sprintf (string, "removing array symbol '%s()'", s->name); error (DEBUG, string); } ar = s->pointer; if (ar->dimension > 0) { /* count total amount of memory */ total = 1; for (i = 0; i < ar->dimension; i++) { total *= (ar->bounds)[i]; } if (ar->type == 's') { /* string array */ for (i = 0; i < total; i++) { my_free (*((char **) ar->pointer + i)); } } my_free (ar->pointer); } my_free (ar); } else if (s->type == syNUMBER) { if (infolevel >= DEBUG) { sprintf (string, "removing numeric symbol '%s'", s->name); error (DEBUG, string); } } my_free (s->name); return; } void clearrefs (struct command *cmd) /* clear references for commands within function */ { struct command *curr; int n = 0; curr = cmd->nextref; while (curr) { n++; curr->symbol = NULL; curr = curr->nextref; } sprintf (string, "removed references from %d symbols", n); error (DEBUG, string); } struct symbol * get_sym (char *name, int type, int add) /* get the value of a symbol, or create it with given type */ { struct symstack *currstack; struct symbol **currsym; struct symbol *prelink; struct symbol *new; int stackcount = 0; int symbolcount = 0; int linked = FALSE; if (!name) { return NULL; } /* go through all lists */ currstack = symhead; /* start with symhead */ if (add == amSEARCH_PRE && symhead->prev_in_stack) { currstack = symhead->prev_in_stack; } while (TRUE) { stackcount++; currsym = &(currstack->next_in_list); while (*currsym) { prelink = *currsym; symbolcount++; if ((*currsym)->type == type && !strcmp (name, (*currsym)->name)) { /* do the types and names match ? */ if ((*currsym)->link) { currsym = &((*currsym)->link); linked = TRUE; } if (infolevel >= DEBUG) { if (linked) sprintf (string, "found symbol '%s%s', linked to %s after searching %d symbol(s) in %d stack(s)", name, (type == syARRAY) ? "()" : "", (*currsym)->name, symbolcount, stackcount); else sprintf (string, "found symbol '%s%s' after searching %d symbol(s) in %d stack(s)", name, (type == syARRAY) ? "()" : "", symbolcount, stackcount); error (DEBUG, string); } return *currsym; /* give back address */ } currsym = &((*currsym)->next_in_list); /* try next entry */ } /* not found in first list */ if (add == amSEARCH_VERY_LOCAL) { return NULL; } if (add == amADD_LOCAL) { new = create_symbol (type, name); (*currsym) = new; if (infolevel >= DEBUG) { sprintf (string, "created local symbol %s%s", name, (type == syARRAY) ? "()" : ""); error (DEBUG, string); } return new; } if (currstack != symroot) { currstack = symroot; } else { break; } } if (add == amADD_GLOBAL) { new = create_symbol (type, name); (*currsym) = new; if (infolevel >= DEBUG) { sprintf (string, "created global symbol %s%s", name, (type == syARRAY) ? "()" : ""); error (DEBUG, string); } return new; } return NULL; } void link_symbols (struct symbol *from, struct symbol *to) { /* link one symbol to the other */ from->link = to; if (infolevel >= DEBUG) { sprintf (string, "linking symbol '%s' to '%s'", from->name, to->name); error (DEBUG, string); } } void dump_sym (void) /* dump the stack of lists of symbols */ { struct symstack *currstack; struct symbol **currsym; /* go through all lists */ error (DUMP, "head of symbol stack"); currstack = symhead; while (currstack) { /* search 'til last element of stack */ currsym = &(currstack->next_in_list); string[0] = '\0'; while (*currsym) { switch ((*currsym)->type) { case sySTRING: strcat (string, " STRING:"); break; case syNUMBER: strcat (string, " NUMBER:"); break; case syFREE: strcat (string, " FREE:"); break; case syARRAY: strcat (string, " ARRAY:"); break; default: sprintf (string, " UNKNOWN:"); break; } strcat (string, (*currsym)->name); currsym = &((*currsym)->next_in_list); /* try next entry */ } error (DUMP, string); currstack = currstack->prev_in_stack; } error (DUMP, "root of symbol stack"); return; } static struct symbol * create_symbol (int type, char *name) /* create a new symbol */ { struct symbol *new; new = my_malloc (sizeof (struct symbol)); new->type = type; new->next_in_list = NULL; new->name = my_strdup (name); new->pointer = NULL; new->args = NULL; new->value = 0.0; new->link = NULL; return new; } void swap () /* swap topmost elements on stack */ { struct stackentry *a, *b; if ((a = stackhead->prev) == NULL || (b = a->prev) == NULL) { error (ERROR, "Nothing to swap on stack !"); return; } a->prev = b->prev; b->next = a->next; /* just swap the pointers */ a->next = b; b->prev = a; stackhead->prev = b; (a->prev)->next = a; } struct stackentry * push () /* push element on stack and enlarge stack it */ { struct stackentry *new; if (!stackhead->next) { /* no next element */ /* create new element */ new = (struct stackentry *) my_malloc (sizeof (struct stackentry)); /* and initialize it */ new->next = NULL; new->value = 0.0; new->type = stFREE; new->prev = stackhead; new->pointer = NULL; stackhead->next = new; } else if (stackhead->pointer != NULL && (stackhead->type == stSTRING || stackhead->type == stSTRINGARRAYREF || stackhead->type == stNUMBERARRAYREF || stackhead->type == stLABEL)) { /* any content is set free */ my_free (stackhead->pointer); stackhead->pointer = NULL; } stackhead = stackhead->next; /* advance head */ return stackhead->prev; } struct stackentry * pop (int etype) /* pops element to memory and looks for pop-error */ { static char expected[50]; static char found[50]; int ftype; struct stackentry *s; /* test if there is something on the stack */ if (stackhead == stackroot) error (FATAL, "Popped too much."); stackhead = stackhead->prev; /* move down in stack */ ftype = stackhead->type; if (etype == ftype || etype == stANY || (etype == stSTRING_OR_NUMBER && (ftype == stNUMBER || ftype == stSWITCH_NUMBER || ftype == stSTRING || ftype == stSWITCH_STRING)) || (etype == stSTRING_OR_NUMBER_ARRAYREF && (ftype == stSTRINGARRAYREF || ftype == stNUMBERARRAYREF)) || (etype == stSTRING && ftype == stSWITCH_STRING) || (etype == stNUMBER && ftype == stSWITCH_NUMBER)) { return stackhead; /* this is your value; use it quickly ! */ } /* expected and found don't match */ stackdesc (etype, expected); stackdesc (ftype, found); sprintf (string, "expected '%s' but found '%s'", expected, found); if (etype == stNUMBER || etype == stSTRING || etype == stSTRING_OR_NUMBER) { s = push (); if (etype == stNUMBER) { s->type = stNUMBER; s->value = 0.0; } else { s->type = stSTRING; s->pointer = my_strdup (""); } error (ERROR, string); return s; } else { error (FATAL, string); } return stackhead; } static void stackdesc (int type, char *desc) /* give back string describing stackentry */ { switch (type) { case stGOTO: strcpy (desc, "a goto"); break; case stSTRING: strcpy (desc, "a string"); break; case stSTRINGARRAYREF: strcpy (desc, "a reference to a string array"); break; case stNUMBER: strcpy (desc, "a number"); break; case stNUMBERARRAYREF: strcpy (desc, "a reference to a numeric array"); break; case stLABEL: strcpy (desc, "a label"); break; case stRET_ADDR: strcpy (desc, "a return address for gosub"); break; case stRET_ADDR_CALL: strcpy (desc, "a return address for a subroutine"); break; case stFREE: strcpy (desc, "nothing"); break; case stROOT: strcpy (desc, "the root of the stack"); break; case stANY: strcpy (desc, "anything"); break; case stSTRING_OR_NUMBER: strcpy (desc, "a string or a number"); break; case stSTRING_OR_NUMBER_ARRAYREF: strcpy (desc, "reference to a string or an array"); break; case stSWITCH_STRING: strcpy (desc, "string for switch"); break; case stSWITCH_NUMBER: strcpy (desc, "number for switch"); break; default: sprintf (desc, "type %d", type); break; } } void pushname (char *name) /* bison: push a name on stack */ { struct stackentry *s; s = push (); s->pointer = my_strdup (name); s->type = stSTRING; } void pushlabel () /* bison: generate goto and push label on stack */ { char *st; struct stackentry *en; st = (char *) my_malloc (sizeof (char) * 20); sprintf (st, "***%d", labelcount); labelcount++; create_goto (st); en = push (); en->type = stLABEL; en->pointer = st; } void poplabel () /* bison: pops a label and generates the matching command */ { create_label (pop (stLABEL)->pointer, cLABEL); /* and create it */ } void pushgoto () /* bison: generate label and push goto on stack */ { char *st; struct stackentry *en; st = (char *) my_malloc (sizeof (char) * 20); sprintf (st, "***%d", labelcount); labelcount++; create_label (st, cLABEL); en = push (); en->type = stGOTO; en->pointer = st; } void popgoto () /* bison: pops a goto and generates the matching command */ { create_goto (pop (stGOTO)->pointer); /* and create it */ } void storelabel () /* bison: push label on stack */ { char *st; struct stackentry *en; st = (char *) my_malloc (sizeof (char) * 20); sprintf (st, "***%d", labelcount); labelcount++; en = push (); en->type = stLABEL; en->pointer = st; } void matchgoto () /* bison: generate goto matching label on stack */ { create_goto (stackhead->prev->pointer); } void create_pushdbl (double value) /* create command 'cPUSHDBL' */ { struct command *cmd; cmd = add_command (cPUSHDBL, NULL, NULL); cmd->pointer = my_malloc (sizeof (double)); *(double *) (cmd->pointer) = value; } void pushdbl (struct command *cmd) { /* push double onto stack */ struct stackentry *p; p = push (); p->value = *(double *) cmd->pointer; p->type = stNUMBER; } void pushdblsym (struct command *cmd) { /* push double symbol onto stack */ struct stackentry *p; p = push (); if (!cmd->symname) { error (WARNING, "invalid pushdblsym"); } if (!cmd->symbol) { cmd->symbol = &(get_sym (cmd->symname, syNUMBER, amADD_GLOBAL)->value); } else if (infolevel >= DEBUG) { sprintf(string, "reading symbol '%s'", cmd->symname); error (DEBUG, string); } p->value = *(double *) cmd->symbol; p->type = stNUMBER; } void popdblsym (struct command *cmd) /* pop double from stack */ { double d; d = pop (stNUMBER)->value; if (!cmd->symbol) { cmd->symbol = &(get_sym (cmd->symname, syNUMBER, amADD_GLOBAL)->value); } else if (infolevel >= DEBUG) { sprintf(string, "writing symbol '%s'", cmd->symname); error (DEBUG, string); } *(double *) (cmd->symbol) = d; } void create_makestatic (char *name, int type) /* create command 'cMAKESTATIC' */ { struct command *cmd; cmd = add_command (cMAKESTATIC, name, NULL); cmd->args = type; } void makestatic (struct command *cmd) /* makes symbol static */ { struct symbol *l, *g; char *at = NULL; /* mask function name */ if ((at = strchr (cmd->symname, '@')) != NULL) { *at = '\0'; } if (get_sym (cmd->symname, cmd->args, amSEARCH_VERY_LOCAL)) { sprintf (string, "static variable '%s' already defined within this subroutine", strip (cmd->symname)); error (ERROR, string); return; } /* create global variable with unique name */ if (at) { *at = '@'; } g = get_sym (cmd->symname, cmd->args, amADD_GLOBAL); if (at) { *at = '\0'; } /* create local variable */ l = get_sym (cmd->symname, cmd->args, amADD_LOCAL); if (at) { *at = '@'; } /* link those two together */ link_symbols (l, g); } void create_arraylink (char *name, int type) /* create command 'cARRAYLINK' */ { struct command *cmd; cmd = add_command (cARRAYLINK, name, NULL); cmd->pointer = current_function; cmd->args = type; } void arraylink (struct command *cmd) /* link a local symbol to a global array */ { struct symbol *l, *g; struct array *ar; if (get_sym (cmd->symname, cmd->args, amSEARCH_VERY_LOCAL)) { sprintf (string, "'%s()' already defined within this subroutine", strip (cmd->symname)); error (ERROR, string); return; } /* get globally defined array */ g = get_sym (pop (cmd->args)->pointer, syARRAY, amSEARCH_PRE); /* create local array */ l = get_sym (cmd->symname, syARRAY, amADD_LOCAL); if (!l) { return; } if (!g || !g->pointer) { /* no global array supplied, create one */ error (DEBUG, "creating dummy array"); ar = create_array ((cmd->args == stNUMBERARRAYREF) ? 'd' : 's', 0); l->pointer = ar; if (infolevel >= DEBUG) { sprintf (string, "creating 0-dimensional dummy array '%s()'", cmd->symname); error (DEBUG, string); } } else { /* link those two together */ link_symbols (l, g); } } void create_pusharrayref (char *name, int type) /* create command 'cPUSHARRAYREF' */ { struct command *cmd; cmd = add_command (cPUSHARRAYREF, name, NULL); cmd->args = type; } void pusharrayref (struct command *cmd) /* push an array reference onto stack */ { struct stackentry *s; s = push (); s->type = cmd->args; s->pointer = my_strdup (cmd->symname); } void create_require (int type) /* create command 'cREQUIRE' */ { struct command *cmd; cmd = add_command (cREQUIRE, NULL, NULL); cmd->args = type; } void require (struct command *cmd) /* check, that item on stack has right type */ { char *expected, *supplied; struct stackentry *s; if (stackhead->prev->type == cmd->args) { return; /* okay, they match */ } if (stackhead->prev->type == stFREE) { /* no argument supplied, create it */ s = push (); if (cmd->args == stSTRING) { s->type = stSTRING; s->pointer = my_strdup (""); return; } else if (cmd->args == stNUMBER) { s->type = stNUMBER; s->value = 0.0; return; } else { /* create array */ s->type = cmd->args; s->pointer = NULL; return; } } s = stackhead->prev; if (s->type == stSTRING) { supplied = "string"; } else if (s->type == stNUMBER) { supplied = "number"; } else if (s->type == stSTRINGARRAYREF) { supplied = "string array"; } else if (s->type == stNUMBERARRAYREF) { supplied = "numeric array"; } else if (s->type == stFREE) { supplied = "nothing"; } else { supplied = "something strange"; } if (cmd->args == stSTRING) { expected = "string"; } else if (cmd->args == stNUMBER) { expected = "number"; } else if (cmd->args == stSTRINGARRAYREF) { expected = "string array"; } else if (cmd->args == stNUMBERARRAYREF) { expected = "numeric array"; } else if (cmd->args == stFREE) { expected = "nothing"; } else { expected = "something strange"; } sprintf (string, "invalid subroutine call: %s expected, %s supplied", expected, supplied); error (ERROR, string); } void create_dblbin (char c) /* create command for binary double operation */ { switch (c) { case '+': add_command (cDBLADD, NULL, NULL); break; case '-': add_command (cDBLMIN, NULL, NULL); break; case '*': add_command (cDBLMUL, NULL, NULL); break; case '/': add_command (cDBLDIV, NULL, NULL); break; case '^': add_command (cDBLPOW, NULL, NULL); break; } /* no specific information needed */ } void dblbin (struct command *cmd) /* compute with two numbers from stack */ { struct stackentry *d; double a, b, c; b = pop (stNUMBER)->value; a = pop (stNUMBER)->value; d = push (); switch (cmd->type) { case (cDBLADD): c = a + b; break; case (cDBLMIN): c = a - b; break; case (cDBLMUL): c = a * b; break; case (cDBLDIV): if (fabs (b) < DBL_MIN) { sprintf (string, "Division by zero, set to %g", DBL_MAX); error (NOTE, string); c = DBL_MAX; } else { c = a / b; } break; case (cDBLPOW): if ((a == 0 && b <= 0) || (a < 0 && b != (int) b)) { error (ERROR, "result is not a real number"); return; } else { c = pow (a, b); } break; } d->value = c; d->type = stNUMBER; } void negate () /* negates top of stack */ { stackhead->prev->value = -stackhead->prev->value; } void pushstrptr (struct command *cmd) /* push string-pointer onto stack */ { struct stackentry *p; p = push (); if (!cmd->symbol) { cmd->symbol = &(get_sym (cmd->symname, sySTRING, amADD_GLOBAL)->pointer); } p->pointer = *(char **) cmd->symbol; if (!p->pointer) { p->pointer = my_strdup (""); } p->type = stSTRING; } void pushstrsym (struct command *cmd) /* push string-symbol onto stack */ { struct stackentry *p; p = push (); if (!cmd->symbol) { cmd->symbol = &(get_sym (cmd->symname, sySTRING, amADD_GLOBAL)->pointer); } p->pointer = my_strdup (*(char **) cmd->symbol); p->type = stSTRING; } void popstrsym (struct command *cmd) /* pop string from stack */ { if (!cmd->symname) { return; } if (!cmd->symbol) { cmd->symbol = &(get_sym (cmd->symname, sySTRING, amADD_GLOBAL)->pointer); } if (*(char **) cmd->symbol != NULL) { my_free (*(char **) cmd->symbol); } *(char **) cmd->symbol = my_strdup (pop (stSTRING)->pointer); } void create_pushstr (char *s) /* creates command pushstr */ { struct command *cmd; cmd = add_command (cPUSHSTR, NULL, s); cmd->pointer = my_strdup (s); /* store string */ } void pushstr (struct command *cmd) { /* push string onto stack */ struct stackentry *p; p = push (); p->pointer = my_strdup ((char *) cmd->pointer); p->type = stSTRING; } void duplicate (void) /* duplicate topmost number on stack */ { struct stackentry *s; double actual; actual = stackhead->prev->value; s = push (); s->type = stNUMBER; s->value = actual; } void create_dim (char *name, char type) /* create command 'dim' */ /* type can be 's'=string or 'd'=double Array */ { struct command *cmd; cmd = add_command (cDIM, name, name); cmd->tag = type; /* type: string or double */ cmd->args = -1; } void dim (struct command *cmd) /* get room for array */ { struct array *nar, *oar; char *nul; int ntotal, ototal, esize, i, j; int ind[10], nbounds[10], larger; struct symbol *s; int local; local = ((cmd->tag == tolower (cmd->tag)) ? TRUE : FALSE); if (cmd->args < 0) { cmd->args = count_args (FALSE); } if (cmd->args < 0) { error (ERROR, "only numerical indices allowed for arrays"); return; } s = get_sym (cmd->symname, syARRAY, local ? amADD_LOCAL : amADD_GLOBAL); if (search_label (cmd->symname, srmSUBR | srmLINK)) { sprintf (string, "array '%s()' conflicts with user subroutine", strip (cmd->symname)); error (ERROR, string); return; } /* check for dimensions */ if (cmd->args > 10) { error (ERROR, "more than 10 indices"); return; } oar = s->pointer; if (oar) { /* check, if old and new array are compatible */ if (cmd->args != oar->dimension) { sprintf (string, "cannot change dimension of '%s()' from %d to %d", strip (cmd->symname), oar->dimension, cmd->args); error (ERROR, string); } } /* check, if redim is actually needed */ for (i = 0; i < 10; i++) { nbounds[i] = 0; } larger = FALSE; for (i = 0; i < cmd->args; i++) { nbounds[i] = 1 + (int) pop (stNUMBER)->value; if (nbounds[i] <= 1) { sprintf (string, "array index %d is less or equal zero", cmd->args - i); error (ERROR, string); return; } if (oar) { if (nbounds[i] > oar->bounds[i]) { larger = TRUE; } else { nbounds[i] = oar->bounds[i]; } } } pop (stFREE); /* remove left over stFREE */ if (oar && !larger) { return; /* new array won't be larger than old one */ } /* create array */ nar = create_array (tolower (cmd->tag), cmd->args); /* count needed memory */ ntotal = 1; for (i = 0; i < nar->dimension; i++) { (nar->bounds)[i] = nbounds[i]; ntotal *= nbounds[i]; } esize = (nar->type == 's') ? sizeof (char *) : sizeof (double); /* size of one array element */ nar->pointer = my_malloc (ntotal * esize); if (oar) { /* array already exists, get its size */ ototal = 1; for (i = 0; i < oar->dimension; i++) { ototal *= (oar->bounds)[i]; } } /* initialize Array */ for (i = 0; i < ntotal; i++) { if (nar->type == 's') { nul = my_malloc (sizeof (char)); *nul = '\0'; ((char **) nar->pointer)[i] = nul; } else { ((double *) nar->pointer)[i] = 0.0; } } if (oar) { /* copy contents of old array onto new */ for (i = 0; i < ototal; i++) { off_to_ind (i, oar->bounds, ind); j = ind_to_off (ind, nar->bounds); if (nar->type == 's') { my_free (((char **) nar->pointer)[j]); ((char **) nar->pointer)[j] = ((char **) oar->pointer)[i]; } else { ((double *) nar->pointer)[j] = ((double *) oar->pointer)[i]; } } my_free (oar->pointer); my_free (oar); } s->pointer = nar; cmd->symbol = nar; } static int ind_to_off (int *ind, int *bound) /* convert array of indices to single offset */ { int i; int cur, off; off = 0; cur = 1; for (i = 0; i < 10 && bound[i]; i++) { off += ind[i] * cur; cur *= bound[i]; } return off; } static void off_to_ind (int off, int *bound, int *ind) /* convert a single offset to an array of indices */ { int i; int cur; cur = 1; for (i = 0; i < 10; i++) { if (bound[i]) { cur *= bound[i]; } ind[i] = 0; } for (i = 9; i >= 0; i--) { if (bound[i]) { cur /= bound[i]; ind[i] = off / cur; off -= ind[i] * cur; } else { ind[i] = 0; } } } void query_array (struct command *cmd) /* get value from array */ { int index; struct stackentry *s; struct array *ar; struct symbol *sym; if (cmd->type == cARSIZE) { index = (int) pop (stNUMBER)->value; } s = pop (stSTRING_OR_NUMBER_ARRAYREF); if (!cmd->symbol) { sym = get_sym (s->pointer, syARRAY, amSEARCH); if (!sym || !sym->pointer) { sprintf (string, "array '%s()' is not defined", strip (s->pointer)); error (ERROR, string); return; } cmd->symbol = sym; } ar = ((struct symbol *) cmd->symbol)->pointer; if (cmd->type == cARSIZE && (index < 1 || index > ar->dimension)) { sprintf (string, "only indices between 1 and %d allowed", ar->dimension); error (ERROR, string); return; } s = push (); s->type = stNUMBER; if (cmd->type == cARSIZE) { s->value = ar->bounds[ar->dimension - index] - 1; } else { s->value = ar->dimension; } return; } void create_doarray (char *symbol, int command) /* creates array-commands */ { struct command *cmd; cmd = add_command (cDOARRAY, symbol, symbol); cmd->tag = command; /* operation to perform */ cmd->args = -1; } void doarray (struct command *cmd) /* call an array */ { struct array *ar; struct stackentry *stack; struct symbol *sym; void *p; char **str; double *dbl; int i, j, bnd, index, cur, rval; if (!cmd->symbol) { sym = get_sym (cmd->symname, syARRAY, amSEARCH); if (!sym || !sym->pointer) { sprintf (string, "'%s()' is neither array nor subroutine", strip (cmd->symname)); error (ERROR, string); return; } cmd->symbol = sym; } rval = (current->tag == CALLARRAY || current->tag == CALLSTRINGARRAY || current->tag == GETSTRINGPOINTER); if (cmd->args < 0) { cmd->args = count_args (!rval); } if (cmd->args < 0) { error (ERROR, "only numerical indices allowed for arrays"); return; } cmd->args = abs (cmd->args); if (!cmd->args) { /* no indizes supplied, create a reference to an array */ pop (stFREE); /* remove left over stFREE */ stack = push (); if (cmd->tag == CALLARRAY) { stack->type = stNUMBERARRAYREF; } else { stack->type = stSTRINGARRAYREF; } stack->pointer = my_strdup (cmd->symname); return; } ar = ((struct symbol *) cmd->symbol)->pointer; if (!ar->dimension) { sprintf (string, "array parameter '%s()' has not been supplied", strip (cmd->symname)); error (ERROR, string); return; } if (cmd->args != ar->dimension) { sprintf (string, "%d indices supplied, %d expected for '%s()'", cmd->args, ar->dimension, strip (cmd->symname)); error (ERROR, string); return; } if (!rval) { stack = pop (stSTRING_OR_NUMBER); } index = 0; cur = 1; for (i = 0; i < ar->dimension; i++) { bnd = (ar->bounds[i]); j = (int) pop (stNUMBER)->value; if (j < 0 || j >= bnd) { sprintf (string, "index %d (=%d) out of range", ar->dimension - i, j); error (ERROR, string); return; } index += j * cur; cur *= bnd; } pop (stFREE); /* remove left over stFREE */ if (rval) { stack = push (); } p = ar->pointer; switch (current->tag) { case CALLARRAY: dbl = (double *) p + index; stack->value = *dbl; stack->type = stNUMBER; break; case ASSIGNARRAY: dbl = (double *) p + index; *dbl = stack->value; break; case CALLSTRINGARRAY: str = ((char **) p + index); stack->pointer = my_strdup (*str); stack->type = stSTRING; break; case ASSIGNSTRINGARRAY: str = ((char **) p + index); if (*str != NULL) { my_free (*str); } *str = my_strdup (stack->pointer); break; case GETSTRINGPOINTER: str = ((char **) p + index); stack->pointer = *str; stack->type = stSTRING; break; } } struct array * create_array (int type, int dimension) /* create an array */ { int i; struct array *ar; ar = my_malloc (sizeof (struct array)); ar->type = type; ar->dimension = dimension; ar->pointer = NULL; for (i = 0; i < 10; i++) { ar->bounds[i] = 0; } return ar; } int count_args (int skipfirst) /* count number of numeric arguments on stack */ { int i = 0; int sign = 1; struct stackentry *curr; curr = stackhead->prev; if (skipfirst) { curr = curr->prev; } while (curr) { if (curr->type == stFREE) { return i * sign; } if (curr->type != stNUMBER) { sign = -1; } curr = curr->prev; i++; } return -1; } yabasic-2.78.5/main.c0000664000175100017510000021037413260516222011253 00000000000000/* YABASIC --- a simple Basic Interpreter written by Marc Ihm 1995-2018 more info at www.yabasic.de main.c --- main() and auxilliary functions This file is part of yabasic and may be copied under the terms of MIT License which can be found in the file LICENSE. */ /* ------------- includes ---------------- */ #ifndef YABASIC_INCLUDED #include "yabasic.h" /* all prototypes and structures */ #endif /* ------------- defines ---------------- */ #define DONE {current=current->next;break;} /* reduces type-work */ #define COPYRIGHT "Copyright 1995-2018 by Marc Ihm, according to the MIT License" #define BANNER \ "\nThis is yabasic version " VERSION ",\ncompiled on "\ ARCHITECTURE " at " __TIMESTAMP__ "\n\n " COPYRIGHT "\n\n" #define BANNER_VERSION \ "yabasic " VERSION ", built on " ARCHITECTURE #define YABFORHELP "(type 'yabasic --help' for help)" #define YABMAGIC "__YaBaSiC_MaGiC_CoOkIe__" /* ------------- external references ---------------- */ extern int mylineno; /* current line number */ extern int yyparse (); /* call bison parser */ extern int yydebug; /* for bison debugging */ /* ------------- local functions ---------------- */ static void parse_arguments (int, char *argv[]); /* parse cmd line arguments */ static void initialize (void); /* give correct values to pointers etc ... */ static void run_it (void); /* execute the compiled code */ static void end_it (void); /* perform shutdown operations */ #ifdef WINDOWS static void chop_command (char *, int *, char ***); /* chops WIN95-commandline */ #endif void create_docu_array (void); /* create array with documentation */ int equal (char *, char *, int); /* helper for processing options */ static int mybind (char *); /* bind a program to the interpreter and save it */ void put_and_count (char *, FILE *, int *); /* write text to file and increment len */ char *find_interpreter (char *); /* find interpreter with full path */ static int seekback (FILE *, int); /* seek back bytes */ /* ------------- global variables ---------------- */ struct command *cmdroot; /* first command */ struct command *cmdhead; /* next command */ struct command *lastcmd; /* last command */ struct command *current; /* currently executed command */ int infolevel; /* controls issuing of error messages */ int errorlevel; /* highest level of error message seen til now */ static int debug_count; /* number of debug messages */ static int note_count; /* number of notes */ static int warning_count; /* number of warning messages */ static int error_count; /* number of error messages */ int interactive; /* true, if commands come from stdin */ int is_bound; /* true, if this executable is bound */ static char *to_bind = NULL; /* name bound program to be written */ FILE *bound_program = NULL; /* points to embedded yabasic program (if any) */ char *string; /* for trash-strings */ char *errorstring; /* for error-strings */ int errorcode; /* error-codes */ static int commandcount; /* total number of commands */ int program_state; /* state of program */ char *progname = NULL; /* name of yabasic-program */ int print_docu = FALSE; /* TRUE, if only docu should be printed */ int hold_docu = FALSE; /* TRUE, if docu should be printed in portions */ #ifdef WINDOWS DWORD InitialConsole; /* initial state of console window */ #endif char *explanation[cLAST_COMMAND - cFIRST_COMMAND + 1]; /* explanations of commands */ char *explicit = NULL; /* yabasic commands given on the command line */ char **yabargv; /* arguments for yabasic */ int yabargc; /* number of arguments in yabargv */ static int endreason = erNONE; /* reason for termination */ static int exitcode = 0; static int signal_arrived = 0; /* timing */ time_t compilation_start, compilation_end, execution_end; char library_path[200]; /* full path to search libraries */ char library_default[200]; /* default full path to search libraries */ static struct command *docuhead = NULL; /* first docu in main */ static int docucount = 0; /* number of docu-lines in array */ int check_compat = 0; /* true, if compatibility should be checked */ char *inter_path = NULL; /* name of interpreter executing; i.e. ARGV[0] */ char *main_file_name = NULL; /* name of program to be executed */ /* ------------- main program ---------------- */ int main (int argc, char **argv) { #ifdef WINDOWS CONSOLE_SCREEN_BUFFER_INFO csbi; char *lp; int fromlibpath; DWORD consoleflags; #endif int len; string = (char *) my_malloc (sizeof (char) * INBUFFLEN); errorstring = (char *) my_malloc (sizeof (char) * INBUFFLEN); *errorstring = '\0'; errorcode = 0; program_state = HATCHED; infolevel = WARNING; /* set the initial Infolevel */ #ifdef WINDOWS /* enable %n for printf */ _set_printf_count_output(1); /* get handle for current thread */ DuplicateHandle (GetCurrentProcess (), GetCurrentThread (), GetCurrentProcess (), &mainthread, THREAD_ALL_ACCESS, FALSE, 0); /* get handle of instance */ this_instance = GetModuleHandle (NULL); /* define my window class */ myclass.style = 0; myclass.lpfnWndProc = (LPVOID) mywindowproc; myclass.cbClsExtra = 0; /* no extra bytes */ myclass.cbWndExtra = 0; myclass.hInstance = this_instance; myclass.hIcon = LoadIcon (this_instance, "yabasicIcon"); myclass.hCursor = LoadCursor (NULL, IDC_ARROW); /* standard cursor */ myclass.hbrBackground = (HBRUSH) COLOR_WINDOW; /* default-background */ myclass.lpszMenuName = NULL; myclass.lpszClassName = my_class; RegisterClass (&myclass); /* get console handles */ ConsoleInput = GetStdHandle (STD_INPUT_HANDLE); ConsoleOutput = GetStdHandle (STD_OUTPUT_HANDLE); GetConsoleMode (ConsoleInput, &InitialConsole); /* request processing of excape sequences */ GetConsoleMode(ConsoleOutput, &consoleflags); SetConsoleMode(ConsoleOutput, consoleflags | ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT); /* find out, if launched from commandline */ GetConsoleScreenBufferInfo (ConsoleOutput, &csbi); Commandline = !((csbi.dwCursorPosition.X == 0) && (csbi.dwCursorPosition.Y == 0)); if ((csbi.dwSize.X <= 0) || (csbi.dwSize.Y <= 0)) { Commandline = TRUE; } #endif /* get library path */ library_path[0] = '\0'; library_default[0] = '\0'; #ifdef UNIX strcpy (library_default, LIBRARY_PATH); #else fromlibpath = TRUE; if (lp = getreg ("librarypath")) { strcpy (library_default, lp); fromlibpath = TRUE; } else if (lp = getreg ("path")) { strcpy (library_default, lp); fromlibpath = FALSE; } else { library_default[0] = '\0'; fromlibpath = FALSE; } #endif /* find out, if this executable is bound to a yabasic program */ inter_path = find_interpreter (argv[0]); is_bound = isbound (); /* parse arguments */ parse_arguments (argc, argv); /* brush up library path */ if (!library_path[0]) { strcpy (library_path, library_default); } len = strlen (library_path); #ifdef UNIX if (library_path[len - 1] == '/' || library_path[len - 1] == '\\') { library_path[len - 1] = '\0'; } #else if (library_path[0]) { if (library_path[len - 1] != '/' && library_path[len - 1] != '\\') { strcat (library_path, "\\"); } if (!fromlibpath) { strcat (library_path, "lib\\"); } } #endif time (&compilation_start); last_inkey=my_malloc(INBUFFLEN); last_inkey[0]='\0'; error (DEBUG, "This is yabasic " VERSION ", compiled on " ARCHITECTURE " at " __TIMESTAMP__ ", configured at " BUILD_TIME); initialize (); program_state = INITIALIZED; error (NOTE, "calling parser/compiler"); if (interactive) { printf ("%s", BANNER); printf ("Enter your program and type RETURN twice when done.\n\n"); printf ("Your program will execute immediately and cannot be saved;\n"); printf ("create your program with an external editor, if you want to keep it.\n"); #ifdef UNIX printf ("Type 'man yabasic' or see the file yabasic.htm for more information,\n"); #else printf ("See the documentation within the start-menu for more information,\n"); #endif printf ("or go to www.yabasic.de for online resources.\n\n"); } program_state = COMPILING; if (yyparse () && errorlevel > ERROR) { error (ERROR, "Couldn't parse program"); } if (errorlevel > ERROR) { create_docu_array (); } add_command (cEND, NULL, NULL); sprintf (string, "read %d line(s) and generated %d command(s)", mylineno, commandcount); error (NOTE, string); time (&compilation_end); if (to_bind) { if (mybind (to_bind)) { sprintf (string, "Successfully bound '%s' and '%s' into '%s'", inter_path, main_file_name, to_bind); error (INFO, string); end_it (); } else { sprintf (string, "Could not bind '%s' and '%s' into '%s'", inter_path, main_file_name, to_bind); error (ERROR, string); end_it (); } } if (errorlevel > ERROR && !check_compat) { program_state = RUNNING; if (infolevel >= DEBUG) { printf ("---Program parsed, press RETURN to continue with its execution: "); fgets (string, 2, stdin); } run_it (); } else { program_state = FINISHED; if (check_compat) printf ("Check for possible compatibility problems done\nProgram will not be executed, %d possible problem(s) reported\n", warning_count); else { error (ERROR, "Program not executed"); } } program_state = FINISHED; sprintf (string, "%d debug(s), %d note(s), %d warning(s), %d error(s)", debug_count, note_count, warning_count, error_count); error (NOTE, string); time (&execution_end); sprintf (string, "compilation time %g second(s), execution %g", (double) (compilation_end - compilation_start), (double) (execution_end - compilation_end)); error (NOTE, string); end_it (); return !(errorlevel > ERROR); } /* ------------- subroutines ---------------- */ void std_diag (char *head, int type, char *symname, char *diag) /* produce standard diagnostic */ { int n, i; char *dest = string; struct stackentry *sp; if (type > cLAST_COMMAND || type < cFIRST_COMMAND) { sprintf (dest, "%s Illegal %d %n", head, type, &n); } else { if (symname) sprintf (dest, "%s %s (%s) %n", head, explanation[type], symname, &n); else { sprintf (dest, "%s %s %n", head, explanation[type], &n); } if (diag && *diag) { dest += n; sprintf (dest, "'%s' %n", diag, &n); } } dest += n; if (stackhead->prev != stackroot) { sprintf (dest, "t["); dest += 2; sp = stackhead; for (i = 0; TRUE; i++) { sp = sp->prev; if (sp == stackroot) { break; } if (i >= 5) { continue; } if (i > 0) { sprintf (dest, ","); dest++; } switch (sp->type) { case stGOTO: sprintf (dest, "goto%n", &n); break; case stSTRINGARRAYREF: case stNUMBERARRAYREF: if (sp->pointer) { sprintf (dest, "%s()%n", (char *) sp->pointer, &n); } else { sprintf (dest, "ARRAY()%n", &n); } break; case stSTRING: sprintf (dest, "'%s'%n", (char *) sp->pointer, &n); break; case stNUMBER: sprintf (dest, "%g%n", sp->value, &n); break; case stLABEL: sprintf (dest, "label%n", &n); break; case stRET_ADDR: sprintf (dest, "retadd%n", &n); break; case stRET_ADDR_CALL: sprintf (dest, "retaddcall%n", &n); break; case stFREE: sprintf (dest, "free%n", &n); break; case stROOT: sprintf (dest, "root%n", &n); break; case stSWITCH_STRING: sprintf (dest, "switch_string%n", &n); break; case stSWITCH_NUMBER: sprintf (dest, "switch_number%n", &n); break; default: sprintf (dest, "unknown%n", &n); break; } dest += n; } if (i > 5) { sprintf (dest, ";+%d%n", i - 5, &n); dest += n; } strcpy (dest, "]b"); } else { strcpy (dest, "t[]b"); } error (DEBUG, string); } struct command * add_command (int type, char *symname, char *diag) /* get room for new command, and make a link from old one */ { struct command *new; if (infolevel >= DEBUG) { std_diag ("creating", type, symname, diag); } cmdhead->type = type; /* store command */ cmdhead->line = mylineno; cmdhead->lib = currlib; cmdhead->cnt = commandcount; if (!symname || !*symname) { cmdhead->symname = NULL; } else { cmdhead->symname = my_strdup (symname); } commandcount++; cmdhead->pointer = NULL; /* no data yet */ cmdhead->tag = 0; cmdhead->jump = NULL; cmdhead->nextassoc = NULL; cmdhead->diag = my_strdup(diag); if (!currlib->datapointer && cmdhead->type == cDATA) { currlib->firstdata = currlib->datapointer = cmdhead; } /* link into chain of commands referencing a symbol */ if (symname) { if (lastref) { lastref->nextref = cmdhead; } lastref = cmdhead; } /* create new command */ new = (struct command *) my_malloc (sizeof (struct command)); /* and initialize */ new->next = NULL; new->prev = cmdhead; new->pointer = NULL; new->symbol = NULL; new->nextref = NULL; new->nextassoc = NULL; new->symname = NULL; cmdhead->next = new; lastcmd = cmdhead; cmdhead = cmdhead->next; return lastcmd; } struct command * add_command_with_switch_state (int type) /* same as add_command, but add switch_state too */ { struct command *cmd; cmd = add_command (type, NULL, NULL); return add_switch_state(cmd); } void dump_commands (char *dumpfilename) /* dump commands into given file */ { FILE *dump = NULL; struct command *cmd; int max_explanation_length=0; dump = fopen (dumpfilename,"w"); if (dump == NULL) { sprintf(string,"could not open '%s' for writing: %s", dumpfilename,my_strerror(errno)); error (ERROR,string); return; } for (cmd=cmdroot; cmd; cmd=cmd->next) { int len; len=strlen(explanation[cmd->type]); if (len>max_explanation_length) { max_explanation_length=len; } if (cmd->type > cLAST_COMMAND || cmd->type < cFIRST_COMMAND) { sprintf (string, "Illegal command type %d", cmd->type); error(ERROR,string); return; } if (cmd->type==cEND) { break; } } for (cmd=cmdroot; cmd; cmd=cmd->next) { sprintf(string,""); fprintf(dump,"Line %4d, Address %p: %-*s (lib %s, ptr %p, tag 0x%x%s)\n",cmd->line,cmd,max_explanation_length,explanation[cmd->type],cmd->lib->s,cmd->pointer,cmd->tag,string); if (cmd->type==cEND) { break; } } fclose(dump); sprintf(string,"Dumped to '%s'",dumpfilename); error(INFO,string); } static void parse_arguments (int cargc, char *cargv[]) /* parse arguments from the command line */ { char **argv; int argc, larg; #ifdef UNIX char *parg; int i; #endif int ar; FILE *inputfile = NULL; char *option; char *info; int options_done = FALSE; if (cargc > 1) { larg = strlen (cargv[1]); } else { larg = 0; } #ifdef UNIX if (cargc > 0) { /* get room for arguments */ argv = (char **) my_malloc ((larg + cargc + 1) * sizeof (char *)); /* copy zero argument */ argv[0] = cargv[0]; argc = 0; /* chop first argument into pieces */ if (cargc >= 2) { parg = strtok (my_strdup (cargv[1]), " \t"); for (argc = 1; parg; argc++) { argv[argc] = parg; parg = strtok (NULL, " \t"); } } /* copy other arguments */ for (i = 2; i < cargc; i++) { argv[argc] = cargv[i]; argc++; } } else { argv = cargv; argc = cargc; } #else argv = cargv; argc = cargc; #endif yabargv = (char **) my_malloc ((larg + cargc + 1) * sizeof (char *)); yabargc = 0; if (is_bound) { options_done = 1; } /* process options */ for (ar = 1; ar < argc; ar++) { option = argv[ar]; if (!options_done) { if (equal ("-version", option, 2)) { fprintf (stderr, "%s\n", BANNER_VERSION); end_it (); } else if (equal ("-help", option, -2) || equal ("-?", option, 2)) { fprintf (stderr, "\nUsage: yabasic [OPTIONS] [FILENAME [ARGUMENTS]]\n\n"); fprintf (stderr, "FILENAME : file, which contains the yabasic program; omit it to type\n"); fprintf (stderr, " in your program on the fly (terminated by a double newline)\n"); fprintf (stderr, "ARGUMENTS : strings, that are available from within the yabasic program\n\n"); fprintf (stderr, "Available OPTIONS:\n"); fprintf (stderr, " --help : print this message\n"); fprintf (stderr, " --version : show version of yabasic\n"); fprintf (stderr, " -i,-infolevel [dnwefb] : set infolevel to debug,note,warning,error,fatal or bison\n"); fprintf (stderr, " -e,--execute COMMANDS : execute yabasic COMMANDS right away\n"); fprintf (stderr, " --bind BOUND : bind interpreter with FILENAME into BOUND\n"); fprintf (stderr, " --geometry x+y : position graphic window at x,y\n"); #ifdef UNIX fprintf (stderr, " --fg,--bg COL : specify fore/background color of graphic window\n"); fprintf (stderr, " --display DISP : display, where window will show up\n"); fprintf (stderr, " --font FONT : font for graphic window\n"); #else fprintf (stderr, " --font FONT : font for graphic, supply style (decorative,dontcare,\n"); fprintf (stderr, " modern,roman,script or swiss) and size, e.g. swiss10\n"); #endif fprintf (stderr, " --docu NAME : print embedded docu of program or library\n"); fprintf (stderr, " --check : check for possible compatibility problems\n"); fprintf (stderr, " -- : pass any subsequent words as arguments to yabasic\n"); fprintf (stderr, " --librarypath PATH : directory to search libraries not found in\n"); fprintf (stderr, " current dir (default %s)\n", library_default); fprintf (stderr, "\n"); end_it (); } else if (equal ("-check", option, 2)) { check_compat = 1; } else if (!strcmp ("--", option)) { options_done = TRUE; continue; } else if (equal ("-infolevel", option, 2)) { ar++; if (ar >= argc) { error (ERROR, "no infolevel specified " YABFORHELP); end_it (); } info = argv[ar]; if (!strncmp (info, "debug", strlen (info))) { infolevel = DEBUG; } else if (!strncmp (info, "note", strlen (info))) { infolevel = NOTE; } else if (!strncmp (info, "warning", strlen (info))) { infolevel = WARNING; } else if (!strncmp (info, "error", strlen (info))) { infolevel = ERROR; } else if (!strncmp (info, "fatal", strlen (info))) { infolevel = FATAL; } else if (!strncmp (info, "bison", strlen (info))) { yydebug = 1; infolevel = DEBUG; } else { sprintf (string, "there's no infolevel '%s' " YABFORHELP, argv[ar]); error (ERROR, string); end_it (); } } else if (equal ("-fg", option, 3) || equal ("-foreground", option, 4)) { ar++; if (ar >= argc) { error (ERROR, "no foreground colour specified " YABFORHELP); end_it (); } foreground = my_strdup (argv[ar]); } else if (equal ("-bg", option, 2) || equal ("-background", option, 2)) { ar++; if (ar >= argc) { error (ERROR, "no background colour specified (-h for help)"); end_it (); } background = my_strdup (argv[ar]); } else if (equal ("-geometry", option, 2)) { ar++; if (ar >= argc) { error (ERROR, "no geometry string specified (-h for help)"); end_it (); } geometry = my_strdup (argv[ar]); } else if (equal ("-bind", option, 3)) { ar++; if (ar >= argc) { error (ERROR, "name of bound program to be written is missing"); end_it (); } to_bind = my_strdup (argv[ar]); } else if (equal ("-execute", option, 2)) { ar++; if (ar >= argc) { error (ERROR, "no commands specified (-h for help)"); end_it (); } explicit = my_strdup (argv[ar]); } else if (equal ("-librarypath", option, 4)) { ar++; if (ar >= argc) { error (ERROR, "no library path specified (-h for help)"); end_it (); } strcpy (library_path, argv[ar]); } else if (equal ("-display", option, 3)) { ar++; if (ar >= argc) { error (ERROR, "no display name specified (-h for help)"); end_it (); } displayname = my_strdup (argv[ar]); } else if (equal ("-font", option, 4)) { ar++; if (ar >= argc) { error (ERROR, "no font specified (-h for help)"); end_it (); } fontname = my_strdup (argv[ar]); } else if (!print_docu && (!strcmp ("-doc", option) || !strncmp ("-doc_", option, 5) || !strcmp ("-docu", option) || !strncmp ("-docu_", option, 6))) { print_docu = TRUE; if (!strncmp ("-doc_", option, 5)) { ar--; hold_docu = TRUE; main_file_name = my_strdup (option + 5); } else if (!strncmp ("-docu_", option, 6)) { ar--; hold_docu = TRUE; main_file_name = my_strdup (option + 6); } else { if (ar >= argc - 1) { error (ERROR, "no filename specified (-h for help)"); end_it (); } hold_docu = FALSE; main_file_name = my_strdup (argv[ar + 1]); } } else if (!print_docu && *option == '-') { sprintf (string, "unknown or ambiguous option '%s' " YABFORHELP, option); error (ERROR, string); end_it (); } else if (!is_bound && !inputfile && !explicit) { /* not an option */ if (!main_file_name) { main_file_name = my_strdup (argv[ar]); } inputfile = fopen (main_file_name, "r"); if (inputfile == NULL) { sprintf (string, "could not open '%s': %s", main_file_name, my_strerror (errno)); error (ERROR, string); endreason = erERROR; exitcode = 1; end_it (); } else { progname = strrchr (main_file_name, '\\'); if (!progname) { progname = strrchr (main_file_name, '/'); } if (progname) { progname++; } else { progname = main_file_name; } if (!progname) { progname = "Yabasic"; } } } else { /* option for yabasic program */ yabargv[yabargc] = my_strdup (argv[ar]); yabargc++; } } else { yabargv[yabargc] = my_strdup (argv[ar]); yabargc++; } } interactive = FALSE; #ifdef WINDOWS if (is_bound || !progname) { SetConsoleTitle (""); } else { SetConsoleTitle (progname); } #endif if (is_bound) { inputfile = bound_program; main_file_name = my_strdup (inter_path); } else if (!inputfile && !explicit) { interactive = TRUE; inputfile = stdin; main_file_name = "standard input"; } if (explicit) { main_file_name = "command line"; } /* open a flex buffer for the initial file */ open_main (inputfile, explicit, main_file_name); return; } int equal (char *a, char *b, int min) /* helper for processing options */ { int len; if (b[0] == '-' && b[1] == '-' && b[2]) { b++; } if (min < 0) { min = -min; len = min; } else { len = strlen (b); } return (!strncmp (a, b, len) && len >= min); } #ifdef WINDOWS static void chop_command (char *command, int *argc, char ***argv) /* chop the WIN95-commandline into seperate strings */ { int i, j, count; int quote; char c, last; char *curr; char **list; /* count, how many arguments */ count = i = 0; last = ' '; quote = FALSE; while ((c = *(command + i)) != '\0') { if (!quote && c != ' ' && last == ' ') { count++; } if (c == '\"') { quote = !quote; } last = c; i++; } /* fill yabasic into argv[0] */ *argv = my_malloc ((count + 1) * sizeof (char *)); list = *argv; *argc = count + 1; *list = my_strdup ("yabasic"); /* fill in other strings */ i = 0; count = 1; last = ' '; quote = FALSE; do { c = *(command + i); if (!quote && c != ' ' && last == ' ') { j = i; } if (c == '\"') { quote = !quote; if (quote) { j++; } } if (((c == ' ' && !quote) || c == '\0') && last != ' ') { *(list + count) = my_malloc ((i - j + 1) * sizeof (char)); strncpy (*(list + count), command + j, i - j); curr = *(list + count) + i - j; *curr = '\0'; if (*(curr - 1) == '\"') { *(curr - 1) = '\0'; } count++; } last = c; i++; } while (c != '\0'); } #endif static void end_it (void) /* perform shutdown-operations */ { char l[2]; #ifdef UNIX int status; if (backpid == 0) { exit (1); } if (backpid > 0) { kill (backpid, SIGTERM); waitpid (backpid, &status, 0); backpid = -1; } if ((curinized || winopened) && endreason != erREQUEST) { #else if (!Commandline && endreason != erREQUEST) { #endif mystream (STDIO_STREAM); onestring ("---Program done, press RETURN---\n"); #ifdef WINDOWS SetConsoleMode (ConsoleInput, InitialConsole & (~ENABLE_ECHO_INPUT)); FlushConsoleInputBuffer (ConsoleInput); #endif fgets (l, 2, stdin); #ifdef WINDOWS if (wthandle != INVALID_HANDLE_VALUE) { TerminateThread (wthandle, 0); } #endif #ifdef UNIX } #else } #endif #ifdef UNIX if (curinized) { endwin (); } #else if (printerfont) { DeleteObject (printerfont); } if (myfont) { DeleteObject (myfont); } if (printer) { DeleteDC (printer); } #endif exit (exitcode); } static void initialize (void) /* give correct values to pointers etc ... */ { struct symbol *s; struct stackentry *base; #ifdef UNIX struct timeval time; #endif int i; #ifdef UNIX #ifdef SETPGRP_VOID setpgrp (); #else #endif #endif /* install exception handler */ signal (SIGFPE, signal_handler); signal (SIGSEGV, signal_handler); signal (SIGINT, signal_handler); #ifdef SIGHUP signal (SIGHUP, signal_handler); #endif #ifdef SIGQUIT signal (SIGQUIT, signal_handler); #endif #ifdef SIGABRT signal (SIGABRT, signal_handler); #endif /* initialize error handling: no errors seen 'til now */ errorlevel = DEBUG; debug_count = 0; note_count = 0; warning_count = 0; error_count = 0; /* initialize stack of symbol lists */ pushsymlist (); /* initialize numeric stack */ /* create first : */ stackroot = (struct stackentry *) my_malloc (sizeof (struct stackentry)); stackroot->next = NULL; stackroot->prev = NULL; stackhead = stackroot; /* stack of double values */ /* initialize command stack */ /* create first: */ cmdroot = (struct command *) my_malloc (sizeof (struct command)); cmdroot->next = cmdroot->prev = NULL; /* initialize random number generator */ #ifdef UNIX gettimeofday(&time, NULL); srand((time.tv_sec * 1000) + (time.tv_usec / 1000)); #else srand(GetTickCount()); #endif /* specify default text-alignement and window origin */ text_align = my_strdup ("lb"); winorigin = my_strdup ("lt"); /* initialize stack */ base = push (); base->type = stROOT; /* push nil, so that pop will not crash */ cmdhead = cmdroot; /* list of commands */ ; commandcount = 0; /* initialize switch_id stack */ initialize_switch_id_stack(); /* add internal string variables */ s = get_sym ("yabos$", sySTRING, amADD_GLOBAL); if (s->pointer) { my_free (s->pointer); } #ifdef UNIX s->pointer = my_strdup ("unix"); #else s->pointer = my_strdup ("windows"); #endif /* set default-scales for grafics */ fontheight = 10; winheight = 100; winwidth = 100; #ifdef UNIX calc_psscale (); #endif /* file stuff */ for (i = 1; i <= 9; i++) { streams[i] = NULL; stream_modes[i] = stmCLOSED; } streams[0] = stdin; stream_modes[0] = stmREAD | stmWRITE; #ifdef UNIX printerfile = NULL; /* no ps-file yet */ #endif /* array with explanation */ for (i = cFIRST_COMMAND; i <= cLAST_COMMAND; i++) { explanation[i] = NULL; } explanation[cFIRST_COMMAND] = "FIRST_COMMAND"; explanation[cFINDNOP] = "FINDNOP"; explanation[cEXCEPTION] = "EXCEPTION"; explanation[cLABEL] = "LABEL"; explanation[cLINK_SUBR] = "cLINK_SUBR"; explanation[cTOKEN] = "TOKEN"; explanation[cTOKEN2] = "TOKEN2"; explanation[cTOKENALT] = "TOKENALT"; explanation[cTOKENALT2] = "TOKENALT2"; explanation[cSPLIT] = "SPLIT"; explanation[cSPLIT2] = "SPLIT2"; explanation[cSPLITALT] = "SPLITALT"; explanation[cSPLITALT2] = "SPLITALT2"; explanation[cGOTO] = "GOTO"; explanation[cQGOTO] = "QGOTO"; explanation[cGOSUB] = "GOSUB"; explanation[cQGOSUB] = "QGOSUB"; explanation[cCALL] = "CALL"; explanation[cQCALL] = "QCALL"; explanation[cRETURN_FROM_GOSUB] = "RETURN_FROM_GOSUB"; explanation[cRETURN_FROM_CALL] = "RETURN_FROM_CALL"; explanation[cCHECK_RETURN_VALUE] = "CHECK_RETURN_VALUE"; explanation[cSWAP] = "SWAP"; explanation[cDECIDE] = "DECIDE"; explanation[cANDSHORT] = "ANDSHORT"; explanation[cORSHORT] = "ORSHORT"; explanation[cSKIPPER] = "SKIPPER"; explanation[cSKIPONCE] = "SKIPONCE"; explanation[cRESETSKIPONCE] = "RESETSKIPONCE"; explanation[cNOP] = "NOP"; explanation[cEND_FUNCTION] = "END_FUNCTION"; explanation[cDIM] = "DIM"; explanation[cFUNCTION] = "FUNCTION"; explanation[cDOARRAY] = "DOARRAY"; explanation[cDBLADD] = "DBLADD"; explanation[cDBLMIN] = "DBLMIN"; explanation[cDBLMUL] = "DBLMUL"; explanation[cDBLDIV] = "DBLDIV"; explanation[cDBLPOW] = "DBLPOW"; explanation[cNEGATE] = "NEGATE"; explanation[cPUSHDBLSYM] = "PUSHDBLSYM"; explanation[cREQUIRE] = "REQUIRE"; explanation[cCLEARREFS] = "CLEARREFS"; explanation[cPUSHSYMLIST] = "PUSHSYMLIST"; explanation[cPOPSYMLIST] = "POPSYMLIST"; explanation[cMAKELOCAL] = "MAKELOCAL"; explanation[cCOUNT_PARAMS] = "COUNT_PARAMS"; explanation[cMAKESTATIC] = "MAKESTATIC"; explanation[cARRAYLINK] = "ARRAYLINK"; explanation[cPUSHARRAYREF] = "PUSHARRAYREF"; explanation[cARDIM] = "ARRAYDIMENSION"; explanation[cARSIZE] = "ARRAYSIZE"; explanation[cUSER_FUNCTION] = "USER_FUNCTION"; explanation[cFUNCTION_OR_ARRAY] = "FUNCTION_OR_ARRAY"; explanation[cSTRINGFUNCTION_OR_ARRAY] = "STRINGFUNCTION_OR_ARRAY"; explanation[cPUSHFREE] = "PUSHFREE"; explanation[cPOPDBLSYM] = "POPDBLSYM"; explanation[cPOP] = "POP"; explanation[cPUSHDBL] = "PUSHDBL"; explanation[cPOKE] = "POKE"; explanation[cPOKEFILE] = "POKEFILE"; explanation[cAND] = "AND"; explanation[cOR] = "OR"; explanation[cNOT] = "NOT"; explanation[cLT] = "LT"; explanation[cGT] = "GT"; explanation[cLE] = "LE"; explanation[cGE] = "GE"; explanation[cEQ] = "EQ"; explanation[cNE] = "NE"; explanation[cSTREQ] = "STREQ"; explanation[cSTRNE] = "STRNE"; explanation[cSTRLT] = "STRLT"; explanation[cSTRLE] = "STRLE"; explanation[cSTRGT] = "STRGT"; explanation[cSTRGE] = "STRGE"; explanation[cPUSHSTRSYM] = "PUSHSTRSYM"; explanation[cPOPSTRSYM] = "POPSTRSYM"; explanation[cPUSHSTR] = "PUSHSTR"; explanation[cCONCAT] = "CONCAT"; explanation[cPUSHSTRPTR] = "PUSHSTRPTR"; explanation[cCHANGESTRING] = "CHANGESTRING"; explanation[cGLOB] = "GLOB"; explanation[cPRINT] = "PRINT"; explanation[cREAD] = "READ"; explanation[cRESTORE] = "RESTORE"; explanation[cQRESTORE] = "QRESTORE"; explanation[cREADDATA] = "READDATA"; explanation[cONESTRING] = "ONESTRING"; explanation[cDATA] = "DATA"; explanation[cOPEN] = "OPEN"; explanation[cCHECKOPEN] = "CHECKOPEN"; explanation[cCHECKSEEK] = "CHECKSEEK"; explanation[cCOMPILE] = "COMPILE"; explanation[cEXECUTE] = "EXECUTE"; explanation[cEXECUTE2] = "EXECUTE$"; explanation[cCLOSE] = "CLOSE"; explanation[cSEEK] = "SEEK"; explanation[cSEEK2] = "SEEK2"; explanation[cPUSHSTREAM] = "cPUSHSTREAM"; explanation[cPOPSTREAM] = "cPOPSTREAM"; explanation[cWAIT] = "WAIT"; explanation[cBELL] = "BELL"; explanation[cMOVE] = "MOVE"; explanation[cMOVEORIGIN] = "MOVEORIGIN"; explanation[cRECT] = "RECT"; explanation[cCLEARSCR] = "CLEARSCR"; explanation[cOPENWIN] = "OPENWIN"; explanation[cDOT] = "DOT"; explanation[cPUTBIT] = "PUTBIT"; explanation[cPUTCHAR] = "PUTCHAR"; explanation[cLINE] = "LINE"; explanation[cGCOLOUR] = "GCOLOUR"; explanation[cGCOLOUR2] = "GCOLOUR2"; explanation[cGBACKCOLOUR] = "GBACKCOLOUR"; explanation[cGBACKCOLOUR2] = "GBACKCOLOUR2"; explanation[cCIRCLE] = "CIRCLE"; explanation[cTRIANGLE] = "TRIANGLE"; explanation[cTEXT1] = "TEXT1"; explanation[cTEXT2] = "TEXT2"; explanation[cTEXT3] = "TEXT3"; explanation[cCLOSEWIN] = "CLOSEWIN"; explanation[cCLEARWIN] = "CLEARWIN"; explanation[cOPENPRN] = "OPENPRN"; explanation[cCLOSEPRN] = "CLOSEPRN"; explanation[cTESTEOF] = "TESTEOF"; explanation[cCOLOUR] = "COLOUR"; explanation[cDUPLICATE] = "DUPLICATE"; explanation[cDOCU] = "DOCU"; explanation[cEND] = "END"; explanation[cEXIT] = "EXIT"; explanation[cBIND] = "BIND"; explanation[cERROR] = "ERROR"; explanation[cSTARTFOR] = "STARTFOR"; explanation[cFORCHECK] = "FORCHECK"; explanation[cFORINCREMENT] = "FORINCREMENT"; explanation[cBEGIN_SWITCH_MARK] = "BEGIN_SWITCH_MARK"; explanation[cEND_SWITCH_MARK] = "END_SWITCH_MARK"; explanation[cBEGIN_LOOP_MARK] = "BEGIN_LOOP_MARK"; explanation[cEND_LOOP_MARK] = "END_LOOP_MARK"; explanation[cSWITCH_COMPARE] = "SWITCH_COMPARE"; explanation[cNEXT_CASE] = "NEXT_CASE"; explanation[cNEXT_CASE_HERE] = "NEXT_CASE_HERE"; explanation[cBREAK_MULTI] = "BREAK_MULTI"; explanation[cCONTINUE] = "CONTINUE"; explanation[cBREAK_HERE] = "BREAK_HERE"; explanation[cCONTINUE_HERE] = "CONTINUE_HERE"; explanation[cPOP_MULTI] = "POP_MULTI"; explanation[cCHKPROMPT] = "CHKPROMPT"; explanation[cLAST_COMMAND] = "???"; for (i = cFIRST_COMMAND; i <= cLAST_COMMAND; i++) { if (!explanation[i]) { sprintf (string, "command %d has no description (command after %s)", i, explanation[i-1]); error(ERROR,string); } } ykey[kERR] = "error"; ykey[kUP] = "up"; ykey[kDOWN] = "down"; ykey[kLEFT] = "left"; ykey[kRIGHT] = "right"; ykey[kDEL] = "del"; ykey[kINS] = "ins"; ykey[kCLEAR] = "clear"; ykey[kHOME] = "home"; ykey[kEND] = "end"; ykey[kF0] = "f0"; ykey[kF1] = "f1"; ykey[kF2] = "f2"; ykey[kF3] = "f3"; ykey[kF4] = "f4"; ykey[kF5] = "f5"; ykey[kF6] = "f6"; ykey[kF7] = "f7"; ykey[kF8] = "f8"; ykey[kF9] = "f9"; ykey[kF10] = "f10"; ykey[kF11] = "f11"; ykey[kF12] = "f12"; ykey[kF13] = "f13"; ykey[kF14] = "f14"; ykey[kF15] = "f15"; ykey[kF16] = "f16"; ykey[kF17] = "f17"; ykey[kF18] = "f18"; ykey[kF19] = "f19"; ykey[kF20] = "f20"; ykey[kF21] = "f21"; ykey[kF22] = "f22"; ykey[kF23] = "f23"; ykey[kF24] = "f24"; ykey[kBACKSPACE] = "backspace"; ykey[kSCRNDOWN] = "scrndown"; ykey[kSCRNUP] = "scrnup"; ykey[kENTER] = "enter"; ykey[kESC] = "esc"; ykey[kTAB] = "tab"; ykey[kLASTKEY] = ""; } void signal_handler (int sig) /* handle signals */ { signal (sig, SIG_DFL); if (program_state == FINISHED) { exit (1); } signal_arrived = sig; #ifdef WINDOWS if (signal_arrived) { SuspendThread (mainthread); if (wthandle != INVALID_HANDLE_VALUE) { SuspendThread (wthandle); } if (kthandle != INVALID_HANDLE_VALUE) { TerminateThread (kthandle, 0); } } #endif switch (sig) { case SIGFPE: error (FATAL, "floating point exception, cannot proceed."); case SIGSEGV: error (FATAL, "segmentation fault, cannot proceed."); case SIGINT: #ifdef UNIX if (backpid == 0) { exit (1); } #endif error (FATAL, "keyboard interrupt, cannot proceed."); #ifdef SIGHUP case SIGHUP: error (FATAL, "received signal HANGUP, cannot proceed."); #endif #ifdef SIGQUIT case SIGQUIT: error (FATAL, "received signal QUIT, cannot proceed."); #endif #ifdef SIGABRT case SIGABRT: error (FATAL, "received signal ABORT, cannot proceed."); #endif default: break; } } static void run_it () /* execute the compiled code */ { int l = 0; current = cmdroot; /* start with first comand */ if (print_docu) { /* don't execute program, just print docu */ while (current != cmdhead) { if (current->type == cDOCU) { if (infolevel >= DEBUG) { std_diag ("executing", current->type, current->symname, current->diag); } printf ("%s\n", (char *) current->pointer); l++; if (hold_docu && !(l % 24)) { printf ("---Press RETURN to continue "); fgets (string, 2, stdin); } } else { if (infolevel >= DEBUG) { std_diag ("skipping", current->type, current->symname, current->diag); } } current = current->next; } if (!l) { printf ("---No embbeded documentation\n"); } if (hold_docu) { printf ("---End of embbedded documentation, press RETURN "); fgets (string, 2, stdin); } } else { while (current != cmdhead && endreason == erNONE) { if (infolevel >= DEBUG) { std_diag ("executing", current->type, current->symname, current->diag); } switch (current->type) { case cGOTO: case cQGOTO: case cGOSUB: case cQGOSUB: case cCALL: case cQCALL: jump (current); DONE; case cEXCEPTION: exception (current); DONE; case cSKIPPER: skipper (); break; case cSKIPONCE: skiponce (current); DONE; case cRESETSKIPONCE: resetskiponce (current); DONE; case cBREAK_MULTI: mybreak (current); DONE; case cNEXT_CASE: next_case (current); DONE; case cSWITCH_COMPARE: switch_compare (); DONE; case cCONTINUE: mycontinue (current); DONE; case cFINDNOP: findnop (); DONE; case cFUNCTION_OR_ARRAY: case cSTRINGFUNCTION_OR_ARRAY: function_or_array (current); break; /* NOT 'DONE' ! */ case cLABEL: case cDATA: case cNOP: case cUSER_FUNCTION: case cLINK_SUBR: case cEND_FUNCTION: case cDOCU: case cBREAK_HERE: case cCONTINUE_HERE: case cNEXT_CASE_HERE: case cBEGIN_LOOP_MARK: case cEND_LOOP_MARK: case cBEGIN_SWITCH_MARK: case cEND_SWITCH_MARK: DONE; case cERROR: do_error (current); DONE; case cCOMPILE: compile (); DONE; case cEXECUTE: case cEXECUTE2: execute (current); DONE; case cRETURN_FROM_GOSUB: case cRETURN_FROM_CALL: myreturn (current); DONE; case cCHECK_RETURN_VALUE: check_return_value (current); DONE; case cPUSHDBLSYM: pushdblsym (current); DONE; case cPUSHDBL: pushdbl (current); DONE; case cPOPDBLSYM: popdblsym (current); DONE; case cPOP: pop (stANY); DONE; case cPOP_MULTI: pop_multi (current); DONE; case cPOPSTRSYM: popstrsym (current); DONE; case cPUSHSTRSYM: pushstrsym (current); DONE; case cPUSHSTR: pushstr (current); DONE; case cCLEARREFS: clearrefs (current); DONE; case cPUSHSYMLIST: pushsymlist (); DONE; case cPOPSYMLIST: popsymlist (); DONE; case cREQUIRE: require (current); DONE; case cMAKELOCAL: makelocal (current); DONE; case cCOUNT_PARAMS: count_params (current); DONE; case cMAKESTATIC: makestatic (current); DONE; case cARRAYLINK: arraylink (current); DONE; case cPUSHARRAYREF: pusharrayref (current); DONE; case cTOKEN: case cTOKEN2: case cSPLIT: case cSPLIT2: token (current); DONE; case cTOKENALT: case cTOKENALT2: case cSPLITALT: case cSPLITALT2: tokenalt (current); DONE; case cARDIM: case cARSIZE: query_array (current); DONE; case cPUSHFREE: push ()->type = stFREE; DONE; case cCONCAT: concat (); DONE; case cPRINT: print (current); DONE; case cMOVE: mymove (); DONE; case cCOLOUR: colour (current); DONE; case cCLEARSCR: clearscreen (); DONE; case cONESTRING: onestring (current->pointer); DONE; case cTESTEOF: testeof (current); DONE; case cOPEN: myopen (current); DONE; case cCHECKOPEN: case cCHECKSEEK: checkopen (); DONE; case cCLOSE: myclose (); DONE; case cSEEK: case cSEEK2: myseek (current); DONE; case cPUSHSTREAM: push_stream (current); DONE; case cPOPSTREAM: pop_stream (); DONE; case cCHKPROMPT: chkprompt (); DONE; case cREAD: myread (current); DONE; case cRESTORE: case cQRESTORE: restore (current); DONE; case cREADDATA: readdata (current); DONE; case cDBLADD: case cDBLMIN: case cDBLMUL: case cDBLDIV: case cDBLPOW: dblbin (current); DONE; case cNEGATE: negate (); DONE; case cEQ: case cNE: case cGT: case cGE: case cLT: case cLE: dblrelop (current); DONE; case cSTREQ: case cSTRNE: case cSTRLT: case cSTRLE: case cSTRGT: case cSTRGE: strrelop (current); DONE; case cAND: case cOR: case cNOT: boole (current); DONE; case cFUNCTION: function (current); DONE; case cGLOB: glob (); DONE; case cDOARRAY: doarray (current); DONE; case cCHANGESTRING: changestring (current); DONE; case cPUSHSTRPTR: pushstrptr (current); DONE; case cDIM: dim (current); DONE; case cDECIDE: decide (); DONE; case cANDSHORT: case cORSHORT: logical_shortcut (current); DONE; case cOPENWIN: openwin (current); DONE; case cMOVEORIGIN: moveorigin (NULL); DONE; case cOPENPRN: openprinter (current); DONE; case cCLOSEPRN: closeprinter (); DONE; case cDOT: dot (current); DONE; case cPUTBIT: putbit (); DONE; case cPUTCHAR: putchars (); DONE; case cLINE: line (current); DONE; case cGCOLOUR: case cGCOLOUR2: case cGBACKCOLOUR: case cGBACKCOLOUR2: change_colour (current); DONE; case cCIRCLE: circle (current); DONE; case cTRIANGLE: triangle (current); DONE; case cTEXT1: case cTEXT2: case cTEXT3: text (current); DONE; case cCLOSEWIN: closewin (); DONE; case cCLEARWIN: clearwin (); DONE; case cRECT: rect (current); DONE; case cWAIT: mywait (); DONE; case cBELL: mybell (); DONE; case cPOKE: poke (current); DONE; case cPOKEFILE: pokefile (current); DONE; case cSWAP: swap (); DONE; case cDUPLICATE: duplicate (); DONE; case cFORCHECK: forcheck (); DONE; case cFORINCREMENT: forincrement (); DONE; case cSTARTFOR: startfor (); DONE; case cBIND: mybind (pop (stSTRING)->pointer); DONE; case cEND: endreason = erEOF; break; case cEXIT: exitcode = (int) pop (stNUMBER)->value; endreason = erREQUEST; break; default: sprintf (string, "Command %s (%d, right before '%s') not implemented", explanation[current->type], current->type, explanation[current->type + 1]); error (ERROR, string); } } } program_state = FINISHED; switch (errorlevel) { case NOTE: case DEBUG: error (NOTE, "Program ended normally."); break; case WARNING: error (WARNING, "Program ended with a warning"); break; case ERROR: error (ERROR, "Program stopped due to an error"); break; case FATAL: /* should not come here ... */ error (FATAL, "Program terminated due to FATAL error"); break; } } void error (int severity, char *messageline) /* reports an basic error to the user and possibly exits */ { if (program_state == COMPILING) { error_with_line (severity, messageline, mylineno ); } else if (program_state == RUNNING && current->line > 0) { error_with_line (severity, messageline, current->line); } else { error_with_line (severity, messageline, -1); } } void error_with_line (int severity, char *message, int line) /* reports an basic error to the user and possibly exits */ { char *stext; char *f = NULL; int l; static int lastline; static int first = TRUE; if (severity <= infolevel) { #ifdef UNIX if (curinized) { reset_shell_mode (); } #endif switch (severity) { case (INFO): stext = "---Info"; break; case (DUMP): stext = "---Dump"; break; case (DEBUG): stext = "---Debug"; debug_count++; break; case (NOTE): stext = "---Note"; note_count++; break; case (WARNING): stext = "---Warning"; warning_count++; break; case (ERROR): stext = "---Error"; error_count++; break; case (FATAL): stext = "---Fatal"; break; } fprintf (stderr, "%s", stext); if (line >= 0) { if (program_state == COMPILING) { f = currlib->l; l = line; } else if (program_state == RUNNING && current->line > 0) { f = current->lib->l; l = current->line; } if (f) { if (first || lastline != l) { fprintf (stderr, " in %s, line %d", f, l); } lastline = l; first = FALSE; } } fprintf (stderr, ": %s\n", message); if (program_state == RUNNING && severity <= ERROR && severity != DUMP) { dump_sub (1); } } if (severity < errorlevel) { errorlevel = severity; } if (severity <= ERROR) { program_state = FINISHED; endreason = erERROR; exitcode = 1; } if (severity <= FATAL) { program_state = FINISHED; fprintf (stderr, "---Immediate exit to system, due to a fatal error.\n"); end_it (); } #ifdef UNIX if (curinized && severity <= infolevel) { reset_prog_mode (); } #endif } char * my_strndup (char *arg, int len) /* own version of strndup */ { char *copy; copy = my_malloc (len + 1); strncpy (copy, arg, len); copy[len] = '\0'; return copy; } char * my_strdup (char *arg) /* my own version of strdup, checks for failure */ { int l; if (!arg) { return my_strndup ("", 0); } l = strlen (arg); return my_strndup (arg, l); } void * my_malloc (unsigned num) /* Alloc memory and issue warning on failure */ { void *room; room = malloc (num + sizeof (int)); if (room == NULL) { sprintf (string, "Can't malloc %d bytes of memory", num); error (FATAL, string); } return room; } void my_free (void *mem) /* free memory */ { free (mem); } struct libfile_name * new_file (char *l, char *s) /* create a new structure for library names */ { struct libfile_name *new; struct libfile_name *curr; static struct libfile_name *last = NULL; int start, end; /* check, if library has already been included */ for (curr = libfile_stack[0]; curr; curr = curr->next) { if (!strcmp (curr->l, l)) { if (is_bound) { return curr; } else { return NULL; } } } new = my_malloc (sizeof (struct libfile_name)); new->next = NULL; new->lineno = 1; if (last) { last->next = new; } last = new; new->l = my_strdup (l); new->llen = strlen (new->l); if (s) { new->s = my_strdup (s); } else { /* no short name supplied; get piece from l */ end = strlen (l); for (start = end; start > 0; start--) { if (l[start - 1] == '\\' || l[start - 1] == '/') { break; } if (l[start] == '.') { end = start; } } end--; new->s = my_malloc (end - start + 2); strncpy (new->s, new->l + start, end - start + 1); new->s[end - start + 1] = '\0'; } new->slen = strlen (new->s); new->datapointer = new->firstdata = NULL; return new; } char * dotify (char *name, int addfun) /* add library name, if not already present */ { static char buff[200]; if (!strchr (name, '.')) { strncpy (buff, currlib->s, 200); strncat (buff, ".", 200-1-strlen(buff)); strncat (buff, name, 200-1-strlen(buff)); } else { strncpy (buff, name, 200); } if (addfun && !strchr (name, '@')) { strncat (buff, "@", 200-1-strlen(buff)); strncat (buff, current_function, 200-1-strlen(buff)); } return buff; } char * strip (char *name) /* strip down to minimal name */ { static char buff[300]; char *at, *dot; if (infolevel >= DEBUG) { return name; } dot = strchr (name, '.'); if (dot) { strncpy (buff, dot + 1, 300); } else { strncpy (buff, name, 300); } at = strchr (buff, '@'); if (at) { *at = '\0'; } return buff; } void do_error (struct command *cmd) /* issue user defined error */ { struct stackentry *s; struct command *r; s = stackhead; while (s != stackroot) { if (s->type == stRET_ADDR_CALL) { r = s->pointer; cmd->line = r->line; cmd->lib = r->lib; break; } s = s->prev; } error (ERROR, pop (stSTRING)->pointer); } void compile () /* create s subroutine at runtime */ { open_string (pop (stSTRING)->pointer); yyparse (); add_command (cEND, NULL, NULL); } void create_execute (int string) /* create command 'cEXECUTESUB' */ { struct command *cmd; cmd = add_command (string ? cEXECUTE2 : cEXECUTE, NULL, NULL); cmd->pointer = my_strdup (dotify ("", FALSE)); } void execute (struct command *cmd) /* execute a subroutine */ { struct stackentry *st, *ret; char *fullname, *shortname; struct command *newcurr; st = stackhead; do { st = st->prev; } while (st->type != stFREE); st = st->next; if (st->type != stSTRING) { error (ERROR, "need a string as a function name"); return; } shortname = st->pointer; if ((shortname[strlen (shortname) - 1] == '$') != (cmd->type == cEXECUTE2)) { if (cmd->type == cEXECUTE2) sprintf (string, "expecting the name of a string function (not '%s')", shortname); else sprintf (string, "expecting the name of a numeric function (not '%s')", shortname); error (ERROR, string); return; } fullname = my_malloc (strlen (cmd->pointer) + strlen (shortname) + 2); strcpy (fullname, cmd->pointer); strcat (fullname, shortname); free (st->pointer); st->type = stFREE; newcurr = search_label (fullname, srmSUBR); if (!newcurr) { sprintf (string, "subroutine '%s' not defined", fullname); error (ERROR, string); return; } ret = push (); ret->pointer = current; ret->type = stRET_ADDR_CALL; reorder_stack_before_call (ret); current = newcurr; free (fullname); } void create_docu (char *doc) /* create command 'docu' */ { struct command *cmd; static struct command *previous = NULL; if (inlib) { return; } cmd = add_command (cDOCU, NULL, NULL); cmd->pointer = doc; if (previous) { previous->nextassoc = cmd; } else { docuhead = cmd; } previous = cmd; docucount++; } void create_docu_array (void) /* create array with documentation */ { struct array *ar; struct command *doc; int i; /* create and prepare docu-array */ ar = create_array ('s', 1); ar->bounds[0] = docucount + 1; ar->pointer = my_malloc ((docucount + 1) * sizeof (char *)); ((char **) ar->pointer)[0] = my_strdup (""); doc = docuhead; i = 1; while (doc) { ((char **) ar->pointer)[i] = doc->pointer; doc = doc->nextassoc; i++; } get_sym ("main.docu$", syARRAY, amADD_GLOBAL)->pointer = ar; } int isbound (void) /* check if this interpreter is bound to a program */ { FILE *inter; int i; int c; int proglen = 0; int namelen = 0; int bound = 1; char *infolevel_text; int remlen = strlen("\nrem "); /* different under windows and unix */ int offset = 0; if (!inter_path || !inter_path[0]) { error (FATAL, "inter_path is not set !"); return 0; } if (!(inter = fopen (inter_path, "r"))) { sprintf (string, "Couldn't open '%s' to check, if it is bound: %s", inter_path, my_strerror (errno)); error (WARNING, string); return 0; } /* Read fields from end of program as written in mybind() */ /* check magic cookie */ offset -= 1 + strlen (YABMAGIC); if (!seekback (inter, offset)) return 0; for (i = 0; i < (int) strlen (YABMAGIC); i++) { c = fgetc (inter); if (c == EOF || c != (YABMAGIC)[i]) { bound = 0; } } if (!bound) { fclose (inter); return bound; } /* infolevel */ offset -= remlen + 2; if (!seekback (inter, offset)) return 0; if (!fscanf (inter, "%d", &infolevel)) { error (WARNING, "Could not read infolevel"); return 0; } /* repeat just for its output side-effect */ if (!seekback (inter, offset)) return 0; switch(infolevel) { case FATAL: infolevel_text="FATAL";break; case ERROR: infolevel_text="ERROR";break; case INFO: infolevel_text="INFO";break; case DUMP: infolevel_text="DUMP";break; case WARNING: infolevel_text="WARNING";break; case NOTE: infolevel_text="NOTE";break; case DEBUG: infolevel_text="DEBUG";break; case DEBUG+1: infolevel_text="DEBUG+BISON";yydebug=1;infolevel=DEBUG;break;}; sprintf (errorstring, "Set infolevel to %s", infolevel_text); error (DEBUG, errorstring); /* length of name of embedded program */ offset -= remlen + 8; if (!seekback (inter, offset)) return 0; if (!fscanf (inter, "%d", &namelen)) { error (WARNING, "Could not read length of name of embedded program"); return 0; } sprintf (errorstring, "Length of name of embedded program is %d", namelen); error (DEBUG, errorstring); /* name of embedded program */ offset -= remlen + namelen; if (!seekback (inter, offset)) return 0; progname = (char *) my_malloc (sizeof (char) * (namelen + 1)); if (!fgets (progname, namelen + 1, inter)) { error (WARNING, "Could not read name of embedded program"); return 0; } sprintf (errorstring, "Name of embedded program is '%s'", progname); error (DEBUG, errorstring); /* length of program */ offset -= remlen + 8; if (!seekback (inter, offset)) return 0; if (!fscanf (inter, "%d", &proglen)) { error (WARNING, "Could not read length of embedded program"); return 0; } sprintf (errorstring, "Length of embedded program is %d", proglen); error (DEBUG, errorstring); /* seek back to start of embedded program */ offset -= 4 + proglen; /* only the text 'rem ' without preceding linefeed */ if (!seekback (inter, offset)) return 0; if (infolevel >= NOTE) { error (NOTE, "Dumping the embedded program, that will be executed:"); fprintf (stderr, " "); for (i = 0; i < proglen; i++) { c = fgetc (inter); if (isprint(c) || c == '\r' || c== '\n') fprintf (stderr, "%c", c); if (c == '\n' && i < proglen - 1) { fprintf (stderr, " "); } } fprintf (stderr, "\n"); error (NOTE, "End of program, that will be executed"); printf ("---Press RETURN to continue with its parsing: "); fgets (string, 2, stdin); if (!seekback (inter, offset)) return 0; } bound_program = inter; return 1; } static int seekback (FILE *file, int offset) /* seek back bytes */ { if (fseek (file, offset, SEEK_END)) { sprintf (errorstring, "Couldn't seek within '%s': %s", inter_path, my_strerror (errno)); error (WARNING, errorstring); return FALSE; } if (!fgets (string, INBUFFLEN, file)) { error (WARNING, "Could not read from end of embedded program"); return FALSE; } string[strlen(string) - strlen("\n")] = '\0'; sprintf(errorstring, "Next line from end of embbeded program to be processed is: '%s'", string); error (DEBUG, errorstring); if (fseek (file, offset, SEEK_END)) { sprintf (errorstring, "Couldn't seek within '%s': %s", inter_path, my_strerror (errno)); error (WARNING, errorstring); return FALSE; } return TRUE; } static int mybind (char *bound) /* bind a program to the interpreter and save it */ { FILE *fyab; FILE *fprog; FILE *fbound; FILE *flib; int c; int i; int proglen = 0; if (interactive) { error (ERROR, "cannot bind a program when called interactively"); return 0; } if (!strcmp (inter_path, bound)) { sprintf (string, "will not overwrite '%s' with '%s'", bound, inter_path); error (ERROR, string); return 0; } if (!strcmp (main_file_name, bound)) { sprintf (string, "will not overwrite '%s' with '%s'", bound, main_file_name); error (ERROR, string); return 0; } if (!(fyab = fopen (inter_path, "rb"))) { sprintf (string, "could not open '%s' for reading: %s", inter_path, my_strerror (errno)); error (ERROR, string); return 0; } if (!(fprog = fopen (main_file_name, "rb"))) { sprintf (string, "could not open '%s' for reading: %s", main_file_name, my_strerror (errno)); error (ERROR, string); fclose (fyab); return 0; } if (!(fbound = fopen (bound, "wb"))) { sprintf (string, "could not open '%s' for writing: %s", bound, my_strerror (errno)); error (ERROR, string); fclose (fyab); fclose (fprog); return 0; } if (infolevel >= DEBUG) { sprintf (string, "binding %s and %s into %s", inter_path, main_file_name, bound); error (NOTE, string); } while ((c = fgetc (fyab)) != EOF) { fputc (c, fbound); } for (i = 1; i < libfile_chain_length; i++) { if (!(flib = fopen (libfile_chain[i]->l, "rb"))) { sprintf (string, "could not open '%s' for reading: %s", libfile_chain[i]->l, my_strerror (errno)); error (ERROR, string); fclose (flib); return 0; } sprintf (string, "\nimport %s\n", libfile_chain[i]->s); put_and_count(string, fbound, &proglen); put_and_count("\nimport __IGNORE_NESTED_IMPORTS\n", fbound, &proglen); while ((c = fgetc (flib)) != EOF) { fputc (c, fbound); proglen++; } put_and_count("\nimport __END_OF_CURRENT_IMPORT\n", fbound, &proglen); } put_and_count("\nimport __END_OF_ALL_IMPORTS\n", fbound, &proglen); put_and_count("\nimport main\n", fbound, &proglen); while ((c = fgetc (fprog)) != EOF) { fputc (c, fbound); proglen++; } fprintf (fbound, "\nend\n"); proglen += 5; fprintf (fbound, "rem %08d\n", proglen); fprintf (fbound, "rem %s\n", progname); fprintf (fbound, "rem %08d\n", strlen(progname)); fprintf (fbound, "rem %02d\n", infolevel + yydebug); fprintf (fbound, "rem %s\n", YABMAGIC); fclose (fyab); fclose (fprog); fclose (fbound); return 1; } void put_and_count (char *text, FILE *file, int *len) /* write text to file and increment len */ { for (; *text; text++) { fputc (*text, file); (*len)++; } } char * find_interpreter (char *name) /* find interpreter with full path */ { FILE *f; char *path = NULL; #ifdef WINDOWS path = my_malloc (1000); GetModuleFileName (NULL, path, 1000); if (f = fopen (path, "r")) { fclose (f); return path; } else { my_free (path); return my_strdup (name); } #else if ((f = fopen (name, "r"))) { fclose (f); path = my_strdup (name); return path; } else { char *from, *to, *try; from = to = path = getenv ("PATH"); try = my_malloc (strlen (path) + strlen (name) + 2); to = strchr (to + 1, ':'); while (to) { strncpy (try, from, to - from); try[to - from] = 0; if (try[to - from - 1] != '/') strcat (try, "/"); strcat (try, name); if ((f = fopen (try, "r"))) { fclose (f); return try; } from = to + 1; to = strchr (to + 1, ':'); } return name; } #endif } char * my_strerror (int err) { /* return description of error */ #ifdef WINDOWS return strerror (err); #else #ifdef HAVE_STRERROR return strerror (err); #else char buff[100]; sprintf (buff, "errno=%d", err); return buff; #endif #endif } yabasic-2.78.5/yabasic.htm0000664000175100017510000170750413257074220012322 00000000000000 Yabasic

Yabasic


Chapter 1. Introduction

About this document

This document describes yabasic. You will find information about the yabasic interpreter (the program yabasic under Unix or yabasic.exe under Windows) as well as the language (which is, of course, a sort of basic) itself.

This document applies to version 2.78 of yabasic

However, this document does not contain the latest news about yabasic or a FAQ. As such information tends to change rapidly, it is presented online only at www.yabasic.de.

Although basic has its reputation as a language for beginning programmers, this is not an introduction to programming at large. Rather this text assumes, that the reader has some (moderate) experience with writing and starting computer programs.

About yabasic

yabasic is a traditional basic interpreter. It understands most of the typical basic-constructs, like goto, gosub, line numbers, read, data or string-variables with a trailing '$'. But on the other hand, yabasic implements some more advanced programming-constructs like subroutines or libraries (but not objects). yabasic works much the same under Unix and Windows.

yabasic puts emphasis on giving results quickly and easily; therefore simple commands are provided to open a graphic window, print the graphics or control the console screen and get keyboard or mouse information. The example below opens a window, draws a circle and prints the graphic:

open window 100,100
open printer
circle 50,50,40
text 10,50,"Press any key to get a printout"
clear screen
inkey$
close printer
close window

This example has fewer lines, than it would have in many other programming languages. In the end however yabasic lacks behind more advanced and modern programming languages like C++ or Java. But as far as it goes it tends to give you results more quickly and easily.

Chapter 2. The yabasic-program under Windows

Starting yabasic

Once, yabasic has been set up correctly, there are three ways to start it:

  1. Right click on your desktop: The desktop menu appears with a submenu named new. From this submenu choose yabasic. This will create a new icon on your desktop. If you right click on this icon, its context menu will appear; choose Execute to execute the program.

  2. As a variant of the way described above, you may simply create a file with the ending .yab (e.g. with your favorite editor). Everything else then works as described above.

  3. From the start-menu: Choose yabasic from your start-menu. A console-window will open and you will be asked to type in your program. Once you are finished, you need to type return twice, and yabasic will parse and execute your program.

    Note

    This is not the preferred way of starting yabasic ! Simply because the program, that you have typed, can not be saved and will be lost inevitably ! There is no such thing as a save-command and therefore no way to conserve the program, that you have typed. This mode is only intended for quick hacks, and short programs.

Options

Under Windows yabasic will mostly be invoked by double-clicking on an appropriate icon; this way you do not have a chance to specify any of the command line options below. However, advanced users may add some of those options to the appropriate entries in the registry.

All the options below may be abbreviated, as long as the abbreviation does not become ambiguous. For example, you may write -e instead of -execute.

-help or -?

Prints a short help message, which itself describes two further help-options.

-version

Prints the version of yabasic.

-geometry +X-POSITION+Y-POSITION

Sets the position of the graphic window, that is opened by open window (the size of this window, of course, is specified within the open window-command). An example would be -geometry +20+10, which would place the graphic window 10 pixels below the upper border and 20 pixels right of the left border of the screen. This value cannot be changed, once yabasic has been started.

-font NAME-OF-FONT

Name of the font, which will be used for graphic-text; can be any of decorative, dontcare, modern, roman, script, swiss. You may append a fontsize (measured in pixels) to any of those fontnames; for example -font swiss30 chooses a swiss-type font with a size of 30 pixels.

-bind NAME-OF-STANDALONE-PROGRAM

Create a standalone program (whose name is specified by NAME-OF-STANDALONE-PROGRAM) from the yabasic-program, that is specified on the command line. See the section about creating a standalone-program for details.

-execute A-PROGRAM-AS-A-SINGLE-STRING

With this option you may specify some yabasic-code to be executed right away.This is useful for very short programs, which you do not want to save within a file. If this option is given, yabasic will not read any code from a file. Let's say, you have forgotten some of the square numbers between 1 and 10; in this case the command yabasic -e 'for a=1 to 10:print a*a:next a' will give you the answer immediately.

-infolevel INFOLEVEL

Change the infolevel of yabasic, where INFOLEVEL can be one of debug, note, warning, error and fatal (the default is warning). This option changes the amount of debugging-information yabasic produces. However, normally only the author of yabasic (me !) would want to change this.

-doc NAME-OF-A-PROGRAM

Print the embedded documentation of the named program. The embedded documentation of a program consists of all the comments within the program, which start with the special keyword doc. This documentation can also be seen by choosing the corresponding entry from the context-menu of any yabasic-program.

-librarypath DIRECTORY-WITH-LIBRARIES

Change the directory, wherein libraries will be searched and imported (with the import-command). See also this entry for more information about the way, libraries are searched.

The context Menu

Like every other icon under Windows, the icon of every yabasic-program has a context menu offering the most frequent operations, that may be applied to a yabasic-program.

Execute

This will invoke yabasic to execute your program. The same happens, if you double click on the icon.

Edit

notepad will be invoked, allowing you to edit your program.

View docu

This will present the embedded documentation of your program. Embedded documentation is created with the special comment doc.

Chapter 3. The yabasic-program under Unix

Starting yabasic

If your system administrator (vulgo root) has installed yabasic correctly, there are three ways to start it:

  1. You may use your favorite editor (emacs, vi ?) to put your program into a file (e.g. foo). Make sure that the very first line starts with the characters '#!' followed by the full pathname of yabasic (e.g. '#!/usr/local/bin/yabasic'). This she-bang-line ensures, that your Unix will invoke yabasic to execute your program (see also the entry for the hash-character). Moreover, you will need to change the permissions of your yabasic-program foo, e.g. chmod u+x foo. After that you may invoke yabasic to invoke your program by simply typing foo (without even mentioning yabasic). However, if your PATH-variable does not contain a single dot ('.') you will have to type the full pathname of your program: e.g. /home/ihm/foo (or at least ./foo).

  2. Save your program into a file (e.g. foo) and type yabasic foo. This assumes, that the directory, where yabasic resides, is contained within your PATH-variable.

  3. Finally your may simply type yabasic (maybe it will be necessary to include its full pathname). This will make yabasic come up and you will be asked to type in your program. Once you are finished, you need to type return twice, and yabasic will parse and execute your program.

    Note

    This is not the preferred way of starting yabasic ! Simply because the program, that you have typed, can not be saved and will be lost inevitably ! There is no such thing as a save-command and therefore no way to conserve the program, that you have typed. This mode is only intended for quick hacks, and short programs, i.e. for using yabasic as some sort of fancy desktop calculator.

Options

yabasic accepts a number of options on the command line. All these options below may be abbreviated, as long as the abbreviation does not become ambiguous. For example you may write -e instead of -execute.

-help or -?

Prints a short help message, which itself describes two further help-options.

-version

Prints the version of yabasic.

-fg FOREGROUND-COLOR or -foreground FOREGROUND-COLOR

Define the foreground color for the graphics-window (that will be opened with open window). The usual X11 color names, like red, green, … are accepted. This value cannot be changed, once yabasic has been started.

-bg BACKGROUND-COLOR or -background BACKGROUND-COLOR

Define the background color for the graphics-window. The usual X11 color names are accepted. This value cannot be changed, once yabasic has been started.

-geometry +X-POSITION+Y-POSITION

Sets the position of the graphic window, that is opened by open window (the size of this window, of course, is specified with the open window-command). An example would be +20+10, which would place the graphic window 10 pixels below the upper border and 20 pixels right of the left border of the screen. Note, that the size of the window may not be specified here (well it may, but it will be ignored anyway). This value cannot be changed, once yabasic has been started.

-display BACKGROUND-COLOR

Specify the display, where the graphics window of yabasic should appear. Normally, however this value will be already present within the environment variable DISPLAY.

-font NAME-OF-FONT

Name of the font, which will be used for text within the graphics window.

-execute A-PROGRAM-AS-A-SINGLE-STRING

With this option you may specify some yabasic-code to be executed right away. This is useful for very short programs, which you do not want to save to a file. If this option is given, yabasic will not read any code from a file. E.g.

yabasic -e 'for a=1 to 10:print a*a:next a'

prints the square numbers from 1 to 10.

-bind NAME-OF-STANDALONE-PROGRAM

Create a standalone program (whose name is specified by NAME-OF-STANDALONE-PROGRAM) from the yabasic-program, that is specified on the command line. See the section about creating a standalone-program for details.

-infolevel INFOLEVEL

Change the infolevel of yabasic where INFOLEVEL can be one of debug, note, warning, error and fatal (the default is warning). This option changes the amount of debugging-information yabasic produces. However, normally only the author of yabasic (me !) would want to change this.

-doc NAME-OF-A-PROGRAM

Print the embedded documentation of the named program. The embedded documentation of a program consists of all the comments within the program, which start with the special keyword doc.

-librarypath DIRECTORY-WITH-LIBRARIES

Change the directory from which libraries will be imported (with the import-command). See also this entry for more information about the way, libraries will be searched.

Setting defaults

If you want to set some options once for all, you may put them into your X-Windows resource file. This is usually the file .Xresources or some such within your home directory (type man X for details).

Here is a sample section, which may appear within this file:

yabasic*foreground: blue
yabasic*background: gold
yabasic*geometry: +10+10
yabasic*font: 9x15

This will set the foreground color of the graphic-window to blue and the background color to gold. The window will appear at position 10,10 and the text font will be 9x15.

Chapter 4. Some features of yabasic, explained by topic

This chapter has sections for some of the major features of yabasic and names a few commands related with each area. So, depending on your interest, you find the most important commands of this area named; the other commands from this area may then be discovered through the links in the see also-section.

print, input and others

The print-command is used to put text on the text screen. Here, the term text screen stands for your terminal (under Unix) or the console window (under Windows).

At the bottom line, print simply outputs its argument to the text window. However, once you have called clear screen you may use advanced features like printing colors or copying areas of text with getscreen$ or putscreen.

You may ask the user for input with the input-command; use inkey$ to get each key as soon as it is pressed.

Control statements: loops, if and switch

Of course, yabasic has the goto- and gosub-statements; you may go to a label or a line number (which is just a special kind of label). goto, despite its bad reputation ([goto considered harmful]), has still its good uses; however in many cases you are probably better off with loops like repeat-until, while-wend or do-loop; you may leave any of these loops with the break-statement or start the next iteration immediately with continue.

Decisions can be made with the if-statement, which comes either in a short and a long form. The short form has no then-keyword and extends up to the end of the line. The long form extends up to the final endif and may use some of the keywords then (which introduces the long form), else or elsif.

If you want to test the result of an expression against many different values, you should probably use the switch-statement.

Drawing and painting

You need to call open window before you may draw anything with either line, circle, rectangle or triangle; all of these statements may be decorated with clear or fill. If you want to change the colour for drawing, use colour. Note however, that there can only be a single window open at any given moment in time.

Everything you have drawn can be send to your printer too, if you use the open printer command.

To allow for some (very) limited version of animated graphics, yabasic offers the commands getbit$ and putbit, which retrieve rectangular regions from the graphics-window into a string or vice versa.

If you want to sense mouse-clicks, you may use the inkey$-function.

Reading from and writing to files

Before you may read or write a file, you need to open it; once you are done, you should close it. Each open file is designated by a simple number, which might be stored within a variable and must be supplied if you want to access the file. This is simply done by putting a hash ('#') followed by the number of the file after the keyword input (for reading from) or print (for writing to a file) respectively.

If you need more control, you may consider reading and writing one byte at a time, using the multi-purpose commands peek and poke.

Subroutines and Libraries

The best way to break any yabasic-program into smaller, more manageable chunks are subroutines and libraries. They are yabasic's most advanced means of structuring a program.

Subroutines are created with the command sub. they accept parameters and may return a value. Subroutines can be called much like any builtin function of yabasic; therefore they allow one to extend the language itself.

Once you have created a set of related subroutines and you feel that they could be useful in other programs too, you may collect them into a library. Such a library is contained within a separate file and may be included in any of your programs, using the keyword import.

String processing

yabasic has the usual functions to extract parts from a string: left$, mid$ and right$. Note, that all of them can be assigned to, i.e. they may change part of a string.

If you want to split a string into tokens you should use the functions token or split.

There is quite a bunch of other string-processing functions like upper$ (converting to upper case), instr (finding one string within the other), chr$ (converting an ascii-code into a character), glob (testing a string against a pattern) and more. Just follow the links.

Arithmetic

Yabasic handles numbers and arithmetic: You may calculate trigonometric functions like sin or atan, or logarithms (with log). Bitwise operations, like and or or are available as well min or max (calculate the minimum or maximum of its argument) or mod or int (reminder of a division or integer part or a number).

Data and such

You may store data within your program within data-statements; during execution you will probably want to read it into arrays, which must have been dimed before.

Other interesting commands.

  • Yabasic programs may start other programs with the commands system and system$.

  • peek and poke allow one to get and set internal information; either for the operating system (i.e. Unix or Windows) or yabasic itself.

  • The current time or date can be retrieved with (guess what !) time$ and date$.

Chapter 5. All commands and functions of yabasic listed by topic

Number processing and conversion

abs()
returns the absolute value of its numeric argument
acos()
returns the arcus cosine of its numeric argument
and()
the bitwise arithmetic and
asin()
returns the arcus sine of its numeric argument
atan()
returns the arctangent of its numeric argument
bin$()
converts a number into a sequence of binary digits
cos()
return the cosine of its single argument
dec()
convert a base 2 or base 16 number into decimal form
eor()
compute the bitwise exclusive or of its two arguments
euler
another name for the constant 2.71828182864
exp()
compute the exponential function of its single argument
frac()
return the fractional part of its numeric argument
int()
return the integer part of its single numeric argument
log()
compute the natural logarithm
max()
return the larger of its two arguments
min()
return the smaller of its two arguments
mod()
compute the remainder of a division
or()
arithmetic or, used for bit-operations
pi
a constant with the value 3.14159
ran()
return a random number
sig()
return the sign of its argument
sin()
return the sine of its single argument
sqr()
compute the square of its argument
sqrt()
compute the square root of its argument
tan()
return the tangent of its argument
xor()
compute the exclusive or
** or ^
raise its first argument to the power of its second

Conditions and control structures

and
logical and, used in conditions
break
breaks out of a switch statement or a loop
case
mark the different cases within a switch-statement
continue
start the next iteration of a for-, do-, repeat- or while-loop
default
mark the default-branch within a switch-statement
do
start a (conditionless) do-loop
else
mark an alternative within an if-statement
elsif
starts an alternate condition within an if-statement
end
terminate your program
endif
ends an if-statement
false
a constant with the value of 0
fi
another name for endif
for
starts a for-loop
gosub
continue execution at another point within your program (and return later)
goto
continue execution at another point within your program (and never come back)
if
evaluate a condition and execute statements or not, depending on the result
label
mark a specific location within your program for goto, gosub or restore
loop
marks the end of an infinite loop
next
mark the end of a for loop
not
negate an expression; can be written as !
on gosub
jump to one of multiple gosub-targets
on goto
jump to one of many goto-targets
on interrupt
change reaction on keyboard interrupts
logical or
logical or, used in conditions
pause
pause, sleep, wait for the specified number of seconds
repeat
start a repeat-loop
return
return from a subroutine or a gosub
sleep
pause, sleep, wait for the specified number of seconds
switch
select one of many alternatives depending on a value
then
tell the long from the short form of the if-statement
true
a constant with the value of 1
until
end a repeat-loop
wait
pause, sleep, wait for the specified number of seconds
wend
end a while-loop
while
start a while-loop
:
separate commands from each other

Data keeping and processing

arraydim()
returns the dimension of the array, which is passed as an array reference
arraysize()
returns the size of a dimension of an array
data
introduces a list of data-items
dim
create an array prior to its first use
read
read data from data-statements
redim
create an array prior to its first use. A synonym for dim
restore
reposition the data-pointer

String processing

asc()
accepts a string and returns the position of its first character within the ascii charset
chr$()
accepts a number and returns the character at this position within the ascii charset
glob()
check if a string matches a simple pattern
hex$()
convert a number into hexadecimal
instr()
searches its second argument within the first; returns its position if found
left$()
return (or change) left end of a string
len()
return the length of a string
lower$()
convert a string to lower case
ltrim$()
trim spaces at the left end of a string
mid$()
return (or change) characters from within a string
right$()
return (or change) the right end of a string
split()
split a string into many strings
str$()
convert a number into a string
token()
split a string into multiple strings
trim$()
remove leading and trailing spaces from its argument
upper$()
convert a string to upper case
val()
converts a string to a number

File operations and printing

at()
can be used in the print-command to place the output at a specified position
beep
ring the bell within your computer; a synonym for bell
bell
ring the bell within your computer (just as beep)
clear screen
erases the text window
close
close a file, which has been opened before
close printer
stops printing of graphics
print color
print with color
print colour
see print color
eof
check, if an open file contains data
getscreen$()
returns a string representing a rectangular section of the text terminal
inkey$
wait, until a key is pressed
input
read input from the user (or from a file) and assign it to a variable
line input
read in a whole line of text and assign it to a variable
open
open a file
open printer
open printer for printing graphics
print
Write to terminal or file
putscreen
draw a rectangle of characters into the text terminal
reverse
print reverse (background and foreground colors exchanged)
screen
as clear screen clears the text window
seek()
change the position within an open file
tell
get the current position within an open file
using
Specify the format for printing a number
#
either a comment or a marker for a file-number
@
synonymous to at
;
suppress the implicit newline after a print-statement

Subroutines and libraries

end sub
ends a subroutine definition
export
mark a function as globally visible
import
import a library
local
mark a variable as local to a subroutine
numparams
return the number of parameters, that have been passed to a subroutine
return
return from a subroutine or a gosub
static
preserves the value of a variable between calls to a subroutine
step
specifies the increment step in a for-loop
sub
declare a user defined subroutine

Other commands

bind()
Binds a yabasic-program and the yabasic-interpreter together into a standalone program.
compile
compile a string with yabasic-code on the fly
date$
returns a string with various components of the current date
doc
special comment, which might be retrieved by the program itself
docu$
special array, containing the contents of all docu-statement within the program
error
raise an error and terminate your program
execute$()
execute a user defined subroutine, which must return a string
execute()
execute a user defined subroutine, which must return a number
exit
terminate your program
pause
pause, sleep, wait for the specified number of seconds
peek
retrieve various internal information
peek$
retrieve various internal string-information
poke
change selected internals of yabasic
rem
start a comment
sleep
pause, sleep, wait for the specified number of seconds
system$()
hand a statement over to your operating system and return its output
system()
hand a statement over to your operating system and return its exitcode
time$
return a string containing the current time
to
this keyword appears as part of other statements
wait
pause, sleep, wait for the specified number of seconds
//
starts a comment
:
separate commands from each other

Graphics and printing

backcolor
specify the colour for subsequent drawing of the background
box
draw a rectangle. A synonym for rectangle
circle
draws a circle in the graphic-window
clear
Erase circles, rectangles or triangless
clear window
clear the graphic window and begin a new page, if printing is under way
close curve
close a curve, that has been drawn by the line-command
close window
close the graphics-window
colour
specify the colour for subsequent drawing
dot
draw a dot in the graphic-window
fill
draw a filled circles, rectangles or triangles
getbit$()
return a string representing the bit pattern of a rectangle within the graphic window
line
draw a line
mouseb
extract the state of the mousebuttons from a string returned by inkey$
mousemod
return the state of the modifier keys during a mouseclick
mousex
return the x-position of a mouseclick
mousey
return the y-position of a mouseclick
new curve
start a new curve, that will be drawn with the line-command
open window
open a graphic window
putbit
draw a rectangle of pixels into the graphic window
rectangle
draw a rectangle
triangle
draw a triangle
text
write text into your graphic-window
window origin
move the origin of a window

Chapter 6. All commands and functions of yabasic grouped alphabetically

A

abs() — returns the absolute value of its numeric argument
acos() — returns the arcus cosine of its numeric argument
and — logical and, used in conditions
and() — the bitwise arithmetic and
arraydim()returns the dimension of the array, which is passed as an array reference
arraysize() — returns the size of a dimension of an array
asc() — accepts a string and returns the position of its first character within the ascii charset
asin() — returns the arcus sine of its numeric argument
at() — can be used in the print-command to place the output at a specified position
atan() — returns the arctangent of its numeric argument

Name

abs() — returns the absolute value of its numeric argument

Synopsis

y=abs(x)

Description

If the argument of the abs-function is positive (e.g. 2) it is returned unchanged, if the argument is negative (e.g. -1) it is returned as a positive value (e.g. 1).

Example

print abs(-2),abs(2)
          

This example will print 2 2

See also

sig


Name

acos() — returns the arcus cosine of its numeric argument

Synopsis

x=acos(angle)

Description

acos is the arcus cosine-function, i.e. the inverse of the cos-function. Or, more elaborate: It Returns the angle (in radians, not degrees !), which, fed to the cosine-function will produce the argument passed to the acos-function.

Example

print acos(0.5),acos(cos(pi))
          

This example will print 1.0472 3.14159 which are π/3 and π respectively.

See also

cos, asin


Name

and — logical and, used in conditions

Synopsis

if (a and b) …
while (a and b) …

Description

Used in conditions (e.g within if, while or until) to join two expressions. Returns true, if and only if its left and right argument are both true and false otherwise.

Note, that logical shortcuts may take place.

Example

input "Please enter a number" a
if (a>=1 and a<=9) print "your input is between 1 and 9"
          

See also

or,not


Name

and() — the bitwise arithmetic and

Synopsis

x=and(a,b)

Description

Used to compute the bitwise and of both its argument. Both arguments are treated as binary numbers (i.e. a series of 0 and 1); a bit of the resulting value will then be 1, if both arguments have a 1 at this position in their binary representation.

Note, that both arguments are silently converted to integer values and that negative numbers have their own binary representation and may lead to unexpected results when passed to and.

Example

print and(6,3)
          

This will print 2. This result is clear, if you note, that the binary representation of 6 and 3 are 110 and 011 respectively; this will yield 010 in binary representation or 2 as decimal.

See also

or, eor and not


Name

arraydim() — returns the dimension of the array, which is passed as an array reference

Synopsis

a=arraydim(b())

Description

If you apply the arraydim()-function on a one-dimensional array (i.e. a vector) it will return 1, on a two-dimensional array (i.e. a matrix) it will return 2, and so on.

This is mostly used within subroutines, which expect an array among their parameters. Such subroutines tend to use the arraydim-function to check, if the array which has been passed, has the right dimension. E.g. a subroutine to multiply two matrices may want to check, if it really is invoked with two 2-dimensional arrays.

Example

dim a(10,10),b(10)
print arraydim(a()),arraydim(b())
          

This will print 2 1, which are the dimension of the arrays a() and b(). You may check out the function arraysize for a full-fledged example.

See also

arraysize and dim.


Name

arraysize() — returns the size of a dimension of an array

Synopsis

x=arraysize(a(),b)

Description

The arraysize-function computes the size of a specified dimension of a specified array. Here, size stands for the maximum number, that may be used as an index for this array. The first argument to this function must be an reference to an array, the second one specifies, which of the multiple dimensions of the array should be taken to calculate the size.

An Example involving subroutines: Let's say, an array has been declared as dim a(10,20) (that is a two-dimensional array or a matrix). If this array is passed as an array reference to a subroutine, this sub will not know, what sort of array has been passed. With the arraydim-function the sub will be able to find the dimension of the array, with the arraysize-function it will be able to find out the size of this array in its two dimensions, which will be 10 and 20 respectively.

Our sample array is two dimensional; if you envision it as a matrix this matrix has 10 lines and 20 columns (see the dim-statement above. To state it more formally: The first dimension (lines) has a size of 10, the second dimension (columns) has a size of 20; these numbers are those returned by arraysize(a(),1) and arraysize(a(),2) respectively. Refer to the example below for a typical usage.

Example


rem
rem  This program adds two matrices elementwise.
rem

dim a(10,20),b(10,20),c(10,20)

rem  initialization of the arrays a() and b() 
for y=1 to 10:for x=1 to 20
   a(y,x)=int(ran(4)):b(y,x)=int(ran(4))
next x:next y

matadd(a(),b(),c())

print "Result:"
for x=1 to 20
   for y=10 to 1 step -1
      print c(y,x)," ";
   next y
   print
next x

sub matadd(m1(),m2(),r())

   rem  This sub will add the matrices m1() and m2()
   rem  elementwise and store the result within r()
   rem  This is not very useful but easy to implement.
   rem  However, this sub excels in checking its arguments
   rem  with arraydim() and arraysize()

   local x:local y
   
   if (arraydim(m1())<>2 or arraydim(m2())<>2 or arraydim(r())<>2) then
      error "Need two dimensional arrays as input"
   endif

   y=arraysize(m1(),1):x=arraysize(m1(),2)
   if (arraysize(m2(),1)<>y or arraysize(m2(),2)<>x) then
      error "The two matrices cannot be added elementwise"
   endif

   if (arraysize(r(),1)<>y or arraysize(r(),2)<>x) then
      error "The result cannot be stored in the third argument"
   endif

   local xx:local yy
   for xx=1 to x
      for yy=1 to y
         r(yy,xx)=m1(yy,xx)+m2(yy,xx)
      next yy
   next xx

 end sub

          

See also

arraydim and dim.


Name

asc() — accepts a string and returns the position of its first character within the ascii charset

Synopsis

a=asc(char$)

Description

The asc-function accepts a string, takes its first character and looks it up within the ascii-charset; this position will be returned. The asc-function is the opposite of the chr$-function. There are valid uses for asc, however, comparing strings (i.e. to bring them into alphabetical sequence) is not among them; in such many cases you might consider to compare strings directly with <, = and > (rather than converting a string to a number and comparing this number).

Example

input "Please enter a letter between 'a' and 'y': " a$
if (a$<"a" or a$>"y") print a$," is not in the proper range":end
print "The letter after ",a$," is ",chr$(asc(a$)+1)
          

See also

chr$


Name

asin() — returns the arcus sine of its numeric argument

Synopsis

angle=asin(x)

Description

acos is the arcus sine-function, i.e. the inverse of the sin-function. Or, more elaborate: It Returns the angle (in radians, not degrees !), which, fed to the sine-function will produce the argument passed to the asin-function.

Example

print asin(0.5),asin(sin(pi))
          

This will print 0.523599 -2.06823e-13 which is π and almost 0 respectively.

See also

sin, acos


Name

at() — can be used in the print-command to place the output at a specified position

Synopsis

clear screen
…
print at(a,b)
print @(a,b)

Description

The at-clause takes two numeric arguments (e.g. at(2,3)) and can be inserted after the print-keyword. at() can be used only if clear screen has been executed at least once within the program (otherwise you will get an error).

The two numeric arguments of the at-function may range from 0 to the width of your terminal minus 1, and from 0 to the height of your terminal minus 1; if any argument exceeds these values, it will be truncated accordingly. However, yabasic has no influence on the size of your terminal (80x25 is a common, but not mandatory), the size of your terminal and the maximum values acceptable within the at-clause may vary. To get the size of your terminal you may use the peek-function: peek("screenwidth") returns the width of your terminal and peek("screenheight") its height.

Example

clear screen
maxx=peek("screenwidth")-1:maxy=peek("screenheight")-1
for x=0 to maxx
  print at(x,maxy*(0.5+sin(2*pi*x/maxx)/2)) "*"
next x
          

This example plots a full period of the sine-function across the screen.


Name

atan() — returns the arctangent of its numeric argument

Synopsis

angle=atan(a,b)
angle=atan(a)

Description

atan is the arctangent-function, i.e. the inverse of the tan-function. Or, more elaborate: It Returns the angle (in radians, not degrees !), which, fed to the tan-function will produce the argument passed to the atan-function.

The atan-function has a second form, which accepts two arguments: atan(a,b) which is (mostly) equivalent to atan(a/b) except for the fact, that the two-argument-form returns an angle in the range -π to π, whereas the one-argument-form returns an angle in the range -π/2 to π/2. To understand this you have to be good at math.

Example

print atan(1),atan(tan(pi)),atan(-0,-1),atan(-0,1)
          

This will print 0.463648 2.06823e-13 -3.14159 3.14159 which is π/4, almost 0, -π and π respectively.

See also

tan, sin

B

backcolor — change color for background of graphic window
backcolour — see backcolor
beep — ring the bell within your computer; a synonym for bell
bell — ring the bell within your computer (just as beep)
bin$() — converts a number into a sequence of binary digits
bind() — Binds a yabasic-program and the yabasic-interpreter together into a standalone program.
box — draw a rectangle. A synonym for rectangle
break — breaks out of one or more loops or switch statements

Name

color — change color for background of graphic window

Synopsis

backcolour red,green,blue
backcolour "red,green,blue"

Description

Change the color, that becomes visible, if any portion of the window is erased, e.g. after clear window or clear line. Note however, that parts of the window, that display the old background color will not change.

As with the color-command, the new background color can either be specified as a triple of three numbers or as a single string, that contains those three numbers separated by commas.

Example

open window 255,255
for x=10 to 235 step 10:for y=10 to 235 step 10
  	backcolour x,y,0
	clear window
	sleep 1
next y:next x
          

This changes the background colour of the graphic window repeatedly and clears it every time, so that it is filled with the new background colour.


Name

backcolour — see backcolor

Synopsis

backcolour red,green,blue
backcolour "red,green,blue"

See also

color


Name

beep — ring the bell within your computer; a synonym for bell

Synopsis

beep

Description

The bell-command rings the bell within your computer once. This command is not a sound-interface, so you can neither vary the length or the height of the sound (technically, it just prints \a). bell is exactly the same as beep.

Example

beep:print "This is a problem ..."
          

See also

beep


Name

bell — ring the bell within your computer (just as beep)

Synopsis

bell

Description

The beep-command rings the bell within your computer once. beep is a synonym for bell.

Example

print "This is a problem ...":beep
          

See also

bell


Name

bin$() — converts a number into a sequence of binary digits

Synopsis

hexadecimal$=bin$(decimal)

Description

The bin$-function takes a single numeric argument an converts it into a string of binary digits (i.e. zeroes and ones). If you pass a negative number to bin$, the resulting string will be preceded by a '-'.

If you want to convert the other way around (i.e. from binary to decimal) you may use the dec-function.

Example

for a=1 to 100
  print bin$(a)
next a
          

This example prints the binary representation of all digits between 1 and 100.

See also

hex$, dec


Name

bind() — Binds a yabasic-program and the yabasic-interpreter together into a standalone program.

Synopsis

bind("foo.exe")

Description

The bind-command combines your own yabasic-program (plus all the libraries it does import) and the interpreter by copying them into a new file, whose name is passed as an argument. This new program may then be executed on any computer, even if it does not have yabasic installed.

Please see the section about creating a standalone-program for details.

Example

if (!peek("isbound")) then
  bind "foo"
  print "Successfully created the standalone executable 'foo' !"
  exit
endif

print "Hello World !"
          

This example creates a standalone program foo from itself.

See also

The section about creating a standalone-program, the peek-function and the command line options for Unix and Windows.


Name

box — draw a rectangle. A synonym for rectangle

Synopsis

See the rectangle-command.

Description

The box-command does exactly the same as the rectangle-command; it is just a synonym. Therefore you should refer to the entry for the rectangle-command for further information.


Name

break — breaks out of one or more loops or switch statements

Synopsis

break
break 2

Description

break transfers control immediately outside the enclosing loop or switch statement. This is the preferred way of leaving a such a statement (rather than goto, which is still possible in most cases). An optional digit allows one to break out of multiple levels, e.g. to leave a loop from within a switch statement. Please note, that only a literal (e.g. 2) is allowed at this location.

Example

for a=1 to 10
  break
  print "Hi"
next a

while(1)
  break
  print "Hi"
wend

repeat
  break
  print "Hi"
until(0)

switch 1
case 1:break
case 2:case 3:print "Hi"
end switch
          

This example prints nothing at all, because each of the loops (and the switch-statement) does an immediate break (before it could print any "Hi").

See also

for, while, repeat and switch.

C

casemark the different cases within a switch-statement
chr$() — accepts a number and returns the character at this position within the ascii charset
circle — draws a circle in the graphic-window
clear — Erase circles, rectangles or triangles
clear screen — erases the text window
clear window — clear the graphic window and begin a new page, if printing is under way
close — close a file, which has been opened before
close curve — close a curve, that has been drawn by the line-command
close printer — stops printing of graphics
close window — close the graphics-window
color — change color for any subsequent drawing-command
colour — see color
compile — compile a string with yabasic-code on the fly
continue — start the next iteration of a for-, do-, repeat- or while-loop
cos() — return the cosine of its single argument

Name

case — mark the different cases within a switch-statement

Synopsis

switch a
  case 1
  case 2
  …
end switch

…

switch a$
  case "a"
  case "b"
  …
end switch

Description

Please see the switch-statement.

Example

input a
switch(a)
  case 1:print "one":break
  case 2:print "two":break
  default:print "more"
end switch
          

Depending on your input (a number is expected) this code will print one or two or otherwise more.

See also

switch


Name

chr$() — accepts a number and returns the character at this position within the ascii charset

Synopsis

character$=chr$(ascii)

Description

The chr$-function is the opposite of the asc-function. It looks up and returns the character at the given position within the ascii-charset. It's typical use is to construct nonprintable characters which do not occur on your keyboard.

Nevertheless you won't use chr$ as often as you might think, because the most important nonprintable characters can be constructed using escape-sequences using the \-character (e.g. you might use \n instead of chr$(10) wherever you want to use the newline-character).

Example

print "a",chr$(10),"b"
          

This will print the letters 'a' and 'b' in different lines because of the intervening newline-character, which is returned by chr$(10).

See also

asc


Name

circle — draws a circle in the graphic-window

Synopsis

circle x,y,r
clear circle x,y,r
fill circle x,y,r
clear fill circle x,y,r

Description

The circle-command accepts three parameters: The x- and y-coordinates of the center and the radius of the circle.

Some more observations related with the circle-command:

  • The graphic-window must have been opened already.

  • The circle may well extend over the boundaries of the window.

  • If you have issued open printer before, the circle will finally appear in the printed hard copy of the window.

  • fill circle will draw a filled (with black ink) circle.

  • clear circle will erase (or clear) the outline of the circle.

  • clear fill circle or fill clear circle will erase the full area of the circle.

Example

open window 200,200

for n=1 to 2000
  x=ran(200)
  y=ran(200)
  fill circle x,y,10
  clear fill circle x,y,8
next n
          

This code will open a window and draw 2000 overlapping circles within. Each circle is drawn in two steps: First it is filled with black ink (fill circle x,y,10), then most of this circle is erased again (clear fill circle x,y,8). As a result each circle is drawn with an opaque white interior and a 2-pixel outline (2-pixel, because the radii differ by two).


Name

clear — Erase circles, rectangles or triangles

Synopsis

clear rectangle 10,10,90,90
clear fill circle 50,50,20
clear triangle 10,10,20,20,50,30

Description

May be used within the circle, rectangle or triangle command and causes these shapes to be erased (i.e. be drawn in the colour of the background).

fill can be used in conjunction with and wherever the fill-clause may appear. Used alone, clear will erase the outline (not the interior) of the shape (circle, rectangle or triangle); together with fill the whole shape (including its interior) is erased.

Example

open window 200,200
fill circle 100,100,50
clear fill rectangle 10,10,90,90
          

This opens a window and draws a pacman-like figure.


Name

clear screen — erases the text window

Synopsis

clear screen

Description

clear screen erases the text window (the window where the output of print appears).

It must be issued at least once, before some advanced screen-commands (e.g. print at or inkey$) may be called; this requirement is due to some limitations of the curses-library, which is used by yabasic under Unix for some commands.

Example

clear screen
print "Please press a key : ";
a$=inkey$
print a$
          

The clear screen command is essential here; if it would be omitted, yabasic would issue an error ("need to call 'clear screen' first") while trying to execute the inkey$-function.

See also

inkey$


Name

clear window — clear the graphic window and begin a new page, if printing is under way

Synopsis

clear window

Description

clear window clears the graphic window. If you have started printing the graphic via open printer, the clear window-command starts a new page as well.

Example

open window 200,200
open printer "t.ps"

for a=1 to 10
if (a>1) clear window
text 100,100,"Hallo "+str$(a)
next a

close printer
close window
          

This example prints 10 pages, with the text "Hello 1", "Hello 2", … and so on. The clear screen-command clears the graphics window and starts a new page.


Name

close — close a file, which has been opened before

Synopsis

close filenum
close # filenum

Description

The close-command closes an open file. You should issue this command as soon as you are done with reading from or writing to a file.

Example

open "my.data" for reading as 1
input #1 a
print a
close 1
          

This program opens the file "my.data", reads a number from it, prints this number and closes the file again.

See also

open


Name

close curve — close a curve, that has been drawn by the line-command

Synopsis

new curve
line to x1,y1
…
close curve

Description

The close curve-command closes a sequence of lines, that has been drawn by repeated line to-commands.

Example

open window 200,200
new curve
line to 100,50
line to 150,150
line to 50,150
close curve
          

This example draws a triangle: The three line to-commands draw two lines; the final line is however not drawn explicitly, but drawn by the close curve-command.

See also

line, new curve


Name

close printer — stops printing of graphics

Synopsis

close printer

Description

The close printer-command ends the printing graphics. Between open printer and close printer everything you draw (e.g. circles, lines …) is sent to your printer. close printer puts an end to printing and will make your printer eject the page.

Example

open window 200,200
open printer
circle 100,100,50
close printer
close window
          

As soon as close printer is executed, your printer will eject a page with a circle on it.

See also

open printer


Name

close window — close the graphics-window

Synopsis

close window

Description

The close window-command closes the graphics-window, i.e. it makes it disappear from your screen. It includes an implicit close printer, if a printer has been opened previously.

Example

open window 200,200
circle 100,100,50
close window
          

This example will open a window, draw a circle and close the window again; all this without any pause or delay, so the window will be closed before you may regard the circle..

See also

open window


Name

color — change color for any subsequent drawing-command

Synopsis

colour red,green,blue
colour "red,green,blue"

Description

Change the color, in which lines, dots, circles, rectangles or triangles are drawn. The color-command accepts three numbers in the range 0 … 255 (as in the first line of the synopsis above). Those numbers specify the intensity for the primary colors red, green and blue respectively. As an example 255,0,0 is red and 255,255,0 is yellow.

Alternatively you may specify the color with a single string (as in the second line of the synopsis above); this string should contain three numbers, separated by commas. As an example "255,0,255" would be violet. Using this variant of the colour-command, you may use symbolic names for colours:

open window 100,100
yellow$="255,255,0"
color yellow$
text 50,50,"Hallo"

, which reads much clearer.

Example

open window 255,255
for x=10 to 235 step 10:for y=10 to 235 step 10
  	colour x,y,0
  	fill rectangle x,y,x+10,y+10
next y:next x
          

This fills the window with colored rectangles. However, none of the used colours contains any shade of blue, because the color-command has always 0 as a third argument.


Name

colour — see color

Synopsis

colour red,green,blue
colour "red,green,blue"

See also

color


Name

compile — compile a string with yabasic-code on the fly

Synopsis

compile(code$)

Description

This is an advanced command (closely related with the execute-command). It allows you to compile a string of yabasic-code (which is the only argument). Afterwards the compiled code is a normal part of your program.

Note, that there is no way to remove the compiled code.

Example

compile("sub mysub(a):print a:end sub")
mysub(2)
          

This example creates a function named mysub, which simply prints its single argument.

See also

execute


Name

continue — start the next iteration of a for-, do-, repeat- or while-loop

Synopsis

continue

Description

You may use continue within any loop to start the next iteration immediately. Depending on the type of the loop, the loop-condition will or will not be checked. Especially: for- and while-loops will evaluate their respective conditions, do- and repeat-loops will not.

Remark: Another way to change the flow of execution within a loop, is the break-command.

Example

for a=1 to 100
  if mod(a,2)=0 continue
  print a
next a
          

This example will print all odd numbers between 1 and 100.

See also

for, do, repeat, while, break


Name

cos() — return the cosine of its single argument

Synopsis

x=cos(angle)

Description

The cos-function expects an angle (in radians) and returns its cosine.

Example

print cos(pi)
          

This example will print -1.

See also

acos, sin

D

data — introduces a list of data-items
date$ — returns a string with various components of the current date
dec() — convert a base 2 or base 16 number into decimal form
defaultmark the default-branch within a switch-statement
dim — create an array prior to its first use
do — start a (conditionless) do-loop
doc — special comment, which might be retrieved by the program itself
docu$ — special array, containing the contents of all docu-statement within the program
dot — draw a dot in the graphic-window

Name

data — introduces a list of data-items

Synopsis

data 9,"world"
…
read b,a$

Description

The data-keyword introduces a list of comma-separated list of strings or numbers, which may be retrieved with the read-command.

The data-command itself does nothing; it just stores data. A single data-command may precede an arbitrarily long list of values, in which strings or numbers may be mixed at will.

yabasic internally uses a data-pointer to keep track of the current location within the data-list; this pointer may be reset with the restore-command.

Example

do
  restore
  for a=1 to 4
    read num$,num
    print num$,"=",num
  next a
loop
data "eleven",11,"twelve",12,"thirteen",13,"fourteen",14
          

This example just prints a series of lines eleven=11 up to fourteen=14 and so on without end.

The restore-command ensures that the list of data-items is read from the start with every iteration.

See also

read, restore


Name

date$ — returns a string with various components of the current date

Synopsis

a$=date$

Description

The date$-function (which must be called without parentheses; i.e. date$() would be an error) returns a string containing various components of a date; an example would be 4-05-27-2004-Thu-May. This string consists of various fields separated by hyphens ("-"):

  • The day within the week as a number in the range 0 (=Sunday) to 6 (=Saturday) (in the example above: 4, i.e. Thursday).

  • The month as a number in the range 1 (=January) to 12 (=December) (in the example: 5 which stands for May).

  • The day within the month as a number in the range 1 to 31 (in the example: 27).

  • The full, 4-digit year (in the example: 2004, which reminds me that I should adjust the clock within my computer …).

  • The abbreviated name of the day within the week (Mon to Sun).

  • The abbreviated name of the month (Jan to Dec).

Therefore the whole example above (4-05-27-2004-Thu-May) would read: day 4 in the week (counting from 0), May 27 in the year 2004, which is a Thursday in May.

Note, that all fields within the string returned by date$ have a fixed with (numbers are padded with zeroes); therefore it is easy to extract the various fields of a date format with mid$.

Example

rem   Two ways to print the same ...

print mid$(date$,3,10)

dim fields$(6)
a=split(date$,fields$(),"-")
print fields$(2),"-",fields$(3),"-",fields$(4)
          

This example shows two different techniques to extract components from the value returned by date$. The mid$-function is the preferred way, but you could just as well split the return-value of date$ at every "-" and store the result within an array of strings.

See also

time$


Name

dec() — convert a base 2 or base 16 number into decimal form

Synopsis

a=dec(number$)
a=dec(number$,base)

Description

The dec-function takes the string-representation of a base-2 or base-16 (which is the default) number and converts it into a decimal number. The optional second argument (base) might be used to specify a base other than 16. However, currently only base 2 or base 16 are supported.

Example

input "Please enter a binary number: " a$
print a$," is ",dec(a$)
          

See also

bin$, hex$


Name

default — mark the default-branch within a switch-statement

Synopsis

switch a+3
case 1
  …
case 2
  …
default
  …
end switch

Description

The default-clause is an optional part of the switch-statement (see there for more information). It introduces a series of statements, that should be executed, if none of the cases matches, that have been specified before (each with its own case-clause).

So default specifies a default to be executed, if none of the explicitly named cases matches; hence its name.

Example

print "Please enter a number between 0 and 6,"
print "specifying a day in the week."
input d
switch d
case 0:print "Monday":break
case 1:print "Tuesday":break
case 2:print "Wednesday":break
case 3:print "Thursday":break
case 4:print "Friday":break
case 5:print "Saturday":break
case 6:print "Sunday":break
default:print "Hey you entered something invalid !"
end switch
          

This program translates a number between 0 and 6 into the name of a weekday; the default-case is used to detect (and complain about) invalid input.

See also

sub, case


Name

dim — create an array prior to its first use

Synopsis

dim array(x,y)
dim array$(x,y)

Description

The dim-command prepares one or more arrays (of either strings or numbers) for later use. This command can also be used to enlarges an existing array.

When an array is created with the dim-statement, memory is allocated and all elements are initialized with either 0 (for numerical arrays) or "" (for string arrays).

If the array already existed, and the dim-statement specifies a larger size than the current size, the array is enlarged and any old content is preserved.

Note, that dim cannot be used to shrink an array: If you specify a size, that is smaller than the current size, the dim-command does nothing.

Finally: To create an array, that is only known within a single subroutine, you should use the command local, which creates local variables as well as local arrays.

Example

dim a(5,5)
for x=1 to 5:for y=1 to 5
  a(x,y)=int(ran(100))
next y:next x
printmatrix(a())
dim a(7,7)
printmatrix(a())

sub printmatrix(ar())
  local x,y,p,q
  x=arraysize(ar(),1)
  y=arraysize(ar(),2)
  for q=1 to y
    for p=1 to y
      print ar(p,q),"\t";
    next p
    print
  next q
end sub
          

This example creates a 2-dimensional array (i.e. a matrix) with the dim-statement and fills it with random numbers. The second dim-statement enlarges the array, all new elements are filled with 0.

The subroutine printmatrix just does, what its name says.


Name

do — start a (conditionless) do-loop

Synopsis

do 
… 
loop

Description

Starts a loop, which is terminated by loop; everything between do and loop will be repeated forever. This loop has no condition, so it is an infinite loop; note however, that a break- or goto-statement might be used to leave this loop anytime.

Example

do
  a=a+1
  print a
  if (a>100) break
loop
          

This example prints the numbers between 1 and 101. The break-statement is used to leave the loop.

See also

loop, repeat, while, break


Name

doc — special comment, which might be retrieved by the program itself

Synopsis

doc   This is a comment
docu  This is another comment

Description

Introduces a comment, which spans up to the end of the line. But other than the rem-comment, any docu-comment is collected within the special docu$-array and might be retrieved later on. Moreover you might invoke yabasic -docu foo.yab on the command line to retrieve the embedded documentation within the program foo.yab.

Instead of doc you may just as well write docu or even documentation.

Example

rem   Hi, this has been written by me
rem
doc   This program asks for a number and
doc   prints this number multiplied with 2
rem
rem   Print out rhe above message
for a=1 to arraysize(docu$()):print docu$(a):next a

rem   Read and print the number
input "Please input a number: " x
print x*2
          

This program uses the comments within its code to print out a help message for the user.

The contents of the doc-lines are retrieved from the docu$-array; if you do not want a comment to be collected within this array, use the rem-statement instead.

See also

docu$, rem


Name

docu$ — special array, containing the contents of all docu-statement within the program

Synopsis

a$=docu$(1)

Description

Before your program is executed, yabasic collects the content of all the doc-statements within your program within this 1-dimensional array (well only those within the main-program, libraries are skipped).

You may use the arraysize function to find out, how many lines it contains.

Example

docu
docu  This program reads two numbers 
docu  and adds them.
docu

rem retrieve and print the embedded documentation
for a=1 to arraysize(docu$(),1)
  print docu$(a)
next a

input "First number: " b
input "Second number: " c

print "The sum of ",b," and ",c," is ",b+c
          

This program uses the embedded documentation to issue a usage-message.

See also

arraydim, rem


Name

dot — draw a dot in the graphic-window

Synopsis

dot x,y
clear dot x,y

Description

Draws a dot at the specified coordinates within your graphic-window. If printing is in effect, the dot appears on your printout too.

Use the functions peek("winheight") or peek("winwidth") to get the size of your window and hence the boundaries of the coordinates specified for the dot-command.

Example

open window 200,200
circle 100,100,100
do
  x=ran(200):y=ran(200)
  dot x,y
  total=total+1
  if (sqrt((x-100)^2+(y-100)^2)<100) in=in+1
  print 4*in/total
loop
          

This program uses a well known algorithm to compute π.

See also

line, open window

E

else — mark an alternative within an if-statement
elsif — starts an alternate condition within an if-statement
end — terminate your program
endif — ends an if-statement
end sub — ends a subroutine definition
eof — check, if an open file contains data
eor() — compute the bitwise exclusive or of its two arguments
error — raise an error and terminate your program
euler — another name for the constant 2.71828182864
execute$() — execute a user defined subroutine, which must return a string
execute() — execute a user defined subroutine, which must return a number
exit — terminate your program
exp() — compute the exponential function of its single argument
export — mark a function as globally visible

Name

else — mark an alternative within an if-statement

Synopsis

if (…) then 
  … 
else 
  … 
endif

Description

The else-statement introduces the alternate branch of an if-statement. I.e. it starts the sequence of statements, which is executed, if the condition of the if-statement is not true.

Example

input "Please enter a number: " a
if (mod(a,2)=1) then
  print a," is odd."
else
  print a," is even."
endif
          

This program detects, if the number you have entered is even or odd.

See also

if


Name

elsif — starts an alternate condition within an if-statement

Synopsis

if (…) then
  …
elseif (…) 
  …
elsif (…) then
  …
else
  …
endif

Description

The elsif-statement is used to select a single alternative among a series of choices.

With each elsif-statement you may specify a condition, which is tested, if the main condition (specified with the if-statement) has failed. Note that elsif might be just as well written as elseif.

Within the example below, two variables a and b are tested against a range of values. The variable a is tested with the elsif-statement. The very same tests are performed for the variable b too; but here an involved series of if-else-statements is employed, making the tests much more obscure.

Example

input "Please enter a number: " a
if (a<0) then
  print "less than 0"
elseif (a<=10) then
  print "between 0 and 10"
elsif (a<=20)
  print "between 11 and 20"
else
  print "over 20"
endif

input "Please enter another number: " b
if (b<0) then
  print "less than 0"
else
  if (b<=10) then
    print "between 0 and 10"
  else
    if (b<=20) then
      print "between 11 and 20"
    else
      print "over 20"
    endif
  endif
endif
          

Note, that the very same tests are performed for the variables a and b, but can be stated much more clearly with the elsif-statement.

Note, that elsif might be written as elseif too, and that the keyword then is optional.

See also

if, else


Name

end — terminate your program

Synopsis

end

Description

Terminate your program. Much (but not exactly) like the exit command.

Note, that end may not end your program immediately; if you have opened a window or called clear screen, yabasic assumes, that your user wants to study the output of your program after it has ended; therefore it issues the line ---Program done, press RETURN--- and waits for a key to be pressed. If you do not like this behaviour, consider using exit.

Example

print "Do you want to continue ?"
input "Please answer y(es) or n(o): " a$
if (lower$(left$(a$,1))="n") then
  print "bye"
  end
fi
          

See also

exit


Name

endif — ends an if-statement

Synopsis

if (…) then
  …
endif

Description

The endif-statement closes (or ends) an if-statement.

Note, that endif may be written in a variety of other ways: end if, end-if or even fi.

The endif-statement must be omitted, if the if-statement does not contain the keyword then (see the example below). Such an if-statement without endif extends only over a single line.

Example

input "A number please: " a
if (a<10) then
  print "Your number is less than 10."
endif

REM  and now without endif 

input "A number please: " a
if (a<10) print "Your number is less than 10."
          

See also

if


Name

end sub — ends a subroutine definition

Synopsis

sub foo(…) 
  …
end sub

Description

Marks the end of a subroutine-definition (which starts with the sub-keyword). The whole concept of subroutines is explained within the entry for sub.

Example

print foo(3)

sub foo(a)
  return a*2
end sub
          

This program prints out 6. The subroutine foo simply returns twice its argument.

See also

sub


Name

eof — check, if an open file contains data

Synopsis

open 1,"foo.bar"
if (eof(1)) then 
   …
end if

Description

The eof-function checks, if there is still data left within an open file. As an argument it expects the file-number as returned by (or used within) the open-function (or statement).

Example

a=open("foo.bar")
while(not eof(a)) 
  input #a,a$
  print a$
end while
          

This example will print the contents of the file "foo.bar". The eof-function will terminate the loop, if there is no more data left within the file.

See also

open


Name

eor() — compute the bitwise exclusive or of its two arguments

Synopsis

print eor(a,b)

Description

The eor-function takes two arguments and computes their bitwise exclusive or. See your favorite introductory text on informatics for an explanation of this function.

The xor-function is the same as the eor function; both are synonymous; however they have each their own description, so you may check out the entry of xor for a slightly different view.

Example

for a=0 to 3
  for b=0 to 3
    print fill$(bin$(a))," eor ",fill$(bin$(b))," = ",fill$(bin$(eor(a,b)))
  next b
next a

sub fill$(a$)
  return right$("0"+a$,2)
end sub
          

This example prints a table, from which you may figure, how the eor-function is computed.

See also

and, or


Name

error — raise an error and terminate your program

Synopsis

error "Wrong, wrong, wrong !!"

Description

Produces the same kind or error messages, that yabasic itself produces (e.g. in case of a syntax-error). The single argument is issued along with the current line-number.

Example

input "Please enter a number between 1 and 10: " a
if (a<1 or a>10) error "Oh no ..."
          

This program is very harsh in checking the users input; instead of just asking again, the program terminates with an error, if the user enters something wrong.

The error message would look like this:

---Error in t.yab, line 2: Oh no ...
---Error: Program stopped due to an error

See also

Well, there should be a corresponding called warning; unfortunately ther is none yet.


Name

euler — another name for the constant 2.71828182864

Synopsis

foo=euler

Description

euler is the well known constant named after Leonard Euler; its value is 2.71828182864. euler is not a function, so parens are not allowed (i.e. euler() will produce an error). Finally, you may not assign to euler; it wouldn't sense anyway, because it is a constant.

Example

print euler
          

See also

pi


Name

execute$() — execute a user defined subroutine, which must return a string

Synopsis

print execute$("foo$","arg1","arg2")

Description

execute$ can be used to execute a user defined subroutine, whose name may be specified as a string expression.

This feature is the only way to execute a subroutine, whose name is not known by the time you write your program. This might happen, if you want to execute a subroutine, which is compiled (using the compile command) during the course of execution of your program.

Note however, that the execute$-function is not the preferred method to execute a user defined subroutine; in almost all cases you should just execute a subroutine by writing down its name within your yabasic program (see the example).

Example

print execute$("foo$","Hello","world !")
sub foo$(a$,b$)
  return a$+" "+b$
end sub
          

The example simply prints Hello world !, which is the return value of the user defined subroutine foo$. The same could be achieved by executing:

print foo$(a$,b$)

See also

compile, execute


Name

execute() — execute a user defined subroutine, which must return a number

Synopsis

print execute("bar","arg1","arg2")

Description

The execute-function is the counterpart of the execute$-function (please see there for some caveats). execute executes subroutines, which returns a number.

Example

print execute("bar",2,3)
sub bar(a,b)
  return a+b
end sub
          

See also

compile, execute$


Name

exit — terminate your program

Synopsis

exit
exit 1

Description

Terminate your program and return any given value to the operating system. exit is similar to end, but it will terminate your program immediately, no matter what.

Example

print "Do you want to continue ?"
input "Please answer y(es) or n(o): " a$
if (lower$(left$(a$,1))="n") exit 1
          

See also

end


Name

exp() — compute the exponential function of its single argument

Synopsis

foo=exp(bar)

Description

This function computes e to the power of its argument, where e is the well known euler constant 2.71828182864.

The exp-function is the inverse of the log-function.

Example

open window 100,100
for x=0 to 100
   dot x,100-100*exp(x/100)/euler
next x
          

This program plots part of the exp-function, however the range is rather small, so that you may not recognize the function from this plot.

See also

log


Name

export — mark a function as globally visible

Synopsis

export sub foo(bar)
…
end sub

Description

The export-statement is used within libraries to mark a user defined subroutine as visible outside the library wherein it is defined. Subroutines, which are not exported, must be qualified with the name of the library, e.g. foo.baz (where foo is the name of the library and baz the name of the subroutine); exported subroutines may be used without specifying the name of the library, e.g. bar.

Therefore export may only be useful within libraries.

Example

The library foo.bar (which is listed below) defines two functions bar and baz, however only the function bar is exported and therefore visible even outside the library; baz is not exported and may only be used within the library foo.yab:

export sub bar()
  print "Hello"
end sub

sub baz()
  print "World"
end sub
          

Now within your main program cux.yab (which imports the library foo.yab); note that this program produces an error:

import foo

print "Calling subroutine foo.bar (okay) ..."
foo.bar()
print "done."

print "Calling subroutine bar (okay) ..."
bar()
print "done."

print "Calling subroutine foo.baz (okay) ..."
foo.baz()
print "done."

print "Calling subroutine baz (NOT okay) ..."
baz()
print "done."

The output when executing yabasic foo.yab is this:

Calling subroutine foo.bar (okay) ...
Hello
done.
Calling subroutine bar (okay) ...
Hello
done.
Calling subroutine foo.baz (okay) ...
World
done.
Calling subroutine baz (NOT okay) ...
---Error in main.yab, line 16: can't find subroutine 'baz'
---Dump: sub baz() called in main.yab,16
---Error: Program stopped due to an error

As the error message above shows, the subroutine baz must be qualified with the name of the library, if used outside the library, wherein it is defined (e.g. foo.baz. I.e. outside the library foo.yab you need to write foo.baz. baz alone would be an error.

The subroutine bar (without adding the name of the library) however may (and probably should) be used in any program, which imports the library foo.yab.

Note

In some sense the set of exported subroutines constitutes the interface of a library.

See also

sub, import

F

false — a constant with the value of 0
fianother name for endif
fill — draw a filled circles, rectangles or triangles
for — starts a for-loop
frac() — return the fractional part of its numeric argument

Name

false — a constant with the value of 0

Synopsis

okay=false

Description

The constant false can be assigned to variables which later appear in conditions (e.g. within an if-statement.

false may also be written as FALSE or even FaLsE.

Example

input "Please enter a number between 1 and 10: " a
if (check_input(a)) print "Okay"

sub check_input(x)
  if (x>10 or x<1) return false
  return true
end sub
          

The subroutine check_input checks its argument and returns true or false according to the outcome of the check..

See also

true


Name

fi — another name for endif

Synopsis

if (…)
…
fi

Description

fi marks the end of an if-statement and is exactly equivalent to endif, please see there for further information.

Example

input "A number please: " a
if (a<10) then
  print "Your number is less than 10."
fi
          

See also

endif


Name

fill — draw a filled circles, rectangles or triangles

Synopsis

fill rectangle 10,10,90,90
fill circle 50,50,20
fill triangle 10,20,20,10,20,20

Description

The keyword fill may be used within the circle, rectangle or triangle command and causes these shapes to be filled.

fill can be used in conjunction with and wherever the clear-clause may appear. Used alone, fill will fill the interior of the shape (circle, rectangle or triangle); together with clear the whole shape (including its interior) is erased.

Example

open window 200,200
fill circle 100,100,50
clear fill rectangle 10,10,90,90
          

This opens a window and draws a pacman-like figure.


Name

for — starts a for-loop

Synopsis

for a=1 to 100 step 2
  …
next a

Description

The for-loop lets its numerical variable (a in the synopsis) assume all values within the given range. The optional step-clause may specify a value (default: 1) by which the variable will be incremented (or decremented, if step is negative).

Any for-statement can be replaced by a set of ifs and gotos; as you may infer from the example below this is normally not feasible. However if you want to know in detail how the for-statement works, you should study this example, which presents a for-statement and an exactly equivalent series of ifs and gotos.

Example

for a=1 to 10 step 2:print a:next 

a=1
label check
if (a>10) goto done
  print a
  a=a+2
goto check
label done
          

This example simply prints the numbers 1, 3, 5, 7 and 9. It does this twice: First with a simple for-statement and then with ifs and gotos.

See also

step, next


Name

frac() — return the fractional part of its numeric argument

Synopsis

x=frac(y)

Description

The frac-function takes its argument, removes all the digits to the left of the comma and just returns the digits right of the comma, i.e. the fractional part.

Refer to the example to learn how to rewrite frac by employing the int-function.

Example

for a=1 to 10
  print frac(sqr(a))
  print sqr(a)-int(sqr(a))
next a
          

The example prints the fractional part of the square root of the numbers between 1 and 10. Each result is computed (and printed) twice: Once by employing the frac-function and once by employing the int-function.

See also

int

G

getbit$() — return a string representing the bit pattern of a rectangle within the graphic window
getscreen$() — returns a string representing a rectangular section of the text terminal
glob() — check if a string matches a simple pattern
gosub — continue execution at another point within your program (and return later)
goto — continue execution at another point within your program (and never come back)

Name

getbit$() — return a string representing the bit pattern of a rectangle within the graphic window

Synopsis

a$=getbit$(10,10,20,20)
a$=getbit$(10,10 to 20,20)

Description

The function getbit returns a string, which contains the encoded bit-pattern of a rectangle within graphic window; the four arguments specify two opposite corners of the rectangle. The string returned might later be fed to the putbit-command.

The getbit$-function might be used for simple animations (as in the example below).

Example

open window 40,40
fill circle 20,20,18
circle$=getbit$(0,0,40,40)
close window

open window 200,200
for x=1 to 200
  putbit circle$,x,80
next x
          

This example features a circle moving from left to right over the window.

See also

putbit


Name

getscreen$() — returns a string representing a rectangular section of the text terminal

Synopsis

a$=getscreen$(2,2,20,20)

Description

The getscreen$ function returns a string representing the area of the screen as specified by its four arguments (which specify two opposite corners). I.e. everything you have printed within this rectangle will be encoded in the string returned (including any colour-information).

Like most other commands dealing with advanced text output, getscreen$ requires, that you have called clear screen before.

Example

clear screen

for a=1 to 1000:
	print color("red") "1";
	print color("green") "2";
	print color("blue") "3";
next a  
screen$=getscreen$(10,10,40,10)
print at(10,10) " Please Press 'y' or 'n' ! "
a$=inkey$
putscreen screen$,10,10
          

This program fills the screen with colored digits and afterwards asks the user for a choice ( Please press 'y' or 'n' ! ). Afterwards the area of the screen, which has been overwritten by the question will be restored with its previous contents, whhch had been saved via getscreen$.

See also

putscreen$


Name

glob() — check if a string matches a simple pattern

Synopsis

if (glob(string$,pattern$)) …

Description

The glob-function takes two arguments, a string and a (glob-) pattern, and checks if the string matches the pattern. However glob does not employ the powerful rules of regular expressions; rather it has only two special characters: * (which matches any number (even zero) of characters) and ? (which matches exactly a single character).

Example

for a=1 to 10
  read string$,pattern$
  if (glob(string$,pattern$)) then
    print string$," matches ",pattern$
  else
    print string$," does not match ",pattern$
  endif
next a

data "abc","a*"
data "abc","a?"
data "abc","a??"
data "abc","*b*"
data "abc","*"
data "abc","???"
data "abc","?"
data "abc","*c"
data "abc","A*"
data "abc","????"
          

This program checks the string abc against various patterns and prints the result. The output is:

abc matches a*
abc does not match a?
abc matches a??
abc matches *b*
abc matches *
abc matches ???
abc does not match ?
abc matches *c
abc does not match A*
abc does not match ????

See also

There are no related commands.


Name

gosub — continue execution at another point within your program (and return later)

Synopsis

gosub foo

…

label foo
…
return

Description

gosub remembers the current position within your program and then passes the flow of execution to another point (which is normally marked with a label). Later, when a return-statement is encountered, the execution is resumed at the previous location.

gosub is the traditional command for calling code, which needs to be executed from various places within your program. However, with subroutines yabasic offers a much more flexible way to achieve this (and more). Therefore gosub must to be considered obsolete.

Example

print "Do you want to exit ? "
gosub ask
if (r$="y") exit

label ask
input "Please answer yes or no, by typing 'y' or 'n': ",r$
return
          

Name

goto — continue execution at another point within your program (and never come back)

Synopsis

goto foo

…

label foo

Description

The goto-statement passes the flow of execution to another point within your program (which is normally marked with a label).

goto is normally considered obsolete and harmful, however in yabasic it may be put to the good use of leaving loops (e.g. while or for) prematurely. Note however, that subroutines may not be left with the goto-statement.

Example

print "Please press any key to continue."
print "(program will continue by itself within 10 seconds)"
for a=1 to 10
  if (inkey$(1)<>"") then goto done
next a
label done
print "Hello World !"
          

Here the goto-statement is used to leave the for-loop prematurely.

See also

gosub, on goto

H

hex$() — convert a number into hexadecimal

Name

hex$() — convert a number into hexadecimal

Synopsis

print hex$(foo)

Description

The hex$-function converts a number into a string with its hexadecimal representation. hex$ is the inverse of the dec-function.

Example

open 1,"foo"
while(!eof(1))
  print right$("0"+hex$(peek(1)),2)," ";
  i=i+1
  if (mod(i,10)=0) print
end while
print
          

This program reads the file foo and prints its output as a hex-dump using the hex-function.

See also

decbin

I

if — evaluate a condition and execute statements or not, depending on the result
import — import a library
inkey$ — wait, until a key is pressed
input — read input from the user (or from a file) and assign it to a variable
instr() — searches its second argument within the first; returns its position if found
int() — return the integer part of its single numeric argument

Name

if — evaluate a condition and execute statements or not, depending on the result

Synopsis

if (…) then
  …
endif

if (…) …

if (…) then
  …
else
  …
endif

if (…) then
  …
elsif (…)
  …
elsif (…) then
  …
else
  …
endif

Description

The if-statement is used to evaluate a conditions and take actions accordingly. (As an aside, please note that there is no real difference between conditions and expressions.)

There are two major forms of the if-statement:

  • The one-line-form without the keyword then:

    if (…) …

    This form evaluates the condition and if the result is true executes all commands (separated by colons) upt to the end of the line. There is neither an endif keyword nor an else-branch.

  • The multi-line-form with the keyword then:

    if (…) then … elsif (…) … else … endif

    (where elsif and else are optional, whereas endif is not.

    According to the requirements of your program, you may specify:

    • elsif(…), which specifies a condition, that will be evaluated only if the condition(s) within if or any preceding elsif did not match.

    • else, which introduces a sequence of commands, that will be executed, if none of the conditions above did match.

    • endif is required and ends the if-statement.

Example

input "Please enter a number between 1 and 4: " a
if (a<=1 or a>=4) error "Wrong, wrong !"
if (a=1) then
  print "one"
elsif (a=2)
  print "two"
elsif (a=3)
  print "three"
else
  print "four"
endif
          

The input-number between 1 and 4 is simply echoed as text (one, two, …). The example demonstrates both forms (short and long) of the if-statement (Note however, that the same thing can be done, probably somewhat more elegant, with the switch-statement).


Name

import — import a library

Synopsis

import foo

Description

The import-statement imports a library. It expects a single argument, which must be the name of a library (without the trailing .yab). This library will then be read and parsed and its subroutines (and variables) will be made available within the main program.

Libraries will first be searched within the current directory (i.e. the directory within which you have invoked yabasic), then within a special directory, whose exact location depends on your system. Typical values would be /usr/lib under Unix or C:\yabasic\lib under Windows. Invoking yabasic --help will show the correct directory. The location of this directory may be changed with the option --library (either under Windows or Unix).

Example

Lets say you have a yabasic-program foo.yab, which imports a library lib.yab. foo.yab reads:

import lib

rem  This works ...
lib.x(0)

rem  This works too ..
x(1)

rem  And this.
lib.y(2)

rem  But this not !
y(3)
          

Now the library lib.yab reads:

rem  Make the subroutine x easily available outside this library
export sub x(a)
  print a
  return
end sub

rem  sub y must be referenced by its full name
rem  outside this library
sub y(a)
  print a
  return
end sub

This program produces an error:

0
1
2
---Error in foo.yab, line 13: can't find subroutine 'y'
---Dump: sub y() called in foo.yab,13
---Error: Program stopped due to an error

As you may see from the error message, yabasic is unable to find the subroutine y without specifying the name of the library (i.e. lib.y). The reason for this is, that y, other than x, is not exported from the library lib.yab (using the export-statement).

See also

export, sub


Name

inkey$ — wait, until a key is pressed

Synopsis

clear screen
foo$=inkey$
inkey$
foo$=inkey$(bar)
inkey$(bar)

Description

The inkeys$-function waits, until the user presses a key on the keyboard or a button of his mouse, and returns this very key. An optional argument specifies the number of seconds to wait; if omitted, inkey$ will wait indefinitely.

inkey$ may only be used, if clear screen has been called at least once.

For normal keys, yabasic simply returns the key, e.g. a, 1 or !. For function keys you will get f1, f2 and so on. Other special keys will return these strings respectively: enter, backspace, del, esc, scrnup (for screen up), scrndown and tab. Modifier keys (e.g. ctrl, alt or shift) by themselves can not be detected (e.g. if you simultaneously press shift and 'a', inkey$ will return the letter 'A' instead of 'a' of course).

If a graphical window has been opened (via open window) any mouseclick within this window will be returned by inkey$ too. The string returned (e.g. MB1d+0:0028,0061, MB2u+0:0028,0061 or MB1d+1:0028,0061) is constructed as follows:

  • Every string associated with a mouseclick will start with the fixed string MB

  • The next digit (1, 2 or 3) specifies the mousebutton pressed.

  • A single letter, d or u, specifies, if the mousebutton has been pressed or released: d stands for down, i.e. the mousebutton has been pressed; u means up, i.e. the mousebutton has been released.

  • The plus-sign ('+'), which follows is always fixed.

  • The next digit (in the range 0 to 7) encodes the modifier keys pressed, where 1 stands for shift, 2 stands for alt and 4 stands for ctrl.

  • The next four digits (e.g. 0028) contain the x-position, where the mousebutton has been pressed.

  • The comma to follow is always fixed.

  • The last four digits (e.g. 0061) contain the y-position, where the mousebutton has been pressed.

All those fields are of fixed length, so you may use functions like mid$ to extract certain fields. However, note that with mousex, mousey, mouseb and mousemod there are specialized functions to return detailed information about the mouseclick. Finally it should be noted, that inkey$ will only register mouseclicks within the graphic-window; mouseclicks in the text-window cannot be detected.

inkey$ accepts an optional argument, specifying a timeout in seconds; if no key has been pressed within this span of time, an empty string is returned. If the timeout-argument is omitted, inkey$ will wait for ever.

Example

clear screen
open window 100,100
print "Press any key or press 'q' to stop."
repeat
  a$=inkey$
  print a$
until(a$="q")
          

This program simply returns the key pressed. You may use it, to learn, which strings are returned for the special keys on your keyboard (e.g. function-keys).


Name

input — read input from the user (or from a file) and assign it to a variable

Synopsis

input a
input a,b,c
input a$
input "Hello" a
input #1 a$

Description

input reads the new contents of one or many (numeric- or string-) variables, either from the keyboard (i.e. from you) or from a file. An optional first string-argument specifies a prompt, which will be issued before reading any contents.

If you want to read from an open file, you need to specify a hash ('#'), followed by the number, under which the file has been opened.

Note, that the input is split at spaces, i.e. if you enter a whole line consisting of many space-separated word, the first input-statement will only return the first word; the other words will only be returned on subsequent calls to input; the same applies, if a single input reads multiple variables: The first variable gets only the first word, the second one the second word, and so on. If you don't like this behaviour, you may use line input, which returns a whole line (including embedded spaces) at once.

Example

input "Please enter the name of a file to read: " a$
open 1,a$
while(!eof(1))
  input #1 b$
  print b$
wend
          

If this program is stored within a file test.yab and you enter this name when prompted for a file to read, you will see this output:

Please enter the name of a file to read: t.yab
input
"Please
enter
the
name
of
a
file
to
read:
"
a$
open
1,a$
while(!eof(1))
input
#1
b$
print
b$
wend

See also

line input


Name

instr() — searches its second argument within the first; returns its position if found

Synopsis

print instr(a$,b$)
if (instr(a$,b$)) …
pos=instr(a$,b$,x)

Description

The instr-functions requires two string arguments and searches the second argument within the first. If the second argument can be found within the first, the position is returned (counting from one). If it can not be found, the instr-function returns 0; this makes this function usable within the condition of an if-statement (see the example below).

If you supply a third, numeric argument to the instr-function, it will be used as a starting point for the search. Therefore instr("abcdeabcdeabcde","e",8) will return 10, because the search for an "e" starts at position 8 and finds the "e" at position 10 (and not the one at position 5).

Example

input "Please enter a text containing the string 'bumf': " a$
if (instr(a$,"bumf")) then
  print "Well done !"
else
  print "not so well ..."
endif
          

See also

rinstr


Name

int() — return the integer part of its single numeric argument

Synopsis

print int(a)

Description

The int-function returns only the digits before the comma; int(2.5) returns 2 and int(-2.3) returns -2.

Example

input "Please enter a whole number between 1 and 10: " a
if (a=int(a) and a>=1 and a<=10) then
  print "Thanx !"
else
  print "Never mind ..."
endif
          

See also

frac

L

label — mark a specific location within your program for goto, gosub or restore
left$() — return (or change) left end of a string
len() — return the length of a string
line — draw a line
line input — read in a whole line of text and assign it to a variable
local — mark a variable as local to a subroutine
log() — compute the natural logarithm
loop — marks the end of an infinite loop
lower$() — convert a string to lower case
ltrim$() — trim spaces at the left end of a string

Name

label — mark a specific location within your program for goto, gosub or restore

Synopsis

label foo

…

goto foo

Description

The label-command can be used to give a name to a specific location within your program. Such a position might be referred from one of three commands: goto, gosub and restore.

You may use labels safely within libraries, because a label (e.g. foo) does not collide with a label with the same name within the main program or within another library; yabasic will not mix them up.

As an aside, please note, that line numbers are a special (however deprecated) case of labels; see the second example below.

Example

for a=1 to 100
  if (ran(10)>5) goto done
next a
label done

10 for a=1 to 100
20   if (ran(10)>5) goto 40
30 next a
40
          

Within this example, the for-loop will probably be left prematurely with a goto-statement. This task is done twice: First with labels and then again with line numbers.

See also

gosub, goto.


Name

left$() — return (or change) left end of a string

Synopsis

print left$(a$,2)
left$(b$,3)="foobar"

Description

The left$-function accepts two arguments (a string and a number) and returns the part from the left end of the string, whose length is specified by its second argument. Loosely spoken, it simply returns the requested number of chars from the left end of the given string.

Note, that the left$-function can be assigned to, i.e. it may appear on the left hand side of an assignment. In this way it is possible to change a part of the variable used within the left$-function. Note, that that way the length of the string cannot be changed, i.e. characters might be overwritten, but not added. For an example see below.

Example

input "Please answer yes or no: " a$
l=len(a$):a$=lower$(a$):print "Your answer is ";
if (left$("yes",l)=a$ and l>=1) then
  print "yes"
elsif (left$("no",l)=a$ and l>=1) then
  print "no"
else
  print "?"
endif
          

This example asks a simple yes/no question and goes some way to accept even incomplete input, while still being able to reject invalid input.

This second example demonstrates the capability to assign to the left$-function.

a$="Heiho World !"
print a$
left$(a$,5)="Hello"
print a$

See also

right$, mid$


Name

len() — return the length of a string

Synopsis

x=len(a$)

Description

The len-function returns the length of its single string argument.

Example

input "Please enter a password: " a$
if (len(a$)<6) error "Password too short !"
          

This example checks the length of the password, that the user has entered.

See also

left$, right$ and mid$,


Name

line — draw a line

Synopsis

open window 100,100
line 0,0,100,100
line 0,0 to 100,100
new curve
line 100,100
line to 100,100

open window 100,100
clear line 0,0,100,100
clear line 0,0 to 100,100
new curve
clear line 100,100
clear line to 100,100

Description

The line-command draws a line. Simple as this is, the line-command has a large variety of forms as they are listed in the synopsis above. Lets look at them a little closer:

  • A line has a starting and an end point; therefore the line-command (normally) needs four numbers as arguments, representing these two points. This is the first form appearing within the synopsis.

  • You may separate the two points with either ',' or to, which accounts for the second form of the line-command.

  • The line-command may be used to draw a connected sequence of lines with a sequence of commands like line x,y; Each command will draw a line from the point where the last line-command left off, to the point specified in the arguments. Note, that you need to use the command new curve before you may issue such a line-command. See the example below.

  • You may insert the word to for beauty: line to x,y, which does exactly the same as line x,y

  • Finally, you may choose not to draw, but to erase the lines; this can be done by prepending the phrase clear. This account for all the other forms of the line-command.

Example

open window 200,200
line 10,10 to 10,190
line 10,190 to 190,190
new curve
for a=0 to 360
  line to 10+a*180/360,100+60*sin(a*pi/180)
next a
          

This example draws a sine-curve (with an offset in x- and y-direction). Note, that the first line-command after new curve does not draw anything. Only the coordinates will be stored. The second iteration of the loop then uses these coordinates as a starting point for the first line.


Name

line input — read in a whole line of text and assign it to a variable

Synopsis

line input a
line input a$
line input "Hello" a
line input #1 a$

Description

In most respects line input is like the input-command: It reads the new contents of a variable, either from keyboard or from a file. However, line input always reads a complete line and assigns it to its variable. line input does not stop reading at spaces and is therefore the best way to read in a string which might contain whitespace. Note, that the final newline is stripped of.

Example

line input "Please enter your name (e.g. Frodo Beutelin): " a$
print "Hello ",a$
          

Note that the usage of line input is essential in this example; a simple input-statement would only return the string up to the first space, e.g. Frodo.

See also

input


Name

local — mark a variable as local to a subroutine

Synopsis

sub foo()

  local a,b,c$,d(10),e$(5,5)

  …

end sub 

Description

The local-command can (and should be) used to mark a variable (or array) as local to the containing subroutine. This means, that a local variable in your subroutine is totally different from a variable with the same name within your main program. Variables which are known everywhere within your program are called global in contrast.

Declaring variables within the subroutine as local helps to avoid hard to find bugs; therefore local variables should be used whenever possible.

Note, that the parameters of your subroutines are always local.

As you may see from the example, local arrays may be created without using the keyword dim (which is required only for global arrays).

Example

a=1
b=1
print a,b
foo()
print a,b

sub foo()
  local a
  a=2
  b=2
end sub
          

This example demonstrates the difference between local and global variables; it produces this output:

1 1
1 2

As you may see, the content of the global variable a is unchanged after the subroutine foo; this is because the assignment a=2 within the subroutine affects the local variable a only and not the global one. However, the variable b is never declared local and therefore the subroutine changes the global variable, which is reflected in the output of the second print-statement.

See also

sub, static, dim


Name

log() — compute the natural logarithm

Synopsis

a=log(x)
a=log(x,base)

Description

The log-function computes the logarithm of its first argument. The optional second argument gives the base for the logarithm; if this second argument is omitted, the euler-constant 2.71828… will be taken as the base.

Example

open window 200,200
for x=10 to 190 step 10:for y=10 to 190 step 10
  r=3*log(1+x,1+y)
  if (r>10) r=10
  if (r<1) r=1
  fill circle x,y,r
next y:next x
          

This draws another nice plot.

See also

exp


Name

loop — marks the end of an infinite loop

Synopsis

do
  …
loop

Description

The loop-command marks the ends of a loop (which is started by do), wherein all statements within the loop are repeated forever. In this respect the do loop-loop is infinite, however, you may leave it anytime via break or goto.

Example

print "Hello, I will throw dice, until I get a 2 ..."
do
  r=int(ran(6))+1
  print r
  if (r=2) break
loop
          

See also

do, for, repeat, while, break


Name

lower$() — convert a string to lower case

Synopsis

l$=lower$(a$)

Description

The lower$-function accepts a single string-argument and converts it to all lower case.

Example

input "Please enter a password: " a$
if (a$=lower$(a$)) error "Your password is NOT mixed case !"
          

This example prompts for a password and checks, if it is really lower case.

See also

upper$


Name

ltrim$() — trim spaces at the left end of a string

Synopsis

a$=ltrim$(b$)

Description

The ltrim$-function removes all whitespace from the left end of a string and returns the result.

Example

input "Please answer 'yes' or 'no' : " a$
a$=lower$(ltrim$(rtrim$(a$)))
if (len(a$)>0 and a$=left$("yes",len(a$))) then
  print "Yes ..."
else
  print "No ..."
endif
          

This example prompts for an answer and removes any spaces, which might precede the input; therefore it is even prepared for the (albeit somewhat pathological case, that the user first hits space before entering his answer.

See also

rtrim$, trim$

M

max() — return the larger of its two arguments
mid$() — return (or change) characters from within a string
min() — return the smaller of its two arguments
mod() — compute the remainder of a division
mouseb — extract the state of the mousebuttons from a string returned by inkey$
mousemod — return the state of the modifier keys during a mouseclick
mousex — return the x-position of a mouseclick
mousey — return the y-position of a mouseclick

Name

max() — return the larger of its two arguments

Synopsis

print max(a,b)

Description

Return the maximum of its two arguments.

Example

dim m(10)
for a=1 to 1000
  m=0
  For b=1 to 10
    m=max(m,ran(10))
  next b
  m(m)=m(m)+1
next a

for a=1 to 9
  print a,": ",m(a)
next a
          

Within the inner for-loop (the one with the loop-variable b), the example computes the maximum of 10 random numbers. The outer loop (with the loop variable a) now repeats this process 1000 times and counts, how often each maximum appears. The last loop finally reports the result.

Now, the interesting question would be, which will be approached, when we increase the number of iterations from thousand to infinity. Well, maybe someone could just tell me :-)

See also

min


Name

mid$() — return (or change) characters from within a string

Synopsis

print mid$(a$,2,1)
print mid$(a$,2)
mid$(a$,5,3)="foo"
mid$(a$,5)="foo"

Description

The mid$-function requires three arguments: a string and two numbers, where the first number specifies a position within the string and the second one gives the number of characters to be returned; if you omit the second argument, the mid$-function returns all characters up to the end of the string.

Note, that you may assign to the mid$-function, i.e. mid$ may appear on the left hand side of an assignment. In this way it is possible to change a part of the variable used within the mid$-function. Note, that that way the length of the string cannot be changed, i.e. characters might be overwritten, but not added. For an example see below.

Example

input "Please enter a string: " a$
for a=1 to len(a$)
  if (instr("aeiou",lower$(mid$(a$,a,1)))) mid$(a$,a,1)="e"
next a
print "When you turn everything to lower case and"
print "replace every vowel with 'e', your input reads:"
print
print a$
          

This example transforms the input string a bit, using the mid$-function to retrieve a character from within the string as well as to change it.

See also

left$ and right$.


Name

min() — return the smaller of its two arguments

Synopsis

print min(a,b)

Description

Return the minimum of its two argument.

Example

dim m(10)
for a=1 to 1000
  m=min(ran(10),ran(10))
  m(m)=m(m)+1
next a

for a=1 to 9
  print a,": ",m(a)
next a
          

For each iteration of the loop, the lower of two random number is recorded. The result is printed at the end.

See also

max


Name

mod() — compute the remainder of a division

Synopsis

print mod(a,b)

Description

The mod-function divides its two arguments and computes the remainder. Note, that a/b-int(a/b) and mod(a,b) are always equal.

Example

clear screen
print at(10,10) "Please wait ";
p$="-\|/"
for a=1 to 100
  rem  ... do something lengthy here, or simply sleep :-)
  pause(1)
  print at(22,10) mid$(p$,1+mod(a,4))
next a
          

This example executes some time consuming action within a loop (in fact, it simply sleeps) and gives the user some indication of progress by displaying a turning bar (that's where the mod()-function comes into play).

See also

int, frac


Name

mouseb — extract the state of the mousebuttons from a string returned by inkey$

Synopsis

inkey$
print mouseb()
print mouseb
a$=inkey$
print mouseb(a$)

Description

The mouseb-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function. If a mousebutton has been pressed, the mouseb-function returns the number (1,2 or 3) of the mousebutton, when it is pressed and returns its negative (-1,-2 or -3), when it is released.

The mouseb-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mouseb is called without any arguments, it returns the values from the last call to inkey$, which are stored implicitly and internally by yabasic.

Note

Note however, that the value returned by the mouseb-function does not reflect the current state of the mousebuttons. It rather extracts the information from the string passed as an argument (or from the last call to the inkey$-function, if no argument is passed). So the value returned by mouseb reflects the state of the mousebuttons at the time the inkey$-function has been called; as opposed to the time the mouseb-function is called.

Example

open window 200,200
clear screen
print "Please draw lines; press (and keep it pressed)" 
print "the left mousebutton for the starting point,"
print "release it for the end-point."
do
  if (mouseb(release$)=1) press$=release$
  release$=inkey$
  if (mouseb(release$)=-1) then
    line mousex(press$),mousey(press$) to mousex(release$),mousey(release$)
  endif
loop
          

This is a maybe the most simplistic line-drawing program possible, catching presses as well as releases of the first mousebutton.


Name

mousemod — return the state of the modifier keys during a mouseclick

Synopsis

inkey$
print mousemod()
print mousemod
a$=inkey$
print mousemod(a$)

Description

The mousemod-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function if a mousebutton has been pressed. It returns the state of the keyboard modifiers (shift, ctrl or alt): If the shift-key is pressed, mousemod returns 1, for the alt-key 2 and for the ctrl-key 4. If more than one key is pressed, the sum of these values is returned, e.g. mousemod returns 5, if shift and ctrl are pressed simultaneously.

The mousemod-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mousemod is called without any arguments, it returns the values from the last call to inkey$ (which are stored implicitly and internally by yabasic).

Note

Please see also the Note within the mouseb-function.

Example

open window 200,200
clear screen
do
  a$=inkey$
  if (left$(a$,2)="MB") then
    x=mousex(a$)
    y=mousey(a$)
    if (mousemod(a$)=0) then
      circle x,y,20
    else
      fill circle x,y,20
    endif
  endif
loop
          

This program draws a circle, whenever a mousebutton is pressed; the circles are filled, when any modifier is pressed, and empty if not.

See also

inkey$, mousex, mousey and mouseb


Name

mousex — return the x-position of a mouseclick

Synopsis

inkey$
print mousex()
print mousex
a$=inkey$
print mousex(a$)

Description

The mousex-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function; It returns the x-position of the mouse as encoded within its argument.

The mousex-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mousex is called without any arguments, it returns the values from the last call to inkey$ (which are stored implicitly and internally by yabasic).

Note

Please see also the Note within the mouseb-function.

Example

open window 200,200
clear screen
do
  a$=inkey$
  if (left$(a$,2)="MB") then
    line mousex,0 to mousex,200
  endif
loop
          

This example draws vertical lines at the position, where the mousebutton has been pressed.


Name

mousey — return the y-position of a mouseclick

Synopsis

inkey$
print mousey()
print mousey
a$=inkey$
print mousey(a$)

Description

The mousey-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function. mousey returns the y-position of the mouse as encoded within its argument.

The mousey-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mousey is called without any arguments, it returns the values from the last call to inkey$ (which are stored implicitly and internally by yabasic).

Note

Please see also the Note within the mouseb-function.

Example

open window 200,200
clear screen
do
  a$=inkey$
  if (left$(a$,2)="MB") then
    line 0,mousey to 200,mousey
  endif
loop
          

This example draws horizontal lines at the position, where the mousebutton has been pressed.

N

new curve — start a new curve, that will be drawn with the line-command
next — mark the end of a for loop
not — negate an expression; can be written as !
numparams — return the number of parameters, that have been passed to a subroutine

Name

new curve — start a new curve, that will be drawn with the line-command

Synopsis

new curve
line to x,y

Description

The new curve-function starts a new sequence of lines, that will be drawn by repeated line to-commands.

Example

open window 200,200
ellipse(100,50,30,60)
ellipse(150,100,60,30)
sub ellipse(x,y,xr,yr)
  new curve
  for a=0 to 2*pi step 0.2
    line to x+xr*cos(a),y+yr*sin(a)
  next a
  close curve
end sub
  
          

This example defines a subroutine ellipse that draws an ellipse. Within this subroutine, the ellipse is drawn as a sequence of lines started with the new curve command and closed with close curve.

See also

line, close curve


Name

next — mark the end of a for loop

Synopsis

for a=1 to 10
next a

Description

The next-keyword marks the end of a for-loop. All statements up to the next-keyword will be repeated as specified with the for-clause. Note, that the name of the variable is optional; so instead of next a you may write next.

Example

for a=1 to 300000
  for b=1 to 21+20*sin(pi*a/20)
    print "*";
  next b
  print
  sleep 0.1
next a
          

This example simply plots a sine-curve until you fall asleep.

See also

for


Name

not — negate an expression; can be written as !

Synopsis

if (not a<b) then …
bad=!okay

Description

The keyword not (or ! for short) is mostly used within conditions (e.g. within if- or while-statements). There it is employed to negate the condition or expression (i.e. turn TRUE into FALSE and vice versa)

However not can be used within arithmetic calculations too., simply because there is no difference between arithmetic and logical expressions.

Example

input "Please enter three ascending numbers: " a,b,c
if (not (a<b and b<c)) error " the numbers you have entered are not ascending ..."
          

See also

and,or


Name

numparams — return the number of parameters, that have been passed to a subroutine

Synopsis

sub foo(a,b,c)
  if (numparams=1) …
  …
end sub

Description

Within a subroutine the local variable numparam or numparams contains the number of parameters, that have been passed to the subroutine. This information can be useful, because the subroutine may have been called with fewer parameters than actually declared. The number of values that actually have been passed while calling the subroutine, can be found in numparams.

Note, that arguments which are used in the definition of a subroutine but are left out during a call to it (thereby reducing the value of numparams) receive a value of 0 or "" (empty string) respectively.

Example

a$="123456789"
print part$(a$,4)
print part$(a$,3,7)

sub part$(a$,f,t)
  if (numparams=2) then
    return mid$(a$,f)
  else 
    return mid$(a$,f,t-f+1)
  end if
end sub
          

When you run this example, it will print 456789 and 34567. Take a look at the subroutine part$, which returns part of the string which has been passed as an argument. If (besides the string) two numbers are passed, they define the starting and end position of the substring, that will be returned. However, if only one number is passed, the rest of the string, starting from this position will be returned. Each of these cases is recognized with the help of the numparams variable.

See also

sub

O

on gosub — jump to one of multiple gosub-targets
on goto — jump to one of many goto-targets
on interrupt — change reaction on keyboard interrupts
open — open a file
open printer — open printer for printing graphics
open window — open a graphic window
logical or — logical or, used in conditions
or() — arithmetic or, used for bit-operations

Name

on goto — jump to one of multiple gosub-targets

Synopsis

on a gosub foo,bar,baz
  …
label foo
  …
return

label bar
  …
return

label baz
  …
return

Description

The on gosub statement uses its numeric argument (the one between on and gosub) to select an element from the list of labels, which follows after the gosub-keyword: If the number is 1, the program does a gosub to the first label; if the number is 2, to the second and, so on. if the number is zero or less, the program continues at the position of the first label; if the number is larger than the total count of labels, the execution continues at the position of the last label; i.e. the first and last label in the list constitute some kind of fallback-slot.

Note, that the on gosub-command can no longer be considered state of the art; people (not me !) may even start to mock you, if you use it.

Example

do
  print "Please enter a number between 1 and 3: "
  print
  input "Your choice " a
  on a gosub bad,one,two,three,bad
loop

label bad
  print "No. Please between 1 and 3"
return

label one
  print "one"
return

label two
  print "two"
return

label three
  print "three"
return
          

Note, how invalid input (a number less than 1, or larger than 3) is automatically detected.


Name

on goto — jump to one of many goto-targets

Synopsis

on a goto foo,bar,baz
  …
label foo
  …
label bar
  …
label baz
  …

Description

The on goto statement uses its numeric argument (the one between on and goto to select an element from the list of labels, which follows after the goto-keyword: If the number is 1, the execution continues at the first label; if the number is 2, at the second, and so on. if the number is zero or less, the program continues at the position of the first label; if the number is larger than the total count of labels, the execution continues at the position of the last label; i.e. the first and last label in the list constitute some kind of fallback-slot.

Note, that (unlike the goto-command) the on goto-command can no longer be considered state of the art; people may (not me !) even start to mock you, if you use it.

Example

label over
print "Please Select one of these choices: "
print
print "  1 -- show time"
print "  2 -- show date"
print "  3 -- exit"
print
input "Your choice " a
on a goto over,show_time,show_date,terminate,over

label show_time
  print time$()
goto over

label show_date
  print date$()
goto over

label terminate
exit
          

Note, how invalid input (a number less than 1, or larger than 3) is automatically detected; in such a case the question is simply issued again.


Name

on interrupt — change reaction on keyboard interrupts

Synopsis

on interrupt break
…
on interrupt continue

Description

With the on interrupt-command you may change the way, how yabasic reacts on a keyboard interrupt; it comes in two variants: on interrupt break and on interrupt continue. A keyboard interrupt is produced, if you press ctrl-C on your keyboard; normally (and certainly after you have called on interrupt break), yabasic will terminate with an error message. However after the command on interrupt continue yabasic ignores any keyboard interrupt. This may be useful, if you do not want your program being interruptible during certain critical operations (e.g. updating of files).

Example

print "Please stand by while writing a file with random data ..."
on interrupt continue
open "random.data" for writing as #1
for a=1 to 100
  print #1 ran(100)
  print a," percent done."
  sleep 1
next a
close #1
on interrupt continue
          

This program writes a file with 100 random numbers. The on interrupt continue command insures, that the program will not be terminated on a keyboard interrupt and the file will be written entirely in any case. The sleep-command just stretches the process artificially to give you a chance to try a ctrl-C.

See also

There is no related command.


Name

open — open a file

Synopsis

open a,"file","r"
open #a,"file","w"
open #a,printer
open "file" for reading as a
open "file" for writing as #a
a=open("file")
a=open("file","r")
if (open(a,"file")) …
if (open(a,"file","w")) …

Description

The open-command opens a file for reading or writing or a printer for printing text. open comes in a wide variety of ways; it requires these arguments:

filenumber

In the synopsis this is a or #a. In yabasic each file is associated with a number between 1 and a maximum value, which depends on the operating system. For historical reasons the filenumber can be preceded by a hash ('#'). Note, that specifying a filenumber is optional; if it is omitted, the open-function will return a filenumber, which should then be stored in a variable for later reference. This filenumber can be a simple number or an arbitrary complex arithmetic expression, in which case braces might be necessary to save yabasic from getting confused.

filename

In the synopsis above this is "file". This string specifies the name of the file to open (note the important caveat on specifying these filenames).

accessmode

In the synopsis this is "r", "w", for reading or for writing. This string or clause specifies the mode in which the file is opened; it may be one of:

"r"

Open the file for reading (may also be written as for reading). If the file does not exist, the command will fail. This mode is the default, i.e. if no mode is specified with the open-command, the file will be opened with this mode.

"w"

Open the file for writing (may also be written as for writing). If the file does not exist, it will be created.

"a"

Open the file for appending, i.e. what you write to the file will be appended after its initial contents. If the file does not exist, it will be created.

"b"

This letter may not appear alone, but may be combined with the other letters (e.g. "rb") to open a file in binary mode (as opposed to text mode).

As you may see from the synopsis, the open-command may either be called as a command (without braces) or as a function (with braces). If called as a function, it will return the filenumber or zero if the operation fails. Therefore the open-function may be used within the condition of an if-statement.

If the open-command fails, you may use peek("error") to retrieve the exact nature of the error.

Furthermore note, that there is another, somewhat separate usage of the open-command; if you specify the bareword printer instead of a filename, the command opens a printer for printing text. Every text (and only text) you print to this file will appear on your printer. Note, that this is very different from printing graphics, as can be done with open printer.

Example

open "foo.bar" for writing as #1
print #1 "Hallo !"
close #1
if (not open(1,"foo.bar")) error "Could not open 'foo.bar' for reading"
while(not eof(1)) 
  line input #1 a$
  print a$
wend
          

This example simply opens the file foo.bar, writes a single line, reopens it and reads its contents again.


Name

open printer — open printer for printing graphics

Synopsis

open printer
open printer "file"

Description

The open printer-command opens a printer for printing graphics. The command requires, that a graphic window has been opened before. Everything that is drawn into this window will then be sent to the printer too.

A new piece of paper may be started with the clear window-command; the final (or only) page will appear after the close printer-command.

Note, that you may specify a filename with open printer; in that case the printout will be sent to a filename instead to a printer. Your program or the user will be responsible for sending this file to the printer afterwards.

If you use yabasic under Unix, you will need a postscript printer (because yabasic produces postscript output). Alternatively you may use ghostscript to transform the postscript file into a form suitable for your printer; but that is beyond the responsibility of yabasic.

Example

open window 200,200
open printer
line 0,0 to 200,200
text 100,100,"Hallo"
close window
close printer
          

This example will open a window, draw a line and print some text within; everything will appear on your printer too.


Name

open window — open a graphic window

Synopsis

open window x,y
open window x,y,"font"

Description

The open window-command opens a window of the specified size. Only one window can be opened at any given moment of time.

An optional third argument specifies a font to be used for any text within the window. It can however be changed with any subsequent text-command.

Example

for a=200 to 400 step 10
  open window a,a
  for b=0 to a
    line 0,b to a,b
    line b,0 to b,a
  sleep 0.1
  close window
next a
          

Name

or — logical or, used in conditions

Synopsis

if (a or b) …
while (a or b) …

Description

Used in conditions (e.g within if or while) to join two expressions. Returns true, if either its left or its right or both arguments are true; returns false otherwise.

Example

input "Please enter a number"
if (a>9 or a<1) print "a is not between 1 and 9"
          

See also

and,not


Name

or() — arithmetic or, used for bit-operations

Synopsis

x=or(a,b)

Description

Used to compute the bitwise or of both its argument. Both arguments are treated as binary numbers (i.e. a series of 0 and 1); a bit of the resulting value will then be 1, if any of its arguments has 1 at this position in their binary representation.

Note, that both arguments are silently converted to integer values and that negative numbers have their own binary representation and may lead to unexpected results when passed to or.

Example

print or(14,3)
          

This will print 15. This result is clear, if you note, that the binary representation of 14 and 3 are 1110 and 0011 respectively; this will yield 1111 in binary representation or 15 as decimal.

See also

oand, eor and not

P

pause — pause, sleep, wait for the specified number of seconds
peek — retrieve various internal information
peek$ — retrieve various internal string-information
pi — a constant with the value 3.14159
poke — change selected internals of yabasic
print — Write to terminal or file
print color — print with color
print colour — see print color
putbit — draw a rectangle of pixels encoded within a string into the graphics window
putscreen — draw a rectangle of characters into the text terminal

Name

pause — pause, sleep, wait for the specified number of seconds

Synopsis

pause 5

Description

The pause-command has many different names: You may write pause, sleep or wait interchangeably; whatever you write, yabasic will always do exactly the same.

The pause-command will simply wait for the specified number of seconds. This may be a fractional number, so you may well wait less than a second. However, if you try to pause for a smaller and smaller interval (e.g. 0.1 seconds, 0.01 seconds, 0.001 seconds and so on) you will find that at some point yabasic will not wait at all. The minimal interval that can be waited depends on the system (Unix, Windows) you are using.

The pause-command cannot be interrupted. However, sometimes you may want the wait to be interruptible by simply pressing a key on the keyboard. In such cases you should consider using the inkey$-function, with a number of seconds as an argument).

Example

deg=0
do
  maxx=44+40*sin(deg)
  for x=1 to maxx
    print "*";
  next x
  pause 0.1+(maxx*maxx/(4*84*84))
  print
  deg=deg+0.1
loop
          

This example draws a sine-curve; due to the pause-statement the speed of drawing varies in the same way as the speed of a ball might vary, if it would roll along this curve under the influence of gravity.

See also

sleep, wait


Name

peek — retrieve various internal information

Synopsis

print peek("foo")
a=peek(#1)

Description

The peek-function has many different and mostly unrelated uses. It is a kind of grab-bag for retrieving all kinds of numerical information, internal to yabasic. The meaning of the numbers returned be the peek-function depends on the string or number passed as an argument.

peek always returns a number, however the closely related peek$-function exists, which may be used to retrieve string information from among the internals of yabasic. Finally note, that some of the values which are retrieved with peek may even be changed, using the poke-function.

There are two variants of the peek-function: One expects an integer, positive number and is described within the first entry of the list below. The other variant expects one of a well defined set of strings as described in the second and all the following entries of the list below.

peek(a)

Read a single character from the file a (which must be open of course).

peek("argument")

Return the number of arguments, that have been passed to yabasic at invocation time. E.g. if yabasic has been called like this: yabasic foo.yab bar baz, then peek("argument") will return 2. This is because foo.yab is treated as the name of the program to run, whereas bar and baz are considered arguments to the program, which are passed on the command line. Note, that for windows-users, who tend to click on the icon (as opposed to starting yabasic on the command line), this peekwill mostly return 0.

The function peek("argument") can be written as peek("arguments") too.

You will want to check out the corresponding function peek$("argument") to actually retrieve the arguments. Note, that each call to peek$("argument") reduces the number returned by peek("argument").

peek("error")

Return a number specifying the nature of the last error in an open- or seek-statement. Normally an error within an open-statement immediately terminates your program with an appropriate error-message, so there is no chance and no need to learn more about the nature of the error. However, if you use open as a condition (e.g. if (open(#1,"foo")) …) the outcome (success or failure) of the open-operation will determine, if the condition evaluates to true or false. If now such an operation fails, your program will not be terminated and you might want to learn the reason for failure. This reason will be returned by peek("error") (as a number) or by peek$("error") (as a string)

The table below shows the various error codes; the value returned by peek$("error") explains the nature of the error. Note, that the codes 10,11 and 12 refer to the seek-command.

Table 6.1. Error codes

peek("error")peek$("error")Explanation
2Stream already in useDo not try to open one and the same filenumber twice; rather close it first.
3'x' is not a valid filemodeThe optional filemode argument, which may be passed to the open-function, has an invalid value
4could not open 'foo'The open-call did not work, no further explanation is available.
5reached maximum number of open filesYou have opened more files than your operating system permits.
6cannot open printer: already printing graphicsThe commands open printer and open #1,printer both open a printer (refer to their description for the difference). However, only one can be active at a time; if you try to do both at the same time, you will receive this error.
7could not open line printerWell, it simply did not work.
9invalid stream numberAn attempt to use an invalid (e.g. negative) stream number; example: open(-1,"foo")
10could not position stream x to byte yseek did not work.
11stream x not openYou have tried to seek within a stream, that has not been opened yet.
12seek mode 'x' is none of begin,end,hereThe argument, which has been passed to seek is invalid.

peek("fontheight")

Return the height of the font used within the graphic window. If none is open, this peek will return the height of the last font used or 10, if no window has been opened yet.

peek("screenheight")

Return the height in characters of the window, wherein yabasic runs. If you have not called clear screen yet, this peekwill return 0, regardless of the size of your terminal.

peek("screenwidth")

Return the width in characters of the window, wherein yabasic runs. If you have not called clear screen yet, this peekwill return 0, regardless of the size of your terminal.

peek("secondsrunning")

Return the number of seconds that have passed since the start of yabasic.

peek("version")

Return the version number of yabasic, e.g. 2.77. See also the related peek$("version"), which returns nearly the same information (plus the patchlevel) as a string, e.g. "2.77.1".

peek("winheight")

Return the height of the graphic-window in pixels. If none is open, this peek will return the height of the last window opened or 100, if none has been opened yet.

peek("winwidth")

Return the width of the graphic-window in pixels. If none is open, this peek will return the width of the last window opened or 100, if none has been opened yet.

peek("isbound")

Return true, if the executing yabasic-program is part of a standalone program; see the section about creating a standalone-program for details.

peek("version")

Return the version number of yabasic (e.g. 2.72).

Example

open "foo" for reading as #1
open "bar" for writing as #2
while(not eof(#1))
  poke #2,chr$(peek(#1));
wend
          

This program will copy the file foo byte by byte to bar.

Note, that each peek does something entirely different, and only one has been demonstrated above. Therefore you need to make up examples yourself for all the other peeks.

See also

peek$, poke, open


Name

peek$ — retrieve various internal string-information

Synopsis

print peek$("foo")

Description

The peek$-function has many different and unrelated uses. It is a kind of grab-bag for retrieving all kinds of string information, internal to yabasic; the exact nature of the strings returned be the peek$-function depends on the string passed as an argument.

peek$ always returns a string, however the closely related peek-function exists, which may be used to retrieve numerical information from among the internals of yabasic. Finally note, that some of the values which are retrieved with peek$ may even be changed, using the poke-function.

The following list shows all possible arguments to peek$:

peek$("infolevel")

Returns either "debug", "note", "warning", "error" or "fatal", depending on the current infolevel. This value can be specified with an option (either under windows or unix) on the command line or changed during the execution of the program with the corresponding poke; however, normally only the author of yabasic (me !) would want to change this from its default value "warning".

peek$("textalign")

Returns one of nine possible strings, specifying the default alignment of text within the graphics-window. The alignment-string returned by this peek describes, how the text-command aligns its string-argument with respect to the coordinates supplied. However, this value does not apply, if the text-command explicitly specifies an alignment. Each of these strings is two characters long. The first character specifies the horizontal alignment and can be either l, r or c, which stand for left, right or center. The second character specifies the vertical alignment and can be one of t, b or c, which stand for top, bottom or center respectively.

You may change this value with the corresponding command poke "textalign",…; the initial value is lb, which means the top of the left and the top edge if the text will be aligned with the coordinates, that are specified within the text-command.

peek$("windoworigin")

This peek returns a two character string, which specifies the position of the origin of the coordinate system of the window; this string might be changed with the corresponding command poke "windoworigin",x,y or specified as the argument of the origin command; see there for a detailed description of the string, which might be returned by this peek.

peek$("program_name")

Returns the name of the yabasic-program that is currently executing; typically this is the name, that you have specified on the commandline, but without any path-components. So this this peek$ might return foo.yab; see also peek$("program_file_name") for related information.

peek$("program_file_name")

Returns the full file-name of the yabasic-program that is currently executing; typically this is the name, that you have specified on the commandline, including any path-components. For the special case, that you have bound your yabasic-program with the interpreter to a single standalone executable, this peek$ will return its name. See also peek$("program_name") for related information.

peek$("error")

Return a string describing the nature of the last error in an open- or seek-statement. See the corresponding peek("error") for a detailed description.

peek$("library")

Return the name of the library, this statement is contained in. See the import-command for a detailed description or for more about libraries.

peek$("version")

Version of yabasic as a string; e.g. 2.77.1. See also the related peek("version"), which returns nearly the same information (minus the patchlevel) as a number, e.g. 2.77.

peek$("os")

This peek returns the name of the operating system, where your program executes. This can be either windows or unix.

peek$("font")

Return the name of the font, which is used for text within the graphic window; this value can be specified as the third argument to the open window-command.

peek$("env","NAME")

Return the environment variable specified by NAME (which may be any string expression). Which kind of environment variables are available on your system depends, as well as their meaning, on your system; however typing env on the command line will produce a list (for Windows and Unix alike). Note, that peek$("env",...) can be written as peek$("environment",...) too.

peek$("argument")

Return one of the arguments, that have been passed to yabasic at invocation time (the next call will return the the second argument, and so on). E.g. if yabasic has been called like this: yabasic foo.yab bar baz, then the first call to peek$("argument") will return bar. This is because foo.yab is treated as the name of the program to run, whereas bar and baz are considered arguments to this program, which are passed on the command line. The second call to peek$("argument") will return baz. Note, that for windows-users, who tend to click on the icon (as opposed to starting yabasic on the command line), this peekwill mostly return the empty string.

Note, that peek$("argument") can be written as peek$("arguments").

Finally you will want to check out the corresponding function peek("argument").

Example

print "You have supplied these arguments: "
while(peek("argument"))
  print peek("argument"),peek$("argument")
wend
          

If you save this program in a file foo.yab and execute it via yabasic t.yab a b c (for windows users: please use the command line for this), your will get this output:

3a
2b
1c

See also

peek, poke, open


Name

pi — a constant with the value 3.14159

Synopsis

print pi

Description

pi is 3.14159265359 (well at least for yabasic); do not try to assign to pi (e.g. pi=22/7) this would not only be mathematically dubious, but would also result in a syntax error.

Example

for a=0 to 180
  print "The sine of ",a," degrees is ",sin(a*pi/180)
next a
          

This program uses pi to transform an angle from degrees into radians.

See also

euler


Name

poke — change selected internals of yabasic

Synopsis

poke "foo","bar"
poke "foo",baz
poke #a,"bar"
poke #a,baz

Description

The poke-command may be used to change details of yabasic's behaviour. Like the related function peek, poke does many different things, depending on the arguments supplied.

Here are the different things you can do with poke:

poke 5,a

Write the given byte (a in the example above) to the specified stream (5#a in the example).

See also the related function function peek(1).

poke "dump","filename.dump"

Dump the internal form of your basic-program to the named file; this is only useful for debugging the internals of yabasic itself.

The second argument ("filename.dump" in the example) should be the name of a file, that gets overwritten with the dump, please be careful.

poke "fontheight",12

This poke changes the default fontheight. This can only have an effect, if the fonts given in the commands text or open window do not specify a fontheight on their own.

poke "font","fontname"

This poke specifies the default font. This can only have an effect, if you do not supply a fontname with the commands text or open window.

poke "infolevel","debug"

Change the amount of internal information, that yabasic outputs during execution.

The second argument can be either "debug", "note", "warning", "error" or "fatal". However, normally you will not want to change this from its default value "warning".

See also the related peek$("infolevel").

poke "random_seed",42

Set the seed for the random number generator; if you do this, the ran-function will return the same sequence of numbers every time the program is started.

poke "stdout","some text"

Send the given text to standard output. Normally one would use print for this purpose; however, sending e.g. control characters to your terminal is easier with this poke.

poke "textalign","cc"

This poke changes the default alignment of text with respect to the coordinates supplied within the text-command. However, this value does not apply, if the text-command explicitly specifies an alignment. The second argument ("cc" in the example) must always be two characters long; the first character can be one of l (left), r (right) or c (center); the second character can be either t (top), b (bottom) or c (center); see the corresponding peek$("textalign") for a detailed description of this argument.

poke "windoworigin","lt"

This poke moves the origin of the coordinate system of the window to the specified position. The second argument ("lt" in the example) must always be two characters long; the first character can be one of l (left), r (right) or c (center); the second character can be either t (top), b (bottom) or c (center). Together those two characters specify the new position of the coordinate-origin. See the corresponding peek$("windoworigin") for a more in depth description of this argument.

Example

print "Hello, now you will see, how much work"
print "a simple for-loop involves ..."
input "Please press return " a$
poke "infolevel","debug"
for a=1 to 10:next a
          

This example only demonstrates one of the many pokes, which are described above: The program switches the infolevel to debug, which makes yabasic produce a lot of debug-messages during the subsequent for-loop.

See also

peek, peek$


Name

print — Write to terminal or file

Synopsis

print "foo",a$,b
print "foo",a$,b;
print #a "foo",a$
print #a "foo",a$;
print foo using "##.###"
print reverse "foo"
print at(10,10) a$,b
print @(10,10) a$,b
print color("red","blue") a$,b
print color("magenta") a$,b
print color("green","yellow") at(5,5) a$,b

Description

The print-statement outputs strings or characters, either to your terminal (also known as console) or to an open file.

To understand all those uses of the print-statement, let's go through the various lines in the synopsis above:

print "foo",a$,b

Print the string foo as well as the contents of the variables a$ and b onto the screen, silently adding a newline.

print "foo",a$,b;

(Note the trailing semicolon !) This statement does the same as the one above; only the implicit newline is skipped, which means that the next print-statement will append seamlessly.

print #a "foo",a$

This is the way to write to files. The file with the number a must be open already, an implicit newline is added. Note the file-number #a, which starts with a hash ('#') amd is separated from the rest of the statement by a space only. The file-number (contained in the variable a) must have been returned by a previous open-statement (e.g. a=open("bar")).

print #a "foo",a$;

The same as above, but without the implicit newline.

print foo using "##.###"

Print the number foo with as many digits before and after the decimal dot as given by the number of '#'-signs. See the entries for using and str$ for a detailed description of this format.

print reverse "foo"

As all the print-variants to follow, this form of the print-statement can only be issued after clear screen has been called. The strings and numbers after the reverse-clause are simply printed inverse (compared to the normal print-statement).

print at(10,10) a$,b

Print at the specified (x,y)-position. This is only allowed after clear screen has been called. You may want to query peek$("screenwidth") or peek$("screenheight") to learn the actual size of your screen. You may add a semicolon to suppress the implicit newline.

print @(10,10) a$,b

This is exactly the same as above, however, at may be written as @.

print color("red","blue") at(5,5) a$,b

Print with the specified fore- ("red") and background ("blue") color (or colour). The possible values are "black", "white", "red", "blue", "green", "yellow", "cyan" or "magenta". Again, you need to call clear screen first and add a semicolon if you want to suppress the implicit newline.

print color("magenta") a$,b

You may specify the foreground color only.

print color("green","yellow") a$,b

A color and a position (in this sequence, not the other way around) may be specified at once.

Example

clear screen
columns=peek("screenwidth")
lines=peek("screenheight")
dim col$(7)
for a=0 to 7:read col$(a):next a
data "black","white","red","blue","green","yellow","cyan","magenta"

for a=0 to 2*pi step 0.1
  print colour(col$(mod(i,8))) at(columns*(0.8*sin(a)+0.9)/2,lines*(0.8*cos(a)+0.9)/2) "*"
  i=i+1
next a
          

This example draws a colored ellipse within the text window.


Name

print color — print with color

Synopsis

print color(fore$) text$
print color(fore$,back$) text$

Description

Not a separate command, but part of the print-command; may be included just after print and can only be issued after clear screen has been executed.

color() takes one or two string-arguments, specifying the color of the text and (optionally) the background.

The one or two strings passed to color() can be one of these: "black", "white", "red", "blue", "green", "yellow", "cyan" and "magenta" (which can be abbreviated as "bla", "whi", "red", "blu", "gre", "yel", "cya" and "mag" respectively).

color() can only be used, if clear scren has been issued at least once.

Note, that color() can be written as colour() too.

Example

clear screen
dim col$(7):for a=0 to 7:read col$(a):next a
do
  print color(col$(ran(7)),col$(ran(7))) " Hallo ";
  pause 0.01
loop
data "black","white","red","blue"
data "green","yellow","cyan","magenta"
          

This prints the word " Hallo " in all colors across your screen.


Name

print colour — see print color

Synopsis

print colour(fore$) text$
print colour(fore$,back$) text$

See also

color


Name

putbit — draw a rectangle of pixels encoded within a string into the graphics window

Synopsis

open window 200,200
…
a$=getbit(20,20,50,50)
…
putbit a$,30,30
putbit a$ to 30,30
putbit a$,30,30,"or"

Description

The putbit-command is the counterpart of the getbit$-function. putbit requires a string as returned by the getbit-function. Such a string contains a rectangle from the graphic window; the putbit-function puts such a rectangular region back into the graphic-window.

Note, that the putbit-command currently accepts a fourth argument. However only the string value "or" is supported here. The effect is, that only those pixel, which are set in the string will be set in the graphic window. Those pixels, which are not set in the string, will not change in the window (as opposed to being cleared).

Example


c$="rgb 21,21:0000000000000000000000000000000000000000000000000000000000000032c80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c8c8ff000032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"

open window 200,200

do
  x=ran(220)-10
  y=ran(220)-10
  putbit c$,x,y,"transparent"
loop
          

This program uses a precanned string (containing the image of a blue circle with a yellow centre) and draws it repeatedly into the graphic-window. The mode "transparent" ensures, that no pixels will be cleared.

There are two possible values for the third argument of putbit. Both modes differ in the way, they replace (or not) any pixels from the window with pixels from the bitmap having the background colour.

transparent or t

With this mode the pixels from the window will be kept, if the bitmap contains pixels with background colour at this position; i.e. the bitmap is transparent

solid or s

With this mode the pixels from the window will be overpainted with the pixels from the bitmap in any case; i.e. the bitmap is solid

If you omit this argument, the default transparent applies.


Name

putscreen — draw a rectangle of characters into the text terminal

Synopsis

clear screen
…
a$=getscreen$(5,5,10,10)
…
putscreen a$,7,7

Description

The putscreen-command is the counterpart of the getscreen$-function. putscreen requires a string as returned by the getscreen-function. Such a string contains a rectangular detail from the terminal; the putscreen-function puts such a region back into the terminal-window.

Note, that clear screen must have been called before.

Example

clear screen
for a=1 to 200
  print color("red") "Hallo !"; 
  print color("blue") "Welt !";
next a
r$=getscreen$(0,0,20,20)
for x=0 to 60
  putscreen r$,x,0
  sleep 0.1
next x
          

This example prints the string "Hallo !Welt !" all over the screen and then moves a rectangle from one side to the other.

R

ran() — return a random number
read — read data from data-statements
rectangle — draw a rectangle
redim — create an array prior to its first use. A synonym for dim
rem — start a comment
repeat — start a repeat-loop
restore — reposition the data-pointer
return — return from a subroutine or a gosub
reverse — print reverse (background and foreground colors exchanged)
right$() — return (or change) the right end of a string
rinstr() — find the rightmost occurrence of one string within the other
rtrim$() — trim spaces at the right end of a string

Name

ran() — return a random number

Synopsis

print ran()
x=ran(y)

Description

The ran-function returns a random number. If no argument is given, the number returned is in the range from 0 to 1; where only 0 is a possible value; 1 will never be returned. If an argument is supplied, the number returned will be in the range from 0 up to this argument, whereas this argument itself is not a possible return value. Regardless of the range, ran is guaranteed to have exactly 2**30 different return values.

If you call ran multiple times during your program, the sequence of random numbers will be different each time you invoke your program; however, if, e.g. for testing you prefer to always have the same sequence of random numbers you may issue poke "random_seed",123.

Example

clear screen
c=peek("screenwidth")-1
l=peek("screenheight")

dim col$(8)
for a=0 to 7:read col$(a):next a
data "black","white","red","blue","green","yellow","cyan","magenta"

do
  x=ran(c)
  y=l-ran(l*exp(-32*((x/c-1/2)**2)))
  i=i+1
  print color(col$(mod(i,8))) at(x,y) "*";
loop
          

This example will print a colored bell-curve.

See also

int


Name

read — read data from data-statements

Synopsis

read a$,a
…
data "Hello !",7

Description

The read-statement retrieves literal data, which is stored within data-statements elsewhere in your program.

Example

read num
dim col$(num)
for a=1 to num:read col$(a):next a
clear screen
print "These are the colours known to yabasic:\n"
for a=1 to num
  print colour(col$(a)) col$(a)
next a

data 8,"black","white","red","blue"
data "green","yellow","cyan","magenta"
          

This program prints the names of the colors known to yabasic in those very colors.

See also

data, restore


Name

rectangle — draw a rectangle

Synopsis

open window 100,100
rectangle 10,10 to 90,90
rectangle 20,20,80,80
rect 20,20,80,80
box 30,30,70,70
clear rectangle 30,30,70,70
fill rectangle 40,40,60,60
clear fill rectangle 60,60,40,40

Description

The rectangle-command (also known as box or rect, for short) draws a rectangle; it accepts four parameters: The x- and y-coordinates of two facing corners of the rectangle. With the optional clauses clear and fill (which may appear together and in any sequence) the rectangle can be cleared and filled respectively.

Example

open window 200,200
c=1
do 
  for phi=0 to pi step 0.1
    if (c) then 
      rectangle 100+100*sin(phi),100+100*cos(phi) to 100-100*sin(phi),100-100*cos(phi)
    else 
      clear rectangle 100+100*sin(phi),100+100*cos(phi) to 100-100*sin(phi),100-100*cos(phi)
    endif
    sleep 0.1
  next phi
  c=not c
loop
          

This example draws a nice animated pattern; watch it for a couple of hours, to see how it develops.


Name

redim — create an array prior to its first use. A synonym for dim

Synopsis

See the dim-command.

Description

The redim-command does exactly the same as the dim-command; it is just a synonym. redim has been around in older versions of basic (not even yabasic) for many years; therefore it is supported in yabasic for compatibility reasons.

Please refer to the entry for the dim-command for further information.


Name

rem — start a comment

Synopsis

rem  Hey, this is a comment
#    this is a comment too
// even this
print "Not a comment" #    This is an error !!
print "Not a comment"://   But this is again a valid comment
print "Not a comment" //   even this.
print "Not a comment" rem  and this !

Description

rem introduces a comment (like # or //), that extends up to the end of the line.

Those comments do not even need a colon (':') in front of them; they (rem, # and //) all behave alike except for #, which may only appear at the very beginning of a line; therefore the fourth example in the synopsis above (print "Not a comment" # This is an error !!) is indeed an error.

Note, that rem is an abbreviation for remark. remark however is not a valid command in yabasic.

Finally note, that a comment introduced with '#' may have a special meaning under unix; see the entry for # for details.

Example

#
rem   comments on data structures
#     are more useful than
//    comments on algorithms.
rem
          

This program does nothing, but in a splendid and well commented way.

See also

#, //


Name

repeat — start a repeat-loop

Synopsis

repeat 
  …
until (…)

Description

The repeat-loop executes all the statements up to the final until-keyword over and over. The loop is executed as long as the condition, which is specified with the until-clause, becomes true. By construction, the statements within the loop are executed at least once.

Example

x=0
clear screen
print "This program will print the numbers from 1 to 10"
repeat
  x=x+1
  print x
  print "Press any key for the next number, or 'q' to quit"
  if (inkey$="q") break
until(x=10)
          

This program is pretty much useless, but self-explanatory.

See also

until, break, while, do


Name

restore — reposition the data-pointer

Synopsis

read a,b,c,d,e,f
restore
read g,h,i
restore foo
data 1,2,3
label foo
data 4,5,6

Description

The restore-command may be used to reset the reading of data-statements, so that the next read-statement will read data from the first data-statement.

You may specify a label with the restore-command; in that case, the next read-statement will read data starting at the given label. If the label is omitted, reading data will begin with the first data-statement within your program.

Example

input "Which language (german/english) ? " l$
if (instr("german",l$)>0) then
  restore german
else
  restore english
endif

for a=1 to 3
  read x,x$
  print x,"=",x$
next a

label english
data 1,"one",2,"two",3,"three"
label german
data 1,"eins",2,"zwei",3,"drei"
          

This program asks to select one of those languages known to me (i.e. english or german) and then prints the numbers 1,2 and 3 and their textual equivalents in the chosen language.

See also

read, data, label


Name

return — return from a subroutine or a gosub

Synopsis

gosub foo
…
label foo
…
return

sub bar(baz)
  …
  return quertz
end sub

Description

The return-statement serves two different (albeit somewhat related) purposes. The probably more important use of return is to return control from within a subroutine to the place in your program, where the subroutine has been called. If the subroutine is declared to return a value, the return-statement might be accompanied by a string or number, which constitutes the return value of the subroutine.

However, even if the subroutine should return a value, the return-statement need not carry a value; in that case the subroutine will return 0 or the empty string (depending on the type of the subroutine). Moreover, feel free to place multiple return-statements within your subroutine; it's a nice way of controlling the flow of execution.

The second (but historically first) use of return is to return to the position, where a prior gosub has left off. In that case return may not carry a value.

Example

do
  read a$
  if (a$="") then
    print
    end
  endif
  print mark$(a$)," ";
loop

data "The","quick","brown","fox","jumped"
data "over","the","lazy","dog",""

sub mark$(a$)
  if (instr(lower$(a$),"q")) return upper$(a$)
  return a$
end sub
          

This example features a subroutine mark$, that returns its argument in upper case, if it contains the letter "q", or unchanged otherwise. In the test-text the word quick will end up being marked as QUICK.

The example above demonstrates return within subroutines; please see gosub for an example of how to use return in this context.

See also

sub, gosub


Name

reverse — print reverse (background and foreground colors exchanged)

Synopsis

clear screen
…
print reverse "foo"

Description

reverse may be used to print text in reverse. reverse is not a separate command, but part of the print-command; it may be included just after the print and can only be issued once that clear screen has been issued.

Example

clear screen

print "1 ";
c=3
do
  prim=true
  for a=2 to sqrt(c)
    if (frac(c/a)=0) then
      prim=false
      break
    endif
  next a
  if (prim) then
    print
    print reverse c;
  else
    print c;
  endif
  print " ";
  c=c+1
loop
          

This program prints numbers from 1 on and marks each prime number in reverse.


Name

right$() — return (or change) the right end of a string

Synopsis

print right$(a$,2)
right$(b$,2)="baz"

Description

The right$-function requires two arguments (a string and a number) and returns the part from the right end of the string, whose length is specified by its second argument. So, right$ simply returns the requested number of chars from the right end of the given string.

Note, that the right$-function can be assigned to, i.e. it may appear on the left hand side of an assignment. In this way it is possible to change a part of the variable used within the right$-function. Note, that that way the length of the string cannot be changed, i.e. characters might be overwritten, but not added. For an example see below.

Example

print "Please enter a length either in inch or centimeter"
print "please add 'in' or 'cm' to mark the unit."
input "Length: " a$
if (right$(a$,2)="in") then
   length=val(a$)*2.56
elsif (right$(a$,2)="cm") then
   length=val(a$)
else
   error "Invalid input: "+a$
endif
          

This program allows the user to enter a length qualified with a unit (either inch or centimeter).

This second example demonstrates the capability to assign to the right$-function.

a$="Heiho World !"
print a$
right$(a$,7)="dwarfs."
print a$

See also

right$ and mid$


Name

rinstr() — find the rightmost occurrence of one string within the other

Synopsis

pos=rinstr("Thequickbrownfox","equi")
pos=rinstr(a$,b$,x)

Description

The rinstr-function accepts two string-arguments and tries to find the second within the first. However, unlike the instr, the rinstr-function finds the rightmost (or last) occurrence of the string; whereas the instr-function finds the leftmost (or first) occurrence. In any case however, the position is counted from the left.

If you supply a third, numeric argument to the rinstr-function, it will be used as a starting point for the search. Therefore rinstr("abcdeabcdeabcde","e",8) will return 5, because the search for an "e" starts at position 8 and finds the first one at position 5.

Example

print rinstr("foofoofoobar","foo")
          

This simple example will print 7, because it finds the rightmost among the three occurrences of foo within the string. Note, that

print instr("foofoofoobar","foo")

would have printed 1.

See also

instr


Name

rtrim$() — trim spaces at the right end of a string

Synopsis

a$=rtrim$(b$)

Description

The rtrim$-function removes all whitespace from the right end of a string and returns the result.

Example

open 1,"foo"
dim lines$(100)
l=1
while(not eof(1))
  input #1 a$
  a$=rtrim$(a$)
  if (right$(line$,1)="\\") then
    line$=line$+" "+a$
  else
    lines$(l)=line$
    l=l+1
    line$=a$
  endif
end while
print "Read ",l," lines"
          

This example reads the file foo allowing for continuation lines, which are marked by a \, which appears as the last character on a line. For convenience whitespace at the right end of a line is trimmed with rtrim.

See also

ltrim$, trim$

S

screen — as clear screen clears the text window
seek() — change the position within an open file
sig() — return the sign of its argument
sin() — return the sine of its single argument
sleep — pause, sleep, wait for the specified number of seconds
split() — split a string into many strings
sqr() — compute the square of its argument
sqrt() — compute the square root of its argument
static — preserves the value of a variable between calls to a subroutine
step — specifies the increment step in a for-loop
str$() — convert a number into a string
sub — declare a user defined subroutine
switch — select one of many alternatives depending on a value
system$() — hand a statement over to your operating system and return its output
system() — hand a statement over to your operating system and return its exitcode

Name

screen — as clear screen clears the text window

Synopsis

clear screen

Description

The keyword screen appears only within the sequence clear screen; please see there for a description.

See also

clear screen


Name

seek() — change the position within an open file

Synopsis

open 1,"foo"
seek #1,q
seek #1,x,"begin"
seek #1,y,"end"
seek #1,z,"here"

Description

The seek-command changes the position, where the next input (or peek) statement will read from an open file. Usually files are read from the beginning to the end sequentially; however sometimes you may want to depart from this simple scheme. This can be done with the seek-command, allowing you to change the position, where the next piece of data will be read from the file.

seek accepts two or three arguments: The first one is the number of an already open file. The second one is the position where the next read from the file will start. The third argument is optional and specifies the the point from where the position (the second argument) will count. It can be one of:

begin

Count from the beginning of the file.

end

Count from the end of the file.

here

Count from the current position within the file.

Example

open #1,"count.dat","w"
for a=1 to 10
  print #1,"00000000";
  if (a<10) print #1,";";
next a

dim count(10)
do
  x=int(ran(10))
  i=i+1
  if (mod(i,1000)=0) print ".";
  count(x)=count(x)+1
  curr$=right$("00000000"+str$(count(x)),8)
  seek #1,9*x,"begin"
  print #1,curr$;
loop
          

This example increments randomly one of ten counters (in the array count()); however, the result is always kept and updated within the file count.dat, so even in case of an unexpected interrupt, the result will not be lost.

See also

tell, open, print, peek


Name

sig() — return the sign of its argument

Synopsis

a=sig(b)

Description

Return +1, -1 or 0, if the single argument is positive, negative or zero.

Example

clear screen
dim c$(3):c$(1)="red":c$(2)="white":c$(3)="green"
do
  num=ran(100)-50
  print color(c$(2+sig(num))) num
loop
          

This program prints an infinite sequence of random number; positive numbers are printed in green, negative numbers are printed red (an exact zero would be printed white). (With a little extra work, this program could be easily extended into a brokerage system)

See also

abs, int, frac


Name

sin() — return the sine of its single argument

Synopsis

y=sin(angle)

Description

The sin-function expects an angle (in radians, not degrees) and returns its sine.

Example

open window 200,200
new curve
for phi=0 to 2*pi step 0.1
  line to 100+90*sin(phi),100+90*cos(phi)
next phi
close curve
          

This program draws a circle (ignoring the existence of the circle-command).

See also

asin, cos


Name

sleep — pause, sleep, wait for the specified number of seconds

Synopsis

sleep 4

Description

The sleep-command has many different names: You may write pause, sleep or wait interchangeably; whatever you write, yabasic will always do exactly the same.

Therefore you should refer to the entry for the pause-function for further information.


Name

split() — split a string into many strings

Synopsis

dim w$(10)
…
num=split(a$,w$())
num=split(a$,w$(),s$)

Description

The split-function requires a string (containing the text to be split), a reference to a string-array (which will receive the resulting strings, i.e. the tokens) and an optional string (with a set of characters, at which to split, i.e. the delimiters).

The split-function regards its first argument (a string) as a list of tokens separated by delimiters and it will store the list of tokens within the array-reference you have supplied. Note, that the array, which is passed as a reference (w$() in the synopsis), will be resized accordingly, so that you don't have to figure out the number of tokens in advance. The element at position zero (i.e. w$(0)) will not be used.

normally (i.e. if you omit the third, which is the delimiter-argument) the function will regard space or tab as delimiters for tokens; however by supplying a third argument, you may split at any single of the characters within this string. E.g. if you supply ":;" as the third argument, then colon (:) or semicolon (;) will delimit tokens.

Note, that a sequence of separator-characters will produce a sequence of empty tokens; that way, the number of tokens returned will always be one plus the number of separator characters contained within the string. Refer to the closely related token-function, if you do not like this behaviour. In some way, the split-function focuses on the separators (other than the token-function, which focuses on the tokens), hence its name.

The second argument is a reference on a string-array, where the tokens will be stored; this array will be expanded (or shrunk) to have room for all tokens, if necessary.

The first argument finally contains the text, that will be split into tokens. The split-function returns the number of tokens that have been found.

Please see the examples below for some hints on the exact behaviour of the split-function and how it differs from the token-function:

Example

print "This program will help you to understand, how the"
print "split()-function exactly works and how it behaves"
print "in certain special cases."
print
print "Please enter a line containing tokens separated"
print "by either '=' or '-'"
dim t$(10)
do
  print 
  input "Please enter a line: " l$
  num=split(l$,t$(),"=-")
  print num," Tokens: ";
  for a=1 to num
    if (t$(a)="") then
      print "(EMPTY)";
    else 
      print t$(a);
    endif
    if (a<num) print ","; 
  next a
  print
loop
          

This program prints the following output:

Please enter a line: a
1 Tokens: a

Please enter a line:
0 Tokens:

Please enter a line: ab
1 Tokens: ab

Please enter a line: a=b
2 Tokens: a,b

Please enter a line: a-
2 Tokens: a,(EMPTY)

Please enter a line: a-=
3 Tokens: a,(EMPTY),(EMPTY)

Please enter a line: =a-
3 Tokens: (EMPTY),a,(EMPTY)

Please enter a line: a=-b
3 Tokens: a,(EMPTY),b

Please enter a line: a--b-
4 Tokens: a,(EMPTY),b,(EMPTY)

Please enter a line: -a==b-c==
7 Tokens: (EMPTY),a,(EMPTY),b,c,(EMPTY),(EMPTY)

See also

token


Name

sqr() — compute the square of its argument

Synopsis

a=sqr(b)

Description

The sqr-function computes the square of its numerical argument (i.e. it multiplies its argument with itself).

Example

for a=1 to 10
  print a,sqr(a),a**2
next a
          

As you may see from the output, sqr can be written as **2 (or ^2) too.

See also

sqrt, **, ^


Name

sqrt() — compute the square root of its argument

Synopsis

to be written

Description

The sqrt-function computes the square root of its numerical argument.

Example

for a=1 to 5
  print a,sqrt(a),a**(1/2)
next a
          

As you may see from the output, sqrt can be written as **(1/2) (or ^(1/2)) too.

See also

sqr, **, ^


Name

static — preserves the value of a variable between calls to a subroutine

Synopsis

sub foo()

  static a

  …

end sub 

Description

The static keyword can be used within subroutines to mark variables as static. This has two effects: First, the variable is local to the subroutine, i.e. its value is not know outside the subroutine (this is the effect of the local keyword). Second, the static-keyword arranges things, so that the variable keeps its value between invocations of the subroutine (this is different from the local-keyword).

Example

foo()
foo()
foo()

sub foo()
  static a
  local b
  a=a+1
  b=b+1
  print a,b
end sub
          

This program shows the difference between static and local variables within a subroutine; it produces this output:

1 1
2 1
3 1

The output shows, that the static variable a keeps its value between subroutine calls, whereas b is initialized with the value 0 at every call to the subroutine foo.

See also

sub, local


Name

step — specifies the increment step in a for-loop

Synopsis

for a=1 to 10 step 3
  …
next a

Description

Specify, by which amount the loop-variable of a for-loop will be incremented at each step.

The step (as well as the lower and upper bound) are computed anew in each step; this is not common, but possible, as the example below demonstrates.

Example

for x=1 to 1000 step y
  y=x+y
  print x," ",y," ";
next x
print
          

This program computes the fibonacci numbers between 1 and 1000.

See also

for


Name

str$() — convert a number into a string

Synopsis

a$=str$(a)
b$=str$(x,"##.###")
b$=str$(x,"###,###.##")
b$=str$(x,"###,###.##","_.")

Description

The str$-function accepts a numeric argument and returns it as a string. This conversion between number and string can be controlled with the optional third argument (the format argument). See the following table of examples to learn about valid values of this argument. Note, that those examples fall in one of two categories: C-style and basic-style; the first 4 examples in the table below are C-style, the rest of the examples are basic-style. For more information on the C-style formats, you may refer to your favorite documentation on the C programming language. The basic-style formats are much simpler, they just depict the desired output, marking digits with '#'; groups of (usually three) digits may be separated with colons (','), the decimal dot must be marked by a literal dot ('.'). Moreover these characters (colons and dot) may be replaced by other characters to satisfy the needs of non-english (e.g. german) languages; see the examples below.

Note, that for clarity, each space in the result has been replaced by the letter 'x', because it would be hard to figure out, how many spaces are produced exactly otherwise.

Table 6.2. Examples for the format argument

Example stringResult for converting 1000*piDescription
%2.5f3141.59265The '2' determines the minimum length of the output; but if needed (as in the example) the output can be longer. The '5' is the number of digits after the decimal point.
%12.5fxx3141.59265Two spaces (which appear as 'x') are added to pad the output to the requested length of 12 characters.
%012.5g0000003141.6The 'g' requests, that the precision ('5') specifies the overall number of digits (before and after the decimal point).
%-12.5f3141.59265xxThe '-' requests the output to be left-centered (therefor the filling space appears at the right).
#####.##x3141.59Each '#' specifies a digit (either before or after the dot), the '.' specifies the position of the dot. As 1000*pi does not have enough digits, the 5 requested digits before the dot are filled up with a space (which shows up as an 'x').
##,###.##x3,141.59Nearly the same as above, but the colon from the format shows up within the result.
##,###.## and an additional argument of ".,"x3.141,59Similar to the example above, but colon and dot are replaced with dot and colon respectively.
##,###.## and an additional argument of "_,"x3_141,59Similar to the example above, but colon and dot are replaced with underscore and colon respectively.
#####x3142The format string does not contain a dot, and therefore the result does not have any fractional digits.
##.#####.###As 1000*pi has 4 digits in front of the decimal dot and the format only specifies 2, yabasic does not know what to do; therefore it chooses just to reproduce the format string.

Example

do
  input "Please enter a format string: " f$
  a$=str$(1000*pi,f$)
  for a=1 to len(a$)
    if (mid$(a$,a,1)=" ") mid$(a$,a,1)="x"
  next a
  print a$
loop
          

This is the program, that has been used to get the results shown in the table above.

See also

print, using


Name

sub — declare a user defined subroutine

Synopsis

foo(2,"hello")

…

sub foo(bar,baz$)
  …
  return qux
  …
end sub

Description

The sub-keyword starts the definition of a user defined subroutine. With user defined subroutines you are able to somewhat extend yabasic with your own commands or functions. A subroutine accepts arguments (numbers or strings) and returns a number or a string (however, you are not required to assign the value returned to a variable).

The name of the subroutine follows after the keyword sub. If the name (in the synopsis: foo) ends on a '$', the subroutine should return a string (with the return-statement), otherwise a number.

After the name of the subroutine yabasic requires a pair of braces; within those braces you may specify a list of parameters, for which values can (but need not) be included when calling the subroutine. If you omit one of those parameters when calling such a subroutine, it assumes the value zero (for numeric parameters) or the empty string (for string-parameters). However from the special variable numparams you may find out, how many arguments have really been passed when calling the subroutine.

Parameters of a subroutine are always local variables (see the keyword local for more explanation).

From within the subroutine you may return any time with the keyword return; along with the return-keyword you may specify the return value. Note that more than one return is allowed within a single subroutine.

Finally, the keyword end sub ends the subroutine definition. Note, that the definition of a subroutine need not appear within the program before the first call to this sub.

Note

As braces have two uses in yabasic (i.e. for supplying arguments to a subroutine as well as to list the indices of an array). yabasic can not tell apart an array from a subroutine with the same name. Therefore you cannot define a subroutine with the same name as an array !

Example

p=2
do 
  if (is_prime(p)) print p
  p=p+1
loop

sub is_prime(a)
  local b
  for b=2 to sqrt(a)
    if (frac(a/b)=0) return false
  next b
  return true
end sub
          

This example is not the recommended way to compute prime numbers. However it gives a nice demonstration of using a subroutine.

See also

local, static, peek


Name

switch — select one of many alternatives depending on a value

Synopsis

switch a
  case 1
  case 2
  …
end switch

…

switch a$
  case "a"
  case "b"
end switch

Description

The switch-statement selects one of many codepaths depending on a numerical or string expression. I.e. it takes an expression (either numeric or string) and compares it with a series of values, each wrapped within a case-clause. If the expression equals the value given in a case-clause, the subsequent statements are executed.

The default-clause allows one to specify commands, which should be executed, if none of case-clauses matches.

Note, that many case-clauses might be clustered (e.g. case "a":case "b":case "c"). Or put another way: You need a break-statement at the end of a case-branch, if you do not want to run into the next case.

Example

input "Please enter a single digit: " n
switch n
  case 0:print "zero":break
  case 1:print "one":break
  case 2:print "two":break
  case 3:print "three":break
  case 4:print "four":break
  case 5:case 6: case 7:case 8:case 9
    print "Much !":break
  default:print "Hey ! That was more than a single digit !"
end switch 
          

This example translates a single digit into a string; note, how the cases 5 to 7 are clustered.

See also

switch, case, break


Name

system$() — hand a statement over to your operating system and return its output

Synopsis

print system$("dir")

Description

The system$-command accepts a single string argument, specifying a command, that can be found and executed by your operating system. It returns the output of this command as one big string.

Example

input "Please enter the name of a directory: " d$
print
print "This is the contents of the '"+d$+"':"
print system$("dir "+d$)
          

This example lists the contents of a directory, employing the dir-command (which is about the only program, that is known under Unix as well as Windows).

See also

system


Name

system() — hand a statement over to your operating system and return its exitcode

Synopsis

ret=system("foo")
system("bar")

Description

The system-command accepts a single string argument, which specifies a command to be executed. The function will return the exitcode of the command; its output (if any) will be lost.

Example

print "Please enter the name of the file, that should be deleted."
input f$
if (system("rm "+f$+" >/dev/null 2>&1")) then
  print "Error !"
else
  print "okay."
endif
          

This program is Unix-specific: It uses the Unix-command rm to remove a file.

See also

system$

T

tan() — return the tangent of its argument
tell — get the current position within an open file
text — write text into your graphic-window
then — tell the long from the short form of the if-statement
time$ — return a string containing the current time
to — this keyword appears as part of other statements
token() — split a string into multiple strings
triangle — draw a triangle
trim$() — remove leading and trailing spaces from its argument
true — a constant with the value of 1

Name

tan() — return the tangent of its argument

Synopsis

foo=tan(bar)

Description

The tan-function computes the tangent of its arguments (which should be specified in radians).

Example

for a=0 to 45
  print tan(a*pi/180)
next a
          

This example simply prints the tangent of all angles between 0 and 45 degrees.

See also

atan, sin


Name

tell — get the current position within an open file

Synopsis

open #1,"foo"
  …
position=tell(#1)

Description

The tell-function requires the number of an open file as an argument. It returns the position (counted in bytes, starting from the beginning of the file) where the next read will start.

Example

open #1,"foo","w"
print #1 "Hello World !"
close #1

open #1,"foo"
seek #1,0,"end"
print tell(#1)
close 1
          

This example (mis)uses tell to get the size of the file. The seek positions the file pointer at the end of the file, therefor the call to tell returns the total length of the file.

See also

tell, open


Name

text — write text into your graphic-window

Synopsis

text x,y,"foo"
text x,y,"foo","lb"
text x,y,"foo","cc","font"
text x,y,"foo","font","rt"

Description

The text-commands displays a text-string (the third argument) at the given position (the first two arguments) within an already opened window. The font to be used can be optionally specified as either the fourth or fifth argument ("font" in the example above). A font specified this way will also be used for any subsequent text-commands, as long as they do not specify a font themselves.

The fourth or fifth optional argument ("lb" in the example above) can be used to specify the alignment of the text with respect to the specified position. This argument is always two characters long: The first character specifies the horizontal alignment and can be either l, r or c, which stand for left, right or center. The second character specifies the vertical alignment and can be one of t, b or c, which stand for top, bottom or center respectively. If you omit this alignment argument, the default "lb" applies; however this default may be changed with poke "textalign","xx"

Example

open window 500,200
clear screen
data "lt","lc","lb","ct","cc","cb","rt","rc","rb"
for a=1 to 9
  read align$	
  print "Alignment: ",align$
  line 50*a-15,100,50*a+15,100
  line 50*a,85,50*a,115
  text 50*a,100,"Test",align$
  inkey$ 
next a
          

This program draws nine crosses and writes the same text at each; however it goes through all possible nine alignment strings, showing their effect.


Name

then — tell the long from the short form of the if-statement

Synopsis

if (a<b) then
  …
endif

Description

The keyword then is part of the if-statement; please see there for further explanations. However, not every if-statement requires the keyword then: If the keyword then is present, the if-clause may extend over more than one line, and the keyword endif is required to end it. If the keyword then is not present, the if-statement extends up to the end of the line, and any endif would be an error.

Example

if (1<2) then 
  print "Hello ";
endif

if (2<3) print "world"
if (2<1)
  print "!"
          

This example prints Hello world. Note, that no exclamation mark (!) is printed, which might come as a surprise and may be changed in future versions of yabasic.

See also

if


Name

time$ — return a string containing the current time

Synopsis

print time$
print time$()

Description

The time$ function returns the current time in four fields separated by hyphens '-'. The fields are:

  • The current hour in the range from 0 to 23, padded with zeroes (e.g. 00 or 04) to a length of two characters.

  • The number of minutes, padded with zeroes.

  • The number of seconds, padded with zeroes.

  • The number of seconds, that have elapsed since the program has been started. This value increases as long as your program runs and is therefore unbound and not padded with zeroes.

At the time of writing this documentation, time$ returns 22-58-53-0. Note, that the first three of the four fields returned by time$ have a fixed width; therefore it is easy to extract some fields with the usual string-functions mid$ (and others).

Example

print "Hello it is ",time$
print "An empty for-loop with ten million iterations takes ";
for a=1 to 10000000:next a
print "Now it is ",time$
print peek("secondsrunning")," seconds have passed."
          

This program benchmarks the for-loop; however, it does not use the fourth field of the string returned by time$, because that string wraps around every 60 seconds; rather the peek "secondsrunning" is queried.

See also

date


Name

to — this keyword appears as part of other statements

Synopsis

for a=1 to 100 step 2
  …
next a

line x,y to a,b

Description

The to-keyword serves two purposes (which are not related at all):

  • within for-statements, to specify the upper bound of the loop.

  • Within any graphical command (e.g. line), that requires two points (i.e. four numbers) as arguments, a comma ',' might be replaced with the keyword to. I.e. instead of 100,100,200,200 you may write 100,100 to 200,200 in such commands.

Example

Please see the command listed under "See also" for examples.

See also

for, line, rectangle


Name

token() — split a string into multiple strings

Synopsis

dim w$(10)
…
num=token(a$,w$())
num=token(a$,w$(),s$)

Description

The token-function accepts a string (containing the text to be split), a reference to a string-array (which will receive the resulting strings, i.e. the tokens) and an optional string (with a set of characters, at which to split, i.e. the delimiters).

The token-function regards its first argument as a list of tokens separated by delimiters and it will store the list of tokens within the array-reference that has been supplied. Note, that the array, which is passed as a reference (w$() in the synopsis), will be resized accordingly, so that you don't have to figure out the number of tokens in advance. The element at position zero (i.e. w$(0)) will not be used.

Normally (i.e. if you omit the third, the delimiter-argument) the function will regard space or tab as delimiters for tokens; however by supplying a third argument, you may split at any single of the characters within this string. E.g. if you supply ":;" as the third argument, then colon (:) or semicolon (;) will delimit tokens.

Note, that token will never produce empty tokens, even if two or more separators follow in sequence. Refer to the closely related split-function, if you do not like this behaviour. In some way, the token-function focuses on the tokens and not on the separators (other than the split-function, which focuses on the separators).

The second argument is a reference on a string-array, where the tokens will be stored; this array will be expanded (or shrunk) as necessary to have room for all tokens.

The first argument finally contains the text, that will be split into tokens. The token-function returns the number of tokens, that have been found.

Please see the examples below for some hints on the exact behaviour of the token-function and how it differs from the split-function:

Example

print "This program will help you to understand, how the"
print "token()-function exactly works and how it behaves"
print "in certain special cases."
print
print "Please enter a line containing tokens separated"
print "by either '=' or '-'"
dim t$(10)
do
  print 
  input "Please enter a line: " l$
  num=token(l$,t$(),"=-")
  print num," Tokens: ";
  for a=1 to num
    if (t$(a)="") then
      print "(EMPTY)";
    else 
      print t$(a);
    endif
    if (a<num) print ","; 
  next a
  print
loop
          
This program prints the following output:

Please enter a line: a
1 Tokens: a

Please enter a line:
0 Tokens:

Please enter a line: ab
1 Tokens: ab

Please enter a line: a=b
2 Tokens: a,b

Please enter a line: a-
1 Tokens: a

Please enter a line: a-=
1 Tokens: a

Please enter a line: =a-
1 Tokens: a

Please enter a line: a=-b
2 Tokens: a,b

Please enter a line: a--b-
2 Tokens: a,b

Please enter a line: -a==b-c==
3 Tokens: a,b,c

See also

split


Name

triangle — draw a triangle

Synopsis

open window 100,100
triangle 100,100,50,50,100,50
fill triangle 50,100,100,50,200,200
clear fill triangle 20,20,10,10,200,200

Description

The triangle-command draws a triangle; it requires 6 parameters: The x- and y-coordinates of the three points making up the triangle. With the optional keywords clear and fill (which may appear both and in any sequence) the triangle can be cleared and filled respectively.

Example

open window 200,200
do 
  phi=phi+0.2
  i=i+2
  color mod(i,255),mod(85+2*i,255),mod(170+3*i,255)
  dx=100*sin(phi):dy=20*cos(phi)
  fill triangle 100+20*sin(phi),100+20*cos(phi),100-20*sin(phi),100-20*cos(phi),100-80*cos(phi),100+80*sin(phi)
  sleep 0.1
loop
          

This example draws a colored triangles until you get exhausted.


Name

trim$() — remove leading and trailing spaces from its argument

Synopsis

a$=trim$(b$)

Description

The trim$-function removes all whitespace from the left and from the right end of a string and returns the result. Calling trim$ is equivalent to calling rtrim$(ltrim$()).

Example

do
  input "Continue ? Please answer yes or no: " a$
  a$=lower$(trim$(a$))
  if (len(a$)>0 and a$=left$("no",len(a$)) exit
loop
          

This example asks for an answer (yes or no) and removes spaces with trim$ to make the comparison with the string "no" more bulletproof.

See also

ltrim$, rtrim$


Name

true — a constant with the value of 1

Synopsis

okay=true

Description

The constant true can be assigned to variables which will later appear in conditions (e.g. an if-statement.

true may also be written as TRUE or even TrUe.

Example

input "Please enter a string of all upper letters: " a$
if (is_upper(a$)) print "Okay"

sub is_upper(a$)
  if (a$=upper$(a$)) return true
  return false
end sub
          

See also

false

U

until — end a repeat-loop
upper$() — convert a string to upper case
using — Specify the format for printing a number

Name

until — end a repeat-loop

Synopsis

repeat 
  …
until (…)

Description

The until-keyword ends a loop, which has been introduced by the repeat-keyword. until requires a condition in braces (or an expression, see here for details) as an argument; the loop will continue until this condition evaluates to true.

Example

c=1
s=1
repeat
  l=c
  s=-(s+sig(s))
  c=c+1/s
  print c
until(abs(l-c)<0.000001)
          

This program calculates the sequence 1/1-1/2+1/3-1/4+1/5-1/6+1/7-1/8+ … ; please let me know, if you know against which value this converges.

See also

repeat


Name

upper$() — convert a string to upper case

Synopsis

u$=upper$(a$)

Description

The upper$-function accepts a single string argument and converts it to all upper case.

Example

line input "Please enter a sentence without the letter 'e': " l$
p=instr(upper$(l$),"E")
if (p) then
  l$=lower$(l$)
  mid$(l$,p,1)="E"
  print "Hey, you are wrong, see here!"
  print l$
else
  print "Thanks."
endif
          

This program asks for a sentence and marks the first (if any) occurrence of the letter 'e' by converting it to upper case (in contrast to the rest of the sentence, which is converted to lower case).

See also

lower$


Name

using — Specify the format for printing a number

Synopsis

print a using "##.###"
print a using("##.###",",.")

Description

The using-keyword may appear as part of the print-statement and specifies the format (e.g. the number of digits before and after the decimal dot), which should be used to print the number.

The possible values for the format argument ("##.###" in the synopsis above) are described within the entry for the str$-function; especially the second line in the synopsis (print a using("##.###",",.")) will become clear after referring to str$. In fact the using clause is closely related to the str$-function; the former can always be rewritten using the latter; i.e. print foo using bar$ is always equivalent to print str$(foo,bar$). Therefore you should check out str$ to learn more.

Example

for a=1 to 10
  print sqrt(ran(10000*a)) using "#########.#####"
next a
          

This example prints a column of square roots of random number, nicely aligned at the decimal dot.

See also

print, str$

V

val() — converts a string to a number

Name

val() — converts a string to a number

Synopsis

x=val(x$)

Description

The val-function checks, if the start of its string argument forms a floating point number and then returns this number. The string therefore has to start with digits (only whitespace in front is allowed), otherwise the val-function returns zero.

Example

input "Please enter a length, either in inches (in) or centimeters (cm) " l$
if (right$(l$,2)="in") then
  l=val(l$)*2.51
else
  l=val(l$)
print "You have entered ",l,"cm."
          

This example queries for a length and checks, if it has been specified in inches or centimeters. The length is then converted to centimeters.

See also

str$

W

wait — pause, sleep, wait for the specified number of seconds
wendend a while-loop
while — start a while-loop
window origin — move the origin of a window

Name

wait — pause, sleep, wait for the specified number of seconds

Synopsis

wait 4

Description

The wait-command has many different names: You may write pause, sleep or wait interchangeably; whatever you write, yabasic will always do exactly the same.

Therefore you should refer to the entry for the pause-function for further information.


Name

wend — end a while-loop

Synopsis

while(a<b)
  …
wend

Description

The wend-keyword marks the end of a while-loop. Please see the while-keyword for more details.

wend can be written as end while or even end-while.

Example

line input "Please enter a sentence: " a$
p=instr(a$,"e")
while(p)
  mid$(a$,p,1)="E"
  p=instr(a$,"e")
wend
print a$
          

This example reads a sentence and converts every occurrence of the letter e into uppercase (E).

See also

while (which is just the following entry).


Name

while — start a while-loop

Synopsis

while(…)
  …
wend

Description

The while-keyword starts a while-loop, i.e. a loop that is executed as long as the condition (which is specified in braces after the keyword while) evaluates to true.

Note, that the body of such a while-loop will not be executed at all, if the condition following the while-keyword is not true initially.

If you want to leave the loop prematurely, you may use the break-statement.

Example

open #1,"foo"
while(!eof(1))
  line input #1 a$
  print a$
wend
          

This program reads the file foo and prints it line by line.

See also

until, break, wend, do


Name

origin — move the origin of a window

Synopsis

open window 200,200
origin "cc"

Description

The origin-command applies to graphic windows and moves the origin of the coordinate system to one of nine point within the window. The normal position of the origin is in the upper left corner of the window; however in some cases this is inconvenient and moving the origin may save you from subtracting a constant offset from all of your coordinates.

However, you may not move the origin to an arbitrary position; in horizontal position there are only three positions: left, center and right, which are decoded by the letters l, c and r. In vertical position the allowed positions are top, center and bottom; encoded by the letters t, c and b. Taking the letters together, you arrive at a string, which might be passed as an argument to the command; e.g. "cc" or "rt".

Example

100,100
open window 200,200
window origin "cc"
circle 0,0,60
          

This example draws a circle, centered at the center of the window.

See also

open window

X

xor() — compute the exclusive or

Name

xor() — compute the exclusive or

Synopsis

x=xor(a,b)

Description

The xor computes the bitwise exclusive or of its two numeric arguments. To understand the result, both arguments should be viewed as binary numbers (i.e. a series of 0 and 1); a bit of the result will then be 1, if exactly one argument has a 1 and the other has a 0 at this position in their binary representation.

Note, that both arguments are silently converted to integer values and that negative numbers have their own binary representation and may lead to unexpected results when passed to and.

Example

print xor(7,4)
          

This will print 3. This result is obvious, if you note, that the binary representation of 7 and 4 are 111 and 100 respectively; this will yield 011 in binary representation or 2 as decimal.

The eor-function is the same as the xor function; both are synonymous; however they have each their own description, so you may check out the entry of eor for a slightly different view.

See also

and, or, eor, not

Special characters

# — either a comment or a marker for a file-number
// — starts a comment
@synonymous to at
: — separate commands from each other
;suppress the implicit newline after a print-statement
** or ^ — raise its first argument to the power of its second

Name

# — either a comment or a marker for a file-number

Synopsis

# This is a comment, but the line below not !
open #1,"foo"

Description

The hash ('#') has two totally unrelated uses:

  • A hash might appear in commands related with file-io. yabasic uses simple numbers to refer to open files (within input, print, peek or eof). In those commands the hash may precede the number, which species the file. Please see those commands for further information and examples; the rest of this entry is about the second use (as a comment).

  • As the very first character within a line, a hash introduces comments (similar to rem).

'#' as a comment is common in most scripting languages and has a special use under Unix: If the very first line of any Unix-program begins with the character sequence '#!' ("she-bang", no spaces allowed), the rest of the line is taken as the program that should be used to execute the script. I.e. if your yabasic-program starts with '#!/usr/local/bin/yabasic', the program /usr/local/bin/yabasic will be invoked to execute the rest of the program. As a remark for windows-users: This mechanism ensures, that yabasic will be invoked to execute your program; the ending of the file (e.g. .yab) will be ignored by Unix.

Example

# This line is a valid comment
print "Hello " : # But this is a syntax error, because
print "World!" : # the hash is not the first character !
          

Note, that this example will produce a syntax error and is not a valid program !

See also

input, print, peek or eof, //, rem


Name

// — starts a comment

Synopsis

//  This is a comment !

Description

The double-slash ('//') is (besides REM and '#') the third way to start a comment. '//' is the latest and greatest in the field of commenting and allows yabasic to catch up with such cool languages like C++ and Java.

Example

// Another comment.
print "Hello world !" // Another comment
          

Unlike the example given for '#' this example is syntactically correct and will not produce an error.

See also

#, rem


Name

@ — synonymous to at

Synopsis

clear screen
…
print @(a,b)

Description

As '@' is simply a synonym for at, please see at for further information.

See also

at


Name

: — separate commands from each other

Synopsis

print "Hello ":print "World"

Description

The colon (':') separates multiple commands on a single line.

The colon and the newline-character have mostly the same effect, only that the latter, well, starts a new line too. The only other difference is their effect within the (so-called) short if, which is an if-statement without the keyword then. Please see the entry for if for more details.

Example

if (a<10) print "Hello ":print "World !"
          

This example demonstrates the difference between colon and newline as described above.

See also

if


Name

; — suppress the implicit newline after a print-statement

Synopsis

print "foo",bar;

Description

The semicolon (';') may only appear at the last position within a print-statement. It suppresses the implicit newline, which yabasic normally adds after each print-statement.

Put another way: Normally the output of each print-statement appears on a line by itself. If you rather want the output of many print-statements to appear on a single line, you should end the print-statement with a semicolon.

Example

print "Hello ";:print "World !"
          

This example prints Hello World ! in a single line.

See also

print


Name

** or ^ — raise its first argument to the power of its second

Synopsis

print 2**b
print 3^4

Description

** (or ^, which is an exact synonym), is the arithmetic operator of exponentiation; it requires one number to its left and a second one to its right; ** then raises the first argument to the power of the second and returns the result. The result will only be computed if it yields a real number (as opposed to a complex number); this means, that the power can not be computed, if the first argument is negative and the second one is fractional. On the other hand, the second argument can be fractional, if the first one ist positive; this means, that ** may be used to compute arbitrary roots: e.g. x**0.5 computes the square root of x.

Example

print 2**0.5
          

See also

sqrt

Reserved Words

Here is a list of all reserved words in yabasic. Please make sure, that you do not try to use one of them as the name of a variable or subroutine. Or, the other way around: If you get some mysterious error from yabasic and you just can't figure out why, then you might be using one of the reserved words below, without knowing.

Anyway, here is the list:

ABSACOSANDARRAYDIMARRAYDIMENSION
ARRAYSIZEASASCASINAT
ATANBEEPBELLBIN$BIND
BITBLITBITBLIT$BITBLTBITBLT$BOX
BREAKCASECHR$CIRCLECLEAR
CLOSECOLORCOLOURCOMPILECONTINUE
COSCURVEDATADATE$DEC
DEFAULTDIMDODOTELSE
ELSEIFELSIFENDENDIFEOF
EORERROREXECUTEEXECUTE$EXIT
EXPEXPORTFIFILLFILLED
FORFRACGETBIT$GETSCREEN$GLOB
GOSUBGOTOHEX$IFINKEY$
INPUTINSTRINTINTERRUPTLABEL
LEFT$LENLETLINELOCAL
LOGLOOPLOWER$LTRIM$MAX
MID$MINMODMOUSEBMOUSEBUTTON
MOUSEMODMOUSEMODIFIERMOUSEXMOUSEYNEW
NEXTNOTNUMPARAMONOPEN
ORORIGINPAUSEPEEKPEEK$
POKEPRINTPRINTERPUTBITPUTSCREEN
RANREADREADINGRECTRECTANGLE
REDIMREPEATRESTORERETURNREVERSE
RIGHT$RINSTRRTRIM$SCREENSEEK
SIGSINSLEEPSPLITSPLIT$
SQRSQRTSTATICSTEPSTR$
SUBSUBROUTINESWITCHSYSTEMSYSTEM$
TANTELLTEXTTHENTIME$
TOTOKENTOKEN$TRIANGLETRIM$
UNTILUPPER$USINGVALWAIT
WENDWHILEWINDOWWRITINGXOR

Please see here for explanations on how to use these words in yabasic.

Chapter 7. A grab-bag of some general concepts and terms

This chapter presents some general concepts and terms, which deserve a description on their own, but are not associated with a single command or function in yabasic. Most of these topics do not lend themselves to be read alone, rather they might be read (or skimmed) as background material if an entry from the alphabetical list of commands refers to them.

Logical shortcuts

Logical shortcuts are no special language construct and there is no keyword for them; they are just a way to evaluate logical expressions. Logical expressions (i.e. a series of conditions or comparisons joined by and or or) are only evaluated until the final result of the expression can be determined. An example:

if (a<>0 and b/a>2) print "b is at least twice as big as a"

The logical expression a<>0 and b/a>2 consists of two comparisons, both of which must be true, if the print statement should be executed. Now, if the first comparison (a<>0) is false, the whole logical expression can never be true and the second comparison (b/a>2) need not be evaluated.

This is exactly, how yabasic behaves: The evaluation of a composed logical expressions is terminated immediately, as soon as the final result can be deduced from the already evaluated parts.

In practice, this has the following consequences:

  • If two or more comparisons are joined with and and one comparison results in false, the logical expression is evaluated no further and the overall result is false.

  • If two or more comparisons are joined with or and one comparison results in true, the logical expression is evaluated no further and the result is true.

“Nice, but whats this good for ?â€, I hear you say. Well, just have another look at the example, especially the second comparison (b/a>2); dividing b by a is potentially hazardous: If a equals zero, the expression will cause an error and your program will terminate. To avoid this, the first part of the comparison (a<>0) checks, if the second one can be evaluated without risk. This pre-checking is the most common usage and primary motivation for logical shortcuts (and the reason why most programming languages implement them).

Conditions and expressions

Well, bottomline there is no difference or distinction between conditions and expressions, at least as yabasic is concerned. So you may assign the result of comparisons to variables or use an arithmetic expression or a simple variable within a condition (e.g. within an if-statement). So the constructs shown in the example below are all totally valid:

input "Please enter a number between 1 and 10: " a

rem   Assigning the result of a comparison to a variable
okay=a>=1 and a<=10

rem   Use a variable within an if-statement
if (not okay) error "Wrong, wrong !"

So conditions and expressions are really the same thing (at least as long as yabasic is concerned). Therefore the terms conditions and expression can really be used interchangeably, at least in theory. In reality the term condition is used in connection with if or while whereas the term expression tends to be used more often within arithmetic context.

References on arrays

References on arrays are the only way to refer to an array as a whole and to pass it to subroutines or functions like arraydim or arraysize. Whereas (for example) a(2) designates the second element of the array a, a() (with empty braces) refers to the array a itself. a() is called an array reference.

If you pass an array reference to one of your own subroutines, you need to be aware, that the subroutine will be able to modify the array you have passed in. So passing an array reference does not create a copy of the array; this has some interesting consequences:

  • Speed and space: Creating a copy of an array would be a time (and resource) consuming operation; passing just a reference is cheap and fast.

  • Returning many values: A subroutine, that wants to give back more than one value, may require an array reference among its arguments and then store its many return values within this array. This is the only way to return more than one value from a subroutine.

Specifying Filenames under Windows

As you probably know, windows uses the character '\' to separate the directories within a pathname; an example would be C:\yabasic\yabasic.exe (the usual location of the yabasic executable). However, the very same character '\' is used to construct escape sequences, not only in yabasic but in most other programming languages.

Therefore the string "C:\t.dat" does not specify the file t.dat within the directory C:; this is because the sequence '\t' is translated into the tab-character. To specify this filename, you need to use the string "C:\\t.dat" (note the double slash '\\').

Escape-sequences

Escape-sequences are the preferred way of specifying 'special' characters. They are introduced by the '\'-character and followed by one of a few regular letters, e.g. '\n' or '\r' (see the table below).

Escape-sequences may occur within any string at any position; they are replaced at parsetime (opposed to runtime), i.e. as soon as yabasic discovers the string, with their corresponding special character. As a consequence of this len("\a") returns 1, because yabasic replaces "\a" with the matching special character just before the program executes.

Table 7.1. Escape sequences

Escape SequenceMatching special character
\nnewline
\ttabulator
\vvertical tabulator
\bbackspace
\rcarriage return
\fformfeed
\aalert (i.e. a beeping sound)
\\backslash
\'single quote
\"double quote
\xHEXchr$(HEX) (see below)

Note, that an escape sequences of the form \xHEX allows one to encode arbitrary characters as long as you know their position (as a hex-number) within the ascii-charset: For example \x012 is transformed into the character chr$(18) (or chr$(dec("12",16)). Note that \x requires a hexa-decimal number (and the hexa-decimal string "12" corresponds to the decimal number 18).

Creating a standalone program from your yabasic-program

Note

The bind-feature, which is described below, is at an experimental stage right now. It works (at least for me !) under Windows and Linux, but I cannot even promise it for other variants of Unix. However, if it does not work for your Unix, I will at least try to make it work, if you give me sufficient information of your system.

Sometimes you may want to give one of your yabasic-programs to other people. However, what if those other people do not have yabasic installed ? In that case you may create a standalone-program from your yabasic-program, i.e. an executable, that may be executed on its own, standalone, even (and especially !) on computers, that do not have yabasic installed. Having created a standalone program, you may pass it around like any other program (e.g. one written in C) and you can be sure that your program will execute right away.

Such a standalone-program is simply created by copying the full yabasic-interpreter and your yabasic-program (plus all the libraries it does import) together into a single, new program, whose name might be chosen at will (under windows of course it should have the ending .exe). If you decide to create a standalone-program, there are three bits in yabasic, that you may use:

  • The bind-command, which does the actual job of creating the standalone program from the yabasic-interpreter and your program.

  • The command-line Option -bind (available under windows and Unix), which does the same from the command-line.

  • The special peek("isbound"), which may be used to check, if the yabasic-program containing this peek is bound to the interpreter as part of a standalone program.

With these bits you know enough to create a standalone-program. Actually there are two ways to do this: on the command line and from within your program.

Creating a standalone-program from the command line

Let's say you have the following very simple program within the file foo.yab:

print "Hello World !"

Normally you would start this yabasic-program by typing yabasic foo.yab and as a result the string Hello World ! would appear on your screen. However, to create a standalone-program from foo.yab you would type:

yabasic -bind foo.exe foo.yab

This command does not execute your program foo.yab but rather create a standalone-program foo.exe. Note: under Unix you would probably name the standalone program foo or such, omitting the windows-specific ending .exe.

Yabasic will confirm by printing something like: ---Info: Successfully bound 'yabasic' and 'foo.yab' into 'foo.exe'.

After that you will find a program foo.exe (which must be made executable with the chmod-command under Unix first). Now, executing this program foo.exe (or foo under Unix) will produce the output Hello World !.

This newly created program foo.exe might be passed around to anyone, even if he does not have yabasic installed.

Creating a standalone-program from within your program

It is possible to write a yabasic-program, that binds itself to the yabasic-interpreter. Here is an example:

if (!peek("isbound")) then
  bind "foo"
  print "Successfully created the standalone executable 'foo' !"
  exit
endif

print "Hello World !"

If you run this program (which may be saved in the file foo.yab) via yabasic foo.yab, the peek("isbound") in the first line will check, if the program is already part of a standalone-program. If not (i.e. if the yabasic-interpreter and the yabasic-program are separate files) the bind-command will create a standalone program foo containing both. As a result you would see the output Successfully created the standalone executable 'foo' !. Note: Under Windows you would probably choose the filename foo.exe.

Now, if you run this standalone executable foo (or foo.exe), the very same yabasic-program that is shown above will be executed again. However, this time the peek("isbound") will return TRUE and therefore the condition of the if-statement is false and the three lines after then are not executed. Rather the last print-statement will run, and you will see the output Hello World !.

That way a yabasic-program may turn itself into a standalone-program.

Downsides of creating a standalone program

Now, before you go out and turn all your yabasic-programs into standalone programs, please take a second to consider the downsides of doing so:

  • The new standalone program will be at least as big as the interpreter itself, so you need to pass a few hundred kilobytes around, just to save people from having to install yabasic themselves.

  • There is no easy way to extract your yabasic-program from within the standalone program: If you ever want to change it, you need to have it around separately.

  • If a new version of yabasic becomes available, again you need to recreate all of your standalone programs to take advantage of bugfixes and improvements.

So, being able to create a standalone program is certainly a good thing, but certainly not a silver bullet.

See also

The bind-command, the peek-function and the command line options for Unix and Windows.

Chapter 8. A few example programs

A very simple program

The program below is a very simple program:

repeat
  input "Please enter the first number, to add " a
  input "Please enter the second number, to add " b
  print a+b
until(a=0 and b=0)

This program requests two numbers, which it than adds. The process is repeated until you enter zero (or nothing) twice.

The demo of yabasic

The listing below is the demo of yabasic. Note, that parts of this demo have been written before some of the more advanced features (e.g subroutines) of yabasic have been implemented. So please do not take this as a particular good example of yabasic-code.

//
//      This program demos yabasic
//


//      Check, if screen is large enough
clear screen
sw=peek("screenwidth"):sh=peek("screenheight")
if (sw<78 or sh<24) then
  print
  print "  Sorry, but your screen is to small to run this demo !"
  print
  end
endif
sw=78:sh=24

//  Initialize everything
restore mmdata
read mmnum:dim mmtext$(mmnum)
for a=1 to mmnum:read mmtext$(a):next a

//  Main loop selection of demo
ysel=1
label mainloop
clear screen
print colour("cyan","magenta") at(7,2) "################################"
print colour("cyan","magenta") at(7,3) "################################"
print colour("cyan","magenta") at(7,4) "################################"
print colour("yellow","blue") at(8,3) " This is the demo for yabasic "
yoff=7
for a=1 to mmnum
  if (a=mmnum) then ydisp=1:else ydisp=0:fi
  if (a=ysel) then
    print colour("blue","green") at(5,yoff+ydisp+a) mmtext$(a);
  else
    print at(5,yoff+ydisp+a) mmtext$(a);
  endif
next a
print at(3,sh-3) "Move selection with CURSOR KEYS (or u and d),"
print at(3,sh-2) "Press RETURN or SPACE to choose, ESC to quit."


do    // loop for keys pressed
  rev=1
  do    // loop for blinking
    k$=inkey$(0.4)
    if (k$="") then
      if (ysel=mmnum) then
        if (rev=1) then 
          print colour("blue","green") at(5,yoff+mmnum+1) mmtext$(mmnum);
          rev=0
        else
          print colour("yellow","red") at(5,yoff+mmnum+1) mmtext$(mmnum);
          rev=1
        endif
      endif
    else    // key has been pressed, leave loop
      break
    endif
  loop    // loop for blinking

  yalt=ysel
  if (k$="up" or k$="u") then 
    if (ysel=1) then ysel=mmnum else ysel=ysel-1 fi
    redraw():heal():continue
  fi
  if (k$="down" or k$="d") then 
    if (ysel=mmnum) then ysel=1 else ysel=ysel+1 fi
    redraw():heal():continue
  fi
  if (k$=" " or k$="enter" or k$="right") then 
    on ysel gosub overview,bitmap,tetraeder,endit
    goto mainloop
  fi
  if (k$="esc") then
    endit()
  fi
  beep
  print at(3,sh-5) "Invalid key: ",k$,"         "
loop    // loop for keys pressed


//  redraw line
sub redraw()
  if (yalt=mmnum) then ydisp=1:else ydisp=0:fi
  print at(5,yoff+yalt+ydisp) mmtext$(yalt);
  if (ysel=mmnum) then ydisp=1:else ydisp=0:fi
  print colour("blue","green") at(5,yoff+ysel+ydisp) mmtext$(ysel);
  return
end sub


//  erase a line
sub heal()
  print at(3,sh-5) "                                                       "
  return
end sub


//  Go here to exit
label endit
  print at(3,sh-8) "Hope you liked it ...\n   ";
  exit
return


//  Present a short overview
label overview
  clear screen
  print
  print "  Yabasic is a quite traditional basic: It comes with"
  print "  print, input, for-next-loops, goto, gosub, while and"
  print "  repeat. It has user defined procedures and libraries,"
  print "  however, it is not object oriented.\n"
  print "  Yabasic makes it easy to open a window, draw lines"
  print "  and print the resulting picture.\n"
  print "  Yabasic programs are interpreted and run under Unix"
  print "  and Windows. The Yabasic interpreter (around 200K)"
  print "  and any Yabasic program can be glued together to"
  print "  form a standalone executable.\n" 
  print "  Yabasic is free software, i.e. subject to the"
  print "  MIT License.\n"
  print "\n\n\n  While you read this, I am calculating prime numbers,\n"
  print "  Press any key to return to main menu ..."
  can=1
  print at(6,17) "This is a prime number: "
  label nextcan
  can=can+2
  for i=2 to sqrt(can):if (frac(can/i)=0) then goto notprime:fi:next i
  print at(32,17) can;
  label notprime
  if (lower$(inkey$(0))<>"") then 
    print at(10,sh) "Wrapping around once ...";
    for x=1 to sw
      a$=getscreen$(0,0,1,sh-2)
      b$=getscreen$(1,0,sw-1,sh-2)
      putscreen b$,0,0
      putscreen a$,sw-1,0
    next x
    sleep 2
    return
  fi
goto nextcan


//  Show some animated bitmaps
label bitmap
  clear screen
  print 
  print "Yabasic offers some commands for drawing simple graphics."
  print reverse at(5,12) " Press any key to return to main menu ... "

  n=20
  open window 400,400

  for b=20 to 0 step -1
    color 255-b*12,0,b*12
    fill circle 200,200,b
  next b
  c$=getbit$(179,179,221,221)
  for a=1 to 2000
    color ran(255),ran(255),ran(255)
    x=ran(500)-100:y=ran(500)-100
    fill rectangle ran(500)-100,ran(500)-100,ran(500)-100,ran(500)-100
  next a

  x=200:y=200:phi=ran(2*pi):dx=2*sin(phi):dy=2*cos(phi)
  o$=""
  count=0
  label pong
    count=count+1
    if (o$<>"") putbit o$,xo-2,yo-2
    if (count>1000) then
      phi=ran(2*pi):dx=2*sin(phi):dy=2*cos(phi)
      sleep 2
      count=0
    endif
    xo=x:yo=y
    x=x+dx:y=y+dy
    o$=getbit$(x-2,y-2,x+46,y+46)
    putbit c$,x,y,"t"
    if (x<0 or x>360) dx=-dx
    if (y<0 or y>360) dy=-dy
    if (inkey$(0)<>"") then
      close window
      return
    endif
  goto pong
return

label tetraeder

open window 400,400
clear window
clear screen
print reverse at(5,12) " Press any key to return to main menu ... "	

dim opoints(4,3)
restore points
for n=1 to 4:for p=1 to 3:read opoints(n,p):next p:next n

dim triangles(4,3)
restore triangles
for n=1 to 4:for p=1 to 3:read triangles(n,p):next p:next n

phi=0:dphi=0.1:psi=0:dpsi=0.05
dim points(4,3)

r=60:g=20
dr=0.5:dg=1.2:db=3
label main

  phi=phi+dphi
  psi=psi+dpsi
  for n=1 to 4
    points(n,1)=opoints(n,1)*cos(phi)-opoints(n,2)*sin(phi)
    points(n,2)=opoints(n,2)*cos(phi)+opoints(n,1)*sin(phi)
    p2=          points(n,2)*cos(psi)-opoints(n,3)*sin(psi)
    points(n,3)=opoints(n,3)*cos(psi)+ points(n,2)*sin(psi)
    points(n,2)=p2
  next n

  r=r+dr:if (r<0 or r>60) dr=-dr
  g=g+dg:if (g<0 or g>60) dg=-dg
  b=b+db:if (b<0 or b>60) db=-db
  dm=dm+0.01
  m=120-80*sin(dm)
  for n=1 to 4
    p1=triangles(n,1)
    p2=triangles(n,2)
    p3=triangles(n,3)
    n1=points(p1,1)+points(p2,1)+points(p3,1)
    n2=points(p1,2)+points(p2,2)+points(p3,2)
    n3=points(p1,3)+points(p2,3)+points(p3,3)
    if (n3>0) then
      sp=n1*0.5-n2*0.7-n3*0.6
      color 60+r+30*sp,60+g+30*sp,60+b+30*sp
      fill triangle 200+m*points(p1,1),200+m*points(p1,2),200+m*points(p2,1),200+m*points(p2,2),200+m*points(p3,1),200+m*points(p3,2)
    endif
  next n
  if (inkey$(0.1)<>"") close window:return
  clear window
goto main

label points
data  -1,-1,+1,  +1,-1,-1,  +1,+1,+1,  -1,+1,-1
label triangles
data  1,2,4,  2,3,4,  1,3,4,  1,2,3

//  Data section ...
label mmdata
//  Data for main menu: Number and text of entries in main menu
data 4
data "   Yabasic in a nutshell   "
data "   Some graphics           "
data "   A rotating Tetraeder    "
data "   Exit this demo          "

   

Chapter 9. The Copyright of yabasic

yabasic may be copied under the terms of the MIT License, which is distributed with yabasic in the file LICENSE.

The MIT License grants extensive rights as long as you keep the copyright notice present in most files untouched. Here is a list of things that are possible under the terms of the MIT License:

  • Put yabasic on your own homepage or CD and even charge for the service of distributing yabasic.

  • Write your own yabasic-programs, pack your program and yabasic into a package and sell the whole thing.

  • Modify yabasic and add or remove features, sell the modified version without adding the sources.

yabasic-2.78.5/yabasic.10000664000175100017510000075137613257074220011677 00000000000000.TH yabasic 1 .SH NAME yabasic \- yet another Basic .SH SYNOPSIS yabasic [OPTIONS] [FILENAME [ARGUMENTS]] .SH DESCRIPTION Yabasic implements the most common and simple elements of the basic language. It comes with goto/gosub, with various loops, with user defined subroutines and libraries. Yabasic does simple graphics and printing. Yabasic runs under Unix and Windows, it is small, open source and free. This man-page is derived from yabasic.htm, which too should be installed on your system; per default in /usr/local/share/applications/yabasic/yabasic.htm. The same information can also be found on www.yabasic.de Here is its content: .nf .eo Yabasic ------------------------------------------------------------------------------- Table of Contents 1. Introduction About this document About yabasic 2. The yabasic-program under Windows Starting yabasic Options The context Menu 3. The yabasic-program under Unix Starting yabasic Options Setting defaults 4. Some features of yabasic, explained by topic print, input and others Control statements: loops, if and switch Drawing and painting Reading from and writing to files Subroutines and Libraries String processing Arithmetic Data and such Other interesting commands. 5. All commands and functions of yabasic listed by topic Number processing and conversion Conditions and control structures Data keeping and processing String processing File operations and printing Subroutines and libraries Other commands Graphics and printing 6. All commands and functions of yabasic grouped alphabetically A B C D E F G H I L M N O P R S T U V W X Special characters Reserved Words 7. A grab-bag of some general concepts and terms Logical shortcuts Conditions and expressions References on arrays Specifying Filenames under Windows Escape-sequences Creating a standalone program from your yabasic-program 8. A few example programs A very simple program The demo of yabasic 9. The Copyright of yabasic Chapter 1. Introduction About this document About yabasic About this document This document describes yabasic. You will find information about the yabasic interpreter (the program yabasic under Unix or yabasic.exe under Windows) as well as the language (which is, of course, a sort of basic) itself. This document applies to version 2.78 of yabasic However, this document does not contain the latest news about yabasic or a FAQ. As such information tends to change rapidly, it is presented online only at www.yabasic.de. Although basic has its reputation as a language for beginning programmers, this is not an introduction to programming at large. Rather this text assumes, that the reader has some (moderate) experience with writing and starting computer programs. About yabasic yabasic is a traditional basic interpreter. It understands most of the typical basic-constructs, like goto, gosub, line numbers, read, data or string-variables with a trailing '$'. But on the other hand, yabasic implements some more advanced programming-constructs like subroutines or libraries (but not objects). yabasic works much the same under Unix and Windows. yabasic puts emphasis on giving results quickly and easily; therefore simple commands are provided to open a graphic window, print the graphics or control the console screen and get keyboard or mouse information. The example below opens a window, draws a circle and prints the graphic: open window 100,100 open printer circle 50,50,40 text 10,50,"Press any key to get a printout" clear screen inkey$ close printer close window This example has fewer lines, than it would have in many other programming languages. In the end however yabasic lacks behind more advanced and modern programming languages like C++ or Java. But as far as it goes it tends to give you results more quickly and easily. Chapter 2. The yabasic-program under Windows Starting yabasic Options The context Menu Starting yabasic Once, yabasic has been set up correctly, there are three ways to start it: 1. Right click on your desktop: The desktop menu appears with a submenu named new. From this submenu choose yabasic. This will create a new icon on your desktop. If you right click on this icon, its context menu will appear; choose Execute to execute the program. 2. As a variant of the way described above, you may simply create a file with the ending .yab (e.g. with your favorite editor). Everything else then works as described above. 3. From the start-menu: Choose yabasic from your start-menu. A console-window will open and you will be asked to type in your program. Once you are finished, you need to type return twice, and yabasic will parse and execute your program. Note This is not the preferred way of starting yabasic ! Simply because the program, that you have typed, can not be saved and will be lost inevitably ! There is no such thing as a save-command and therefore no way to conserve the program, that you have typed. This mode is only intended for quick hacks, and short programs. Options Under Windows yabasic will mostly be invoked by double-clicking on an appropriate icon; this way you do not have a chance to specify any of the command line options below. However, advanced users may add some of those options to the appropriate entries in the registry. All the options below may be abbreviated, as long as the abbreviation does not become ambiguous. For example, you may write -e instead of -execute. -help or -? Prints a short help message, which itself describes two further help-options. -version Prints the version of yabasic. -geometry +X-POSITION+Y-POSITION Sets the position of the graphic window, that is opened by open window (the size of this window, of course, is specified within the open window-command). An example would be -geometry +20+10, which would place the graphic window 10 pixels below the upper border and 20 pixels right of the left border of the screen. This value cannot be changed, once yabasic has been started. -font NAME-OF-FONT Name of the font, which will be used for graphic-text; can be any of decorative, dontcare, modern, roman, script, swiss. You may append a fontsize (measured in pixels) to any of those fontnames; for example -font swiss30 chooses a swiss-type font with a size of 30 pixels. -bind NAME-OF-STANDALONE-PROGRAM Create a standalone program (whose name is specified by NAME-OF-STANDALONE-PROGRAM) from the yabasic-program, that is specified on the command line. See the section about creating a standalone-program for details. -execute A-PROGRAM-AS-A-SINGLE-STRING With this option you may specify some yabasic-code to be executed right away.This is useful for very short programs, which you do not want to save within a file. If this option is given, yabasic will not read any code from a file. Let's say, you have forgotten some of the square numbers between 1 and 10; in this case the command yabasic -e 'for a=1 to 10:print a*a:next a' will give you the answer immediately. -infolevel INFOLEVEL Change the infolevel of yabasic, where INFOLEVEL can be one of debug, note, warning, error and fatal (the default is warning). This option changes the amount of debugging-information yabasic produces. However, normally only the author of yabasic (me !) would want to change this. -doc NAME-OF-A-PROGRAM Print the embedded documentation of the named program. The embedded documentation of a program consists of all the comments within the program, which start with the special keyword doc. This documentation can also be seen by choosing the corresponding entry from the context-menu of any yabasic-program. -librarypath DIRECTORY-WITH-LIBRARIES Change the directory, wherein libraries will be searched and imported (with the import-command). See also this entry for more information about the way, libraries are searched. The context Menu Like every other icon under Windows, the icon of every yabasic-program has a context menu offering the most frequent operations, that may be applied to a yabasic-program. Execute This will invoke yabasic to execute your program. The same happens, if you double click on the icon. Edit notepad will be invoked, allowing you to edit your program. View docu This will present the embedded documentation of your program. Embedded documentation is created with the special comment doc. Chapter 3. The yabasic-program under Unix Starting yabasic Options Setting defaults Starting yabasic If your system administrator (vulgo root) has installed yabasic correctly, there are three ways to start it: 1. You may use your favorite editor (emacs, vi ?) to put your program into a file (e.g. foo). Make sure that the very first line starts with the characters '#!' followed by the full pathname of yabasic (e.g. '#!/usr/ local/bin/yabasic'). This she-bang-line ensures, that your Unix will invoke yabasic to execute your program (see also the entry for the hash -character). Moreover, you will need to change the permissions of your yabasic-program foo, e.g. chmod u+x foo. After that you may invoke yabasic to invoke your program by simply typing foo (without even mentioning yabasic). However, if your PATH-variable does not contain a single dot ('.') you will have to type the full pathname of your program: e.g. /home/ ihm/foo (or at least ./foo). 2. Save your program into a file (e.g. foo) and type yabasic foo. This assumes, that the directory, where yabasic resides, is contained within your PATH-variable. 3. Finally your may simply type yabasic (maybe it will be necessary to include its full pathname). This will make yabasic come up and you will be asked to type in your program. Once you are finished, you need to type return twice, and yabasic will parse and execute your program. Note This is not the preferred way of starting yabasic ! Simply because the program, that you have typed, can not be saved and will be lost inevitably ! There is no such thing as a save-command and therefore no way to conserve the program, that you have typed. This mode is only intended for quick hacks, and short programs, i.e. for using yabasic as some sort of fancy desktop calculator. Options yabasic accepts a number of options on the command line. All these options below may be abbreviated, as long as the abbreviation does not become ambiguous. For example you may write -e instead of -execute. -help or -? Prints a short help message, which itself describes two further help-options. -version Prints the version of yabasic. -fg FOREGROUND-COLOR or -foreground FOREGROUND-COLOR Define the foreground color for the graphics-window (that will be opened with open window). The usual X11 color names, like red, green, ? are accepted. This value cannot be changed, once yabasic has been started. -bg BACKGROUND-COLOR or -background BACKGROUND-COLOR Define the background color for the graphics-window. The usual X11 color names are accepted. This value cannot be changed, once yabasic has been started. -geometry +X-POSITION+Y-POSITION Sets the position of the graphic window, that is opened by open window (the size of this window, of course, is specified with the open window-command). An example would be +20+10, which would place the graphic window 10 pixels below the upper border and 20 pixels right of the left border of the screen. Note, that the size of the window may not be specified here (well it may, but it will be ignored anyway). This value cannot be changed, once yabasic has been started. -display BACKGROUND-COLOR Specify the display, where the graphics window of yabasic should appear. Normally, however this value will be already present within the environment variable DISPLAY. -font NAME-OF-FONT Name of the font, which will be used for text within the graphics window. -execute A-PROGRAM-AS-A-SINGLE-STRING With this option you may specify some yabasic-code to be executed right away. This is useful for very short programs, which you do not want to save to a file. If this option is given, yabasic will not read any code from a file. E.g. yabasic -e 'for a=1 to 10:print a*a:next a' prints the square numbers from 1 to 10. -bind NAME-OF-STANDALONE-PROGRAM Create a standalone program (whose name is specified by NAME-OF-STANDALONE-PROGRAM) from the yabasic-program, that is specified on the command line. See the section about creating a standalone-program for details. -infolevel INFOLEVEL Change the infolevel of yabasic where INFOLEVEL can be one of debug, note, warning, error and fatal (the default is warning). This option changes the amount of debugging-information yabasic produces. However, normally only the author of yabasic (me !) would want to change this. -doc NAME-OF-A-PROGRAM Print the embedded documentation of the named program. The embedded documentation of a program consists of all the comments within the program, which start with the special keyword doc. -librarypath DIRECTORY-WITH-LIBRARIES Change the directory from which libraries will be imported (with the import -command). See also this entry for more information about the way, libraries will be searched. Setting defaults If you want to set some options once for all, you may put them into your X-Windows resource file. This is usually the file .Xresources or some such within your home directory (type man X for details). Here is a sample section, which may appear within this file: yabasic*foreground: blue yabasic*background: gold yabasic*geometry: +10+10 yabasic*font: 9x15 This will set the foreground color of the graphic-window to blue and the background color to gold. The window will appear at position 10,10 and the text font will be 9x15. Chapter 4. Some features of yabasic, explained by topic print, input and others Control statements: loops, if and switch Drawing and painting Reading from and writing to files Subroutines and Libraries String processing Arithmetic Data and such Other interesting commands. This chapter has sections for some of the major features of yabasic and names a few commands related with each area. So, depending on your interest, you find the most important commands of this area named; the other commands from this area may then be discovered through the links in the see also-section. print, input and others The print-command is used to put text on the text screen. Here, the term text screen stands for your terminal (under Unix) or the console window (under Windows). At the bottom line, print simply outputs its argument to the text window. However, once you have called clear screen you may use advanced features like printing colors or copying areas of text with getscreen$ or putscreen. You may ask the user for input with the input-command; use inkey$ to get each key as soon as it is pressed. Control statements: loops, if and switch Of course, yabasic has the goto- and gosub-statements; you may go to a label or a line number (which is just a special kind of label). goto, despite its bad reputation ([goto considered harmful]), has still its good uses; however in many cases you are probably better off with loops like repeat-until, while-wend or do-loop; you may leave any of these loops with the break-statement or start the next iteration immediately with continue. Decisions can be made with the if-statement, which comes either in a short and a long form. The short form has no then-keyword and extends up to the end of the line. The long form extends up to the final endif and may use some of the keywords then (which introduces the long form), else or elsif. If you want to test the result of an expression against many different values, you should probably use the switch-statement. Drawing and painting You need to call open window before you may draw anything with either line, circle, rectangle or triangle; all of these statements may be decorated with clear or fill. If you want to change the colour for drawing, use colour. Note however, that there can only be a single window open at any given moment in time. Everything you have drawn can be send to your printer too, if you use the open printer command. To allow for some (very) limited version of animated graphics, yabasic offers the commands getbit$ and putbit, which retrieve rectangular regions from the graphics-window into a string or vice versa. If you want to sense mouse-clicks, you may use the inkey$-function. Reading from and writing to files Before you may read or write a file, you need to open it; once you are done, you should close it. Each open file is designated by a simple number, which might be stored within a variable and must be supplied if you want to access the file. This is simply done by putting a hash ('#') followed by the number of the file after the keyword input (for reading from) or print (for writing to a file) respectively. If you need more control, you may consider reading and writing one byte at a time, using the multi-purpose commands peek and poke. Subroutines and Libraries The best way to break any yabasic-program into smaller, more manageable chunks are subroutines and libraries. They are yabasic's most advanced means of structuring a program. Subroutines are created with the command sub. they accept parameters and may return a value. Subroutines can be called much like any builtin function of yabasic; therefore they allow one to extend the language itself. Once you have created a set of related subroutines and you feel that they could be useful in other programs too, you may collect them into a library. Such a library is contained within a separate file and may be included in any of your programs, using the keyword import. String processing yabasic has the usual functions to extract parts from a string: left$, mid$ and right$. Note, that all of them can be assigned to, i.e. they may change part of a string. If you want to split a string into tokens you should use the functions token or split. There is quite a bunch of other string-processing functions like upper$ (converting to upper case), instr (finding one string within the other), chr$ (converting an ascii-code into a character), glob (testing a string against a pattern) and more. Just follow the links. Arithmetic Yabasic handles numbers and arithmetic: You may calculate trigonometric functions like sin or atan, or logarithms (with log). Bitwise operations, like and or or are available as well min or max (calculate the minimum or maximum of its argument) or mod or int (reminder of a division or integer part or a number). Data and such You may store data within your program within data-statements; during execution you will probably want to read it into arrays, which must have been dimed before. Other interesting commands. * Yabasic programs may start other programs with the commands system and system$. * peek and poke allow one to get and set internal information; either for the operating system (i.e. Unix or Windows) or yabasic itself. * The current time or date can be retrieved with (guess what !) time$ and date$. Chapter 5. All commands and functions of yabasic listed by topic Number processing and conversion Conditions and control structures Data keeping and processing String processing File operations and printing Subroutines and libraries Other commands Graphics and printing Number processing and conversion abs() returns the absolute value of its numeric argument acos() returns the arcus cosine of its numeric argument and() the bitwise arithmetic and asin() returns the arcus sine of its numeric argument atan() returns the arctangent of its numeric argument bin$() converts a number into a sequence of binary digits cos() return the cosine of its single argument dec() convert a base 2 or base 16 number into decimal form eor() compute the bitwise exclusive or of its two arguments euler another name for the constant 2.71828182864 exp() compute the exponential function of its single argument frac() return the fractional part of its numeric argument int() return the integer part of its single numeric argument log() compute the natural logarithm max() return the larger of its two arguments min() return the smaller of its two arguments mod() compute the remainder of a division or() arithmetic or, used for bit-operations pi a constant with the value 3.14159 ran() return a random number sig() return the sign of its argument sin() return the sine of its single argument sqr() compute the square of its argument sqrt() compute the square root of its argument tan() return the tangent of its argument xor() compute the exclusive or ** or ^ raise its first argument to the power of its second Conditions and control structures and logical and, used in conditions break breaks out of a switch statement or a loop case mark the different cases within a switch-statement continue start the next iteration of a for-, do-, repeat- or while-loop default mark the default-branch within a switch-statement do start a (conditionless) do-loop else mark an alternative within an if-statement elsif starts an alternate condition within an if-statement end terminate your program endif ends an if-statement false a constant with the value of 0 fi another name for endif for starts a for-loop gosub continue execution at another point within your program (and return later) goto continue execution at another point within your program (and never come back) if evaluate a condition and execute statements or not, depending on the result label mark a specific location within your program for goto, gosub or restore loop marks the end of an infinite loop next mark the end of a for loop not negate an expression; can be written as ! on gosub jump to one of multiple gosub-targets on goto jump to one of many goto-targets on interrupt change reaction on keyboard interrupts logical or logical or, used in conditions pause pause, sleep, wait for the specified number of seconds repeat start a repeat-loop return return from a subroutine or a gosub sleep pause, sleep, wait for the specified number of seconds switch select one of many alternatives depending on a value then tell the long from the short form of the if-statement true a constant with the value of 1 until end a repeat-loop wait pause, sleep, wait for the specified number of seconds wend end a while-loop while start a while-loop : separate commands from each other Data keeping and processing arraydim() returns the dimension of the array, which is passed as an array reference arraysize() returns the size of a dimension of an array data introduces a list of data-items dim create an array prior to its first use read read data from data-statements redim create an array prior to its first use. A synonym for dim restore reposition the data-pointer String processing asc() accepts a string and returns the position of its first character within the ascii charset chr$() accepts a number and returns the character at this position within the ascii charset glob() check if a string matches a simple pattern hex$() convert a number into hexadecimal instr() searches its second argument within the first; returns its position if found left$() return (or change) left end of a string len() return the length of a string lower$() convert a string to lower case ltrim$() trim spaces at the left end of a string mid$() return (or change) characters from within a string right$() return (or change) the right end of a string split() split a string into many strings str$() convert a number into a string token() split a string into multiple strings trim$() remove leading and trailing spaces from its argument upper$() convert a string to upper case val() converts a string to a number File operations and printing at() can be used in the print-command to place the output at a specified position beep ring the bell within your computer; a synonym for bell bell ring the bell within your computer (just as beep) clear screen erases the text window close close a file, which has been opened before close printer stops printing of graphics print color print with color print colour see print color eof check, if an open file contains data getscreen$() returns a string representing a rectangular section of the text terminal inkey$ wait, until a key is pressed input read input from the user (or from a file) and assign it to a variable line input read in a whole line of text and assign it to a variable open open a file open printer open printer for printing graphics print Write to terminal or file putscreen draw a rectangle of characters into the text terminal reverse print reverse (background and foreground colors exchanged) screen as clear screen clears the text window seek() change the position within an open file tell get the current position within an open file using Specify the format for printing a number # either a comment or a marker for a file-number @ synonymous to at ; suppress the implicit newline after a print-statement Subroutines and libraries end sub ends a subroutine definition export mark a function as globally visible import import a library local mark a variable as local to a subroutine numparams return the number of parameters, that have been passed to a subroutine return return from a subroutine or a gosub static preserves the value of a variable between calls to a subroutine step specifies the increment step in a for-loop sub declare a user defined subroutine Other commands bind() Binds a yabasic-program and the yabasic-interpreter together into a standalone program. compile compile a string with yabasic-code on the fly date$ returns a string with various components of the current date doc special comment, which might be retrieved by the program itself docu$ special array, containing the contents of all docu-statement within the program error raise an error and terminate your program execute$() execute a user defined subroutine, which must return a string execute() execute a user defined subroutine, which must return a number exit terminate your program pause pause, sleep, wait for the specified number of seconds peek retrieve various internal information peek$ retrieve various internal string-information poke change selected internals of yabasic rem start a comment sleep pause, sleep, wait for the specified number of seconds system$() hand a statement over to your operating system and return its output system() hand a statement over to your operating system and return its exitcode time$ return a string containing the current time to this keyword appears as part of other statements wait pause, sleep, wait for the specified number of seconds // starts a comment : separate commands from each other Graphics and printing backcolor specify the colour for subsequent drawing of the background box draw a rectangle. A synonym for rectangle circle draws a circle in the graphic-window clear Erase circles, rectangles or triangless clear window clear the graphic window and begin a new page, if printing is under way close curve close a curve, that has been drawn by the line-command close window close the graphics-window colour specify the colour for subsequent drawing dot draw a dot in the graphic-window fill draw a filled circles, rectangles or triangles getbit$() return a string representing the bit pattern of a rectangle within the graphic window line draw a line mouseb extract the state of the mousebuttons from a string returned by inkey$ mousemod return the state of the modifier keys during a mouseclick mousex return the x-position of a mouseclick mousey return the y-position of a mouseclick new curve start a new curve, that will be drawn with the line-command open window open a graphic window putbit draw a rectangle of pixels into the graphic window rectangle draw a rectangle triangle draw a triangle text write text into your graphic-window window origin move the origin of a window Chapter 6. All commands and functions of yabasic grouped alphabetically A B C D E F G H I L M N O P R S T U V W X Special characters Reserved Words A abs() ? returns the absolute value of its numeric argument acos() ? returns the arcus cosine of its numeric argument and ? logical and, used in conditions and() ? the bitwise arithmetic and arraydim()returns the dimension of the array, which is passed as an array reference arraysize() ? returns the size of a dimension of an array asc() ? accepts a string and returns the position of its first character within the ascii charset asin() ? returns the arcus sine of its numeric argument at() ? can be used in the print-command to place the output at a specified position atan() ? returns the arctangent of its numeric argument Name abs() ? returns the absolute value of its numeric argument Synopsis y=abs(x) Description If the argument of the abs-function is positive (e.g. 2) it is returned unchanged, if the argument is negative (e.g. -1) it is returned as a positive value (e.g. 1). Example print abs(-2),abs(2) This example will print 2 2 See also sig ------------------------------------------------------------------------------- Name acos() ? returns the arcus cosine of its numeric argument Synopsis x=acos(angle) Description acos is the arcus cosine-function, i.e. the inverse of the cos-function. Or, more elaborate: It Returns the angle (in radians, not degrees !), which, fed to the cosine-function will produce the argument passed to the acos-function. Example print acos(0.5),acos(cos(pi)) This example will print 1.0472 3.14159 which are ?/3 and ? respectively. See also cos, asin ------------------------------------------------------------------------------- Name and ? logical and, used in conditions Synopsis if (a and b) ? while (a and b) ? Description Used in conditions (e.g within if, while or until) to join two expressions. Returns true, if and only if its left and right argument are both true and false otherwise. Note, that logical shortcuts may take place. Example input "Please enter a number" a if (a>=1 and a<=9) print "your input is between 1 and 9" See also or,not ------------------------------------------------------------------------------- Name and() ? the bitwise arithmetic and Synopsis x=and(a,b) Description Used to compute the bitwise and of both its argument. Both arguments are treated as binary numbers (i.e. a series of 0 and 1); a bit of the resulting value will then be 1, if both arguments have a 1 at this position in their binary representation. Note, that both arguments are silently converted to integer values and that negative numbers have their own binary representation and may lead to unexpected results when passed to and. Example print and(6,3) This will print 2. This result is clear, if you note, that the binary representation of 6 and 3 are 110 and 011 respectively; this will yield 010 in binary representation or 2 as decimal. See also or, eor and not ------------------------------------------------------------------------------- Name arraydim() ? returns the dimension of the array, which is passed as an array reference Synopsis a=arraydim(b()) Description If you apply the arraydim()-function on a one-dimensional array (i.e. a vector) it will return 1, on a two-dimensional array (i.e. a matrix) it will return 2, and so on. This is mostly used within subroutines, which expect an array among their parameters. Such subroutines tend to use the arraydim-function to check, if the array which has been passed, has the right dimension. E.g. a subroutine to multiply two matrices may want to check, if it really is invoked with two 2-dimensional arrays. Example dim a(10,10),b(10) print arraydim(a()),arraydim(b()) This will print 2 1, which are the dimension of the arrays a() and b(). You may check out the function arraysize for a full-fledged example. See also arraysize and dim. ------------------------------------------------------------------------------- Name arraysize() ? returns the size of a dimension of an array Synopsis x=arraysize(a(),b) Description The arraysize-function computes the size of a specified dimension of a specified array. Here, size stands for the maximum number, that may be used as an index for this array. The first argument to this function must be an reference to an array, the second one specifies, which of the multiple dimensions of the array should be taken to calculate the size. An Example involving subroutines: Let's say, an array has been declared as dim a(10,20) (that is a two-dimensional array or a matrix). If this array is passed as an array reference to a subroutine, this sub will not know, what sort of array has been passed. With the arraydim-function the sub will be able to find the dimension of the array, with the arraysize-function it will be able to find out the size of this array in its two dimensions, which will be 10 and 20 respectively. Our sample array is two dimensional; if you envision it as a matrix this matrix has 10 lines and 20 columns (see the dim-statement above. To state it more formally: The first dimension (lines) has a size of 10, the second dimension (columns) has a size of 20; these numbers are those returned by arraysize(a (),1) and arraysize(a(),2) respectively. Refer to the example below for a typical usage. Example rem rem This program adds two matrices elementwise. rem dim a(10,20),b(10,20),c(10,20) rem initialization of the arrays a() and b() for y=1 to 10:for x=1 to 20 a(y,x)=int(ran(4)):b(y,x)=int(ran(4)) next x:next y matadd(a(),b(),c()) print "Result:" for x=1 to 20 for y=10 to 1 step -1 print c(y,x)," "; next y print next x sub matadd(m1(),m2(),r()) rem This sub will add the matrices m1() and m2() rem elementwise and store the result within r() rem This is not very useful but easy to implement. rem However, this sub excels in checking its arguments rem with arraydim() and arraysize() local x:local y if (arraydim(m1())<>2 or arraydim(m2())<>2 or arraydim(r())<>2) then error "Need two dimensional arrays as input" endif y=arraysize(m1(),1):x=arraysize(m1(),2) if (arraysize(m2(),1)<>y or arraysize(m2(),2)<>x) then error "The two matrices cannot be added elementwise" endif if (arraysize(r(),1)<>y or arraysize(r(),2)<>x) then error "The result cannot be stored in the third argument" endif local xx:local yy for xx=1 to x for yy=1 to y r(yy,xx)=m1(yy,xx)+m2(yy,xx) next yy next xx end sub See also arraydim and dim. ------------------------------------------------------------------------------- Name asc() ? accepts a string and returns the position of its first character within the ascii charset Synopsis a=asc(char$) Description The asc-function accepts a string, takes its first character and looks it up within the ascii-charset; this position will be returned. The asc-function is the opposite of the chr$-function. There are valid uses for asc, however, comparing strings (i.e. to bring them into alphabetical sequence) is not among them; in such many cases you might consider to compare strings directly with <, = and > (rather than converting a string to a number and comparing this number). Example input "Please enter a letter between 'a' and 'y': " a$ if (a$<"a" or a$>"y") print a$," is not in the proper range":end print "The letter after ",a$," is ",chr$(asc(a$)+1) See also chr$ ------------------------------------------------------------------------------- Name asin() ? returns the arcus sine of its numeric argument Synopsis angle=asin(x) Description acos is the arcus sine-function, i.e. the inverse of the sin-function. Or, more elaborate: It Returns the angle (in radians, not degrees !), which, fed to the sine-function will produce the argument passed to the asin-function. Example print asin(0.5),asin(sin(pi)) This will print 0.523599 -2.06823e-13 which is ? and almost 0 respectively. See also sin, acos ------------------------------------------------------------------------------- Name at() ? can be used in the print-command to place the output at a specified position Synopsis clear screen ? print at(a,b) print @(a,b) Description The at-clause takes two numeric arguments (e.g. at(2,3)) and can be inserted after the print-keyword. at() can be used only if clear screen has been executed at least once within the program (otherwise you will get an error). The two numeric arguments of the at-function may range from 0 to the width of your terminal minus 1, and from 0 to the height of your terminal minus 1; if any argument exceeds these values, it will be truncated accordingly. However, yabasic has no influence on the size of your terminal (80x25 is a common, but not mandatory), the size of your terminal and the maximum values acceptable within the at-clause may vary. To get the size of your terminal you may use the peek-function: peek("screenwidth") returns the width of your terminal and peek ("screenheight") its height. Example clear screen maxx=peek("screenwidth")-1:maxy=peek("screenheight")-1 for x=0 to maxx print at(x,maxy*(0.5+sin(2*pi*x/maxx)/2)) "*" next x This example plots a full period of the sine-function across the screen. See also print, clear screen, color ------------------------------------------------------------------------------- Name atan() ? returns the arctangent of its numeric argument Synopsis angle=atan(a,b) angle=atan(a) Description atan is the arctangent-function, i.e. the inverse of the tan-function. Or, more elaborate: It Returns the angle (in radians, not degrees !), which, fed to the tan-function will produce the argument passed to the atan-function. The atan-function has a second form, which accepts two arguments: atan(a,b) which is (mostly) equivalent to atan(a/b) except for the fact, that the two-argument-form returns an angle in the range -? to ?, whereas the one-argument-form returns an angle in the range -?/2 to ?/2. To understand this you have to be good at math. Example print atan(1),atan(tan(pi)),atan(-0,-1),atan(-0,1) This will print 0.463648 2.06823e-13 -3.14159 3.14159 which is ?/4, almost 0, -? and ? respectively. See also tan, sin B backcolor ? change color for background of graphic window backcolour ? see backcolor beep ? ring the bell within your computer; a synonym for bell bell ? ring the bell within your computer (just as beep) bin$() ? converts a number into a sequence of binary digits bind() ? Binds a yabasic-program and the yabasic-interpreter together into a standalone program. box ? draw a rectangle. A synonym for rectangle break ? breaks out of one or more loops or switch statements Name color ? change color for background of graphic window Synopsis backcolour red,green,blue backcolour "red,green,blue" Description Change the color, that becomes visible, if any portion of the window is erased, e.g. after clear window or clear line. Note however, that parts of the window, that display the old background color will not change. As with the color-command, the new background color can either be specified as a triple of three numbers or as a single string, that contains those three numbers separated by commas. Example open window 255,255 for x=10 to 235 step 10:for y=10 to 235 step 10 backcolour x,y,0 clear window sleep 1 next y:next x This changes the background colour of the graphic window repeatedly and clears it every time, so that it is filled with the new background colour. See also open window, color, line, rectangle, triangle, circle ------------------------------------------------------------------------------- Name backcolour ? see backcolor Synopsis backcolour red,green,blue backcolour "red,green,blue" See also color ------------------------------------------------------------------------------- Name beep ? ring the bell within your computer; a synonym for bell Synopsis beep Description The bell-command rings the bell within your computer once. This command is not a sound-interface, so you can neither vary the length or the height of the sound (technically, it just prints \a). bell is exactly the same as beep. Example beep:print "This is a problem ..." See also beep ------------------------------------------------------------------------------- Name bell ? ring the bell within your computer (just as beep) Synopsis bell Description The beep-command rings the bell within your computer once. beep is a synonym for bell. Example print "This is a problem ...":beep See also bell ------------------------------------------------------------------------------- Name bin$() ? converts a number into a sequence of binary digits Synopsis hexadecimal$=bin$(decimal) Description The bin$-function takes a single numeric argument an converts it into a string of binary digits (i.e. zeroes and ones). If you pass a negative number to bin$, the resulting string will be preceded by a '-'. If you want to convert the other way around (i.e. from binary to decimal) you may use the dec-function. Example for a=1 to 100 print bin$(a) next a This example prints the binary representation of all digits between 1 and 100. See also hex$, dec ------------------------------------------------------------------------------- Name bind() ? Binds a yabasic-program and the yabasic-interpreter together into a standalone program. Synopsis bind("foo.exe") Description The bind-command combines your own yabasic-program (plus all the libraries it does import) and the interpreter by copying them into a new file, whose name is passed as an argument. This new program may then be executed on any computer, even if it does not have yabasic installed. Please see the section about creating a standalone-program for details. Example if (!peek("isbound")) then bind "foo" print "Successfully created the standalone executable 'foo' !" exit endif print "Hello World !" This example creates a standalone program foo from itself. See also The section about creating a standalone-program, the peek-function and the command line options for Unix and Windows. ------------------------------------------------------------------------------- Name box ? draw a rectangle. A synonym for rectangle Synopsis See the rectangle-command. Description The box-command does exactly the same as the rectangle-command; it is just a synonym. Therefore you should refer to the entry for the rectangle-command for further information. ------------------------------------------------------------------------------- Name break ? breaks out of one or more loops or switch statements Synopsis break break 2 Description break transfers control immediately outside the enclosing loop or switch statement. This is the preferred way of leaving a such a statement (rather than goto, which is still possible in most cases). An optional digit allows one to break out of multiple levels, e.g. to leave a loop from within a switch statement. Please note, that only a literal (e.g. 2) is allowed at this location. Example for a=1 to 10 break print "Hi" next a while(1) break print "Hi" wend repeat break print "Hi" until(0) switch 1 case 1:break case 2:case 3:print "Hi" end switch This example prints nothing at all, because each of the loops (and the switch-statement) does an immediate break (before it could print any "Hi"). See also for, while, repeat and switch. C casemark the different cases within a switch-statement chr$() ? accepts a number and returns the character at this position within the ascii charset circle ? draws a circle in the graphic-window clear ? Erase circles, rectangles or triangles clear screen ? erases the text window clear window ? clear the graphic window and begin a new page, if printing is under way close ? close a file, which has been opened before close curve ? close a curve, that has been drawn by the line-command close printer ? stops printing of graphics close window ? close the graphics-window color ? change color for any subsequent drawing-command colour ? see color compile ? compile a string with yabasic-code on the fly continue ? start the next iteration of a for-, do-, repeat- or while-loop cos() ? return the cosine of its single argument Name case ? mark the different cases within a switch-statement Synopsis switch a case 1 case 2 ? end switch ? switch a$ case "a" case "b" ? end switch Description Please see the switch-statement. Example input a switch(a) case 1:print "one":break case 2:print "two":break default:print "more" end switch Depending on your input (a number is expected) this code will print one or two or otherwise more. See also switch ------------------------------------------------------------------------------- Name chr$() ? accepts a number and returns the character at this position within the ascii charset Synopsis character$=chr$(ascii) Description The chr$-function is the opposite of the asc-function. It looks up and returns the character at the given position within the ascii-charset. It's typical use is to construct nonprintable characters which do not occur on your keyboard. Nevertheless you won't use chr$ as often as you might think, because the most important nonprintable characters can be constructed using escape-sequences using the \-character (e.g. you might use \n instead of chr$(10) wherever you want to use the newline-character). Example print "a",chr$(10),"b" This will print the letters 'a' and 'b' in different lines because of the intervening newline-character, which is returned by chr$(10). See also asc ------------------------------------------------------------------------------- Name circle ? draws a circle in the graphic-window Synopsis circle x,y,r clear circle x,y,r fill circle x,y,r clear fill circle x,y,r Description The circle-command accepts three parameters: The x- and y-coordinates of the center and the radius of the circle. Some more observations related with the circle-command: * The graphic-window must have been opened already. * The circle may well extend over the boundaries of the window. * If you have issued open printer before, the circle will finally appear in the printed hard copy of the window. * fill circle will draw a filled (with black ink) circle. * clear circle will erase (or clear) the outline of the circle. * clear fill circle or fill clear circle will erase the full area of the circle. Example open window 200,200 for n=1 to 2000 x=ran(200) y=ran(200) fill circle x,y,10 clear fill circle x,y,8 next n This code will open a window and draw 2000 overlapping circles within. Each circle is drawn in two steps: First it is filled with black ink (fill circle x,y,10), then most of this circle is erased again (clear fill circle x,y,8). As a result each circle is drawn with an opaque white interior and a 2-pixel outline (2-pixel, because the radii differ by two). See also open window, open printer, line, rectangle, triangle ------------------------------------------------------------------------------- Name clear ? Erase circles, rectangles or triangles Synopsis clear rectangle 10,10,90,90 clear fill circle 50,50,20 clear triangle 10,10,20,20,50,30 Description May be used within the circle, rectangle or triangle command and causes these shapes to be erased (i.e. be drawn in the colour of the background). fill can be used in conjunction with and wherever the fill-clause may appear. Used alone, clear will erase the outline (not the interior) of the shape (circle, rectangle or triangle); together with fill the whole shape (including its interior) is erased. Example open window 200,200 fill circle 100,100,50 clear fill rectangle 10,10,90,90 This opens a window and draws a pacman-like figure. See also clear, circle, rectangle, triangle ------------------------------------------------------------------------------- Name clear screen ? erases the text window Synopsis clear screen Description clear screen erases the text window (the window where the output of print appears). It must be issued at least once, before some advanced screen-commands (e.g. print at or inkey$) may be called; this requirement is due to some limitations of the curses-library, which is used by yabasic under Unix for some commands. Example clear screen print "Please press a key : "; a$=inkey$ print a$ The clear screen command is essential here; if it would be omitted, yabasic would issue an error ("need to call 'clear screen' first") while trying to execute the inkey$-function. See also inkey$ ------------------------------------------------------------------------------- Name clear window ? clear the graphic window and begin a new page, if printing is under way Synopsis clear window Description clear window clears the graphic window. If you have started printing the graphic via open printer, the clear window-command starts a new page as well. Example open window 200,200 open printer "t.ps" for a=1 to 10 if (a>1) clear window text 100,100,"Hallo "+str$(a) next a close printer close window This example prints 10 pages, with the text "Hello 1", "Hello 2", ? and so on. The clear screen-command clears the graphics window and starts a new page. See also open window, open printer ------------------------------------------------------------------------------- Name close ? close a file, which has been opened before Synopsis close filenum close # filenum Description The close-command closes an open file. You should issue this command as soon as you are done with reading from or writing to a file. Example open "my.data" for reading as 1 input #1 a print a close 1 This program opens the file "my.data", reads a number from it, prints this number and closes the file again. See also open ------------------------------------------------------------------------------- Name close curve ? close a curve, that has been drawn by the line-command Synopsis new curve line to x1,y1 ? close curve Description The close curve-command closes a sequence of lines, that has been drawn by repeated line to-commands. Example open window 200,200 new curve line to 100,50 line to 150,150 line to 50,150 close curve This example draws a triangle: The three line to-commands draw two lines; the final line is however not drawn explicitly, but drawn by the close curve-command. See also line, new curve ------------------------------------------------------------------------------- Name close printer ? stops printing of graphics Synopsis close printer Description The close printer-command ends the printing graphics. Between open printer and close printer everything you draw (e.g. circles, lines ?) is sent to your printer. close printer puts an end to printing and will make your printer eject the page. Example open window 200,200 open printer circle 100,100,50 close printer close window As soon as close printer is executed, your printer will eject a page with a circle on it. See also open printer ------------------------------------------------------------------------------- Name close window ? close the graphics-window Synopsis close window Description The close window-command closes the graphics-window, i.e. it makes it disappear from your screen. It includes an implicit close printer, if a printer has been opened previously. Example open window 200,200 circle 100,100,50 close window This example will open a window, draw a circle and close the window again; all this without any pause or delay, so the window will be closed before you may regard the circle.. See also open window ------------------------------------------------------------------------------- Name color ? change color for any subsequent drawing-command Synopsis colour red,green,blue colour "red,green,blue" Description Change the color, in which lines, dots, circles, rectangles or triangles are drawn. The color-command accepts three numbers in the range 0 ? 255 (as in the first line of the synopsis above). Those numbers specify the intensity for the primary colors red, green and blue respectively. As an example 255,0,0 is red and 255,255,0 is yellow. Alternatively you may specify the color with a single string (as in the second line of the synopsis above); this string should contain three numbers, separated by commas. As an example "255,0,255" would be violet. Using this variant of the colour-command, you may use symbolic names for colours: open window 100,100 yellow$="255,255,0" color yellow$ text 50,50,"Hallo" , which reads much clearer. Example open window 255,255 for x=10 to 235 step 10:for y=10 to 235 step 10 colour x,y,0 fill rectangle x,y,x+10,y+10 next y:next x This fills the window with colored rectangles. However, none of the used colours contains any shade of blue, because the color-command has always 0 as a third argument. See also open window, backcolor, line, rectangle, triangle, circle ------------------------------------------------------------------------------- Name colour ? see color Synopsis colour red,green,blue colour "red,green,blue" See also color ------------------------------------------------------------------------------- Name compile ? compile a string with yabasic-code on the fly Synopsis compile(code$) Description This is an advanced command (closely related with the execute-command). It allows you to compile a string of yabasic-code (which is the only argument). Afterwards the compiled code is a normal part of your program. Note, that there is no way to remove the compiled code. Example compile("sub mysub(a):print a:end sub") mysub(2) This example creates a function named mysub, which simply prints its single argument. See also execute ------------------------------------------------------------------------------- Name continue ? start the next iteration of a for-, do-, repeat- or while-loop Synopsis continue Description You may use continue within any loop to start the next iteration immediately. Depending on the type of the loop, the loop-condition will or will not be checked. Especially: for- and while-loops will evaluate their respective conditions, do- and repeat-loops will not. Remark: Another way to change the flow of execution within a loop, is the break-command. Example for a=1 to 100 if mod(a,2)=0 continue print a next a This example will print all odd numbers between 1 and 100. See also for, do, repeat, while, break ------------------------------------------------------------------------------- Name cos() ? return the cosine of its single argument Synopsis x=cos(angle) Description The cos-function expects an angle (in radians) and returns its cosine. Example print cos(pi) This example will print -1. See also acos, sin D data ? introduces a list of data-items date$ ? returns a string with various components of the current date dec() ? convert a base 2 or base 16 number into decimal form defaultmark the default-branch within a switch-statement dim ? create an array prior to its first use do ? start a (conditionless) do-loop doc ? special comment, which might be retrieved by the program itself docu$ ? special array, containing the contents of all docu-statement within the program dot ? draw a dot in the graphic-window Name data ? introduces a list of data-items Synopsis data 9,"world" ? read b,a$ Description The data-keyword introduces a list of comma-separated list of strings or numbers, which may be retrieved with the read-command. The data-command itself does nothing; it just stores data. A single data-command may precede an arbitrarily long list of values, in which strings or numbers may be mixed at will. yabasic internally uses a data-pointer to keep track of the current location within the data-list; this pointer may be reset with the restore-command. Example do restore for a=1 to 4 read num$,num print num$,"=",num next a loop data "eleven",11,"twelve",12,"thirteen",13,"fourteen",14 This example just prints a series of lines eleven=11 up to fourteen=14 and so on without end. The restore-command ensures that the list of data-items is read from the start with every iteration. See also read, restore ------------------------------------------------------------------------------- Name date$ ? returns a string with various components of the current date Synopsis a$=date$ Description The date$-function (which must be called without parentheses; i.e. date$() would be an error) returns a string containing various components of a date; an example would be 4-05-27-2004-Thu-May. This string consists of various fields separated by hyphens ("-"): * The day within the week as a number in the range 0 (=Sunday) to 6 (= Saturday) (in the example above: 4, i.e. Thursday). * The month as a number in the range 1 (=January) to 12 (=December) (in the example: 5 which stands for May). * The day within the month as a number in the range 1 to 31 (in the example: 27). * The full, 4-digit year (in the example: 2004, which reminds me that I should adjust the clock within my computer ?). * The abbreviated name of the day within the week (Mon to Sun). * The abbreviated name of the month (Jan to Dec). Therefore the whole example above (4-05-27-2004-Thu-May) would read: day 4 in the week (counting from 0), May 27 in the year 2004, which is a Thursday in May. Note, that all fields within the string returned by date$ have a fixed with (numbers are padded with zeroes); therefore it is easy to extract the various fields of a date format with mid$. Example rem Two ways to print the same ... print mid$(date$,3,10) dim fields$(6) a=split(date$,fields$(),"-") print fields$(2),"-",fields$(3),"-",fields$(4) This example shows two different techniques to extract components from the value returned by date$. The mid$-function is the preferred way, but you could just as well split the return-value of date$ at every "-" and store the result within an array of strings. See also time$ ------------------------------------------------------------------------------- Name dec() ? convert a base 2 or base 16 number into decimal form Synopsis a=dec(number$) a=dec(number$,base) Description The dec-function takes the string-representation of a base-2 or base-16 (which is the default) number and converts it into a decimal number. The optional second argument (base) might be used to specify a base other than 16. However, currently only base 2 or base 16 are supported. Example input "Please enter a binary number: " a$ print a$," is ",dec(a$) See also bin$, hex$ ------------------------------------------------------------------------------- Name default ? mark the default-branch within a switch-statement Synopsis switch a+3 case 1 ? case 2 ? default ? end switch Description The default-clause is an optional part of the switch-statement (see there for more information). It introduces a series of statements, that should be executed, if none of the cases matches, that have been specified before (each with its own case-clause). So default specifies a default to be executed, if none of the explicitly named cases matches; hence its name. Example print "Please enter a number between 0 and 6," print "specifying a day in the week." input d switch d case 0:print "Monday":break case 1:print "Tuesday":break case 2:print "Wednesday":break case 3:print "Thursday":break case 4:print "Friday":break case 5:print "Saturday":break case 6:print "Sunday":break default:print "Hey you entered something invalid !" end switch This program translates a number between 0 and 6 into the name of a weekday; the default-case is used to detect (and complain about) invalid input. See also sub, case ------------------------------------------------------------------------------- Name dim ? create an array prior to its first use Synopsis dim array(x,y) dim array$(x,y) Description The dim-command prepares one or more arrays (of either strings or numbers) for later use. This command can also be used to enlarges an existing array. When an array is created with the dim-statement, memory is allocated and all elements are initialized with either 0 (for numerical arrays) or "" (for string arrays). If the array already existed, and the dim-statement specifies a larger size than the current size, the array is enlarged and any old content is preserved. Note, that dim cannot be used to shrink an array: If you specify a size, that is smaller than the current size, the dim-command does nothing. Finally: To create an array, that is only known within a single subroutine, you should use the command local, which creates local variables as well as local arrays. Example dim a(5,5) for x=1 to 5:for y=1 to 5 a(x,y)=int(ran(100)) next y:next x printmatrix(a()) dim a(7,7) printmatrix(a()) sub printmatrix(ar()) local x,y,p,q x=arraysize(ar(),1) y=arraysize(ar(),2) for q=1 to y for p=1 to y print ar(p,q),"\t"; next p print next q end sub This example creates a 2-dimensional array (i.e. a matrix) with the dim-statement and fills it with random numbers. The second dim-statement enlarges the array, all new elements are filled with 0. The subroutine printmatrix just does, what its name says. See also arraysize, arraydim, local ------------------------------------------------------------------------------- Name do ? start a (conditionless) do-loop Synopsis do ? loop Description Starts a loop, which is terminated by loop; everything between do and loop will be repeated forever. This loop has no condition, so it is an infinite loop; note however, that a break- or goto-statement might be used to leave this loop anytime. Example do a=a+1 print a if (a>100) break loop This example prints the numbers between 1 and 101. The break-statement is used to leave the loop. See also loop, repeat, while, break ------------------------------------------------------------------------------- Name doc ? special comment, which might be retrieved by the program itself Synopsis doc This is a comment docu This is another comment Description Introduces a comment, which spans up to the end of the line. But other than the rem-comment, any docu-comment is collected within the special docu$-array and might be retrieved later on. Moreover you might invoke yabasic -docu foo.yab on the command line to retrieve the embedded documentation within the program foo.yab. Instead of doc you may just as well write docu or even documentation. Example rem Hi, this has been written by me rem doc This program asks for a number and doc prints this number multiplied with 2 rem rem Print out rhe above message for a=1 to arraysize(docu$()):print docu$(a):next a rem Read and print the number input "Please input a number: " x print x*2 This program uses the comments within its code to print out a help message for the user. The contents of the doc-lines are retrieved from the docu$-array; if you do not want a comment to be collected within this array, use the rem-statement instead. See also docu$, rem ------------------------------------------------------------------------------- Name docu$ ? special array, containing the contents of all docu-statement within the program Synopsis a$=docu$(1) Description Before your program is executed, yabasic collects the content of all the doc-statements within your program within this 1-dimensional array (well only those within the main-program, libraries are skipped). You may use the arraysize function to find out, how many lines it contains. Example docu docu This program reads two numbers docu and adds them. docu rem retrieve and print the embedded documentation for a=1 to arraysize(docu$(),1) print docu$(a) next a input "First number: " b input "Second number: " c print "The sum of ",b," and ",c," is ",b+c This program uses the embedded documentation to issue a usage-message. See also arraydim, rem ------------------------------------------------------------------------------- Name dot ? draw a dot in the graphic-window Synopsis dot x,y clear dot x,y Description Draws a dot at the specified coordinates within your graphic-window. If printing is in effect, the dot appears on your printout too. Use the functions peek("winheight") or peek("winwidth") to get the size of your window and hence the boundaries of the coordinates specified for the dot-command. Example open window 200,200 circle 100,100,100 do x=ran(200):y=ran(200) dot x,y total=total+1 if (sqrt((x-100)^2+(y-100)^2)<100) in=in+1 print 4*in/total loop This program uses a well known algorithm to compute ?. See also line, open window E else ? mark an alternative within an if-statement elsif ? starts an alternate condition within an if-statement end ? terminate your program endif ? ends an if-statement end sub ? ends a subroutine definition eof ? check, if an open file contains data eor() ? compute the bitwise exclusive or of its two arguments error ? raise an error and terminate your program euler ? another name for the constant 2.71828182864 execute$() ? execute a user defined subroutine, which must return a string execute() ? execute a user defined subroutine, which must return a number exit ? terminate your program exp() ? compute the exponential function of its single argument export ? mark a function as globally visible Name else ? mark an alternative within an if-statement Synopsis if (?) then ? else ? endif Description The else-statement introduces the alternate branch of an if-statement. I.e. it starts the sequence of statements, which is executed, if the condition of the if-statement is not true. Example input "Please enter a number: " a if (mod(a,2)=1) then print a," is odd." else print a," is even." endif This program detects, if the number you have entered is even or odd. See also if ------------------------------------------------------------------------------- Name elsif ? starts an alternate condition within an if-statement Synopsis if (?) then ? elseif (?) ? elsif (?) then ? else ? endif Description The elsif-statement is used to select a single alternative among a series of choices. With each elsif-statement you may specify a condition, which is tested, if the main condition (specified with the if-statement) has failed. Note that elsif might be just as well written as elseif. Within the example below, two variables a and b are tested against a range of values. The variable a is tested with the elsif-statement. The very same tests are performed for the variable b too; but here an involved series of if-else-statements is employed, making the tests much more obscure. Example input "Please enter a number: " a if (a<0) then print "less than 0" elseif (a<=10) then print "between 0 and 10" elsif (a<=20) print "between 11 and 20" else print "over 20" endif input "Please enter another number: " b if (b<0) then print "less than 0" else if (b<=10) then print "between 0 and 10" else if (b<=20) then print "between 11 and 20" else print "over 20" endif endif endif Note, that the very same tests are performed for the variables a and b, but can be stated much more clearly with the elsif-statement. Note, that elsif might be written as elseif too, and that the keyword then is optional. See also if, else ------------------------------------------------------------------------------- Name end ? terminate your program Synopsis end Description Terminate your program. Much (but not exactly) like the exit command. Note, that end may not end your program immediately; if you have opened a window or called clear screen, yabasic assumes, that your user wants to study the output of your program after it has ended; therefore it issues the line ---Program done, press RETURN--- and waits for a key to be pressed. If you do not like this behaviour, consider using exit. Example print "Do you want to continue ?" input "Please answer y(es) or n(o): " a$ if (lower$(left$(a$,1))="n") then print "bye" end fi See also exit ------------------------------------------------------------------------------- Name endif ? ends an if-statement Synopsis if (?) then ? endif Description The endif-statement closes (or ends) an if-statement. Note, that endif may be written in a variety of other ways: end if, end-if or even fi. The endif-statement must be omitted, if the if-statement does not contain the keyword then (see the example below). Such an if-statement without endif extends only over a single line. Example input "A number please: " a if (a<10) then print "Your number is less than 10." endif REM and now without endif input "A number please: " a if (a<10) print "Your number is less than 10." See also if ------------------------------------------------------------------------------- Name end sub ? ends a subroutine definition Synopsis sub foo(?) ? end sub Description Marks the end of a subroutine-definition (which starts with the sub-keyword). The whole concept of subroutines is explained within the entry for sub. Example print foo(3) sub foo(a) return a*2 end sub This program prints out 6. The subroutine foo simply returns twice its argument. See also sub ------------------------------------------------------------------------------- Name eof ? check, if an open file contains data Synopsis open 1,"foo.bar" if (eof(1)) then ? end if Description The eof-function checks, if there is still data left within an open file. As an argument it expects the file-number as returned by (or used within) the open-function (or statement). Example a=open("foo.bar") while(not eof(a)) input #a,a$ print a$ end while This example will print the contents of the file "foo.bar". The eof-function will terminate the loop, if there is no more data left within the file. See also open ------------------------------------------------------------------------------- Name eor() ? compute the bitwise exclusive or of its two arguments Synopsis print eor(a,b) Description The eor-function takes two arguments and computes their bitwise exclusive or. See your favorite introductory text on informatics for an explanation of this function. The xor-function is the same as the eor function; both are synonymous; however they have each their own description, so you may check out the entry of xor for a slightly different view. Example for a=0 to 3 for b=0 to 3 print fill$(bin$(a))," eor ",fill$(bin$(b))," = ",fill$(bin$(eor(a,b))) next b next a sub fill$(a$) return right$("0"+a$,2) end sub This example prints a table, from which you may figure, how the eor-function is computed. See also and, or ------------------------------------------------------------------------------- Name error ? raise an error and terminate your program Synopsis error "Wrong, wrong, wrong !!" Description Produces the same kind or error messages, that yabasic itself produces (e.g. in case of a syntax-error). The single argument is issued along with the current line-number. Example input "Please enter a number between 1 and 10: " a if (a<1 or a>10) error "Oh no ..." This program is very harsh in checking the users input; instead of just asking again, the program terminates with an error, if the user enters something wrong. The error message would look like this: ---Error in t.yab, line 2: Oh no ... ---Error: Program stopped due to an error See also Well, there should be a corresponding called warning; unfortunately ther is none yet. ------------------------------------------------------------------------------- Name euler ? another name for the constant 2.71828182864 Synopsis foo=euler Description euler is the well known constant named after Leonard Euler; its value is 2.71828182864. euler is not a function, so parens are not allowed (i.e. euler() will produce an error). Finally, you may not assign to euler; it wouldn't sense anyway, because it is a constant. Example print euler See also pi ------------------------------------------------------------------------------- Name execute$() ? execute a user defined subroutine, which must return a string Synopsis print execute$("foo$","arg1","arg2") Description execute$ can be used to execute a user defined subroutine, whose name may be specified as a string expression. This feature is the only way to execute a subroutine, whose name is not known by the time you write your program. This might happen, if you want to execute a subroutine, which is compiled (using the compile command) during the course of execution of your program. Note however, that the execute$-function is not the preferred method to execute a user defined subroutine; in almost all cases you should just execute a subroutine by writing down its name within your yabasic program (see the example). Example print execute$("foo$","Hello","world !") sub foo$(a$,b$) return a$+" "+b$ end sub The example simply prints Hello world !, which is the return value of the user defined subroutine foo$. The same could be achieved by executing: print foo$(a$,b$) See also compile, execute ------------------------------------------------------------------------------- Name execute() ? execute a user defined subroutine, which must return a number Synopsis print execute("bar","arg1","arg2") Description The execute-function is the counterpart of the execute$-function (please see there for some caveats). execute executes subroutines, which returns a number. Example print execute("bar",2,3) sub bar(a,b) return a+b end sub See also compile, execute$ ------------------------------------------------------------------------------- Name exit ? terminate your program Synopsis exit exit 1 Description Terminate your program and return any given value to the operating system. exit is similar to end, but it will terminate your program immediately, no matter what. Example print "Do you want to continue ?" input "Please answer y(es) or n(o): " a$ if (lower$(left$(a$,1))="n") exit 1 See also end ------------------------------------------------------------------------------- Name exp() ? compute the exponential function of its single argument Synopsis foo=exp(bar) Description This function computes e to the power of its argument, where e is the well known euler constant 2.71828182864. The exp-function is the inverse of the log-function. Example open window 100,100 for x=0 to 100 dot x,100-100*exp(x/100)/euler next x This program plots part of the exp-function, however the range is rather small, so that you may not recognize the function from this plot. See also log ------------------------------------------------------------------------------- Name export ? mark a function as globally visible Synopsis export sub foo(bar) ? end sub Description The export-statement is used within libraries to mark a user defined subroutine as visible outside the library wherein it is defined. Subroutines, which are not exported, must be qualified with the name of the library, e.g. foo.baz (where foo is the name of the library and baz the name of the subroutine); exported subroutines may be used without specifying the name of the library, e.g. bar. Therefore export may only be useful within libraries. Example The library foo.bar (which is listed below) defines two functions bar and baz, however only the function bar is exported and therefore visible even outside the library; baz is not exported and may only be used within the library foo.yab: export sub bar() print "Hello" end sub sub baz() print "World" end sub Now within your main program cux.yab (which imports the library foo.yab); note that this program produces an error: import foo print "Calling subroutine foo.bar (okay) ..." foo.bar() print "done." print "Calling subroutine bar (okay) ..." bar() print "done." print "Calling subroutine foo.baz (okay) ..." foo.baz() print "done." print "Calling subroutine baz (NOT okay) ..." baz() print "done." The output when executing yabasic foo.yab is this: Calling subroutine foo.bar (okay) ... Hello done. Calling subroutine bar (okay) ... Hello done. Calling subroutine foo.baz (okay) ... World done. Calling subroutine baz (NOT okay) ... ---Error in main.yab, line 16: can't find subroutine 'baz' ---Dump: sub baz() called in main.yab,16 ---Error: Program stopped due to an error As the error message above shows, the subroutine baz must be qualified with the name of the library, if used outside the library, wherein it is defined (e.g. foo.baz. I.e. outside the library foo.yab you need to write foo.baz. baz alone would be an error. The subroutine bar (without adding the name of the library) however may (and probably should) be used in any program, which imports the library foo.yab. Note In some sense the set of exported subroutines constitutes the interface of a library. See also sub, import F false ? a constant with the value of 0 fianother name for endif fill ? draw a filled circles, rectangles or triangles for ? starts a for-loop frac() ? return the fractional part of its numeric argument Name false ? a constant with the value of 0 Synopsis okay=false Description The constant false can be assigned to variables which later appear in conditions (e.g. within an if-statement. false may also be written as FALSE or even FaLsE. Example input "Please enter a number between 1 and 10: " a if (check_input(a)) print "Okay" sub check_input(x) if (x>10 or x<1) return false return true end sub The subroutine check_input checks its argument and returns true or false according to the outcome of the check.. See also true ------------------------------------------------------------------------------- Name fi ? another name for endif Synopsis if (?) ? fi Description fi marks the end of an if-statement and is exactly equivalent to endif, please see there for further information. Example input "A number please: " a if (a<10) then print "Your number is less than 10." fi See also endif ------------------------------------------------------------------------------- Name fill ? draw a filled circles, rectangles or triangles Synopsis fill rectangle 10,10,90,90 fill circle 50,50,20 fill triangle 10,20,20,10,20,20 Description The keyword fill may be used within the circle, rectangle or triangle command and causes these shapes to be filled. fill can be used in conjunction with and wherever the clear-clause may appear. Used alone, fill will fill the interior of the shape (circle, rectangle or triangle); together with clear the whole shape (including its interior) is erased. Example open window 200,200 fill circle 100,100,50 clear fill rectangle 10,10,90,90 This opens a window and draws a pacman-like figure. See also clear, circle, rectangle, triangle ------------------------------------------------------------------------------- Name for ? starts a for-loop Synopsis for a=1 to 100 step 2 ? next a Description The for-loop lets its numerical variable (a in the synopsis) assume all values within the given range. The optional step-clause may specify a value (default: 1) by which the variable will be incremented (or decremented, if step is negative). Any for-statement can be replaced by a set of ifs and gotos; as you may infer from the example below this is normally not feasible. However if you want to know in detail how the for-statement works, you should study this example, which presents a for-statement and an exactly equivalent series of ifs and gotos. Example for a=1 to 10 step 2:print a:next a=1 label check if (a>10) goto done print a a=a+2 goto check label done This example simply prints the numbers 1, 3, 5, 7 and 9. It does this twice: First with a simple for-statement and then with ifs and gotos. See also step, next ------------------------------------------------------------------------------- Name frac() ? return the fractional part of its numeric argument Synopsis x=frac(y) Description The frac-function takes its argument, removes all the digits to the left of the comma and just returns the digits right of the comma, i.e. the fractional part. Refer to the example to learn how to rewrite frac by employing the int-function. Example for a=1 to 10 print frac(sqr(a)) print sqr(a)-int(sqr(a)) next a The example prints the fractional part of the square root of the numbers between 1 and 10. Each result is computed (and printed) twice: Once by employing the frac-function and once by employing the int-function. See also int G getbit$() ? return a string representing the bit pattern of a rectangle within the graphic window getscreen$() ? returns a string representing a rectangular section of the text terminal glob() ? check if a string matches a simple pattern gosub ? continue execution at another point within your program (and return later) goto ? continue execution at another point within your program (and never come back) Name getbit$() ? return a string representing the bit pattern of a rectangle within the graphic window Synopsis a$=getbit$(10,10,20,20) a$=getbit$(10,10 to 20,20) Description The function getbit returns a string, which contains the encoded bit-pattern of a rectangle within graphic window; the four arguments specify two opposite corners of the rectangle. The string returned might later be fed to the putbit -command. The getbit$-function might be used for simple animations (as in the example below). Example open window 40,40 fill circle 20,20,18 circle$=getbit$(0,0,40,40) close window open window 200,200 for x=1 to 200 putbit circle$,x,80 next x This example features a circle moving from left to right over the window. See also putbit ------------------------------------------------------------------------------- Name getscreen$() ? returns a string representing a rectangular section of the text terminal Synopsis a$=getscreen$(2,2,20,20) Description The getscreen$ function returns a string representing the area of the screen as specified by its four arguments (which specify two opposite corners). I.e. everything you have printed within this rectangle will be encoded in the string returned (including any colour-information). Like most other commands dealing with advanced text output, getscreen$ requires, that you have called clear screen before. Example clear screen for a=1 to 1000: print color("red") "1"; print color("green") "2"; print color("blue") "3"; next a screen$=getscreen$(10,10,40,10) print at(10,10) " Please Press 'y' or 'n' ! " a$=inkey$ putscreen screen$,10,10 This program fills the screen with colored digits and afterwards asks the user for a choice ( Please press 'y' or 'n' ! ). Afterwards the area of the screen, which has been overwritten by the question will be restored with its previous contents, whhch had been saved via getscreen$. See also putscreen$ ------------------------------------------------------------------------------- Name glob() ? check if a string matches a simple pattern Synopsis if (glob(string$,pattern$)) ? Description The glob-function takes two arguments, a string and a (glob-) pattern, and checks if the string matches the pattern. However glob does not employ the powerful rules of regular expressions; rather it has only two special characters: * (which matches any number (even zero) of characters) and ? (which matches exactly a single character). Example for a=1 to 10 read string$,pattern$ if (glob(string$,pattern$)) then print string$," matches ",pattern$ else print string$," does not match ",pattern$ endif next a data "abc","a*" data "abc","a?" data "abc","a??" data "abc","*b*" data "abc","*" data "abc","???" data "abc","?" data "abc","*c" data "abc","A*" data "abc","????" This program checks the string abc against various patterns and prints the result. The output is: abc matches a* abc does not match a? abc matches a?? abc matches *b* abc matches * abc matches ??? abc does not match ? abc matches *c abc does not match A* abc does not match ???? See also There are no related commands. ------------------------------------------------------------------------------- Name gosub ? continue execution at another point within your program (and return later) Synopsis gosub foo ? label foo ? return Description gosub remembers the current position within your program and then passes the flow of execution to another point (which is normally marked with a label). Later, when a return-statement is encountered, the execution is resumed at the previous location. gosub is the traditional command for calling code, which needs to be executed from various places within your program. However, with subroutines yabasic offers a much more flexible way to achieve this (and more). Therefore gosub must to be considered obsolete. Example print "Do you want to exit ? " gosub ask if (r$="y") exit label ask input "Please answer yes or no, by typing 'y' or 'n': ",r$ return See also return, goto, sub, label, on gosub ------------------------------------------------------------------------------- Name goto ? continue execution at another point within your program (and never come back) Synopsis goto foo ? label foo Description The goto-statement passes the flow of execution to another point within your program (which is normally marked with a label). goto is normally considered obsolete and harmful, however in yabasic it may be put to the good use of leaving loops (e.g. while or for) prematurely. Note however, that subroutines may not be left with the goto-statement. Example print "Please press any key to continue." print "(program will continue by itself within 10 seconds)" for a=1 to 10 if (inkey$(1)<>"") then goto done next a label done print "Hello World !" Here the goto-statement is used to leave the for-loop prematurely. See also gosub, on goto H hex$() ? convert a number into hexadecimal Name hex$() ? convert a number into hexadecimal Synopsis print hex$(foo) Description The hex$-function converts a number into a string with its hexadecimal representation. hex$ is the inverse of the dec-function. Example open 1,"foo" while(!eof(1)) print right$("0"+hex$(peek(1)),2)," "; i=i+1 if (mod(i,10)=0) print end while print This program reads the file foo and prints its output as a hex-dump using the hex-function. See also decbin I if ? evaluate a condition and execute statements or not, depending on the result import ? import a library inkey$ ? wait, until a key is pressed input ? read input from the user (or from a file) and assign it to a variable instr() ? searches its second argument within the first; returns its position if found int() ? return the integer part of its single numeric argument Name if ? evaluate a condition and execute statements or not, depending on the result Synopsis if (?) then ? endif if (?) ? if (?) then ? else ? endif if (?) then ? elsif (?) ? elsif (?) then ? else ? endif Description The if-statement is used to evaluate a conditions and take actions accordingly. (As an aside, please note that there is no real difference between conditions and expressions.) There are two major forms of the if-statement: * The one-line-form without the keyword then: if (?) ? This form evaluates the condition and if the result is true executes all commands (separated by colons) upt to the end of the line. There is neither an endif keyword nor an else-branch. * The multi-line-form with the keyword then: if (?) then ? elsif (?) ? else ? endif (where elsif and else are optional, whereas endif is not. According to the requirements of your program, you may specify: + elsif(?), which specifies a condition, that will be evaluated only if the condition(s) within if or any preceding elsif did not match. + else, which introduces a sequence of commands, that will be executed, if none of the conditions above did match. + endif is required and ends the if-statement. Example input "Please enter a number between 1 and 4: " a if (a<=1 or a>=4) error "Wrong, wrong !" if (a=1) then print "one" elsif (a=2) print "two" elsif (a=3) print "three" else print "four" endif The input-number between 1 and 4 is simply echoed as text (one, two, ?). The example demonstrates both forms (short and long) of the if-statement (Note however, that the same thing can be done, probably somewhat more elegant, with the switch-statement). See also else, elsif, endif, conditions and expressions. ------------------------------------------------------------------------------- Name import ? import a library Synopsis import foo Description The import-statement imports a library. It expects a single argument, which must be the name of a library (without the trailing .yab). This library will then be read and parsed and its subroutines (and variables) will be made available within the main program. Libraries will first be searched within the current directory (i.e. the directory within which you have invoked yabasic), then within a special directory, whose exact location depends on your system. Typical values would be /usr/lib under Unix or C:\yabasic\lib under Windows. Invoking yabasic --help will show the correct directory. The location of this directory may be changed with the option --library (either under Windows or Unix). Example Lets say you have a yabasic-program foo.yab, which imports a library lib.yab. foo.yab reads: import lib rem This works ... lib.x(0) rem This works too .. x(1) rem And this. lib.y(2) rem But this not ! y(3) Now the library lib.yab reads: rem Make the subroutine x easily available outside this library export sub x(a) print a return end sub rem sub y must be referenced by its full name rem outside this library sub y(a) print a return end sub This program produces an error: 0 1 2 ---Error in foo.yab, line 13: can't find subroutine 'y' ---Dump: sub y() called in foo.yab,13 ---Error: Program stopped due to an error As you may see from the error message, yabasic is unable to find the subroutine y without specifying the name of the library (i.e. lib.y). The reason for this is, that y, other than x, is not exported from the library lib.yab (using the export-statement). See also export, sub ------------------------------------------------------------------------------- Name inkey$ ? wait, until a key is pressed Synopsis clear screen foo$=inkey$ inkey$ foo$=inkey$(bar) inkey$(bar) Description The inkeys$-function waits, until the user presses a key on the keyboard or a button of his mouse, and returns this very key. An optional argument specifies the number of seconds to wait; if omitted, inkey$ will wait indefinitely. inkey$ may only be used, if clear screen has been called at least once. For normal keys, yabasic simply returns the key, e.g. a, 1 or !. For function keys you will get f1, f2 and so on. Other special keys will return these strings respectively: enter, backspace, del, esc, scrnup (for screen up), scrndown and tab. Modifier keys (e.g. ctrl, alt or shift) by themselves can not be detected (e.g. if you simultaneously press shift and 'a', inkey$ will return the letter 'A' instead of 'a' of course). If a graphical window has been opened (via open window) any mouseclick within this window will be returned by inkey$ too. The string returned (e.g. MB1d+0:0028,0061, MB2u+0:0028,0061 or MB1d+1:0028,0061) is constructed as follows: * Every string associated with a mouseclick will start with the fixed string MB * The next digit (1, 2 or 3) specifies the mousebutton pressed. * A single letter, d or u, specifies, if the mousebutton has been pressed or released: d stands for down, i.e. the mousebutton has been pressed; u means up, i.e. the mousebutton has been released. * The plus-sign ('+'), which follows is always fixed. * The next digit (in the range 0 to 7) encodes the modifier keys pressed, where 1 stands for shift, 2 stands for alt and 4 stands for ctrl. * The next four digits (e.g. 0028) contain the x-position, where the mousebutton has been pressed. * The comma to follow is always fixed. * The last four digits (e.g. 0061) contain the y-position, where the mousebutton has been pressed. All those fields are of fixed length, so you may use functions like mid$ to extract certain fields. However, note that with mousex, mousey, mouseb and mousemod there are specialized functions to return detailed information about the mouseclick. Finally it should be noted, that inkey$ will only register mouseclicks within the graphic-window; mouseclicks in the text-window cannot be detected. inkey$ accepts an optional argument, specifying a timeout in seconds; if no key has been pressed within this span of time, an empty string is returned. If the timeout-argument is omitted, inkey$ will wait for ever. Example clear screen open window 100,100 print "Press any key or press 'q' to stop." repeat a$=inkey$ print a$ until(a$="q") This program simply returns the key pressed. You may use it, to learn, which strings are returned for the special keys on your keyboard (e.g. function-keys). See also clear screen,mousex, mousey, mouseb, mousemod ------------------------------------------------------------------------------- Name input ? read input from the user (or from a file) and assign it to a variable Synopsis input a input a,b,c input a$ input "Hello" a input #1 a$ Description input reads the new contents of one or many (numeric- or string-) variables, either from the keyboard (i.e. from you) or from a file. An optional first string-argument specifies a prompt, which will be issued before reading any contents. If you want to read from an open file, you need to specify a hash ('#'), followed by the number, under which the file has been opened. Note, that the input is split at spaces, i.e. if you enter a whole line consisting of many space-separated word, the first input-statement will only return the first word; the other words will only be returned on subsequent calls to input; the same applies, if a single input reads multiple variables: The first variable gets only the first word, the second one the second word, and so on. If you don't like this behaviour, you may use line input, which returns a whole line (including embedded spaces) at once. Example input "Please enter the name of a file to read: " a$ open 1,a$ while(!eof(1)) input #1 b$ print b$ wend If this program is stored within a file test.yab and you enter this name when prompted for a file to read, you will see this output: Please enter the name of a file to read: t.yab input "Please enter the name of a file to read: " a$ open 1,a$ while(!eof(1)) input #1 b$ print b$ wend See also line input ------------------------------------------------------------------------------- Name instr() ? searches its second argument within the first; returns its position if found Synopsis print instr(a$,b$) if (instr(a$,b$)) ? pos=instr(a$,b$,x) Description The instr-functions requires two string arguments and searches the second argument within the first. If the second argument can be found within the first, the position is returned (counting from one). If it can not be found, the instr-function returns 0; this makes this function usable within the condition of an if-statement (see the example below). If you supply a third, numeric argument to the instr-function, it will be used as a starting point for the search. Therefore instr("abcdeabcdeabcde","e",8) will return 10, because the search for an "e" starts at position 8 and finds the "e" at position 10 (and not the one at position 5). Example input "Please enter a text containing the string 'bumf': " a$ if (instr(a$,"bumf")) then print "Well done !" else print "not so well ..." endif See also rinstr ------------------------------------------------------------------------------- Name int() ? return the integer part of its single numeric argument Synopsis print int(a) Description The int-function returns only the digits before the comma; int(2.5) returns 2 and int(-2.3) returns -2. Example input "Please enter a whole number between 1 and 10: " a if (a=int(a) and a>=1 and a<=10) then print "Thanx !" else print "Never mind ..." endif See also frac L label ? mark a specific location within your program for goto, gosub or restore left$() ? return (or change) left end of a string len() ? return the length of a string line ? draw a line line input ? read in a whole line of text and assign it to a variable local ? mark a variable as local to a subroutine log() ? compute the natural logarithm loop ? marks the end of an infinite loop lower$() ? convert a string to lower case ltrim$() ? trim spaces at the left end of a string Name label ? mark a specific location within your program for goto, gosub or restore Synopsis label foo ? goto foo Description The label-command can be used to give a name to a specific location within your program. Such a position might be referred from one of three commands: goto, gosub and restore. You may use labels safely within libraries, because a label (e.g. foo) does not collide with a label with the same name within the main program or within another library; yabasic will not mix them up. As an aside, please note, that line numbers are a special (however deprecated) case of labels; see the second example below. Example for a=1 to 100 if (ran(10)>5) goto done next a label done 10 for a=1 to 100 20 if (ran(10)>5) goto 40 30 next a 40 Within this example, the for-loop will probably be left prematurely with a goto-statement. This task is done twice: First with labels and then again with line numbers. See also gosub, goto. ------------------------------------------------------------------------------- Name left$() ? return (or change) left end of a string Synopsis print left$(a$,2) left$(b$,3)="foobar" Description The left$-function accepts two arguments (a string and a number) and returns the part from the left end of the string, whose length is specified by its second argument. Loosely spoken, it simply returns the requested number of chars from the left end of the given string. Note, that the left$-function can be assigned to, i.e. it may appear on the left hand side of an assignment. In this way it is possible to change a part of the variable used within the left$-function. Note, that that way the length of the string cannot be changed, i.e. characters might be overwritten, but not added. For an example see below. Example input "Please answer yes or no: " a$ l=len(a$):a$=lower$(a$):print "Your answer is "; if (left$("yes",l)=a$ and l>=1) then print "yes" elsif (left$("no",l)=a$ and l>=1) then print "no" else print "?" endif This example asks a simple yes/no question and goes some way to accept even incomplete input, while still being able to reject invalid input. This second example demonstrates the capability to assign to the left$-function. a$="Heiho World !" print a$ left$(a$,5)="Hello" print a$ See also right$, mid$ ------------------------------------------------------------------------------- Name len() ? return the length of a string Synopsis x=len(a$) Description The len-function returns the length of its single string argument. Example input "Please enter a password: " a$ if (len(a$)<6) error "Password too short !" This example checks the length of the password, that the user has entered. See also left$, right$ and mid$, ------------------------------------------------------------------------------- Name line ? draw a line Synopsis open window 100,100 line 0,0,100,100 line 0,0 to 100,100 new curve line 100,100 line to 100,100 open window 100,100 clear line 0,0,100,100 clear line 0,0 to 100,100 new curve clear line 100,100 clear line to 100,100 Description The line-command draws a line. Simple as this is, the line-command has a large variety of forms as they are listed in the synopsis above. Lets look at them a little closer: * A line has a starting and an end point; therefore the line-command (normally) needs four numbers as arguments, representing these two points. This is the first form appearing within the synopsis. * You may separate the two points with either ',' or to, which accounts for the second form of the line-command. * The line-command may be used to draw a connected sequence of lines with a sequence of commands like line x,y; Each command will draw a line from the point where the last line-command left off, to the point specified in the arguments. Note, that you need to use the command new curve before you may issue such a line-command. See the example below. * You may insert the word to for beauty: line to x,y, which does exactly the same as line x,y * Finally, you may choose not to draw, but to erase the lines; this can be done by prepending the phrase clear. This account for all the other forms of the line-command. Example open window 200,200 line 10,10 to 10,190 line 10,190 to 190,190 new curve for a=0 to 360 line to 10+a*180/360,100+60*sin(a*pi/180) next a This example draws a sine-curve (with an offset in x- and y-direction). Note, that the first line-command after new curve does not draw anything. Only the coordinates will be stored. The second iteration of the loop then uses these coordinates as a starting point for the first line. See also new curve, close curve, open window ------------------------------------------------------------------------------- Name line input ? read in a whole line of text and assign it to a variable Synopsis line input a line input a$ line input "Hello" a line input #1 a$ Description In most respects line input is like the input-command: It reads the new contents of a variable, either from keyboard or from a file. However, line input always reads a complete line and assigns it to its variable. line input does not stop reading at spaces and is therefore the best way to read in a string which might contain whitespace. Note, that the final newline is stripped of. Example line input "Please enter your name (e.g. Frodo Beutelin): " a$ print "Hello ",a$ Note that the usage of line input is essential in this example; a simple input-statement would only return the string up to the first space, e.g. Frodo. See also input ------------------------------------------------------------------------------- Name local ? mark a variable as local to a subroutine Synopsis sub foo() local a,b,c$,d(10),e$(5,5) ? end sub Description The local-command can (and should be) used to mark a variable (or array) as local to the containing subroutine. This means, that a local variable in your subroutine is totally different from a variable with the same name within your main program. Variables which are known everywhere within your program are called global in contrast. Declaring variables within the subroutine as local helps to avoid hard to find bugs; therefore local variables should be used whenever possible. Note, that the parameters of your subroutines are always local. As you may see from the example, local arrays may be created without using the keyword dim (which is required only for global arrays). Example a=1 b=1 print a,b foo() print a,b sub foo() local a a=2 b=2 end sub This example demonstrates the difference between local and global variables; it produces this output: 1 1 1 2 As you may see, the content of the global variable a is unchanged after the subroutine foo; this is because the assignment a=2 within the subroutine affects the local variable a only and not the global one. However, the variable b is never declared local and therefore the subroutine changes the global variable, which is reflected in the output of the second print-statement. See also sub, static, dim ------------------------------------------------------------------------------- Name log() ? compute the natural logarithm Synopsis a=log(x) a=log(x,base) Description The log-function computes the logarithm of its first argument. The optional second argument gives the base for the logarithm; if this second argument is omitted, the euler-constant 2.71828? will be taken as the base. Example open window 200,200 for x=10 to 190 step 10:for y=10 to 190 step 10 r=3*log(1+x,1+y) if (r>10) r=10 if (r<1) r=1 fill circle x,y,r next y:next x This draws another nice plot. See also exp ------------------------------------------------------------------------------- Name loop ? marks the end of an infinite loop Synopsis do ? loop Description The loop-command marks the ends of a loop (which is started by do), wherein all statements within the loop are repeated forever. In this respect the do loop-loop is infinite, however, you may leave it anytime via break or goto. Example print "Hello, I will throw dice, until I get a 2 ..." do r=int(ran(6))+1 print r if (r=2) break loop See also do, for, repeat, while, break ------------------------------------------------------------------------------- Name lower$() ? convert a string to lower case Synopsis l$=lower$(a$) Description The lower$-function accepts a single string-argument and converts it to all lower case. Example input "Please enter a password: " a$ if (a$=lower$(a$)) error "Your password is NOT mixed case !" This example prompts for a password and checks, if it is really lower case. See also upper$ ------------------------------------------------------------------------------- Name ltrim$() ? trim spaces at the left end of a string Synopsis a$=ltrim$(b$) Description The ltrim$-function removes all whitespace from the left end of a string and returns the result. Example input "Please answer 'yes' or 'no' : " a$ a$=lower$(ltrim$(rtrim$(a$))) if (len(a$)>0 and a$=left$("yes",len(a$))) then print "Yes ..." else print "No ..." endif This example prompts for an answer and removes any spaces, which might precede the input; therefore it is even prepared for the (albeit somewhat pathological case, that the user first hits space before entering his answer. See also rtrim$, trim$ M max() ? return the larger of its two arguments mid$() ? return (or change) characters from within a string min() ? return the smaller of its two arguments mod() ? compute the remainder of a division mouseb ? extract the state of the mousebuttons from a string returned by inkey$ mousemod ? return the state of the modifier keys during a mouseclick mousex ? return the x-position of a mouseclick mousey ? return the y-position of a mouseclick Name max() ? return the larger of its two arguments Synopsis print max(a,b) Description Return the maximum of its two arguments. Example dim m(10) for a=1 to 1000 m=0 For b=1 to 10 m=max(m,ran(10)) next b m(m)=m(m)+1 next a for a=1 to 9 print a,": ",m(a) next a Within the inner for-loop (the one with the loop-variable b), the example computes the maximum of 10 random numbers. The outer loop (with the loop variable a) now repeats this process 1000 times and counts, how often each maximum appears. The last loop finally reports the result. Now, the interesting question would be, which will be approached, when we increase the number of iterations from thousand to infinity. Well, maybe someone could just tell me :-) See also min ------------------------------------------------------------------------------- Name mid$() ? return (or change) characters from within a string Synopsis print mid$(a$,2,1) print mid$(a$,2) mid$(a$,5,3)="foo" mid$(a$,5)="foo" Description The mid$-function requires three arguments: a string and two numbers, where the first number specifies a position within the string and the second one gives the number of characters to be returned; if you omit the second argument, the mid$-function returns all characters up to the end of the string. Note, that you may assign to the mid$-function, i.e. mid$ may appear on the left hand side of an assignment. In this way it is possible to change a part of the variable used within the mid$-function. Note, that that way the length of the string cannot be changed, i.e. characters might be overwritten, but not added. For an example see below. Example input "Please enter a string: " a$ for a=1 to len(a$) if (instr("aeiou",lower$(mid$(a$,a,1)))) mid$(a$,a,1)="e" next a print "When you turn everything to lower case and" print "replace every vowel with 'e', your input reads:" print print a$ This example transforms the input string a bit, using the mid$-function to retrieve a character from within the string as well as to change it. See also left$ and right$. ------------------------------------------------------------------------------- Name min() ? return the smaller of its two arguments Synopsis print min(a,b) Description Return the minimum of its two argument. Example dim m(10) for a=1 to 1000 m=min(ran(10),ran(10)) m(m)=m(m)+1 next a for a=1 to 9 print a,": ",m(a) next a For each iteration of the loop, the lower of two random number is recorded. The result is printed at the end. See also max ------------------------------------------------------------------------------- Name mod() ? compute the remainder of a division Synopsis print mod(a,b) Description The mod-function divides its two arguments and computes the remainder. Note, that a/b-int(a/b) and mod(a,b) are always equal. Example clear screen print at(10,10) "Please wait "; p$="-\|/" for a=1 to 100 rem ... do something lengthy here, or simply sleep :-) pause(1) print at(22,10) mid$(p$,1+mod(a,4)) next a This example executes some time consuming action within a loop (in fact, it simply sleeps) and gives the user some indication of progress by displaying a turning bar (that's where the mod()-function comes into play). See also int, frac ------------------------------------------------------------------------------- Name mouseb ? extract the state of the mousebuttons from a string returned by inkey$ Synopsis inkey$ print mouseb() print mouseb a$=inkey$ print mouseb(a$) Description The mouseb-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function. If a mousebutton has been pressed, the mouseb-function returns the number (1,2 or 3) of the mousebutton, when it is pressed and returns its negative (-1,-2 or -3), when it is released. The mouseb-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mouseb is called without any arguments, it returns the values from the last call to inkey$, which are stored implicitly and internally by yabasic. Note Note however, that the value returned by the mouseb-function does not reflect the current state of the mousebuttons. It rather extracts the information from the string passed as an argument (or from the last call to the inkey$-function, if no argument is passed). So the value returned by mouseb reflects the state of the mousebuttons at the time the inkey$-function has been called; as opposed to the time the mouseb-function is called. Example open window 200,200 clear screen print "Please draw lines; press (and keep it pressed)" print "the left mousebutton for the starting point," print "release it for the end-point." do if (mouseb(release$)=1) press$=release$ release$=inkey$ if (mouseb(release$)=-1) then line mousex(press$),mousey(press$) to mousex(release$),mousey(release$) endif loop This is a maybe the most simplistic line-drawing program possible, catching presses as well as releases of the first mousebutton. See also inkey$, mousex, mousey and mousemod ------------------------------------------------------------------------------- Name mousemod ? return the state of the modifier keys during a mouseclick Synopsis inkey$ print mousemod() print mousemod a$=inkey$ print mousemod(a$) Description The mousemod-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function if a mousebutton has been pressed. It returns the state of the keyboard modifiers (shift, ctrl or alt): If the shift-key is pressed, mousemod returns 1, for the alt-key 2 and for the ctrl-key 4. If more than one key is pressed, the sum of these values is returned, e.g. mousemod returns 5, if shift and ctrl are pressed simultaneously. The mousemod-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mousemod is called without any arguments, it returns the values from the last call to inkey$ (which are stored implicitly and internally by yabasic). Note Please see also the Note within the mouseb-function. Example open window 200,200 clear screen do a$=inkey$ if (left$(a$,2)="MB") then x=mousex(a$) y=mousey(a$) if (mousemod(a$)=0) then circle x,y,20 else fill circle x,y,20 endif endif loop This program draws a circle, whenever a mousebutton is pressed; the circles are filled, when any modifier is pressed, and empty if not. See also inkey$, mousex, mousey and mouseb ------------------------------------------------------------------------------- Name mousex ? return the x-position of a mouseclick Synopsis inkey$ print mousex() print mousex a$=inkey$ print mousex(a$) Description The mousex-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function; It returns the x-position of the mouse as encoded within its argument. The mousex-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mousex is called without any arguments, it returns the values from the last call to inkey$ (which are stored implicitly and internally by yabasic). Note Please see also the Note within the mouseb-function. Example open window 200,200 clear screen do a$=inkey$ if (left$(a$,2)="MB") then line mousex,0 to mousex,200 endif loop This example draws vertical lines at the position, where the mousebutton has been pressed. See also inkey$, mousemod, mousey and mouseb ------------------------------------------------------------------------------- Name mousey ? return the y-position of a mouseclick Synopsis inkey$ print mousey() print mousey a$=inkey$ print mousey(a$) Description The mousey-function is a helper function for decoding part of the (rather complicated) strings, which are returned by the inkey$-function. mousey returns the y-position of the mouse as encoded within its argument. The mousey-function accepts zero or one arguments. A single argument should be a string returned by the inkey$-function; if mousey is called without any arguments, it returns the values from the last call to inkey$ (which are stored implicitly and internally by yabasic). Note Please see also the Note within the mouseb-function. Example open window 200,200 clear screen do a$=inkey$ if (left$(a$,2)="MB") then line 0,mousey to 200,mousey endif loop This example draws horizontal lines at the position, where the mousebutton has been pressed. See also inkey$, mousemod, mousex and mouseb N new curve ? start a new curve, that will be drawn with the line-command next ? mark the end of a for loop not ? negate an expression; can be written as ! numparams ? return the number of parameters, that have been passed to a subroutine Name new curve ? start a new curve, that will be drawn with the line-command Synopsis new curve line to x,y Description The new curve-function starts a new sequence of lines, that will be drawn by repeated line to-commands. Example open window 200,200 ellipse(100,50,30,60) ellipse(150,100,60,30) sub ellipse(x,y,xr,yr) new curve for a=0 to 2*pi step 0.2 line to x+xr*cos(a),y+yr*sin(a) next a close curve end sub This example defines a subroutine ellipse that draws an ellipse. Within this subroutine, the ellipse is drawn as a sequence of lines started with the new curve command and closed with close curve. See also line, close curve ------------------------------------------------------------------------------- Name next ? mark the end of a for loop Synopsis for a=1 to 10 next a Description The next-keyword marks the end of a for-loop. All statements up to the next-keyword will be repeated as specified with the for-clause. Note, that the name of the variable is optional; so instead of next a you may write next. Example for a=1 to 300000 for b=1 to 21+20*sin(pi*a/20) print "*"; next b print sleep 0.1 next a This example simply plots a sine-curve until you fall asleep. See also for ------------------------------------------------------------------------------- Name not ? negate an expression; can be written as ! Synopsis if (not a ------------------------------------------------------------------------------- Name on goto ? jump to one of many goto-targets Synopsis on a goto foo,bar,baz ? label foo ? label bar ? label baz ? Description The on goto statement uses its numeric argument (the one between on and goto to select an element from the list of labels, which follows after the goto-keyword: If the number is 1, the execution continues at the first label; if the number is 2, at the second, and so on. if the number is zero or less, the program continues at the position of the first label; if the number is larger than the total count of labels, the execution continues at the position of the last label; i.e. the first and last label in the list constitute some kind of fallback-slot. Note, that (unlike the goto-command) the on goto-command can no longer be considered state of the art; people may (not me !) even start to mock you, if you use it. Example label over print "Please Select one of these choices: " print print " 1 -- show time" print " 2 -- show date" print " 3 -- exit" print input "Your choice " a on a goto over,show_time,show_date,terminate,over label show_time print time$() goto over label show_date print date$() goto over label terminate exit Note, how invalid input (a number less than 1, or larger than 3) is automatically detected; in such a case the question is simply issued again. See also goto, on gosub/function> ------------------------------------------------------------------------------- Name on interrupt ? change reaction on keyboard interrupts Synopsis on interrupt break ? on interrupt continue Description With the on interrupt-command you may change the way, how yabasic reacts on a keyboard interrupt; it comes in two variants: on interrupt break and on interrupt continue. A keyboard interrupt is produced, if you press ctrl-C on your keyboard; normally (and certainly after you have called on interrupt break), yabasic will terminate with an error message. However after the command on interrupt continue yabasic ignores any keyboard interrupt. This may be useful, if you do not want your program being interruptible during certain critical operations (e.g. updating of files). Example print "Please stand by while writing a file with random data ..." on interrupt continue open "random.data" for writing as #1 for a=1 to 100 print #1 ran(100) print a," percent done." sleep 1 next a close #1 on interrupt continue This program writes a file with 100 random numbers. The on interrupt continue command insures, that the program will not be terminated on a keyboard interrupt and the file will be written entirely in any case. The sleep-command just stretches the process artificially to give you a chance to try a ctrl-C. See also There is no related command. ------------------------------------------------------------------------------- Name open ? open a file Synopsis open a,"file","r" open #a,"file","w" open #a,printer open "file" for reading as a open "file" for writing as #a a=open("file") a=open("file","r") if (open(a,"file")) ? if (open(a,"file","w")) ? Description The open-command opens a file for reading or writing or a printer for printing text. open comes in a wide variety of ways; it requires these arguments: filenumber In the synopsis this is a or #a. In yabasic each file is associated with a number between 1 and a maximum value, which depends on the operating system. For historical reasons the filenumber can be preceded by a hash ('# '). Note, that specifying a filenumber is optional; if it is omitted, the open-function will return a filenumber, which should then be stored in a variable for later reference. This filenumber can be a simple number or an arbitrary complex arithmetic expression, in which case braces might be necessary to save yabasic from getting confused. filename In the synopsis above this is "file". This string specifies the name of the file to open (note the important caveat on specifying these filenames). accessmode In the synopsis this is "r", "w", for reading or for writing. This string or clause specifies the mode in which the file is opened; it may be one of: "r" Open the file for reading (may also be written as for reading). If the file does not exist, the command will fail. This mode is the default, i.e. if no mode is specified with the open-command, the file will be opened with this mode. "w" Open the file for writing (may also be written as for writing). If the file does not exist, it will be created. "a" Open the file for appending, i.e. what you write to the file will be appended after its initial contents. If the file does not exist, it will be created. "b" This letter may not appear alone, but may be combined with the other letters (e.g. "rb") to open a file in binary mode (as opposed to text mode). As you may see from the synopsis, the open-command may either be called as a command (without braces) or as a function (with braces). If called as a function, it will return the filenumber or zero if the operation fails. Therefore the open-function may be used within the condition of an if-statement. If the open-command fails, you may use peek("error") to retrieve the exact nature of the error. Furthermore note, that there is another, somewhat separate usage of the open-command; if you specify the bareword printer instead of a filename, the command opens a printer for printing text. Every text (and only text) you print to this file will appear on your printer. Note, that this is very different from printing graphics, as can be done with open printer. Example open "foo.bar" for writing as #1 print #1 "Hallo !" close #1 if (not open(1,"foo.bar")) error "Could not open 'foo.bar' for reading" while(not eof(1)) line input #1 a$ print a$ wend This example simply opens the file foo.bar, writes a single line, reopens it and reads its contents again. See also close, print, peek, peek("error") and open printer ------------------------------------------------------------------------------- Name open printer ? open printer for printing graphics Synopsis open printer open printer "file" Description The open printer-command opens a printer for printing graphics. The command requires, that a graphic window has been opened before. Everything that is drawn into this window will then be sent to the printer too. A new piece of paper may be started with the clear window-command; the final (or only) page will appear after the close printer-command. Note, that you may specify a filename with open printer; in that case the printout will be sent to a filename instead to a printer. Your program or the user will be responsible for sending this file to the printer afterwards. If you use yabasic under Unix, you will need a postscript printer (because yabasic produces postscript output). Alternatively you may use ghostscript to transform the postscript file into a form suitable for your printer; but that is beyond the responsibility of yabasic. Example open window 200,200 open printer line 0,0 to 200,200 text 100,100,"Hallo" close window close printer This example will open a window, draw a line and print some text within; everything will appear on your printer too. See also close printer ------------------------------------------------------------------------------- Name open window ? open a graphic window Synopsis open window x,y open window x,y,"font" Description The open window-command opens a window of the specified size. Only one window can be opened at any given moment of time. An optional third argument specifies a font to be used for any text within the window. It can however be changed with any subsequent text-command. Example for a=200 to 400 step 10 open window a,a for b=0 to a line 0,b to a,b line b,0 to b,a sleep 0.1 close window next a See also close window, text ------------------------------------------------------------------------------- Name or ? logical or, used in conditions Synopsis if (a or b) ? while (a or b) ? Description Used in conditions (e.g within if or while) to join two expressions. Returns true, if either its left or its right or both arguments are true; returns false otherwise. Example input "Please enter a number" if (a>9 or a<1) print "a is not between 1 and 9" See also and,not ------------------------------------------------------------------------------- Name or() ? arithmetic or, used for bit-operations Synopsis x=or(a,b) Description Used to compute the bitwise or of both its argument. Both arguments are treated as binary numbers (i.e. a series of 0 and 1); a bit of the resulting value will then be 1, if any of its arguments has 1 at this position in their binary representation. Note, that both arguments are silently converted to integer values and that negative numbers have their own binary representation and may lead to unexpected results when passed to or. Example print or(14,3) This will print 15. This result is clear, if you note, that the binary representation of 14 and 3 are 1110 and 0011 respectively; this will yield 1111 in binary representation or 15 as decimal. See also oand, eor and not P pause ? pause, sleep, wait for the specified number of seconds peek ? retrieve various internal information peek$ ? retrieve various internal string-information pi ? a constant with the value 3.14159 poke ? change selected internals of yabasic print ? Write to terminal or file print color ? print with color print colour ? see print color putbit ? draw a rectangle of pixels encoded within a string into the graphics window putscreen ? draw a rectangle of characters into the text terminal Name pause ? pause, sleep, wait for the specified number of seconds Synopsis pause 5 Description The pause-command has many different names: You may write pause, sleep or wait interchangeably; whatever you write, yabasic will always do exactly the same. The pause-command will simply wait for the specified number of seconds. This may be a fractional number, so you may well wait less than a second. However, if you try to pause for a smaller and smaller interval (e.g. 0.1 seconds, 0.01 seconds, 0.001 seconds and so on) you will find that at some point yabasic will not wait at all. The minimal interval that can be waited depends on the system (Unix, Windows) you are using. The pause-command cannot be interrupted. However, sometimes you may want the wait to be interruptible by simply pressing a key on the keyboard. In such cases you should consider using the inkey$-function, with a number of seconds as an argument). Example deg=0 do maxx=44+40*sin(deg) for x=1 to maxx print "*"; next x pause 0.1+(maxx*maxx/(4*84*84)) print deg=deg+0.1 loop This example draws a sine-curve; due to the pause-statement the speed of drawing varies in the same way as the speed of a ball might vary, if it would roll along this curve under the influence of gravity. See also sleep, wait ------------------------------------------------------------------------------- Name peek ? retrieve various internal information Synopsis print peek("foo") a=peek(#1) Description The peek-function has many different and mostly unrelated uses. It is a kind of grab-bag for retrieving all kinds of numerical information, internal to yabasic . The meaning of the numbers returned be the peek-function depends on the string or number passed as an argument. peek always returns a number, however the closely related peek$-function exists, which may be used to retrieve string information from among the internals of yabasic. Finally note, that some of the values which are retrieved with peek may even be changed, using the poke-function. There are two variants of the peek-function: One expects an integer, positive number and is described within the first entry of the list below. The other variant expects one of a well defined set of strings as described in the second and all the following entries of the list below. peek(a) Read a single character from the file a (which must be open of course). peek("argument") Return the number of arguments, that have been passed to yabasic at invocation time. E.g. if yabasic has been called like this: yabasic foo.yab bar baz, then peek("argument") will return 2. This is because foo.yab is treated as the name of the program to run, whereas bar and baz are considered arguments to the program, which are passed on the command line. Note, that for windows-users, who tend to click on the icon (as opposed to starting yabasic on the command line), this peekwill mostly return 0. The function peek("argument") can be written as peek("arguments") too. You will want to check out the corresponding function peek$("argument") to actually retrieve the arguments. Note, that each call to peek$("argument") reduces the number returned by peek("argument"). peek("error") Return a number specifying the nature of the last error in an open- or seek-statement. Normally an error within an open-statement immediately terminates your program with an appropriate error-message, so there is no chance and no need to learn more about the nature of the error. However, if you use open as a condition (e.g. if (open(#1,"foo")) ?) the outcome (success or failure) of the open-operation will determine, if the condition evaluates to true or false. If now such an operation fails, your program will not be terminated and you might want to learn the reason for failure. This reason will be returned by peek("error") (as a number) or by peek$ ("error") (as a string) The table below shows the various error codes; the value returned by peek$ ("error") explains the nature of the error. Note, that the codes 10,11 and 12 refer to the seek-command. Table 6.1. Error codes +-------------------------------------------------------------------------+ | peek |peek$("error")| Explanation | |("error")| | | |---------+--------------+------------------------------------------------| | 2 |Stream already|Do not try to open one and the same filenumber | | |in use |twice; rather close it first. | |---------+--------------+------------------------------------------------| | |'x' is not a |The optional filemode argument, which may be | | 3 |valid filemode|passed to the open-function, has an invalid | | | |value | |---------+--------------+------------------------------------------------| | 4 |could not open|The open-call did not work, no further | | |'foo' |explanation is available. | |---------+--------------+------------------------------------------------| | |reached |You have opened more files than your operating | | 5 |maximum number|system permits. | | |of open files | | |---------+--------------+------------------------------------------------| | |cannot open |The commands open printer and open #1,printer | | |printer: |both open a printer (refer to their description | | 6 |already |for the difference). However, only one can be | | |printing |active at a time; if you try to do both at the | | |graphics |same time, you will receive this error. | |---------+--------------+------------------------------------------------| | 7 |could not open|Well, it simply did not work. | | |line printer | | |---------+--------------+------------------------------------------------| | 9 |invalid stream|An attempt to use an invalid (e.g. negative) | | |number |stream number; example: open(-1,"foo") | |---------+--------------+------------------------------------------------| | |could not | | | 10 |position |seek did not work. | | |stream x to | | | |byte y | | |---------+--------------+------------------------------------------------| | 11 |stream x not |You have tried to seek within a stream, that has| | |open |not been opened yet. | |---------+--------------+------------------------------------------------| | |seek mode 'x' |The argument, which has been passed to seek is | | 12 |is none of |invalid. | | |begin,end,here| | +-------------------------------------------------------------------------+ peek("fontheight") Return the height of the font used within the graphic window. If none is open, this peek will return the height of the last font used or 10, if no window has been opened yet. peek("screenheight") Return the height in characters of the window, wherein yabasic runs. If you have not called clear screen yet, this peekwill return 0, regardless of the size of your terminal. peek("screenwidth") Return the width in characters of the window, wherein yabasic runs. If you have not called clear screen yet, this peekwill return 0, regardless of the size of your terminal. peek("secondsrunning") Return the number of seconds that have passed since the start of yabasic. peek("version") Return the version number of yabasic, e.g. 2.77. See also the related peek$ ("version"), which returns nearly the same information (plus the patchlevel) as a string, e.g. "2.77.1". peek("winheight") Return the height of the graphic-window in pixels. If none is open, this peek will return the height of the last window opened or 100, if none has been opened yet. peek("winwidth") Return the width of the graphic-window in pixels. If none is open, this peek will return the width of the last window opened or 100, if none has been opened yet. peek("isbound") Return true, if the executing yabasic-program is part of a standalone program; see the section about creating a standalone-program for details. peek("version") Return the version number of yabasic (e.g. 2.72). Example open "foo" for reading as #1 open "bar" for writing as #2 while(not eof(#1)) poke #2,chr$(peek(#1)); wend This program will copy the file foo byte by byte to bar. Note, that each peek does something entirely different, and only one has been demonstrated above. Therefore you need to make up examples yourself for all the other peeks. See also peek$, poke, open ------------------------------------------------------------------------------- Name peek$ ? retrieve various internal string-information Synopsis print peek$("foo") Description The peek$-function has many different and unrelated uses. It is a kind of grab-bag for retrieving all kinds of string information, internal to yabasic; the exact nature of the strings returned be the peek$-function depends on the string passed as an argument. peek$ always returns a string, however the closely related peek-function exists, which may be used to retrieve numerical information from among the internals of yabasic. Finally note, that some of the values which are retrieved with peek$ may even be changed, using the poke-function. The following list shows all possible arguments to peek$: peek$("infolevel") Returns either "debug", "note", "warning", "error" or "fatal", depending on the current infolevel. This value can be specified with an option (either under windows or unix) on the command line or changed during the execution of the program with the corresponding poke; however, normally only the author of yabasic (me !) would want to change this from its default value "warning". peek$("textalign") Returns one of nine possible strings, specifying the default alignment of text within the graphics-window. The alignment-string returned by this peek describes, how the text-command aligns its string-argument with respect to the coordinates supplied. However, this value does not apply, if the text-command explicitly specifies an alignment. Each of these strings is two characters long. The first character specifies the horizontal alignment and can be either l, r or c, which stand for left, right or center. The second character specifies the vertical alignment and can be one of t, b or c, which stand for top, bottom or center respectively. You may change this value with the corresponding command poke "textalign",?; the initial value is lb, which means the top of the left and the top edge if the text will be aligned with the coordinates, that are specified within the text-command. peek$("windoworigin") This peek returns a two character string, which specifies the position of the origin of the coordinate system of the window; this string might be changed with the corresponding command poke "windoworigin",x,y or specified as the argument of the origin command; see there for a detailed description of the string, which might be returned by this peek. peek$("program_name") Returns the name of the yabasic-program that is currently executing; typically this is the name, that you have specified on the commandline, but without any path-components. So this this peek$ might return foo.yab; see also peek$("program_file_name") for related information. peek$("program_file_name") Returns the full file-name of the yabasic-program that is currently executing; typically this is the name, that you have specified on the commandline, including any path-components. For the special case, that you have bound your yabasic-program with the interpreter to a single standalone executable, this peek$ will return its name. See also peek$("program_name") for related information. peek$("error") Return a string describing the nature of the last error in an open- or seek-statement. See the corresponding peek("error") for a detailed description. peek$("library") Return the name of the library, this statement is contained in. See the import-command for a detailed description or for more about libraries. peek$("version") Version of yabasic as a string; e.g. 2.77.1. See also the related peek ("version"), which returns nearly the same information (minus the patchlevel) as a number, e.g. 2.77. peek$("os") This peek returns the name of the operating system, where your program executes. This can be either windows or unix. peek$("font") Return the name of the font, which is used for text within the graphic window; this value can be specified as the third argument to the open window-command. peek$("env","NAME") Return the environment variable specified by NAME (which may be any string expression). Which kind of environment variables are available on your system depends, as well as their meaning, on your system; however typing env on the command line will produce a list (for Windows and Unix alike). Note, that peek$("env",...) can be written as peek$("environment",...) too. peek$("argument") Return one of the arguments, that have been passed to yabasic at invocation time (the next call will return the the second argument, and so on). E.g. if yabasic has been called like this: yabasic foo.yab bar baz, then the first call to peek$("argument") will return bar. This is because foo.yab is treated as the name of the program to run, whereas bar and baz are considered arguments to this program, which are passed on the command line. The second call to peek$("argument") will return baz. Note, that for windows-users, who tend to click on the icon (as opposed to starting yabasic on the command line), this peekwill mostly return the empty string. Note, that peek$("argument") can be written as peek$("arguments"). Finally you will want to check out the corresponding function peek ("argument"). Example print "You have supplied these arguments: " while(peek("argument")) print peek("argument"),peek$("argument") wend If you save this program in a file foo.yab and execute it via yabasic t.yab a b c (for windows users: please use the command line for this), your will get this output: 3a 2b 1c See also peek, poke, open ------------------------------------------------------------------------------- Name pi ? a constant with the value 3.14159 Synopsis print pi Description pi is 3.14159265359 (well at least for yabasic); do not try to assign to pi (e.g. pi=22/7) this would not only be mathematically dubious, but would also result in a syntax error. Example for a=0 to 180 print "The sine of ",a," degrees is ",sin(a*pi/180) next a This program uses pi to transform an angle from degrees into radians. See also euler ------------------------------------------------------------------------------- Name poke ? change selected internals of yabasic Synopsis poke "foo","bar" poke "foo",baz poke #a,"bar" poke #a,baz Description The poke-command may be used to change details of yabasic's behaviour. Like the related function peek, poke does many different things, depending on the arguments supplied. Here are the different things you can do with poke: poke 5,a Write the given byte (a in the example above) to the specified stream (5#a in the example). See also the related function function peek(1). poke "dump","filename.dump" Dump the internal form of your basic-program to the named file; this is only useful for debugging the internals of yabasic itself. The second argument ("filename.dump" in the example) should be the name of a file, that gets overwritten with the dump, please be careful. poke "fontheight",12 This poke changes the default fontheight. This can only have an effect, if the fonts given in the commands text or open window do not specify a fontheight on their own. poke "font","fontname" This poke specifies the default font. This can only have an effect, if you do not supply a fontname with the commands text or open window. poke "infolevel","debug" Change the amount of internal information, that yabasic outputs during execution. The second argument can be either "debug", "note", "warning", "error" or "fatal". However, normally you will not want to change this from its default value "warning". See also the related peek$("infolevel"). poke "random_seed",42 Set the seed for the random number generator; if you do this, the ran -function will return the same sequence of numbers every time the program is started. poke "stdout","some text" Send the given text to standard output. Normally one would use print for this purpose; however, sending e.g. control characters to your terminal is easier with this poke. poke "textalign","cc" This poke changes the default alignment of text with respect to the coordinates supplied within the text-command. However, this value does not apply, if the text-command explicitly specifies an alignment. The second argument ("cc" in the example) must always be two characters long; the first character can be one of l (left), r (right) or c (center); the second character can be either t (top), b (bottom) or c (center); see the corresponding peek$("textalign") for a detailed description of this argument. poke "windoworigin","lt" This poke moves the origin of the coordinate system of the window to the specified position. The second argument ("lt" in the example) must always be two characters long; the first character can be one of l (left), r ( right) or c (center); the second character can be either t (top), b (bottom ) or c (center). Together those two characters specify the new position of the coordinate-origin. See the corresponding peek$("windoworigin") for a more in depth description of this argument. Example print "Hello, now you will see, how much work" print "a simple for-loop involves ..." input "Please press return " a$ poke "infolevel","debug" for a=1 to 10:next a This example only demonstrates one of the many pokes, which are described above: The program switches the infolevel to debug, which makes yabasic produce a lot of debug-messages during the subsequent for-loop. See also peek, peek$ ------------------------------------------------------------------------------- Name print ? Write to terminal or file Synopsis print "foo",a$,b print "foo",a$,b; print #a "foo",a$ print #a "foo",a$; print foo using "##.###" print reverse "foo" print at(10,10) a$,b print @(10,10) a$,b print color("red","blue") a$,b print color("magenta") a$,b print color("green","yellow") at(5,5) a$,b Description The print-statement outputs strings or characters, either to your terminal (also known as console) or to an open file. To understand all those uses of the print-statement, let's go through the various lines in the synopsis above: print "foo",a$,b Print the string foo as well as the contents of the variables a$ and b onto the screen, silently adding a newline. print "foo",a$,b; (Note the trailing semicolon !) This statement does the same as the one above; only the implicit newline is skipped, which means that the next print-statement will append seamlessly. print #a "foo",a$ This is the way to write to files. The file with the number a must be open already, an implicit newline is added. Note the file-number #a, which starts with a hash ('#') amd is separated from the rest of the statement by a space only. The file-number (contained in the variable a) must have been returned by a previous open-statement (e.g. a=open("bar")). print #a "foo",a$; The same as above, but without the implicit newline. print foo using "##.###" Print the number foo with as many digits before and after the decimal dot as given by the number of '#'-signs. See the entries for using and str$ for a detailed description of this format. print reverse "foo" As all the print-variants to follow, this form of the print-statement can only be issued after clear screen has been called. The strings and numbers after the reverse-clause are simply printed inverse (compared to the normal print-statement). print at(10,10) a$,b Print at the specified (x,y)-position. This is only allowed after clear screen has been called. You may want to query peek$("screenwidth") or peek$ ("screenheight") to learn the actual size of your screen. You may add a semicolon to suppress the implicit newline. print @(10,10) a$,b This is exactly the same as above, however, at may be written as @. print color("red","blue") at(5,5) a$,b Print with the specified fore- ("red") and background ("blue") color (or colour). The possible values are "black", "white", "red", "blue", "green", "yellow", "cyan" or "magenta". Again, you need to call clear screen first and add a semicolon if you want to suppress the implicit newline. print color("magenta") a$,b You may specify the foreground color only. print color("green","yellow") a$,b A color and a position (in this sequence, not the other way around) may be specified at once. Example clear screen columns=peek("screenwidth") lines=peek("screenheight") dim col$(7) for a=0 to 7:read col$(a):next a data "black","white","red","blue","green","yellow","cyan","magenta" for a=0 to 2*pi step 0.1 print colour(col$(mod(i,8))) at(columns*(0.8*sin(a)+0.9)/2,lines*(0.8*cos(a)+0.9)/2) "*" i=i+1 next a This example draws a colored ellipse within the text window. See also at, print color, input, clear screen, using, ; ------------------------------------------------------------------------------- Name print color ? print with color Synopsis print color(fore$) text$ print color(fore$,back$) text$ Description Not a separate command, but part of the print-command; may be included just after print and can only be issued after clear screen has been executed. color() takes one or two string-arguments, specifying the color of the text and (optionally) the background. The one or two strings passed to color() can be one of these: "black", "white", "red", "blue", "green", "yellow", "cyan" and "magenta" (which can be abbreviated as "bla", "whi", "red", "blu", "gre", "yel", "cya" and "mag" respectively). color() can only be used, if clear scren has been issued at least once. Note, that color() can be written as colour() too. Example clear screen dim col$(7):for a=0 to 7:read col$(a):next a do print color(col$(ran(7)),col$(ran(7))) " Hallo "; pause 0.01 loop data "black","white","red","blue" data "green","yellow","cyan","magenta" This prints the word " Hallo " in all colors across your screen. See also print, clear screen, at ------------------------------------------------------------------------------- Name print colour ? see print color Synopsis print colour(fore$) text$ print colour(fore$,back$) text$ See also color ------------------------------------------------------------------------------- Name putbit ? draw a rectangle of pixels encoded within a string into the graphics window Synopsis open window 200,200 ? a$=getbit(20,20,50,50) ? putbit a$,30,30 putbit a$ to 30,30 putbit a$,30,30,"or" Description The putbit-command is the counterpart of the getbit$-function. putbit requires a string as returned by the getbit-function. Such a string contains a rectangle from the graphic window; the putbit-function puts such a rectangular region back into the graphic-window. Note, that the putbit-command currently accepts a fourth argument. However only the string value "or" is supported here. The effect is, that only those pixel, which are set in the string will be set in the graphic window. Those pixels, which are not set in the string, will not change in the window (as opposed to being cleared). Example c$="rgb 21,21:0000000000000000000000000000000000000000000000000000000000000032c80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c8c8ff000032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000000000032c80032c80032c80032c80032c8c8ff00c8ff00c8ff00c8ff00c8ff00c8ff00c8ff000032c80032c80032c80032c80032c80000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80032c80000000000000000000000000000000000000000000000000000000000000000000032c80032c80032c80032c80032c80032c80032c80032c80032c8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" open window 200,200 do x=ran(220)-10 y=ran(220)-10 putbit c$,x,y,"transparent" loop This program uses a precanned string (containing the image of a blue circle with a yellow centre) and draws it repeatedly into the graphic-window. The mode "transparent" ensures, that no pixels will be cleared. There are two possible values for the third argument of putbit. Both modes differ in the way, they replace (or not) any pixels from the window with pixels from the bitmap having the background colour. transparent or t With this mode the pixels from the window will be kept, if the bitmap contains pixels with background colour at this position; i.e. the bitmap is transparent solid or s With this mode the pixels from the window will be overpainted with the pixels from the bitmap in any case; i.e. the bitmap is solid If you omit this argument, the default transparent applies. See also getbit$, open window ------------------------------------------------------------------------------- Name putscreen ? draw a rectangle of characters into the text terminal Synopsis clear screen ? a$=getscreen$(5,5,10,10) ? putscreen a$,7,7 Description The putscreen-command is the counterpart of the getscreen$-function. putscreen requires a string as returned by the getscreen-function. Such a string contains a rectangular detail from the terminal; the putscreen-function puts such a region back into the terminal-window. Note, that clear screen must have been called before. Example clear screen for a=1 to 200 print color("red") "Hallo !"; print color("blue") "Welt !"; next a r$=getscreen$(0,0,20,20) for x=0 to 60 putscreen r$,x,0 sleep 0.1 next x This example prints the string "Hallo !Welt !" all over the screen and then moves a rectangle from one side to the other. See also getscreen$, clear screen R ran() ? return a random number read ? read data from data-statements rectangle ? draw a rectangle redim ? create an array prior to its first use. A synonym for dim rem ? start a comment repeat ? start a repeat-loop restore ? reposition the data-pointer return ? return from a subroutine or a gosub reverse ? print reverse (background and foreground colors exchanged) right$() ? return (or change) the right end of a string rinstr() ? find the rightmost occurrence of one string within the other rtrim$() ? trim spaces at the right end of a string Name ran() ? return a random number Synopsis print ran() x=ran(y) Description The ran-function returns a random number. If no argument is given, the number returned is in the range from 0 to 1; where only 0 is a possible value; 1 will never be returned. If an argument is supplied, the number returned will be in the range from 0 up to this argument, whereas this argument itself is not a possible return value. Regardless of the range, ran is guaranteed to have exactly 2**30 different return values. If you call ran multiple times during your program, the sequence of random numbers will be different each time you invoke your program; however, if, e.g. for testing you prefer to always have the same sequence of random numbers you may issue poke "random_seed",123. Example clear screen c=peek("screenwidth")-1 l=peek("screenheight") dim col$(8) for a=0 to 7:read col$(a):next a data "black","white","red","blue","green","yellow","cyan","magenta" do x=ran(c) y=l-ran(l*exp(-32*((x/c-1/2)**2))) i=i+1 print color(col$(mod(i,8))) at(x,y) "*"; loop This example will print a colored bell-curve. See also int ------------------------------------------------------------------------------- Name read ? read data from data-statements Synopsis read a$,a ? data "Hello !",7 Description The read-statement retrieves literal data, which is stored within data-statements elsewhere in your program. Example read num dim col$(num) for a=1 to num:read col$(a):next a clear screen print "These are the colours known to yabasic:\n" for a=1 to num print colour(col$(a)) col$(a) next a data 8,"black","white","red","blue" data "green","yellow","cyan","magenta" This program prints the names of the colors known to yabasic in those very colors. See also data, restore ------------------------------------------------------------------------------- Name rectangle ? draw a rectangle Synopsis open window 100,100 rectangle 10,10 to 90,90 rectangle 20,20,80,80 rect 20,20,80,80 box 30,30,70,70 clear rectangle 30,30,70,70 fill rectangle 40,40,60,60 clear fill rectangle 60,60,40,40 Description The rectangle-command (also known as box or rect, for short) draws a rectangle; it accepts four parameters: The x- and y-coordinates of two facing corners of the rectangle. With the optional clauses clear and fill (which may appear together and in any sequence) the rectangle can be cleared and filled respectively. Example open window 200,200 c=1 do for phi=0 to pi step 0.1 if (c) then rectangle 100+100*sin(phi),100+100*cos(phi) to 100-100*sin(phi),100-100*cos(phi) else clear rectangle 100+100*sin(phi),100+100*cos(phi) to 100-100*sin(phi),100-100*cos(phi) endif sleep 0.1 next phi c=not c loop This example draws a nice animated pattern; watch it for a couple of hours, to see how it develops. See also open window, open printer, line, circle, triangle ------------------------------------------------------------------------------- Name redim ? create an array prior to its first use. A synonym for dim Synopsis See the dim-command. Description The redim-command does exactly the same as the dim-command; it is just a synonym. redim has been around in older versions of basic (not even yabasic) for many years; therefore it is supported in yabasic for compatibility reasons. Please refer to the entry for the dim-command for further information. ------------------------------------------------------------------------------- Name rem ? start a comment Synopsis rem Hey, this is a comment # this is a comment too // even this print "Not a comment" # This is an error !! print "Not a comment":// But this is again a valid comment print "Not a comment" // even this. print "Not a comment" rem and this ! Description rem introduces a comment (like # or //), that extends up to the end of the line. Those comments do not even need a colon (':') in front of them; they (rem, # and //) all behave alike except for #, which may only appear at the very beginning of a line; therefore the fourth example in the synopsis above (print "Not a comment" # This is an error !!) is indeed an error. Note, that rem is an abbreviation for remark. remark however is not a valid command in yabasic. Finally note, that a comment introduced with '#' may have a special meaning under unix; see the entry for # for details. Example # rem comments on data structures # are more useful than // comments on algorithms. rem This program does nothing, but in a splendid and well commented way. See also #, // ------------------------------------------------------------------------------- Name repeat ? start a repeat-loop Synopsis repeat ? until (?) Description The repeat-loop executes all the statements up to the final until-keyword over and over. The loop is executed as long as the condition, which is specified with the until-clause, becomes true. By construction, the statements within the loop are executed at least once. Example x=0 clear screen print "This program will print the numbers from 1 to 10" repeat x=x+1 print x print "Press any key for the next number, or 'q' to quit" if (inkey$="q") break until(x=10) This program is pretty much useless, but self-explanatory. See also until, break, while, do ------------------------------------------------------------------------------- Name restore ? reposition the data-pointer Synopsis read a,b,c,d,e,f restore read g,h,i restore foo data 1,2,3 label foo data 4,5,6 Description The restore-command may be used to reset the reading of data-statements, so that the next read-statement will read data from the first data-statement. You may specify a label with the restore-command; in that case, the next read-statement will read data starting at the given label. If the label is omitted, reading data will begin with the first data-statement within your program. Example input "Which language (german/english) ? " l$ if (instr("german",l$)>0) then restore german else restore english endif for a=1 to 3 read x,x$ print x,"=",x$ next a label english data 1,"one",2,"two",3,"three" label german data 1,"eins",2,"zwei",3,"drei" This program asks to select one of those languages known to me (i.e. english or german) and then prints the numbers 1,2 and 3 and their textual equivalents in the chosen language. See also read, data, label ------------------------------------------------------------------------------- Name return ? return from a subroutine or a gosub Synopsis gosub foo ? label foo ? return sub bar(baz) ? return quertz end sub Description The return-statement serves two different (albeit somewhat related) purposes. The probably more important use of return is to return control from within a subroutine to the place in your program, where the subroutine has been called. If the subroutine is declared to return a value, the return-statement might be accompanied by a string or number, which constitutes the return value of the subroutine. However, even if the subroutine should return a value, the return-statement need not carry a value; in that case the subroutine will return 0 or the empty string (depending on the type of the subroutine). Moreover, feel free to place multiple return-statements within your subroutine; it's a nice way of controlling the flow of execution. The second (but historically first) use of return is to return to the position, where a prior gosub has left off. In that case return may not carry a value. Example do read a$ if (a$="") then print end endif print mark$(a$)," "; loop data "The","quick","brown","fox","jumped" data "over","the","lazy","dog","" sub mark$(a$) if (instr(lower$(a$),"q")) return upper$(a$) return a$ end sub This example features a subroutine mark$, that returns its argument in upper case, if it contains the letter "q", or unchanged otherwise. In the test-text the word quick will end up being marked as QUICK. The example above demonstrates return within subroutines; please see gosub for an example of how to use return in this context. See also sub, gosub ------------------------------------------------------------------------------- Name reverse ? print reverse (background and foreground colors exchanged) Synopsis clear screen ? print reverse "foo" Description reverse may be used to print text in reverse. reverse is not a separate command, but part of the print-command; it may be included just after the print and can only be issued once that clear screen has been issued. Example clear screen print "1 "; c=3 do prim=true for a=2 to sqrt(c) if (frac(c/a)=0) then prim=false break endif next a if (prim) then print print reverse c; else print c; endif print " "; c=c+1 loop This program prints numbers from 1 on and marks each prime number in reverse. See also at, print color, print, clear screen ------------------------------------------------------------------------------- Name right$() ? return (or change) the right end of a string Synopsis print right$(a$,2) right$(b$,2)="baz" Description The right$-function requires two arguments (a string and a number) and returns the part from the right end of the string, whose length is specified by its second argument. So, right$ simply returns the requested number of chars from the right end of the given string. Note, that the right$-function can be assigned to, i.e. it may appear on the left hand side of an assignment. In this way it is possible to change a part of the variable used within the right$-function. Note, that that way the length of the string cannot be changed, i.e. characters might be overwritten, but not added. For an example see below. Example print "Please enter a length either in inch or centimeter" print "please add 'in' or 'cm' to mark the unit." input "Length: " a$ if (right$(a$,2)="in") then length=val(a$)*2.56 elsif (right$(a$,2)="cm") then length=val(a$) else error "Invalid input: "+a$ endif This program allows the user to enter a length qualified with a unit (either inch or centimeter). This second example demonstrates the capability to assign to the right$-function. a$="Heiho World !" print a$ right$(a$,7)="dwarfs." print a$ See also right$ and mid$ ------------------------------------------------------------------------------- Name rinstr() ? find the rightmost occurrence of one string within the other Synopsis pos=rinstr("Thequickbrownfox","equi") pos=rinstr(a$,b$,x) Description The rinstr-function accepts two string-arguments and tries to find the second within the first. However, unlike the instr, the rinstr-function finds the rightmost (or last) occurrence of the string; whereas the instr-function finds the leftmost (or first) occurrence. In any case however, the position is counted from the left. If you supply a third, numeric argument to the rinstr-function, it will be used as a starting point for the search. Therefore rinstr("abcdeabcdeabcde","e",8) will return 5, because the search for an "e" starts at position 8 and finds the first one at position 5. Example print rinstr("foofoofoobar","foo") This simple example will print 7, because it finds the rightmost among the three occurrences of foo within the string. Note, that print instr("foofoofoobar","foo") would have printed 1. See also instr ------------------------------------------------------------------------------- Name rtrim$() ? trim spaces at the right end of a string Synopsis a$=rtrim$(b$) Description The rtrim$-function removes all whitespace from the right end of a string and returns the result. Example open 1,"foo" dim lines$(100) l=1 while(not eof(1)) input #1 a$ a$=rtrim$(a$) if (right$(line$,1)="\\") then line$=line$+" "+a$ else lines$(l)=line$ l=l+1 line$=a$ endif end while print "Read ",l," lines" This example reads the file foo allowing for continuation lines, which are marked by a \, which appears as the last character on a line. For convenience whitespace at the right end of a line is trimmed with rtrim. See also ltrim$, trim$ S screen ? as clear screen clears the text window seek() ? change the position within an open file sig() ? return the sign of its argument sin() ? return the sine of its single argument sleep ? pause, sleep, wait for the specified number of seconds split() ? split a string into many strings sqr() ? compute the square of its argument sqrt() ? compute the square root of its argument static ? preserves the value of a variable between calls to a subroutine step ? specifies the increment step in a for-loop str$() ? convert a number into a string sub ? declare a user defined subroutine switch ? select one of many alternatives depending on a value system$() ? hand a statement over to your operating system and return its output system() ? hand a statement over to your operating system and return its exitcode Name screen ? as clear screen clears the text window Synopsis clear screen Description The keyword screen appears only within the sequence clear screen; please see there for a description. See also clear screen ------------------------------------------------------------------------------- Name seek() ? change the position within an open file Synopsis open 1,"foo" seek #1,q seek #1,x,"begin" seek #1,y,"end" seek #1,z,"here" Description The seek-command changes the position, where the next input (or peek) statement will read from an open file. Usually files are read from the beginning to the end sequentially; however sometimes you may want to depart from this simple scheme. This can be done with the seek-command, allowing you to change the position, where the next piece of data will be read from the file. seek accepts two or three arguments: The first one is the number of an already open file. The second one is the position where the next read from the file will start. The third argument is optional and specifies the the point from where the position (the second argument) will count. It can be one of: begin Count from the beginning of the file. end Count from the end of the file. here Count from the current position within the file. Example open #1,"count.dat","w" for a=1 to 10 print #1,"00000000"; if (a<10) print #1,";"; next a dim count(10) do x=int(ran(10)) i=i+1 if (mod(i,1000)=0) print "."; count(x)=count(x)+1 curr$=right$("00000000"+str$(count(x)),8) seek #1,9*x,"begin" print #1,curr$; loop This example increments randomly one of ten counters (in the array count()); however, the result is always kept and updated within the file count.dat, so even in case of an unexpected interrupt, the result will not be lost. See also tell, open, print, peek ------------------------------------------------------------------------------- Name sig() ? return the sign of its argument Synopsis a=sig(b) Description Return +1, -1 or 0, if the single argument is positive, negative or zero. Example clear screen dim c$(3):c$(1)="red":c$(2)="white":c$(3)="green" do num=ran(100)-50 print color(c$(2+sig(num))) num loop This program prints an infinite sequence of random number; positive numbers are printed in green, negative numbers are printed red (an exact zero would be printed white). (With a little extra work, this program could be easily extended into a brokerage system) See also abs, int, frac ------------------------------------------------------------------------------- Name sin() ? return the sine of its single argument Synopsis y=sin(angle) Description The sin-function expects an angle (in radians, not degrees) and returns its sine. Example open window 200,200 new curve for phi=0 to 2*pi step 0.1 line to 100+90*sin(phi),100+90*cos(phi) next phi close curve This program draws a circle (ignoring the existence of the circle-command). See also asin, cos ------------------------------------------------------------------------------- Name sleep ? pause, sleep, wait for the specified number of seconds Synopsis sleep 4 Description The sleep-command has many different names: You may write pause, sleep or wait interchangeably; whatever you write, yabasic will always do exactly the same. Therefore you should refer to the entry for the pause-function for further information. ------------------------------------------------------------------------------- Name split() ? split a string into many strings Synopsis dim w$(10) ? num=split(a$,w$()) num=split(a$,w$(),s$) Description The split-function requires a string (containing the text to be split), a reference to a string-array (which will receive the resulting strings, i.e. the tokens) and an optional string (with a set of characters, at which to split, i.e. the delimiters). The split-function regards its first argument (a string) as a list of tokens separated by delimiters and it will store the list of tokens within the array-reference you have supplied. Note, that the array, which is passed as a reference (w$() in the synopsis), will be resized accordingly, so that you don't have to figure out the number of tokens in advance. The element at position zero (i.e. w$(0)) will not be used. normally (i.e. if you omit the third, which is the delimiter-argument) the function will regard space or tab as delimiters for tokens; however by supplying a third argument, you may split at any single of the characters within this string. E.g. if you supply ":;" as the third argument, then colon (:) or semicolon (;) will delimit tokens. Note, that a sequence of separator-characters will produce a sequence of empty tokens; that way, the number of tokens returned will always be one plus the number of separator characters contained within the string. Refer to the closely related token-function, if you do not like this behaviour. In some way, the split-function focuses on the separators (other than the token-function, which focuses on the tokens), hence its name. The second argument is a reference on a string-array, where the tokens will be stored; this array will be expanded (or shrunk) to have room for all tokens, if necessary. The first argument finally contains the text, that will be split into tokens. The split-function returns the number of tokens that have been found. Please see the examples below for some hints on the exact behaviour of the split-function and how it differs from the token-function: Example print "This program will help you to understand, how the" print "split()-function exactly works and how it behaves" print "in certain special cases." print print "Please enter a line containing tokens separated" print "by either '=' or '-'" dim t$(10) do print input "Please enter a line: " l$ num=split(l$,t$(),"=-") print num," Tokens: "; for a=1 to num if (t$(a)="") then print "(EMPTY)"; else print t$(a); endif if (a/dev/null 2>&1")) then print "Error !" else print "okay." endif This program is Unix-specific: It uses the Unix-command rm to remove a file. See also system$ T tan() ? return the tangent of its argument tell ? get the current position within an open file text ? write text into your graphic-window then ? tell the long from the short form of the if-statement time$ ? return a string containing the current time to ? this keyword appears as part of other statements token() ? split a string into multiple strings triangle ? draw a triangle trim$() ? remove leading and trailing spaces from its argument true ? a constant with the value of 1 Name tan() ? return the tangent of its argument Synopsis foo=tan(bar) Description The tan-function computes the tangent of its arguments (which should be specified in radians). Example for a=0 to 45 print tan(a*pi/180) next a This example simply prints the tangent of all angles between 0 and 45 degrees. See also atan, sin ------------------------------------------------------------------------------- Name tell ? get the current position within an open file Synopsis open #1,"foo" ? position=tell(#1) Description The tell-function requires the number of an open file as an argument. It returns the position (counted in bytes, starting from the beginning of the file) where the next read will start. Example open #1,"foo","w" print #1 "Hello World !" close #1 open #1,"foo" seek #1,0,"end" print tell(#1) close 1 This example (mis)uses tell to get the size of the file. The seek positions the file pointer at the end of the file, therefor the call to tell returns the total length of the file. See also tell, open ------------------------------------------------------------------------------- Name text ? write text into your graphic-window Synopsis text x,y,"foo" text x,y,"foo","lb" text x,y,"foo","cc","font" text x,y,"foo","font","rt" Description The text-commands displays a text-string (the third argument) at the given position (the first two arguments) within an already opened window. The font to be used can be optionally specified as either the fourth or fifth argument ("font" in the example above). A font specified this way will also be used for any subsequent text-commands, as long as they do not specify a font themselves. The fourth or fifth optional argument ("lb" in the example above) can be used to specify the alignment of the text with respect to the specified position. This argument is always two characters long: The first character specifies the horizontal alignment and can be either l, r or c, which stand for left, right or center. The second character specifies the vertical alignment and can be one of t, b or c, which stand for top, bottom or center respectively. If you omit this alignment argument, the default "lb" applies; however this default may be changed with poke "textalign","xx" Example open window 500,200 clear screen data "lt","lc","lb","ct","cc","cb","rt","rc","rb" for a=1 to 9 read align$ print "Alignment: ",align$ line 50*a-15,100,50*a+15,100 line 50*a,85,50*a,115 text 50*a,100,"Test",align$ inkey$ next a This program draws nine crosses and writes the same text at each; however it goes through all possible nine alignment strings, showing their effect. See also open window, peek, poke ------------------------------------------------------------------------------- Name then ? tell the long from the short form of the if-statement Synopsis if (a0 and a$=left$("no",len(a$)) exit loop This example asks for an answer (yes or no) and removes spaces with trim$ to make the comparison with the string "no" more bulletproof. See also ltrim$, rtrim$ ------------------------------------------------------------------------------- Name true ? a constant with the value of 1 Synopsis okay=true Description The constant true can be assigned to variables which will later appear in conditions (e.g. an if-statement. true may also be written as TRUE or even TrUe. Example input "Please enter a string of all upper letters: " a$ if (is_upper(a$)) print "Okay" sub is_upper(a$) if (a$=upper$(a$)) return true return false end sub See also false U until ? end a repeat-loop upper$() ? convert a string to upper case using ? Specify the format for printing a number Name until ? end a repeat-loop Synopsis repeat ? until (?) Description The until-keyword ends a loop, which has been introduced by the repeat-keyword. until requires a condition in braces (or an expression, see here for details) as an argument; the loop will continue until this condition evaluates to true. Example c=1 s=1 repeat l=c s=-(s+sig(s)) c=c+1/s print c until(abs(l-c)<0.000001) This program calculates the sequence 1/1-1/2+1/3-1/4+1/5-1/6+1/7-1/8+ ? ; please let me know, if you know against which value this converges. See also repeat ------------------------------------------------------------------------------- Name upper$() ? convert a string to upper case Synopsis u$=upper$(a$) Description The upper$-function accepts a single string argument and converts it to all upper case. Example line input "Please enter a sentence without the letter 'e': " l$ p=instr(upper$(l$),"E") if (p) then l$=lower$(l$) mid$(l$,p,1)="E" print "Hey, you are wrong, see here!" print l$ else print "Thanks." endif This program asks for a sentence and marks the first (if any) occurrence of the letter 'e' by converting it to upper case (in contrast to the rest of the sentence, which is converted to lower case). See also lower$ ------------------------------------------------------------------------------- Name using ? Specify the format for printing a number Synopsis print a using "##.###" print a using("##.###",",.") Description The using-keyword may appear as part of the print-statement and specifies the format (e.g. the number of digits before and after the decimal dot), which should be used to print the number. The possible values for the format argument ("##.###" in the synopsis above) are described within the entry for the str$-function; especially the second line in the synopsis (print a using("##.###",",.")) will become clear after referring to str$. In fact the using clause is closely related to the str$-function; the former can always be rewritten using the latter; i.e. print foo using bar$ is always equivalent to print str$(foo,bar$). Therefore you should check out str$ to learn more. Example for a=1 to 10 print sqrt(ran(10000*a)) using "#########.#####" next a This example prints a column of square roots of random number, nicely aligned at the decimal dot. See also print, str$ V val() ? converts a string to a number Name val() ? converts a string to a number Synopsis x=val(x$) Description The val-function checks, if the start of its string argument forms a floating point number and then returns this number. The string therefore has to start with digits (only whitespace in front is allowed), otherwise the val-function returns zero. Example input "Please enter a length, either in inches (in) or centimeters (cm) " l$ if (right$(l$,2)="in") then l=val(l$)*2.51 else l=val(l$) print "You have entered ",l,"cm." This example queries for a length and checks, if it has been specified in inches or centimeters. The length is then converted to centimeters. See also str$ W wait ? pause, sleep, wait for the specified number of seconds wendend a while-loop while ? start a while-loop window origin ? move the origin of a window Name wait ? pause, sleep, wait for the specified number of seconds Synopsis wait 4 Description The wait-command has many different names: You may write pause, sleep or wait interchangeably; whatever you write, yabasic will always do exactly the same. Therefore you should refer to the entry for the pause-function for further information. ------------------------------------------------------------------------------- Name wend ? end a while-loop Synopsis while(a0 and b/a>2) print "b is at least twice as big as a" The logical expression a<>0 and b/a>2 consists of two comparisons, both of which must be true, if the print statement should be executed. Now, if the first comparison (a<>0) is false, the whole logical expression can never be true and the second comparison (b/a>2) need not be evaluated. This is exactly, how yabasic behaves: The evaluation of a composed logical expressions is terminated immediately, as soon as the final result can be deduced from the already evaluated parts. In practice, this has the following consequences: * If two or more comparisons are joined with and and one comparison results in false, the logical expression is evaluated no further and the overall result is false. * If two or more comparisons are joined with or and one comparison results in true, the logical expression is evaluated no further and the result is true. ?Nice, but whats this good for ??, I hear you say. Well, just have another look at the example, especially the second comparison (b/a>2); dividing b by a is potentially hazardous: If a equals zero, the expression will cause an error and your program will terminate. To avoid this, the first part of the comparison (a <>0) checks, if the second one can be evaluated without risk. This pre-checking is the most common usage and primary motivation for logical shortcuts (and the reason why most programming languages implement them). Conditions and expressions Well, bottomline there is no difference or distinction between conditions and expressions, at least as yabasic is concerned. So you may assign the result of comparisons to variables or use an arithmetic expression or a simple variable within a condition (e.g. within an if-statement). So the constructs shown in the example below are all totally valid: input "Please enter a number between 1 and 10: " a rem Assigning the result of a comparison to a variable okay=a>=1 and a<=10 rem Use a variable within an if-statement if (not okay) error "Wrong, wrong !" So conditions and expressions are really the same thing (at least as long as yabasic is concerned). Therefore the terms conditions and expression can really be used interchangeably, at least in theory. In reality the term condition is used in connection with if or while whereas the term expression tends to be used more often within arithmetic context. References on arrays References on arrays are the only way to refer to an array as a whole and to pass it to subroutines or functions like arraydim or arraysize. Whereas (for example) a(2) designates the second element of the array a, a() (with empty braces) refers to the array a itself. a() is called an array reference. If you pass an array reference to one of your own subroutines, you need to be aware, that the subroutine will be able to modify the array you have passed in. So passing an array reference does not create a copy of the array; this has some interesting consequences: * Speed and space: Creating a copy of an array would be a time (and resource) consuming operation; passing just a reference is cheap and fast. * Returning many values: A subroutine, that wants to give back more than one value, may require an array reference among its arguments and then store its many return values within this array. This is the only way to return more than one value from a subroutine. Specifying Filenames under Windows As you probably know, windows uses the character '\' to separate the directories within a pathname; an example would be C:\yabasic\yabasic.exe (the usual location of the yabasic executable). However, the very same character '\' is used to construct escape sequences, not only in yabasic but in most other programming languages. Therefore the string "C:\t.dat" does not specify the file t.dat within the directory C:; this is because the sequence '\t' is translated into the tab-character. To specify this filename, you need to use the string "C:\\t.dat" (note the double slash '\\'). Escape-sequences Escape-sequences are the preferred way of specifying 'special' characters. They are introduced by the '\'-character and followed by one of a few regular letters, e.g. '\n' or '\r' (see the table below). Escape-sequences may occur within any string at any position; they are replaced at parsetime (opposed to runtime), i.e. as soon as yabasic discovers the string, with their corresponding special character. As a consequence of this len("\a") returns 1, because yabasic replaces "\a" with the matching special character just before the program executes. Table 7.1. Escape sequences +--------------------------------------------+ |Escape Sequence| Matching special character | |---------------+----------------------------| |\n |newline | |---------------+----------------------------| |\t |tabulator | |---------------+----------------------------| |\v |vertical tabulator | |---------------+----------------------------| |\b |backspace | |---------------+----------------------------| |\r |carriage return | |---------------+----------------------------| |\f |formfeed | |---------------+----------------------------| |\a |alert (i.e. a beeping sound)| |---------------+----------------------------| |\\ |backslash | |---------------+----------------------------| |\' |single quote | |---------------+----------------------------| |\" |double quote | |---------------+----------------------------| |\xHEX |chr$(HEX) (see below) | +--------------------------------------------+ Note, that an escape sequences of the form \xHEX allows one to encode arbitrary characters as long as you know their position (as a hex-number) within the ascii-charset: For example \x012 is transformed into the character chr$(18) (or chr$(dec("12",16)). Note that \x requires a hexa-decimal number (and the hexa-decimal string "12" corresponds to the decimal number 18). Creating a standalone program from your yabasic-program Creating a standalone-program from the command line Creating a standalone-program from within your program Downsides of creating a standalone program See also Note The bind-feature, which is described below, is at an experimental stage right now. It works (at least for me !) under Windows and Linux, but I cannot even promise it for other variants of Unix. However, if it does not work for your Unix, I will at least try to make it work, if you give me sufficient information of your system. Sometimes you may want to give one of your yabasic-programs to other people. However, what if those other people do not have yabasic installed ? In that case you may create a standalone-program from your yabasic-program, i.e. an executable, that may be executed on its own, standalone, even (and especially !) on computers, that do not have yabasic installed. Having created a standalone program, you may pass it around like any other program (e.g. one written in C) and you can be sure that your program will execute right away. Such a standalone-program is simply created by copying the full yabasic -interpreter and your yabasic-program (plus all the libraries it does import) together into a single, new program, whose name might be chosen at will (under windows of course it should have the ending .exe). If you decide to create a standalone-program, there are three bits in yabasic, that you may use: * The bind-command, which does the actual job of creating the standalone program from the yabasic-interpreter and your program. * The command-line Option -bind (available under windows and Unix), which does the same from the command-line. * The special peek("isbound"), which may be used to check, if the yabasic -program containing this peek is bound to the interpreter as part of a standalone program. With these bits you know enough to create a standalone-program. Actually there are two ways to do this: on the command line and from within your program. Creating a standalone-program from the command line Let's say you have the following very simple program within the file foo.yab: print "Hello World !" Normally you would start this yabasic-program by typing yabasic foo.yab and as a result the string Hello World ! would appear on your screen. However, to create a standalone-program from foo.yab you would type: yabasic -bind foo.exe foo.yab This command does not execute your program foo.yab but rather create a standalone-program foo.exe. Note: under Unix you would probably name the standalone program foo or such, omitting the windows-specific ending .exe. Yabasic will confirm by printing something like: ---Info: Successfully bound 'yabasic' and 'foo.yab' into 'foo.exe'. After that you will find a program foo.exe (which must be made executable with the chmod-command under Unix first). Now, executing this program foo.exe (or foo under Unix) will produce the output Hello World !. This newly created program foo.exe might be passed around to anyone, even if he does not have yabasic installed. Creating a standalone-program from within your program It is possible to write a yabasic-program, that binds itself to the yabasic -interpreter. Here is an example: if (!peek("isbound")) then bind "foo" print "Successfully created the standalone executable 'foo' !" exit endif print "Hello World !" If you run this program (which may be saved in the file foo.yab) via yabasic foo.yab, the peek("isbound") in the first line will check, if the program is already part of a standalone-program. If not (i.e. if the yabasic-interpreter and the yabasic-program are separate files) the bind-command will create a standalone program foo containing both. As a result you would see the output Successfully created the standalone executable 'foo' !. Note: Under Windows you would probably choose the filename foo.exe. Now, if you run this standalone executable foo (or foo.exe), the very same yabasic-program that is shown above will be executed again. However, this time the peek("isbound") will return TRUE and therefore the condition of the if-statement is false and the three lines after then are not executed. Rather the last print-statement will run, and you will see the output Hello World !. That way a yabasic-program may turn itself into a standalone-program. Downsides of creating a standalone program Now, before you go out and turn all your yabasic-programs into standalone programs, please take a second to consider the downsides of doing so: * The new standalone program will be at least as big as the interpreter itself, so you need to pass a few hundred kilobytes around, just to save people from having to install yabasic themselves. * There is no easy way to extract your yabasic-program from within the standalone program: If you ever want to change it, you need to have it around separately. * If a new version of yabasic becomes available, again you need to recreate all of your standalone programs to take advantage of bugfixes and improvements. So, being able to create a standalone program is certainly a good thing, but certainly not a silver bullet. See also The bind-command, the peek-function and the command line options for Unix and Windows. Chapter 8. A few example programs A very simple program The demo of yabasic A very simple program The program below is a very simple program: repeat input "Please enter the first number, to add " a input "Please enter the second number, to add " b print a+b until(a=0 and b=0) This program requests two numbers, which it than adds. The process is repeated until you enter zero (or nothing) twice. The demo of yabasic The listing below is the demo of yabasic. Note, that parts of this demo have been written before some of the more advanced features (e.g subroutines) of yabasic have been implemented. So please do not take this as a particular good example of yabasic-code. // // This program demos yabasic // // Check, if screen is large enough clear screen sw=peek("screenwidth"):sh=peek("screenheight") if (sw<78 or sh<24) then print print " Sorry, but your screen is to small to run this demo !" print end endif sw=78:sh=24 // Initialize everything restore mmdata read mmnum:dim mmtext$(mmnum) for a=1 to mmnum:read mmtext$(a):next a // Main loop selection of demo ysel=1 label mainloop clear screen print colour("cyan","magenta") at(7,2) "################################" print colour("cyan","magenta") at(7,3) "################################" print colour("cyan","magenta") at(7,4) "################################" print colour("yellow","blue") at(8,3) " This is the demo for yabasic " yoff=7 for a=1 to mmnum if (a=mmnum) then ydisp=1:else ydisp=0:fi if (a=ysel) then print colour("blue","green") at(5,yoff+ydisp+a) mmtext$(a); else print at(5,yoff+ydisp+a) mmtext$(a); endif next a print at(3,sh-3) "Move selection with CURSOR KEYS (or u and d)," print at(3,sh-2) "Press RETURN or SPACE to choose, ESC to quit." do // loop for keys pressed rev=1 do // loop for blinking k$=inkey$(0.4) if (k$="") then if (ysel=mmnum) then if (rev=1) then print colour("blue","green") at(5,yoff+mmnum+1) mmtext$(mmnum); rev=0 else print colour("yellow","red") at(5,yoff+mmnum+1) mmtext$(mmnum); rev=1 endif endif else // key has been pressed, leave loop break endif loop // loop for blinking yalt=ysel if (k$="up" or k$="u") then if (ysel=1) then ysel=mmnum else ysel=ysel-1 fi redraw():heal():continue fi if (k$="down" or k$="d") then if (ysel=mmnum) then ysel=1 else ysel=ysel+1 fi redraw():heal():continue fi if (k$=" " or k$="enter" or k$="right") then on ysel gosub overview,bitmap,tetraeder,endit goto mainloop fi if (k$="esc") then endit() fi beep print at(3,sh-5) "Invalid key: ",k$," " loop // loop for keys pressed // redraw line sub redraw() if (yalt=mmnum) then ydisp=1:else ydisp=0:fi print at(5,yoff+yalt+ydisp) mmtext$(yalt); if (ysel=mmnum) then ydisp=1:else ydisp=0:fi print colour("blue","green") at(5,yoff+ysel+ydisp) mmtext$(ysel); return end sub // erase a line sub heal() print at(3,sh-5) " " return end sub // Go here to exit label endit print at(3,sh-8) "Hope you liked it ...\n "; exit return // Present a short overview label overview clear screen print print " Yabasic is a quite traditional basic: It comes with" print " print, input, for-next-loops, goto, gosub, while and" print " repeat. It has user defined procedures and libraries," print " however, it is not object oriented.\n" print " Yabasic makes it easy to open a window, draw lines" print " and print the resulting picture.\n" print " Yabasic programs are interpreted and run under Unix" print " and Windows. The Yabasic interpreter (around 200K)" print " and any Yabasic program can be glued together to" print " form a standalone executable.\n" print " Yabasic is free software, i.e. subject to the" print " MIT License.\n" print "\n\n\n While you read this, I am calculating prime numbers,\n" print " Press any key to return to main menu ..." can=1 print at(6,17) "This is a prime number: " label nextcan can=can+2 for i=2 to sqrt(can):if (frac(can/i)=0) then goto notprime:fi:next i print at(32,17) can; label notprime if (lower$(inkey$(0))<>"") then print at(10,sh) "Wrapping around once ..."; for x=1 to sw a$=getscreen$(0,0,1,sh-2) b$=getscreen$(1,0,sw-1,sh-2) putscreen b$,0,0 putscreen a$,sw-1,0 next x sleep 2 return fi goto nextcan // Show some animated bitmaps label bitmap clear screen print print "Yabasic offers some commands for drawing simple graphics." print reverse at(5,12) " Press any key to return to main menu ... " n=20 open window 400,400 for b=20 to 0 step -1 color 255-b*12,0,b*12 fill circle 200,200,b next b c$=getbit$(179,179,221,221) for a=1 to 2000 color ran(255),ran(255),ran(255) x=ran(500)-100:y=ran(500)-100 fill rectangle ran(500)-100,ran(500)-100,ran(500)-100,ran(500)-100 next a x=200:y=200:phi=ran(2*pi):dx=2*sin(phi):dy=2*cos(phi) o$="" count=0 label pong count=count+1 if (o$<>"") putbit o$,xo-2,yo-2 if (count>1000) then phi=ran(2*pi):dx=2*sin(phi):dy=2*cos(phi) sleep 2 count=0 endif xo=x:yo=y x=x+dx:y=y+dy o$=getbit$(x-2,y-2,x+46,y+46) putbit c$,x,y,"t" if (x<0 or x>360) dx=-dx if (y<0 or y>360) dy=-dy if (inkey$(0)<>"") then close window return endif goto pong return label tetraeder open window 400,400 clear window clear screen print reverse at(5,12) " Press any key to return to main menu ... " dim opoints(4,3) restore points for n=1 to 4:for p=1 to 3:read opoints(n,p):next p:next n dim triangles(4,3) restore triangles for n=1 to 4:for p=1 to 3:read triangles(n,p):next p:next n phi=0:dphi=0.1:psi=0:dpsi=0.05 dim points(4,3) r=60:g=20 dr=0.5:dg=1.2:db=3 label main phi=phi+dphi psi=psi+dpsi for n=1 to 4 points(n,1)=opoints(n,1)*cos(phi)-opoints(n,2)*sin(phi) points(n,2)=opoints(n,2)*cos(phi)+opoints(n,1)*sin(phi) p2= points(n,2)*cos(psi)-opoints(n,3)*sin(psi) points(n,3)=opoints(n,3)*cos(psi)+ points(n,2)*sin(psi) points(n,2)=p2 next n r=r+dr:if (r<0 or r>60) dr=-dr g=g+dg:if (g<0 or g>60) dg=-dg b=b+db:if (b<0 or b>60) db=-db dm=dm+0.01 m=120-80*sin(dm) for n=1 to 4 p1=triangles(n,1) p2=triangles(n,2) p3=triangles(n,3) n1=points(p1,1)+points(p2,1)+points(p3,1) n2=points(p1,2)+points(p2,2)+points(p3,2) n3=points(p1,3)+points(p2,3)+points(p3,3) if (n3>0) then sp=n1*0.5-n2*0.7-n3*0.6 color 60+r+30*sp,60+g+30*sp,60+b+30*sp fill triangle 200+m*points(p1,1),200+m*points(p1,2),200+m*points(p2,1),200+m*points(p2,2),200+m*points(p3,1),200+m*points(p3,2) endif next n if (inkey$(0.1)<>"") close window:return clear window goto main label points data -1,-1,+1, +1,-1,-1, +1,+1,+1, -1,+1,-1 label triangles data 1,2,4, 2,3,4, 1,3,4, 1,2,3 // Data section ... label mmdata // Data for main menu: Number and text of entries in main menu data 4 data " Yabasic in a nutshell " data " Some graphics " data " A rotating Tetraeder " data " Exit this demo " Chapter 9. The Copyright of yabasic yabasic may be copied under the terms of the MIT License, which is distributed with yabasic in the file LICENSE. The MIT License grants extensive rights as long as you keep the copyright notice present in most files untouched. Here is a list of things that are possible under the terms of the MIT License: * Put yabasic on your own homepage or CD and even charge for the service of distributing yabasic. * Write your own yabasic-programs, pack your program and yabasic into a package and sell the whole thing. * Modify yabasic and add or remove features, sell the modified version without adding the sources. .ec .SH AUTHOR Marc Ihm, with the input and suggestions from many others. .SH "SEE ALSO" yabasic.htm \- for the hyperlinked version of the text that is presented above. www.yabasic.de \- for further information on yabasic. .SH BUGS Still some. yabasic-2.78.5/depcomp0000775000175100017510000005055213025160552011540 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2012-03-27.16; # UTC # Copyright (C) 1999-2012 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # A tabulation character. tab=' ' # A newline character. nl=' ' if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' "$nl" < "$tmpdepfile" | ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependent.h'. # Do two passes, one to just change these to # '$object: dependent.h' and one to simply 'dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'. # However on # $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\': # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... # tcc 0.9.26 (FIXME still under development at the moment of writing) # will emit a similar output, but also prepend the continuation lines # with horizontal tabulation characters. "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form 'foo.o: dependent.h', # or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'. # Do two passes, one to just change these to # '$object: dependent.h' and one to simply 'dependent.h:'. sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \ < "$tmpdepfile" > "$depfile" sed ' s/[ '"$tab"'][ '"$tab"']*/ /g s/^ *// s/ *\\*$// s/^[^:]*: *// /^$/d /:$/d s/$/ :/ ' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test "$stat" = 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' "$nl" < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: