<86>Jun 12 10:33:52 userdel[193294]: delete user 'rooter'
<86>Jun 12 10:33:52 userdel[193294]: removed group 'rooter' owned by 'rooter'
<86>Jun 12 10:33:52 userdel[193294]: removed shadow group 'rooter' owned by 'rooter'
<86>Jun 12 10:33:52 groupadd[193334]: group added to /etc/group: name=rooter, GID=639
<86>Jun 12 10:33:52 groupadd[193334]: group added to /etc/gshadow: name=rooter
<86>Jun 12 10:33:52 groupadd[193334]: new group: name=rooter, GID=639
<86>Jun 12 10:33:52 useradd[193347]: new user: name=rooter, UID=639, GID=639, home=/root, shell=/bin/bash
<86>Jun 12 10:33:52 userdel[193385]: delete user 'builder'
<86>Jun 12 10:33:52 userdel[193385]: removed group 'builder' owned by 'builder'
<86>Jun 12 10:33:52 userdel[193385]: removed shadow group 'builder' owned by 'builder'
<86>Jun 12 10:33:52 groupadd[193426]: group added to /etc/group: name=builder, GID=640
<86>Jun 12 10:33:52 groupadd[193426]: group added to /etc/gshadow: name=builder
<86>Jun 12 10:33:52 groupadd[193426]: new group: name=builder, GID=640
<86>Jun 12 10:33:52 useradd[193457]: new user: name=builder, UID=640, GID=640, home=/usr/src, shell=/bin/bash
/usr/src/in/srpm/lxlogo-10-alt2.src.rpm: The use of such a license name is ambiguous: GPL
<13>Jun 12 10:33:55 rpmi: libX11-locales-3:1.6.9-alt1 sisyphus+239210.100.1.1 1571056781 installed
<13>Jun 12 10:33:55 rpmi: xorg-proto-devel-2020.1-alt1 sisyphus+250406.100.1.1 1587554810 installed
<13>Jun 12 10:33:55 rpmi: libXdmcp-1.1.3-alt1 sisyphus+225206.600.1.2 1552949353 installed
<13>Jun 12 10:33:55 rpmi: libXau-1.0.9-alt1 sisyphus+223149.200.2.1 1551268152 installed
<13>Jun 12 10:33:55 rpmi: libxcb-1.14-alt1 sisyphus+247358.200.1.3 1583854228 installed
<13>Jun 12 10:33:56 rpmi: libxcb-devel-1.14-alt1 sisyphus+247358.200.1.3 1583854228 installed
<13>Jun 12 10:33:56 rpmi: libX11-3:1.6.9-alt1 sisyphus+239210.100.1.1 1571056801 installed
<13>Jun 12 10:33:56 rpmi: libX11-devel-3:1.6.9-alt1 sisyphus+239210.100.1.1 1571056801 installed
Building target platforms: i586
Building for target i586
Wrote: /usr/src/in/nosrpm/lxlogo-10-alt2.nosrc.rpm
Installing lxlogo-10-alt2.src.rpm
Building target platforms: i586
Building for target i586
Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.76245
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ rm -rf lxlogo10
+ echo 'Source #0 (lxlogo10.tar.gz):'
Source #0 (lxlogo10.tar.gz):
+ /bin/gzip -dc /usr/src/RPM/SOURCES/lxlogo10.tar.gz
+ /bin/tar -xf -
+ cd lxlogo10
+ /bin/chmod -c -Rf u+rwX,go-w .
+ echo 'Patch #0 (lxlogo10-static_int.patch):'
Patch #0 (lxlogo10-static_int.patch):
+ /usr/bin/patch -p0
patching file src/gd13.c
+ exit 0
Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.84486
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd lxlogo10
+ make -C src lxlogo getgui renderd
make: Entering directory '/usr/src/RPM/BUILD/lxlogo10/src'
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o main.o main.c
main.c:61:1: warning: return type defaults to 'int' [-Wimplicit-int]
   61 | main( argc, argv )
      | ^~~~
main.c: In function 'main':
main.c:84:1: warning: implicit declaration of function 'initvarlist' [-Wimplicit-function-declaration]
   84 | initvarlist();
      | ^~~~~~~~~~~
main.c:92:66: warning: implicit declaration of function 'atoi'; did you mean 'atof'? [-Wimplicit-function-declaration]
   92 |  else if( strcmp( argv[i], "-winx" )==0 && i < argc-1 ) { winx = atoi( argv[i+1] ); i++; }
      |                                                                  ^~~~
      |                                                                  atof
main.c:98:58: warning: implicit declaration of function 'setvar' [-Wimplicit-function-declaration]
   98 |  else if( strcmp( argv[i], "-set" )==0 && i < argc-2 ) { setvar( argv[i+1], argv[i+2], 0 ); i+=2; } /* eg. set varname value */
      |                                                          ^~~~~~
main.c:109:23: warning: implicit declaration of function 'chdir' [-Wimplicit-function-declaration]
  109 | if( dir != NULL ) if( chdir( dir ) ) { fprintf( stderr, "error: cannot chdir to directory %s\n", dir ); lxexit( 1 ); }
      |                       ^~~~~
main.c:109:105: warning: implicit declaration of function 'lxexit' [-Wimplicit-function-declaration]
  109 | if( dir != NULL ) if( chdir( dir ) ) { fprintf( stderr, "error: cannot chdir to directory %s\n", dir ); lxexit( 1 ); }
      |                                                                                                         ^~~~~~
main.c:119:44: warning: implicit declaration of function 'getpid' [-Wimplicit-function-declaration]
  119 | sprintf( dumpfile, "/tmp/__lxlogopr_%05d", getpid() );
      |                                            ^~~~~~
main.c:120:1: warning: implicit declaration of function 'PLG_setdumpmaxlines'; did you mean 'PLG_setdumpfile'? [-Wimplicit-function-declaration]
  120 | PLG_setdumpmaxlines( 100000 );
      | ^~~~~~~~~~~~~~~~~~~
      | PLG_setdumpfile
main.c:121:1: warning: implicit declaration of function 'cleanslate' [-Wimplicit-function-declaration]
  121 | cleanslate();
      | ^~~~~~~~~~
main.c:128:1: warning: implicit declaration of function 'showturt' [-Wimplicit-function-declaration]
  128 | showturt( curx, cury, 1 ); /* display initial turtle.. */
      | ^~~~~~~~
main.c:133:2: warning: implicit declaration of function 'getgui' [-Wimplicit-function-declaration]
  133 |  getgui( buf, "center", "", "-title 'Welcome to LXlogo!' -msg '' -buttons Begin -winy 200" );
      |  ^~~~~~
main.c:137:74: warning: implicit declaration of function 'sleep' [-Wimplicit-function-declaration]
  137 |   PLG_dotext( "Error: getgui executable not found.", 'C' ); PLG_flush(); sleep( 5 );
      |                                                                          ^~~~~
main.c:138:3: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
  138 |   exit( 1 );
      |   ^~~~
main.c:138:3: warning: incompatible implicit declaration of built-in function 'exit'
main.c:9:1: note: include '<stdlib.h>' or provide a declaration of 'exit'
    8 | #include "lxlogo.h"
  +++ |+#include <stdlib.h>
    9 | 
main.c:152:17: warning: implicit declaration of function 'kill' [-Wimplicit-function-declaration]
  152 |   if( editpid ) kill( editpid, 15 ); /* 15 = SIGTERM = Terminate */
      |                 ^~~~
main.c:155:42: warning: implicit declaration of function 'helpinfo' [-Wimplicit-function-declaration]
  155 |  else if( stricmp( buf, "about" )==0 ) { helpinfo(); continue; } /* get help */
      |                                          ^~~~~~~~
main.c:157:3: warning: implicit declaration of function 'turtlecommands' [-Wimplicit-function-declaration]
  157 |   turtlecommands();
      |   ^~~~~~~~~~~~~~
main.c:199:1: warning: implicit declaration of function 'chmod' [-Wimplicit-function-declaration]
  199 | chmod( lxcodefile, 00644 ); /* xedit leaves them in 755 */
      | ^~~~~
main.c:206:23: warning: implicit declaration of function 'code_edit' [-Wimplicit-function-declaration]
  206 |    if( editpid == 0 ) code_edit( lxcodefile );
      |                       ^~~~~~~~~
main.c:228:4: warning: implicit declaration of function 'mkdir' [-Wimplicit-function-declaration]
  228 |    mkdir( "./backups", 00755 );
      |    ^~~~~
main.c:230:4: warning: implicit declaration of function 'system' [-Wimplicit-function-declaration]
  230 |    system( buf );
      |    ^~~~~~
main.c:294:43: warning: implicit declaration of function 'print_dialog' [-Wimplicit-function-declaration]
  294 |   else if( stricmp( buf, "print" )==0 ) { print_dialog(); continue; }
      |                                           ^~~~~~~~~~~~
main.c:307:2: warning: implicit declaration of function 'usleep' [-Wimplicit-function-declaration]
  307 |  usleep( 100000 );  /* needed on some platforms to avoid savewin/expose glitches */
      |  ^~~~~~
main.c:333:14: warning: implicit declaration of function 'parse_logo_code' [-Wimplicit-function-declaration]
  333 |  errorstat = parse_logo_code( fp );
      |              ^~~~~~~~~~~~~~~
main.c:335:18: warning: implicit declaration of function 'errwarn' [-Wimplicit-function-declaration]
  335 |  if( errorstat ) errwarn(); /* warn user of errors */
      |                  ^~~~~~~
main.c:341:15: warning: implicit declaration of function 'run_logo_code' [-Wimplicit-function-declaration]
  341 |   errorstat = run_logo_code();  /* RUN the logo code ... */
      |               ^~~~~~~~~~~~~
main.c:343:3: warning: implicit declaration of function 'PLG_closedumpfile'; did you mean 'PLG_setdumpfile'? [-Wimplicit-function-declaration]
  343 |   PLG_closedumpfile();
      |   ^~~~~~~~~~~~~~~~~
      |   PLG_setdumpfile
main.c:352:28: warning: implicit declaration of function 'getgui_async' [-Wimplicit-function-declaration]
  352 |  if( getgui_async_active ) getgui_async( "", "" );
      |                            ^~~~~~~~~~~~
main.c:354:2: warning: implicit declaration of function 'free' [-Wimplicit-function-declaration]
  354 |  free( codebuf );
      |  ^~~~
main.c:354:2: warning: incompatible implicit declaration of built-in function 'free'
main.c:354:2: note: include '<stdlib.h>' or provide a declaration of 'free'
main.c: At top level:
main.c:375:1: warning: return type defaults to 'int' [-Wimplicit-int]
  375 | getgui( response, loc, msg, commandline )
      | ^~~~~~
main.c:401:1: warning: return type defaults to 'int' [-Wimplicit-int]
  401 | getgui_async( msg, buttons )
      | ^~~~~~~~~~~~
main.c: In function 'getgui_async':
main.c:420:1: warning: implicit declaration of function 'unlink' [-Wimplicit-function-declaration]
  420 | unlink( clrfile ); /* just in case a clrfile is laying around.. */
      | ^~~~~~
main.c:425:8: warning: implicit declaration of function 'fork' [-Wimplicit-function-declaration]
  425 | gpid = fork();
      |        ^~~~
main.c:428:22: warning: implicit declaration of function 'execlp' [-Wimplicit-function-declaration]
  428 |  if( async_buttons ) execlp( pathbuf, "getgui", msg,
      |                      ^~~~~~
main.c:428:22: warning: incompatible implicit declaration of built-in function 'execlp'
main.c:438:7: warning: incompatible implicit declaration of built-in function 'execlp'
  438 |  else execlp( pathbuf, "getgui", msg,
      |       ^~~~~~
main.c: At top level:
main.c:453:1: warning: return type defaults to 'int' [-Wimplicit-int]
  453 | check_async_buttons()
      | ^~~~~~~~~~~~~~~~~~~
main.c:476:1: warning: return type defaults to 'int' [-Wimplicit-int]
  476 | lxgetkey( x, y, e )
      | ^~~~~~~~
main.c:508:1: warning: return type defaults to 'int' [-Wimplicit-int]
  508 | getcolor( color, prompt )
      | ^~~~~~~~
main.c: In function 'getcolor':
main.c:516:40: warning: implicit declaration of function 'GL_getchunk'; did you mean 'GL_getok'? [-Wimplicit-function-declaration]
  516 | for( i = 0, ix = 0; i <= icolor; i++ ) GL_getchunk( color, colorlist, &ix, "|" );
      |                                        ^~~~~~~~~~~
      |                                        GL_getok
main.c: At top level:
main.c:523:1: warning: return type defaults to 'int' [-Wimplicit-int]
  523 | errwarn()
      | ^~~~~~~
main.c:539:1: warning: return type defaults to 'int' [-Wimplicit-int]
  539 | print_dialog()
      | ^~~~~~~~~~~~
main.c:587:1: warning: return type defaults to 'int' [-Wimplicit-int]
  587 | code_edit( filename )
      | ^~~~~~~~~
main.c: In function 'code_edit':
main.c:599:2: warning: incompatible implicit declaration of built-in function 'execlp'
  599 |  execlp( pathbuf, "xedit", filename, "-geometry", locstring, "-title", winname,
      |  ^~~~~~
main.c: At top level:
main.c:639:1: warning: return type defaults to 'int' [-Wimplicit-int]
  639 | lxexit( code )
      | ^~~~~~
main.c: In function 'lxexit':
main.c:643:1: warning: incompatible implicit declaration of built-in function 'exit'
  643 | exit( code );
      | ^~~~
main.c:643:1: note: include '<stdlib.h>' or provide a declaration of 'exit'
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o parsecode.o parsecode.c
parsecode.c:12:1: warning: return type defaults to 'int' [-Wimplicit-int]
   12 | parse_logo_code( basefp )
      | ^~~~~~~~~~~~~~~
parsecode.c: In function 'parse_logo_code':
parsecode.c:27:20: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
   27 | codebuf = (char *) malloc( codebufsize * sizeof( char ) );
      |                    ^~~~~~
parsecode.c:27:20: warning: incompatible implicit declaration of built-in function 'malloc'
parsecode.c:7:1: note: include '<stdlib.h>' or provide a declaration of 'malloc'
    6 | #include "lxlogo.h"
  +++ |+#include <stdlib.h>
    7 | 
parsecode.c:58:2: warning: implicit declaration of function 'dequote' [-Wimplicit-function-declaration]
   58 |  dequote( buf, buf2 ); /* convert quoted strings to variables.. */
      |  ^~~~~~~
parsecode.c:77:24: warning: implicit declaration of function 'getvar'; did you mean 'getchar'? [-Wimplicit-function-declaration]
   77 |   if( tok2[0] == ':' ) getvar( &tok2[1], tok2 );
      |                        ^~~~~~
      |                        getchar
parsecode.c:126:7: warning: implicit declaration of function 'GL_member' [-Wimplicit-function-declaration]
  126 |   if( GL_member( codebuf[j], "[]" )) { /* ensure bracket has a space before it and after it.. */
      |       ^~~~~~~~~
parsecode.c: At top level:
parsecode.c:165:1: warning: return type defaults to 'int' [-Wimplicit-int]
  165 | dequote( out, in )
      | ^~~~~~~
parsecode.c: In function 'dequote':
parsecode.c:210:4: warning: implicit declaration of function 'setvar' [-Wimplicit-function-declaration]
  210 |    setvar( vartag, tok, 0 );
      |    ^~~~~~
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o runcode.o runcode.c
runcode.c:38:1: warning: return type defaults to 'int' [-Wimplicit-int]
   38 | run_logo_code()
      | ^~~~~~~~~~~~~
runcode.c: In function 'run_logo_code':
runcode.c:46:1: warning: implicit declaration of function 'cleanslate' [-Wimplicit-function-declaration]
   46 | cleanslate(); /* initialize for drawing */
      | ^~~~~~~~~~
runcode.c:66:9: warning: implicit declaration of function 'callproc' [-Wimplicit-function-declaration]
   66 |  stat = callproc( "", &cbi );
      |         ^~~~~~~~
runcode.c: At top level:
runcode.c:90:1: warning: return type defaults to 'int' [-Wimplicit-int]
   90 | callproc( com, cbi )
      | ^~~~~~~~
runcode.c: In function 'callproc':
runcode.c:107:29: warning: implicit declaration of function 'GL_smemberi' [-Wimplicit-function-declaration]
  107 | if( skipelseflag[ps_top] && GL_smemberi( tok, "elseif else" ) == 0 && !doing_ifcon[ps_top] ) skipelseflag[ps_top] = 0;
      |                             ^~~~~~~~~~~
runcode.c:118:10: warning: implicit declaration of function 'getparm' [-Wimplicit-function-declaration]
  118 |   stat = getparm( parm, cbi ); if( stat ) return( stat );
      |          ^~~~~~~
runcode.c:119:7: warning: implicit declaration of function 'atoi'; did you mean 'atof'? [-Wimplicit-function-declaration]
  119 |   if( atoi( parm ) <= 0 || atoi( parm ) >= 9000000 )
      |       ^~~~
      |       atof
runcode.c:153:6: warning: implicit declaration of function 'GL_goodnum' [-Wimplicit-function-declaration]
  153 |  if( GL_goodnum( parm, &p ) && GL_goodnum( val, &p ) ) {
      |      ^~~~~~~~~~
runcode.c:167:44: warning: implicit declaration of function 'GL_wildcmp' [-Wimplicit-function-declaration]
  167 |   else if( strcmp( op, "like" )==0 ) { if( GL_wildcmp( parm, val, strlen(val), 0 )==0 ) result = 1; }
      |                                            ^~~~~~~~~~
runcode.c:264:2: warning: implicit declaration of function 'freelocalvars' [-Wimplicit-function-declaration]
  264 |  freelocalvars( ps_top-1 );
      |  ^~~~~~~~~~~~~
runcode.c:285:22: warning: implicit declaration of function 'logocom' [-Wimplicit-function-declaration]
  285 | else if( ( rtnstat = logocom( tok, cbi )) >= 0 ) /* no action */ ;
      |                      ^~~~~~~
runcode.c:301:46: warning: format '%s' expects argument of type 'char *', but argument 3 has type 'char (*)[50]' [-Wformat=]
  301 |  if( debug ) fprintf( stderr, "\njumping to %s  (call level=%d)\n", procname, ps_top );
      |                                             ~^                      ~~~~~~~~
      |                                              |                      |
      |                                              char *                 char (*)[50]
runcode.c:310:10: warning: implicit declaration of function 'setvar' [-Wimplicit-function-declaration]
  310 |   stat = setvar( &varname[1], val, 1 );
      |          ^~~~~~
runcode.c: At top level:
runcode.c:333:1: warning: return type defaults to 'int' [-Wimplicit-int]
  333 | initvarlist()
      | ^~~~~~~~~~~
runcode.c:341:1: warning: return type defaults to 'int' [-Wimplicit-int]
  341 | setvar( name, value, localflag )
      | ^~~~~~
runcode.c:374:1: warning: return type defaults to 'int' [-Wimplicit-int]
  374 | getvar( name, value )
      | ^~~~~~
runcode.c:398:1: warning: return type defaults to 'int' [-Wimplicit-int]
  398 | freelocalvars( instance )
      | ^~~~~~~~~~~~~
runcode.c:426:1: warning: return type defaults to 'int' [-Wimplicit-int]
  426 | getparm( val, cbi )
      | ^~~~~~~
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o coms.o coms.c
coms.c:41:1: warning: return type defaults to 'int' [-Wimplicit-int]
   41 | logocom( com, cbi )
      | ^~~~~~~
coms.c: In function 'logocom':
coms.c:65:3: warning: implicit declaration of function 'GL_systime' [-Wimplicit-function-declaration]
   65 |   GL_systime( &foohr, &foomin, &sec );
      |   ^~~~~~~~~~
coms.c:68:29: warning: implicit declaration of function 'check_async_buttons' [-Wimplicit-function-declaration]
   68 |                         if( check_async_buttons() ) {
      |                             ^~~~~~~~~~~~~~~~~~~
coms.c:84:10: warning: implicit declaration of function 'GL_smemberi' [-Wimplicit-function-declaration]
   84 | else if( GL_smemberi( com, "fd bk lt rt color print random irandom drawspeed abs sine" )) {    /* these logo commands take 1 arg */
      |          ^~~~~~~~~~~
coms.c:87:9: warning: implicit declaration of function 'getparm' [-Wimplicit-function-declaration]
   87 |  stat = getparm( parm, cbi ); if( stat ) return( stat );
      |         ^~~~~~~
coms.c:89:32: warning: implicit declaration of function 'moveturt' [-Wimplicit-function-declaration]
   89 |  if( stricmp( com, "fd" )==0 ) moveturt( atof( parm )/100.0, RELATIVEMOVE, curpen );
      |                                ^~~~~~~~
coms.c:96:44: warning: implicit declaration of function 'animatelines' [-Wimplicit-function-declaration]
   96 |  else if( stricmp( com, "drawspeed" )==0 ) animatelines( atoi( parm ));
      |                                            ^~~~~~~~~~~~
coms.c:96:58: warning: implicit declaration of function 'atoi'; did you mean 'atof'? [-Wimplicit-function-declaration]
   96 |  else if( stricmp( com, "drawspeed" )==0 ) animatelines( atoi( parm ));
      |                                                          ^~~~
      |                                                          atof
coms.c:111:48: warning: implicit declaration of function 'PLG_closedumpfile'; did you mean 'PLG_setdumpfile'? [-Wimplicit-function-declaration]
  111 |  else if( stricmp( what, "animation" )== 0 ) { PLG_closedumpfile(); printable = 0; return( 0 ); } /* don't do the dump file */
      |                                                ^~~~~~~~~~~~~~~~~
      |                                                PLG_setdumpfile
coms.c:187:7: warning: implicit declaration of function 'GL_goodnum' [-Wimplicit-function-declaration]
  187 |  if( !GL_goodnum( parm, &p ) || !GL_goodnum( parm2, &p )) { sprintf( errmsg, "CALC got a non-numeric value" ); return( 1 ); }
      |       ^~~~~~~~~~
coms.c:207:9: warning: implicit declaration of function 'getvar'; did you mean 'getchar'? [-Wimplicit-function-declaration]
  207 |  stat = getvar( varname, val ); if( stat ) return( stat );
      |         ^~~~~~
      |         getchar
coms.c:211:9: warning: implicit declaration of function 'setvar' [-Wimplicit-function-declaration]
  211 |  stat = setvar( varname, buf, 2 ); if( stat ) return( stat );
      |         ^~~~~~
coms.c:302:44: warning: implicit declaration of function 'cleanslate' [-Wimplicit-function-declaration]
  302 | else if( stricmp( com, "cleanslate" )==0 ) cleanslate();
      |                                            ^~~~~~~~~~
coms.c:325:28: warning: format '%g' expects argument of type 'float *', but argument 3 has type 'double *' [-Wformat=]
  325 |   sscanf( &drawcolor[4], "%g,%g,%g", &r, &g, &b );
      |                           ~^         ~~
      |                            |         |
      |                            float *   double *
      |                           %lg
coms.c:325:31: warning: format '%g' expects argument of type 'float *', but argument 4 has type 'double *' [-Wformat=]
  325 |   sscanf( &drawcolor[4], "%g,%g,%g", &r, &g, &b );
      |                              ~^          ~~
      |                               |          |
      |                               float *    double *
      |                              %lg
coms.c:325:34: warning: format '%g' expects argument of type 'float *', but argument 5 has type 'double *' [-Wformat=]
  325 |   sscanf( &drawcolor[4], "%g,%g,%g", &r, &g, &b );
      |                                 ~^           ~~
      |                                  |           |
      |                                  float *     double *
      |                                 %lg
coms.c:369:25: warning: implicit declaration of function 'usleep' [-Wimplicit-function-declaration]
  369 |  if( atof( parm ) > 0 ) usleep( (int) (atof( parm ) * 10000) );
      |                         ^~~~~~
coms.c:377:2: warning: implicit declaration of function 'lxgetkey'; did you mean 'Egetkey'? [-Wimplicit-function-declaration]
  377 |  lxgetkey( &x, &y, &holdevent );
      |  ^~~~~~~~
      |  Egetkey
coms.c:399:28: warning: implicit declaration of function 'getgui_async' [-Wimplicit-function-declaration]
  399 |  if( getgui_async_active ) getgui_async( "", "" );
      |                            ^~~~~~~~~~~~
coms.c:423:2: warning: implicit declaration of function 'getgui' [-Wimplicit-function-declaration]
  423 |  getgui( rtnval, "topright", content, buf );
      |  ^~~~~~
coms.c:432:2: warning: implicit declaration of function 'getcolor' [-Wimplicit-function-declaration]
  432 |  getcolor( rtnval, prompt );
      |  ^~~~~~~~
coms.c:475:46: warning: implicit declaration of function 'print_dialog' [-Wimplicit-function-declaration]
  475 | else if( stricmp( com, "printpicture" )==0 ) print_dialog();
      |                                              ^~~~~~~~~~~~
coms.c:667:4: warning: implicit declaration of function 'ptcap' [-Wimplicit-function-declaration]
  667 |    ptcap( inx/100.0, iny/100.0, (int) tok[0] );
      |    ^~~~~
coms.c:757:5: warning: implicit declaration of function 'PL_smoothfit' [-Wimplicit-function-declaration]
  757 |     PL_smoothfit( &ptm[ linebegin ], do_n, &ptm[ curout ], &ncurvepts );
      |     ^~~~~~~~~~~~
coms.c:776:17: warning: implicit declaration of function 'callproc' [-Wimplicit-function-declaration]
  776 |          stat = callproc( "", &cp );
      |                 ^~~~~~~~
coms.c: At top level:
coms.c:791:1: warning: return type defaults to 'int' [-Wimplicit-int]
  791 | cleanslate()
      | ^~~~~~~~~~
coms.c: In function 'cleanslate':
coms.c:803:1: warning: implicit declaration of function 'initfill' [-Wimplicit-function-declaration]
  803 | initfill();
      | ^~~~~~~~
coms.c: At top level:
coms.c:818:1: warning: return type defaults to 'int' [-Wimplicit-int]
  818 | moveturt( val1, val2, op )
      | ^~~~~~~~
coms.c: In function 'moveturt':
coms.c:830:28: warning: implicit declaration of function 'angpos' [-Wimplicit-function-declaration]
  830 | if( val2 <= RELATIVEMOVE ) angpos( curx, cury, val1, curdir, &newx, &newy );  /* move relative to current loc (angular) */
      |                            ^~~~~~
coms.c:881:40: warning: implicit declaration of function 'dowrap' [-Wimplicit-function-declaration]
  881 | if( wrapmode && val2 <= RELATIVEMOVE ) dowrap( curx, cury, &newx, &newy, op ); /* if wrapping, do it now.. */
      |                                        ^~~~~~
coms.c: At top level:
coms.c:889:1: warning: return type defaults to 'int' [-Wimplicit-int]
  889 | showturt( x, y, op )
      | ^~~~~~~~
coms.c:913:1: warning: return type defaults to 'int' [-Wimplicit-int]
  913 | angpos( oldx, oldy, dist, ang, newx, newy )
      | ^~~~~~
coms.c:943:1: warning: return type defaults to 'int' [-Wimplicit-int]
  943 | dowrap( oldx, oldy, newx, newy, op )
      | ^~~~~~
coms.c:968:1: warning: return type defaults to 'int' [-Wimplicit-int]
  968 | initfill()
      | ^~~~~~~~
coms.c:987:1: warning: return type defaults to 'int' [-Wimplicit-int]
  987 | animatelines( speedval )
      | ^~~~~~~~~~~~
coms.c:1018:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1018 | ptcap( x, y, op )
      | ^~~~~
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o helpinfo.o helpinfo.c
helpinfo.c:5:1: warning: return type defaults to 'int' [-Wimplicit-int]
    5 | helpinfo()
      | ^~~~~~~~
helpinfo.c: In function 'helpinfo':
helpinfo.c:10:1: warning: implicit declaration of function 'usleep' [-Wimplicit-function-declaration]
   10 | usleep( 100000 );  /* needed on some platforms to avoid savewin/expose glitches */
      | ^~~~~~
helpinfo.c:13:1: warning: implicit declaration of function 'cleanslate' [-Wimplicit-function-declaration]
   13 | cleanslate();
      | ^~~~~~~~~~
helpinfo.c:45:2: warning: implicit declaration of function 'getgui' [-Wimplicit-function-declaration]
   45 |  getgui( buf, "topright", "Choose a topic for more info:", "-buttons \"The basics|The examples|Code editor|Done\"" );
      |  ^~~~~~
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o turtlecommands.o turtlecommands.c
turtlecommands.c:6:1: warning: return type defaults to 'int' [-Wimplicit-int]
    6 | turtlecommands()
      | ^~~~~~~~~~~~~~
turtlecommands.c: In function 'turtlecommands':
turtlecommands.c:14:1: warning: implicit declaration of function 'cleanslate' [-Wimplicit-function-declaration]
   14 | cleanslate();
      | ^~~~~~~~~~
turtlecommands.c:17:1: warning: implicit declaration of function 'sleep' [-Wimplicit-function-declaration]
   17 | sleep(1); /* give main menu getgui a chance to clear out.. */
      | ^~~~~
turtlecommands.c:39:1: warning: implicit declaration of function 'animatelines' [-Wimplicit-function-declaration]
   39 | animatelines( 5 );
      | ^~~~~~~~~~~~
turtlecommands.c:41:20: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
   41 | codebuf = (char *) malloc( 120 * sizeof( char ) );
      |                    ^~~~~~
turtlecommands.c:41:20: warning: incompatible implicit declaration of built-in function 'malloc'
turtlecommands.c:5:1: note: include '<stdlib.h>' or provide a declaration of 'malloc'
    4 | #include "lxlogo.h"
  +++ |+#include <stdlib.h>
    5 | 
turtlecommands.c:46:2: warning: implicit declaration of function 'showturt' [-Wimplicit-function-declaration]
   46 |  showturt( curx, cury, 1 );
      |  ^~~~~~~~
turtlecommands.c:59:2: warning: implicit declaration of function 'getgui' [-Wimplicit-function-declaration]
   59 |  getgui( codebuf, "topright", msg, cmdopts );
      |  ^~~~~~
turtlecommands.c:62:40: warning: implicit declaration of function 'free' [-Wimplicit-function-declaration]
   62 |  if( stricmp( codebuf, "done" )==0 ) { free( codebuf ); animatelines(0); return( 0 ); }
      |                                        ^~~~
turtlecommands.c:62:40: warning: incompatible implicit declaration of built-in function 'free'
turtlecommands.c:62:40: note: include '<stdlib.h>' or provide a declaration of 'free'
turtlecommands.c:64:3: warning: implicit declaration of function 'getcolor' [-Wimplicit-function-declaration]
   64 |   getcolor( bgcolor, "Select a background color to use:" );
      |   ^~~~~~~~
turtlecommands.c:82:36: warning: implicit declaration of function 'getgui_async' [-Wimplicit-function-declaration]
   82 |          if( getgui_async_active ) getgui_async( "", "" );
      |                                    ^~~~~~~~~~~~
turtlecommands.c:85:4: warning: implicit declaration of function 'lxgetkey'; did you mean 'Egetkey'? [-Wimplicit-function-declaration]
   85 |    lxgetkey( &x, &y, &e );
      |    ^~~~~~~~
      |    Egetkey
turtlecommands.c:89:47: warning: implicit declaration of function 'moveturt' [-Wimplicit-function-declaration]
   89 |                  else if( e == E_MOUSE_LEFT ) moveturt( x, y, 1 );
      |                                               ^~~~~~~~
turtlecommands.c:101:17: warning: implicit declaration of function 'atoi'; did you mean 'atof'? [-Wimplicit-function-declaration]
  101 |   repeatcount = atoi( buf );
      |                 ^~~~
      |                 atof
turtlecommands.c:114:11: warning: implicit declaration of function 'callproc' [-Wimplicit-function-declaration]
  114 |    stat = callproc( "", &cbi );
      |           ^~~~~~~~
turtlecommands.c:125:1: warning: incompatible implicit declaration of built-in function 'free'
  125 | free( codebuf );
      | ^~~~
turtlecommands.c:125:1: note: include '<stdlib.h>' or provide a declaration of 'free'
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o plg.o plg.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o color.o color.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o err.o err.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o stub.o stub.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o winscale.o winscale.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o glroutines.o glroutines.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o interact.o interact.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o pcode.o pcode.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o init.o init.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o block.o block.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o mark.o mark.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o x11.o x11.c
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o smoothfit.o smoothfit.c
gcc main.o parsecode.o runcode.o coms.o helpinfo.o turtlecommands.o plg.o color.o err.o stub.o winscale.o glroutines.o interact.o pcode.o init.o block.o mark.o x11.o  smoothfit.o -L/usr/X11R6/lib -lX11 -lm -o ../bin/lxlogo
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o getgui.o getgui.c
getgui.c:21:1: warning: return type defaults to 'int' [-Wimplicit-int]
   21 | main( argc, argv )
      | ^~~~
getgui.c: In function 'main':
getgui.c:70:2: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
   70 |  exit( 0 );
      |  ^~~~
getgui.c:70:2: warning: incompatible implicit declaration of built-in function 'exit'
getgui.c:17:1: note: include '<stdlib.h>' or provide a declaration of 'exit'
   16 | #include "plg.h"
  +++ |+#include <stdlib.h>
   17 | 
getgui.c:87:1: warning: implicit declaration of function 'getgui_set' [-Wimplicit-function-declaration]
   87 | getgui_set( "listsep", 0, 0.0, "\n" );
      | ^~~~~~~~~~
getgui.c:124:56: warning: implicit declaration of function 'atoi'; did you mean 'atof'? [-Wimplicit-function-declaration]
  124 |   if( i < argc-1 && argv[i+1][0] != '-' ) { fieldlen = atoi( argv[i+1] ); i++; }
      |                                                        ^~~~
      |                                                        atof
getgui.c:155:11: warning: implicit declaration of function 'GL_smember' [-Wimplicit-function-declaration]
  155 |  else if( GL_smember( argv[i], "-winx -winy -keysize -selsize" ) && i < argc-1 ) { getgui_set( &argv[i][1], atoi(argv[i+1]), 0.0, "" ); i++; }
      |           ^~~~~~~~~~
getgui.c:174:45: warning: implicit declaration of function 'GL_member' [-Wimplicit-function-declaration]
  174 |   for( j = 0; argv[i][j] != '\0'; j++ ) if( GL_member( argv[i][j], " ()*|^;\\`'" )) { quotes = 1; break; }
      |                                             ^~~~~~~~~
getgui.c:183:2: warning: implicit declaration of function 'sleep' [-Wimplicit-function-declaration]
  183 |  sleep( sleepmin * 60 );
      |  ^~~~~
getgui.c:201:19: warning: implicit declaration of function 'chdir' [-Wimplicit-function-declaration]
  201 | if( dir != NULL ) chdir( dir );   /* if a working directory was specified, chdir to it now.. */
      |                   ^~~~~
getgui.c:204:1: warning: implicit declaration of function 'getgui_init' [-Wimplicit-function-declaration]
  204 | getgui_init( winname, 0 );   /* initialize things.. */
      | ^~~~~~~~~~~
getgui.c:213:6: warning: implicit declaration of function 'convertnl' [-Wimplicit-function-declaration]
  213 | else convertnl( prompt );
      |      ^~~~~~~~~
getgui.c:214:7: warning: implicit declaration of function 'getgui_text' [-Wimplicit-function-declaration]
  214 | tx1 = getgui_text( 4.0, 4.0, prompt, promptalign, "top", promptsize, promptcolor, 0 );
      |       ^~~~~~~~~~~
getgui.c:220:2: warning: implicit declaration of function 'getgui_relalign_next' [-Wimplicit-function-declaration]
  220 |  getgui_relalign_next( "top", tx1, 0.2, (horiz)?"left":"center", tx1, 0.0 );
      |  ^~~~~~~~~~~~~~~~~~~~
getgui.c:235:8: warning: implicit declaration of function 'getgui_nameselect' [-Wimplicit-function-declaration]
  235 |  ns1 = getgui_nameselect( 4.0, 2.0, "center", "top", content, "word", initval, "single", 50, pickrep );
      |        ^~~~~~~~~~~~~~~~~
getgui.c:239:8: warning: implicit declaration of function 'getgui_buttons' [-Wimplicit-function-declaration]
  239 |   b2 = getgui_buttons( 0.0, 0.0, "right", "Go up a level", 9, "gray(0.8)", 0, "single" );
      |        ^~~~~~~~~~~~~~
getgui.c:246:2: warning: implicit declaration of function 'getgui_go' [-Wimplicit-function-declaration]
  246 |  getgui_go( 0, b1, b2, 0 );
      |  ^~~~~~~~~
getgui.c:248:3: warning: implicit declaration of function 'getgui_getval' [-Wimplicit-function-declaration]
  248 |   getgui_getval( b2, buf, ENTIRE_TEXT );/* up a level */
      |   ^~~~~~~~~~~~~
getgui.c:249:34: warning: implicit declaration of function 'printresult' [-Wimplicit-function-declaration]
  249 |   if( strcmp( buf, "" ) != 0 ) { printresult( "../" ); exit( 0 ); }
      |                                  ^~~~~~~~~~~
getgui.c:249:56: warning: incompatible implicit declaration of built-in function 'exit'
  249 |   if( strcmp( buf, "" ) != 0 ) { printresult( "../" ); exit( 0 ); }
      |                                                        ^~~~
getgui.c:249:56: note: include '<stdlib.h>' or provide a declaration of 'exit'
getgui.c:254:2: warning: incompatible implicit declaration of built-in function 'exit'
  254 |  exit( 0 );
      |  ^~~~
getgui.c:254:2: note: include '<stdlib.h>' or provide a declaration of 'exit'
getgui.c:262:7: warning: implicit declaration of function 'getgui_textfield' [-Wimplicit-function-declaration]
  262 |  k1 = getgui_textfield( 4.0, 1.0, (horiz)?"left":"center", fieldlen, keymax, initval, keycursor, (pwmode)?"P":"" );
      |       ^~~~~~~~~~~~~~~~
getgui.c:279:32: warning: implicit declaration of function 'getgui_pulldown' [-Wimplicit-function-declaration]
  279 |  if( prefab == PULLDOWN ) p1 = getgui_pulldown( 4.0, 1.0, (horiz)?"left":"center",
      |                                ^~~~~~~~~~~~~~~
getgui.c:310:2: warning: incompatible implicit declaration of built-in function 'exit'
  310 |  exit( 0 );
      |  ^~~~
getgui.c:310:2: note: include '<stdlib.h>' or provide a declaration of 'exit'
getgui.c:328:83: warning: incompatible implicit declaration of built-in function 'exit'
  328 |   if( strcmp( buf, "" ) != 0 && stricmp( buf, okstr )!= 0 ) { printresult( buf ); exit( 0 ); }
      |                                                                                   ^~~~
getgui.c:328:83: note: include '<stdlib.h>' or provide a declaration of 'exit'
getgui.c:339:83: warning: incompatible implicit declaration of built-in function 'exit'
  339 |   if( strcmp( buf, "" ) != 0 && stricmp( buf, okstr )!= 0 ) { printresult( buf ); exit( 0 ); }
      |                                                                                   ^~~~
getgui.c:339:83: note: include '<stdlib.h>' or provide a declaration of 'exit'
getgui.c:342:24: warning: implicit declaration of function 'usleep' [-Wimplicit-function-declaration]
  342 |  if( buttons == NULL ) usleep( 400000 ); /* add a little more delay when there are no buttons */
      |                        ^~~~~~
getgui.c:347:1: warning: incompatible implicit declaration of built-in function 'exit'
  347 | exit( rtncode );
      | ^~~~
getgui.c:347:1: note: include '<stdlib.h>' or provide a declaration of 'exit'
getgui.c: At top level:
getgui.c:354:1: warning: return type defaults to 'int' [-Wimplicit-int]
  354 | printresult( result )
      | ^~~~~~~~~~~
getgui.c:369:1: warning: return type defaults to 'int' [-Wimplicit-int]
  369 | convertnl( str )
      | ^~~~~~~~~
gcc -DLOGO -DNOSCALE -DNOGD -DNOPS -DNOSVG -DNOSWF -DTDH_NOREC -I/usr/X11R6/include -DPRINTCOM=\"lpr\"   -c -o api.o api.c
api.c:208:1: warning: return type defaults to 'int' [-Wimplicit-int]
  208 | getgui_init( winname, rendermode )
      | ^~~~~~~~~~~
api.c: In function 'getgui_init':
api.c:224:2: warning: implicit declaration of function 'GL_make_unique_string' [-Wimplicit-function-declaration]
  224 |  GL_make_unique_string( buf, 0 );  /* build a unique name for tmp file */
      |  ^~~~~~~~~~~~~~~~~~~~~
api.c: At top level:
api.c:246:1: warning: return type defaults to 'int' [-Wimplicit-int]
  246 | getgui_go( starttextfield, stopobj, stopobj2, stopobj3 )
      | ^~~~~~~~~
api.c: In function 'getgui_go':
api.c:269:2: warning: implicit declaration of function 'getgui_getkey'; did you mean 'getgui_go'? [-Wimplicit-function-declaration]
  269 |  getgui_getkey( &x, &y, &e );
      |  ^~~~~~~~~~~~~
      |  getgui_go
api.c: In function 'render':
api.c:331:1: warning: implicit declaration of function 'PLG_closedumpfile'; did you mean 'PLG_setdumpfile'? [-Wimplicit-function-declaration]
  331 | PLG_closedumpfile(); /* terminate writing to the dump file */
      | ^~~~~~~~~~~~~~~~~
      | PLG_setdumpfile
api.c:357:71: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
  357 | if( fp == NULL ) { Eerr( 523, "Cannot open dump file", tmpfilename ); exit(1); }
      |                                                                       ^~~~
api.c:357:71: warning: incompatible implicit declaration of built-in function 'exit'
api.c:10:1: note: include '<stdlib.h>' or provide a declaration of 'exit'
    9 | #include "plg.h"
  +++ |+#include <stdlib.h>
   10 | 
api.c:368:6: warning: implicit declaration of function 'GL_member' [-Wimplicit-function-declaration]
  368 |  if( GL_member( op[0], "LMP" )) {
      |      ^~~~~~~~~
api.c:377:1: warning: implicit declaration of function 'unlink' [-Wimplicit-function-declaration]
  377 | unlink( tmpfilename );
      | ^~~~~~
api.c: At top level:
api.c:444:1: warning: return type defaults to 'int' [-Wimplicit-int]
  444 | getgui_late_refresh()
      | ^~~~~~~~~~~~~~~~~~~
api.c:469:1: warning: return type defaults to 'int' [-Wimplicit-int]
  469 | getgui_getval( sethandle, val, method )
      | ^~~~~~~~~~~~~
api.c:528:1: warning: return type defaults to 'int' [-Wimplicit-int]
  528 | getgui_buttons( x, y, align, choicelist, ptsize, colorlist, wraplen, choosemode )
      | ^~~~~~~~~~~~~~
api.c: In function 'getgui_buttons':
api.c:551:1: warning: implicit declaration of function 'PLG_init_bb2'; did you mean 'PLG_init'? [-Wimplicit-function-declaration]
  551 | PLG_init_bb2();   /* initialize an object bounding box in case app wants to get zone of entire box later */
      | ^~~~~~~~~~~~
      | PLG_init
api.c:569:3: warning: implicit declaration of function 'GL_getchunk'; did you mean 'GL_getok'? [-Wimplicit-function-declaration]
  569 |   GL_getchunk( &buf[ buflen ], choicelist, &ix, "|" );
      |   ^~~~~~~~~~~
      |   GL_getok
api.c: In function 'buttonset':
api.c:652:2: warning: format not a string literal and no format arguments [-Wformat-security]
  652 |  if( npick >= MAXPICK-1 ) { fprintf( stderr, fullobjmsg ); return( 0 ); }
      |  ^~
api.c: In function 'flashbutton':
api.c:720:1: warning: implicit declaration of function 'usleep' [-Wimplicit-function-declaration]
  720 | usleep( FLASH_uS );
      | ^~~~~~
api.c: At top level:
api.c:732:1: warning: return type defaults to 'int' [-Wimplicit-int]
  732 | getgui_textfield( x, y, align, length, maxlen, initval, initcursor, modestr )
      | ^~~~~~~~~~~~~~~~
api.c: In function 'getgui_textfield':
api.c:732:1: warning: type of 'maxlen' defaults to 'int' [-Wimplicit-int]
api.c:770:1: warning: format not a string literal and no format arguments [-Wformat-security]
  770 | if( npick >= MAXPICK-1 ) { fprintf( stderr, fullobjmsg ); return( 0 ); }
      | ^~
api.c: At top level:
api.c:987:1: warning: return type defaults to 'int' [-Wimplicit-int]
  987 | getgui_nameselect( x, y, align, valign, inbuf, delimmode, initval, choosemode, minwidth, pickrep )
      | ^~~~~~~~~~~~~~~~~
api.c: In function 'getgui_nameselect':
api.c:1035:2: warning: implicit declaration of function 'GL_expand_tabs' [-Wimplicit-function-declaration]
 1035 |  GL_expand_tabs( buf, buf2 );
      |  ^~~~~~~~~~~~~~
api.c:1128:4: warning: format not a string literal and no format arguments [-Wformat-security]
 1128 |    if( npick >= MAXPICK-20 ) { fprintf( stderr, fullobjmsg ); return( 0 ); }
      |    ^~
api.c:1144:32: warning: implicit declaration of function 'atoi'; did you mean 'atof'? [-Wimplicit-function-declaration]
 1144 |      ( pickrep == INDEX_NUM && atoi( initval ) == (npick-firstpick) )
      |                                ^~~~
      |                                atof
api.c: At top level:
api.c:1171:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1171 | flashns( listloc, recurs )
      | ^~~~~~~
api.c:1227:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1227 | getgui_pulldown( x, y, align, valign, inbuf, initval, pickrep )
      | ^~~~~~~~~~~~~~~
api.c: In function 'getgui_pulldown':
api.c:1239:1: warning: format not a string literal and no format arguments [-Wformat-security]
 1239 | if( npick >= MAXPICK-1 ) { fprintf( stderr, fullobjmsg ); return( 0 ); }
      | ^~
api.c: At top level:
api.c:1380:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1380 | getgui_text( x, y, text, align, valign, size, color, hruling )
      | ^~~~~~~~~~~
api.c:1451:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1451 | getgui_relalign_next( vside, vobjid, vsep, hside, hobjid, hsep )
      | ^~~~~~~~~~~~~~~~~~~~
api.c: In function 'savezone':
api.c:1494:1: warning: format not a string literal and no format arguments [-Wformat-security]
 1494 | if( npick >= MAXPICK-1 ) { fprintf( stderr, fullobjmsg ); return( 0 ); }
      | ^~
api.c:1496:1: warning: implicit declaration of function 'PLG_get_bb2'; did you mean 'PLG_getbb'? [-Wimplicit-function-declaration]
 1496 | PLG_get_bb2( &(pick[npick].x1), &(pick[npick].y1), &(pick[npick].x2), &(pick[npick].y2) );
      | ^~~~~~~~~~~
      | PLG_getbb
api.c: At top level:
api.c:1507:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1507 | getgui_getkey( x, y, e )
      | ^~~~~~~~~~~~~
api.c: In function 'getgui_getkey':
api.c:1542:3: warning: implicit declaration of function 'cursor_blink' [-Wimplicit-function-declaration]
 1542 |   cursor_blink();
      |   ^~~~~~~~~~~~
api.c: At top level:
api.c:1556:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1556 | cursor_blink()
      | ^~~~~~~~~~~~
api.c:1573:1: warning: return type defaults to 'int' [-Wimplicit-int]
 1573 | getgui_set( parm, ival, dval, sval )
      | ^~~~~~~~~~
gcc getgui.o api.o  plg.o color.o err.o stub.o winscale.o glroutines.o interact.o pcode.o init.o block.o mark.o x11.o  smoothfit.o -L/usr/X11R6/lib -lX11 -lm -o ../bin/getgui
make clean; make -f Makefile_rd
make[1]: Entering directory '/usr/src/RPM/BUILD/lxlogo10/src'
rm -f *.o 
make[1]: Leaving directory '/usr/src/RPM/BUILD/lxlogo10/src'
make[1]: Entering directory '/usr/src/RPM/BUILD/lxlogo10/src'
gcc -DNOX11 -DNOSWF -DGD13    -c -o renderd.o renderd.c
renderd.c:6:1: warning: return type defaults to 'int' [-Wimplicit-int]
    6 | main( argc, argv )
      | ^~~~
renderd.c: In function 'main':
renderd.c:19:63: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
   19 | if( argc < 2 ) { fprintf( stderr, "renderd: usage error\n" ); exit(1); }
      |                                                               ^~~~
renderd.c:19:63: warning: incompatible implicit declaration of built-in function 'exit'
renderd.c:5:1: note: include '<stdlib.h>' or provide a declaration of 'exit'
    4 | #include "plg.h"
  +++ |+#include <stdlib.h>
    5 | 
renderd.c:68:4: warning: implicit declaration of function 'PLGP_settings'; did you mean 'PLG_setsize'? [-Wimplicit-function-declaration]
   68 |    PLGP_settings( "darken", "1.0" );
      |    ^~~~~~~~~~~~~
      |    PLG_setsize
renderd.c:90:1: warning: incompatible implicit declaration of built-in function 'exit'
   90 | exit(0);
      | ^~~~
renderd.c:90:1: note: include '<stdlib.h>' or provide a declaration of 'exit'
gcc -DNOX11 -DNOSWF -DGD13    -c -o plg.o plg.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o color.o color.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o err.o err.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o stub.o stub.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o glroutines.o glroutines.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o pcode.o pcode.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o init.o init.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o mark.o mark.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o block.o block.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o winscale.o winscale.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o ps.o ps.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o svg.o svg.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o gdfontg.o gdfontg.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o gdfontl.o gdfontl.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o gdfontmb.o gdfontmb.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o gdfonts.o gdfonts.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o gdfontt.o gdfontt.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o grgd.o grgd.c
gcc -DNOX11 -DNOSWF -DGD13    -c -o gd13.o gd13.c
gcc renderd.o plg.o color.o err.o stub.o glroutines.o pcode.o init.o mark.o block.o winscale.o ps.o svg.o gdfontg.o gdfontl.o gdfontmb.o gdfonts.o gdfontt.o grgd.o gd13.o -lm -o ../bin/renderd
make clean
make[2]: Entering directory '/usr/src/RPM/BUILD/lxlogo10/src'
rm -f *.o 
make[2]: Leaving directory '/usr/src/RPM/BUILD/lxlogo10/src'
make[1]: Leaving directory '/usr/src/RPM/BUILD/lxlogo10/src'
make: Leaving directory '/usr/src/RPM/BUILD/lxlogo10/src'
+ exit 0
Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.60393
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /bin/chmod -Rf u+rwX -- /usr/src/tmp/lxlogo-buildroot
+ :
+ /bin/rm -rf -- /usr/src/tmp/lxlogo-buildroot
+ cd lxlogo10
+ mkdir -p /usr/src/tmp/lxlogo-buildroot/usr/bin
+ install -s bin/getgui bin/lxlogo bin/renderd /usr/src/tmp/lxlogo-buildroot/usr/bin/
+ /usr/lib/rpm/brp-alt
Cleaning files in /usr/src/tmp/lxlogo-buildroot (auto)
Verifying and fixing files in /usr/src/tmp/lxlogo-buildroot (binconfig,pkgconfig,libtool,desktop)
Checking contents of files in /usr/src/tmp/lxlogo-buildroot/ (default)
Compressing files in /usr/src/tmp/lxlogo-buildroot (auto)
Verifying ELF objects in /usr/src/tmp/lxlogo-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal)
verify-elf: WARNING: ./usr/bin/renderd: uses non-LFS functions: fopen
verify-elf: WARNING: ./usr/bin/lxlogo: uses non-LFS functions: fopen
verify-elf: WARNING: ./usr/bin/getgui: uses non-LFS functions: fopen
Hardlinking identical .pyc and .pyo files
Processing files: lxlogo-10-alt2
Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.92170
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd lxlogo10
+ DOCDIR=/usr/src/tmp/lxlogo-buildroot/usr/share/doc/lxlogo-10
+ export DOCDIR
+ rm -rf /usr/src/tmp/lxlogo-buildroot/usr/share/doc/lxlogo-10
+ /bin/mkdir -p /usr/src/tmp/lxlogo-buildroot/usr/share/doc/lxlogo-10
+ cp -prL examples README /usr/src/tmp/lxlogo-buildroot/usr/share/doc/lxlogo-10
+ chmod -R go-w /usr/src/tmp/lxlogo-buildroot/usr/share/doc/lxlogo-10
+ chmod -R a+rX /usr/src/tmp/lxlogo-buildroot/usr/share/doc/lxlogo-10
+ exit 0
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.uVrT9G
find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,shell)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.YOmSfL
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,rpmlib,shebang,shell,static,symlinks,systemd-services)
Requires: xedit, /lib/ld-linux.so.2, libX11.so.6 >= set:oi870NRrhJBiZsZmOJPk29ziIzW0442CFl6IZHUW70FXf23G6b3hsa5e3j9pZoHbm67bRKF1qaNR89aLWgzymbzDdL2JTEM3N3y0, libc.so.6(GLIBC_2.0), libc.so.6(GLIBC_2.1), libc.so.6(GLIBC_2.3), libc.so.6(GLIBC_2.4), libc.so.6(GLIBC_2.7), libm.so.6(GLIBC_2.0), libm.so.6(GLIBC_2.29), rtld(GNU_HASH)
Requires(rpmlib): rpmlib(SetVersions)
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.9S9wkJ
Wrote: /usr/src/RPM/RPMS/i586/lxlogo-10-alt2.i586.rpm
3.99user 0.78system 0:08.50elapsed 56%CPU (0avgtext+0avgdata 26908maxresident)k
0inputs+0outputs (0major+315969minor)pagefaults 0swaps
/.out/lxlogo-10-alt2.i586.rpm: The use of such a license name is ambiguous: GPL
8.81user 3.62system 0:18.21elapsed 68%CPU (0avgtext+0avgdata 109300maxresident)k
0inputs+0outputs (0major+589740minor)pagefaults 0swaps
--- lxlogo-10-alt2.i586.rpm.repo	2009-03-08 22:04:48.000000000 +0000
+++ lxlogo-10-alt2.i586.rpm.hasher	2020-06-12 10:34:08.446072293 +0000
@@ -76,6 +76,5 @@
 Requires: xedit  
-Requires: rpmlib(PayloadFilesHavePrefix) <= 4.0-1
-Requires: rpmlib(CompressedFileNames) <= 3.0.4-1
 Requires: /lib/ld-linux.so.2  
-Requires: libX11.so.6  
+Requires: libX11.so.6 >= set:oi870NRrhJBiZsZmOJPk29ziIzW0442CFl6IZHUW70FXf23G6b3hsa5e3j9pZoHbm67bRKF1qaNR89aLWgzymbzDdL2JTEM3N3y0
+Requires: rpmlib(SetVersions)  
 Requires: libc.so.6(GLIBC_2.0)  
@@ -84,5 +83,7 @@
 Requires: libc.so.6(GLIBC_2.4)  
+Requires: libc.so.6(GLIBC_2.7)  
 Requires: libm.so.6(GLIBC_2.0)  
+Requires: libm.so.6(GLIBC_2.29)  
 Requires: rtld(GNU_HASH)  
-Requires: rpmlib(PayloadIsLzma) <= 4.4.2-1
+Requires: rpmlib(PayloadIsLzma)  
 Provides: lxlogo = 10-alt2