The following packages will be installed: atasm Fetching README... 0%100%100%100%100%100%Done Fetching atasm.SlackBuild... 0%100%100%100%100%100%Done Fetching atasm.info... 0%100%100%100%100%100%Done Fetching slack-desc... 0%100%100%100%100%100%Done Archive: /usr/src/slapt-src/development/atasm/atasm107d.zip inflating: atasm107/atasm.exe creating: atasm107/docs/ inflating: atasm107/docs/atasm.pdf inflating: atasm107/docs/atasm.blurb creating: atasm107/examples/ inflating: atasm107/examples/sysequ.m65 inflating: atasm107/examples/test.m65 inflating: atasm107/examples/sample.m65 inflating: atasm107/examples/iomac.lib inflating: atasm107/LICENSE creating: atasm107/src/ inflating: atasm107/src/symbol.c inflating: atasm107/src/atasm_err.c inflating: atasm107/src/asm.c inflating: atasm107/src/directive.h inflating: atasm107/src/state.c inflating: atasm107/src/ops.h inflating: atasm107/src/atasm_err.h inflating: atasm107/src/crc32.c inflating: atasm107/src/Makefile inflating: atasm107/src/symbol.h inflating: atasm107/src/parser.c inflating: atasm107/src/inc_path.h inflating: atasm107/src/inc_path.c inflating: atasm107/src/setparse.c inflating: atasm107/src/atasm.1.in inflating: atasm107/src/dimage.c inflating: atasm107/src/state2.c inflating: atasm107/src/compat.h creating: atasm107/tests/ inflating: atasm107/tests/testraw.m65 extracting: atasm107/tests/testunkn.m65 extracting: atasm107/tests/testdfoo.m65 inflating: atasm107/tests/Makefile inflating: atasm107/tests/testill.m65 inflating: atasm107/tests/testu.m65 inflating: atasm107/VERSION.TXT make: Entering directory '/usr/src/slapt-src/development/atasm/atasm107/src' gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c asm.c asm.c: In function ‘put_float’: asm.c:652:5: warning: ‘strncat’ output may be truncated copying 2 bytes from a string of length 63 [-Wstringop-truncation] 652 | strncat(buf,look,2); | ^~~~~~~~~~~~~~~~~~~ asm.c: In function ‘proc_sym’: asm.c:1727:11: warning: ‘symbolID’ may be used uninitialized in this function [-Wmaybe-uninitialized] 1727 | sprintf(buf,"Using bank %d,%d\n",bankID,symbolID); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c symbol.c symbol.c: In function ‘isUnk’: symbol.c:79:34: warning: ‘%s’ directive output may be truncated writing up to 255 bytes into a region of size 249 [-Wformat-truncation=] 79 | snprintf(buf,256,"=%.4x_%s=%s",invoked->orig->times,invoked->orig->name,unk); | ^~ symbol.c:79:7: note: ‘snprintf’ output 8 or more bytes (assuming 263) into a destination of size 256 79 | snprintf(buf,256,"=%.4x_%s=%s",invoked->orig->times,invoked->orig->name,unk); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ symbol.c: In function ‘addUnk’: symbol.c:152:34: warning: ‘%s’ directive output may be truncated writing up to 255 bytes into a region of size 249 [-Wformat-truncation=] 152 | snprintf(buf,256,"=%.4x_%s=%s",invoked->orig->times,invoked->orig->name,unk); | ^~ symbol.c:152:7: note: ‘snprintf’ output 8 or more bytes (assuming 263) into a destination of size 256 152 | snprintf(buf,256,"=%.4x_%s=%s",invoked->orig->times,invoked->orig->name,unk); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ symbol.c: In function ‘findsym’: symbol.c:292:34: warning: ‘%s’ directive output may be truncated writing up to 255 bytes into a region of size 249 [-Wformat-truncation=] 292 | snprintf(buf,256,"=%.4x_%s=%s",stack->orig->times,stack->orig->name,name); | ^~ symbol.c:292:7: note: ‘snprintf’ output 8 or more bytes (assuming 263) into a destination of size 256 292 | snprintf(buf,256,"=%.4x_%s=%s",stack->orig->times,stack->orig->name,name); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ symbol.c: In function ‘macro_subst’: symbol.c:646:61: warning: ‘%s’ directive output may be truncated writing up to 255 bytes into a region of size 226 [-Wformat-truncation=] 646 | snprintf(buf,256,"Reference to undefined label '%s' in macro",num); | ^~ ~~~ symbol.c:646:13: note: ‘snprintf’ output between 41 and 296 bytes into a destination of size 256 646 | snprintf(buf,256,"Reference to undefined label '%s' in macro",num); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c parser.c gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c setparse.c gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c state.c state.c: In function ‘SaveUBYTE’: state.c:104:21: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 104 | result = GZWRITE( StateOut, data, num ); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c: In function ‘ReadUBYTE’: state.c:114:20: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 114 | result = GZREAD( StateIn, data, num ); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c: In function ‘SaveUWORD’: state.c:134:23: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 134 | result = GZWRITE( StateOut, &byte, 1 ); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c:143:23: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 143 | result = GZWRITE( StateOut, &byte, 1 ); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c: In function ‘ReadUWORD’: state.c:161:22: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 161 | result = GZREAD( StateIn, &byte1, 1 ); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:168:22: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 168 | result = GZREAD( StateIn, &byte2, 1 ); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c: In function ‘SaveINT’: state.c:198:23: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 198 | result = GZWRITE( StateOut, &byte, 1 ); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c:207:23: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 207 | result = GZWRITE( StateOut, &byte, 1 ); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c:216:23: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 216 | result = GZWRITE( StateOut, &byte, 1 ); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c:227:23: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 227 | result = GZWRITE( StateOut, &byte, 1 ); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c: In function ‘ReadINT’: state.c:247:21: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 247 | result = GZREAD(StateIn, &byte1, 1); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:254:19: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 254 | result=GZREAD(StateIn, &byte2, 1); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:261:19: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 261 | result=GZREAD(StateIn, &byte3, 1); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:268:19: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 268 | result=GZREAD(StateIn, &byte4, 1); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c: In function ‘FileCopy’: state.c:512:19: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 512 | result=GZREAD(in,buf,16384); | ^~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:513:13: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 513 | GZWRITE(out,buf,result); | ^~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c: In function ‘save_A800state’: state.c:553:10: warning: assignment to ‘struct gzFile_s **’ from incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types] 553 | StateIn=GZOPEN(fin,"rb"); | ^ state.c:559:17: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 559 | result=GZREAD(StateIn,header_string,8); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:563:20: warning: passing argument 1 of ‘gzclose’ from incompatible pointer type [-Wincompatible-pointer-types] 563 | result=GZCLOSE(StateIn); | ^~~~~~~ | | | struct gzFile_s ** state.c:49:42: note: in definition of macro ‘GZCLOSE’ 49 | #define GZCLOSE( X ) gzclose( X ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1631:32: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1631 | ZEXTERN int ZEXPORT gzclose OF((gzFile file)); | ^~ state.c:567:17: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 567 | result=GZREAD(StateIn,&StateVersion,1); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:568:18: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 568 | result1=GZREAD(StateIn,&SaveVerbose,1); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:571:22: warning: passing argument 1 of ‘gzclose’ from incompatible pointer type [-Wincompatible-pointer-types] 571 | result = GZCLOSE(StateIn); | ^~~~~~~ | | | struct gzFile_s ** state.c:49:42: note: in definition of macro ‘GZCLOSE’ 49 | #define GZCLOSE( X ) gzclose( X ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1631:32: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1631 | ZEXTERN int ZEXPORT gzclose OF((gzFile file)); | ^~ state.c:577:20: warning: passing argument 1 of ‘gzclose’ from incompatible pointer type [-Wincompatible-pointer-types] 577 | result=GZCLOSE(StateIn); | ^~~~~~~ | | | struct gzFile_s ** state.c:49:42: note: in definition of macro ‘GZCLOSE’ 49 | #define GZCLOSE( X ) gzclose( X ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1631:32: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1631 | ZEXTERN int ZEXPORT gzclose OF((gzFile file)); | ^~ state.c:585:11: warning: assignment to ‘struct gzFile_s **’ from incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types] 585 | StateOut=GZOPEN(fout,"wb"); | ^ state.c:590:20: warning: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 590 | result = GZWRITE(StateOut,"ATARI800",8); | ^~~~~~~~ | | | struct gzFile_s ** state.c:51:42: note: in definition of macro ‘GZWRITE’ 51 | #define GZWRITE( X, Y, Z ) gzwrite( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1448:29: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1448 | ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); | ^~ state.c:605:18: warning: passing argument 1 of ‘gzclose’ from incompatible pointer type [-Wincompatible-pointer-types] 605 | result=GZCLOSE(StateOut); | ^~~~~~~~ | | | struct gzFile_s ** state.c:49:42: note: in definition of macro ‘GZCLOSE’ 49 | #define GZCLOSE( X ) gzclose( X ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1631:32: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1631 | ZEXTERN int ZEXPORT gzclose OF((gzFile file)); | ^~ state.c:606:18: warning: passing argument 1 of ‘gzclose’ from incompatible pointer type [-Wincompatible-pointer-types] 606 | result=GZCLOSE(StateIn); | ^~~~~~~ | | | struct gzFile_s ** state.c:49:42: note: in definition of macro ‘GZCLOSE’ 49 | #define GZCLOSE( X ) gzclose( X ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1631:32: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1631 | ZEXTERN int ZEXPORT gzclose OF((gzFile file)); | ^~ state.c: In function ‘templateType’: state.c:634:10: warning: assignment to ‘struct gzFile_s **’ from incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types] 634 | StateIn=GZOPEN(fin,"rb"); | ^ state.c:639:17: warning: passing argument 1 of ‘gzread’ from incompatible pointer type [-Wincompatible-pointer-types] 639 | result=GZREAD(StateIn,header_string,8); | ^~~~~~~ | | | struct gzFile_s ** state.c:50:41: note: in definition of macro ‘GZREAD’ 50 | #define GZREAD( X, Y, Z ) gzread( X, Y, Z ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1392:28: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1392 | ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); | ^~ state.c:642:20: warning: passing argument 1 of ‘gzclose’ from incompatible pointer type [-Wincompatible-pointer-types] 642 | result=GZCLOSE(StateIn); | ^~~~~~~ | | | struct gzFile_s ** state.c:49:42: note: in definition of macro ‘GZCLOSE’ 49 | #define GZCLOSE( X ) gzclose( X ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1631:32: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1631 | ZEXTERN int ZEXPORT gzclose OF((gzFile file)); | ^~ state.c:645:11: warning: passing argument 1 of ‘gzclose’ from incompatible pointer type [-Wincompatible-pointer-types] 645 | GZCLOSE(StateIn); | ^~~~~~~ | | | struct gzFile_s ** state.c:49:42: note: in definition of macro ‘GZCLOSE’ 49 | #define GZCLOSE( X ) gzclose( X ) | ^ In file included from /usr/include/zlib.h:34, from state.c:46: /usr/include/zlib.h:1631:32: note: expected ‘gzFile’ {aka ‘struct gzFile_s *’} but argument is of type ‘struct gzFile_s **’ 1631 | ZEXTERN int ZEXPORT gzclose OF((gzFile file)); | ^~ gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c dimage.c dimage.c: In function ‘scandir’: dimage.c:323:25: warning: variable ‘length’ set but not used [-Wunused-but-set-variable] 323 | int secnum,cnt,status,length,startsec; | ^~~~~~ gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c inc_path.c gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c crc32.c gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c atasm_err.c gcc -Wall -DZLIB_CAPABLE -DUNIX -O2 -fPIC -c state2.c gcc -o atasm asm.o symbol.o parser.o setparse.o state.o dimage.o inc_path.o crc32.o atasm_err.o state2.o -lz cp atasm /usr/src/slapt-src/development/atasm/package-atasm/usr/bin chown root.root /usr/src/slapt-src/development/atasm/package-atasm/usr/bin/atasm || true chmod 711 /usr/src/slapt-src/development/atasm/package-atasm/usr/bin/atasm mkdir /usr/src/slapt-src/development/atasm/package-atasm//usr/doc/atasm-1.07d >/dev/null 2>&1 || echo /usr/src/slapt-src/development/atasm/package-atasm//usr/doc/atasm-1.07d already exists /usr/src/slapt-src/development/atasm/package-atasm//usr/doc/atasm-1.07d already exists cp ../atasm.txt /usr/src/slapt-src/development/atasm/package-atasm//usr/doc/atasm-1.07d chown root.root /usr/src/slapt-src/development/atasm/package-atasm//usr/doc/atasm-1.07d/atasm.txt || true chmod 644 /usr/src/slapt-src/development/atasm/package-atasm//usr/doc/atasm-1.07d/atasm.txt sed -e 's,%%DOCDIR%%,/usr/src/slapt-src/development/atasm/package-atasm//usr/doc/atasm-1.07d,g' < atasm.1.in > atasm.1 cp atasm.1 /usr/src/slapt-src/development/atasm/package-atasm/usr/man/man1 chown root.root /usr/src/slapt-src/development/atasm/package-atasm/usr/man/man1/atasm.1 || true chmod 644 /usr/src/slapt-src/development/atasm/package-atasm/usr/man/man1/atasm.1 make: Leaving directory '/usr/src/slapt-src/development/atasm/atasm107/src' Slackware package maker, version 3.14159265. Searching for symbolic links: No symbolic links were found, so we won't make an installation script. You can make your own later in ./install/doinst.sh and rebuild the package if you like. This next step is optional - you can set the directories in your package to some sane permissions. If any of the directories in your package have special permissions, then DO NOT reset them here! Would you like to reset all directory permissions to 755 (drwxr-xr-x) and directory ownerships to root.root ([y]es, [n]o)? n Creating Slackware package: /usr/src/slapt-src/development/atasm/atasm-1.07d-x86_64-1salix15.0.txz ./ install/ install/slack-desc usr/ usr/bin/ usr/bin/atasm usr/doc/ usr/doc/atasm-1.07d/ usr/doc/atasm-1.07d/LICENSE usr/doc/atasm-1.07d/VERSION.TXT usr/doc/atasm-1.07d/atasm.SlackBuild usr/doc/atasm-1.07d/atasm.blurb usr/doc/atasm-1.07d/atasm.pdf usr/doc/atasm-1.07d/examples/ usr/doc/atasm-1.07d/examples/iomac.lib usr/doc/atasm-1.07d/examples/sample.m65 usr/doc/atasm-1.07d/examples/sysequ.m65 usr/doc/atasm-1.07d/examples/test.m65 usr/man/ usr/man/man1/ usr/man/man1/atasm.1.gz Slackware package /usr/src/slapt-src/development/atasm/atasm-1.07d-x86_64-1salix15.0.txz created. Installing package atasm-1.07d-x86_64-1salix15.0... | atasm (a mostly mac/65 compatible cross-assembler) | | ATasm is a 6502 command-line cross-assembler that is compatible with | the original Mac/65 macroassembler released by OSS software. Code | development can now be performed using modern editors and compiles | with lightning speed. | | | | | | |