The following packages will be installed: mp3fs Fetching README... 0%100%100%100%100%100%Done Fetching mp3fs.SlackBuild... 0%100%100%100%100%100%Done Fetching mp3fs.info... 0%100%100%100%100%100%Done Fetching slack-desc... 0%100%100%100%100%100%Done mp3fs-0.91/ mp3fs-0.91/aclocal.m4 mp3fs-0.91/ChangeLog mp3fs-0.91/config/ mp3fs-0.91/configure mp3fs-0.91/configure.ac mp3fs-0.91/COPYING mp3fs-0.91/COPYING.DOC mp3fs-0.91/INSTALL.md mp3fs-0.91/Makefile.am mp3fs-0.91/Makefile.in mp3fs-0.91/mp3fs.1 mp3fs-0.91/mp3fs.1.txt mp3fs-0.91/NEWS mp3fs-0.91/README.md mp3fs-0.91/src/ mp3fs-0.91/test/ mp3fs-0.91/test/flac/ mp3fs-0.91/test/fpcompare.c mp3fs-0.91/test/funcs.sh mp3fs-0.91/test/Makefile.am mp3fs-0.91/test/Makefile.in mp3fs-0.91/test/test_audio mp3fs-0.91/test/test_filenames mp3fs-0.91/test/test_filesize mp3fs-0.91/test/test_tags mp3fs-0.91/test/flac/dir.flac/ mp3fs-0.91/test/flac/obama.flac mp3fs-0.91/test/flac/dir.flac/.empty mp3fs-0.91/src/buffer.cc mp3fs-0.91/src/buffer.h mp3fs-0.91/src/coders.cc mp3fs-0.91/src/coders.h mp3fs-0.91/src/flac_decoder.cc mp3fs-0.91/src/flac_decoder.h mp3fs-0.91/src/fuseops.c mp3fs-0.91/src/Makefile.am mp3fs-0.91/src/Makefile.in mp3fs-0.91/src/mp3_encoder.cc mp3fs-0.91/src/mp3_encoder.h mp3fs-0.91/src/mp3fs.c mp3fs-0.91/src/transcode.cc mp3fs-0.91/src/transcode.h mp3fs-0.91/config/compile mp3fs-0.91/config/depcomp mp3fs-0.91/config/install-sh mp3fs-0.91/config/missing mp3fs-0.91/config/test-driver checking for a BSD-compatible install... /usr/bin/ginstall -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether gcc understands -c and -o together... yes checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking size of int... 4 checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for flac... yes checking for id3tag... yes checking for lame_init in -lmp3lame... yes checking lame/lame.h usability... yes checking lame/lame.h presence... yes checking for lame/lame.h... yes checking for fuse... yes checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... 64 checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating test/Makefile config.status: executing depfiles commands Making all in src make[1]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/src' CC mp3fs.o CC fuseops.o fuseops.c: In function ‘mp3fs_open’: fuseops.c:268:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] 268 | fi->fh = (uint64_t)trans; | ^ fuseops.c: In function ‘mp3fs_read’: fuseops.c:308:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 308 | trans = (struct transcoder*)fi->fh; | ^ fuseops.c: In function ‘mp3fs_release’: fuseops.c:353:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] 353 | trans = (struct transcoder*)fi->fh; | ^ CXX transcode.o transcode.cc: In function ‘ssize_t transcoder_read(transcoder*, char*, off_t, size_t)’: transcode.cc:107:42: warning: conversion from ‘off_t’ {aka ‘long long int’} to ‘size_t’ {aka ‘unsigned int’} may change value [-Wconversion] 107 | len = transcoder_get_size(trans) - offset; | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~ transcode.cc:120:49: warning: conversion from ‘off_t’ {aka ‘long long int’} to ‘size_t’ {aka ‘unsigned int’} may change value [-Wconversion] 120 | trans->buffer.copy_into((uint8_t*)buff, offset, len); | ^~~~~~ transcode.cc:146:40: warning: conversion from ‘off_t’ {aka ‘long long int’} to ‘size_t’ {aka ‘unsigned int’} may change value [-Wconversion] 146 | len = trans->buffer.tell() - offset; | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~ transcode.cc:152:45: warning: conversion from ‘off_t’ {aka ‘long long int’} to ‘size_t’ {aka ‘unsigned int’} may change value [-Wconversion] 152 | trans->buffer.copy_into((uint8_t*)buff, offset, len); | ^~~~~~ CXX buffer.o In file included from buffer.cc:27: buffer.cc: In member function ‘bool Buffer::reallocate(size_t)’: buffer.cc:136:21: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘size_t’ {aka ‘unsigned int’} [-Wformat=] 136 | mp3fs_debug("Buffer reallocate: %p -> %p ; %lu -> %lu", buffer_data, newdata, buffer_size, size); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~ | | | size_t {aka unsigned int} transcode.h:41:47: note: in definition of macro ‘mp3fs_debug’ 41 | #define mp3fs_debug(f, ...) syslog(LOG_DEBUG, f, ## __VA_ARGS__) | ^ buffer.cc:136:54: note: format string is defined here 136 | mp3fs_debug("Buffer reallocate: %p -> %p ; %lu -> %lu", buffer_data, newdata, buffer_size, size); | ~~^ | | | long unsigned int | %u In file included from buffer.cc:27: buffer.cc:136:21: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘size_t’ {aka ‘unsigned int’} [-Wformat=] 136 | mp3fs_debug("Buffer reallocate: %p -> %p ; %lu -> %lu", buffer_data, newdata, buffer_size, size); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~ | | | size_t {aka unsigned int} transcode.h:41:47: note: in definition of macro ‘mp3fs_debug’ 41 | #define mp3fs_debug(f, ...) syslog(LOG_DEBUG, f, ## __VA_ARGS__) | ^ buffer.cc:136:61: note: format string is defined here 136 | mp3fs_debug("Buffer reallocate: %p -> %p ; %lu -> %lu", buffer_data, newdata, buffer_size, size); | ~~^ | | | long unsigned int | %u CXX coders.o CXX flac_decoder.o CXX mp3_encoder.o mp3_encoder.cc: In member function ‘virtual int Mp3Encoder::set_stream_params(uint64_t, int, int)’: mp3_encoder.cc:101:40: warning: conversion from ‘uint64_t’ {aka ‘long long unsigned int’} to ‘long unsigned int’ may change value [-Wconversion] 101 | lame_set_num_samples(lame_encoder, num_samples); | ^~~~~~~~~~~ mp3_encoder.cc: In member function ‘virtual size_t Mp3Encoder::calculate_size() const’: mp3_encoder.cc:267:5: warning: conversion from ‘uint64_t’ {aka ‘long long unsigned int’} to ‘size_t’ {aka ‘unsigned int’} may change value [-Wconversion] 266 | return id3size + 128 | ~~~~~~~~~~~~~ 267 | + (uint64_t)lame_get_totalframes(lame_encoder)*144*params.bitrate*10 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 268 | / (lame_get_out_samplerate(lame_encoder)/100); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CXXLD mp3fs make[1]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/src' Making all in test make[1]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/test' make[1]: Nothing to be done for 'all'. make[1]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/test' make[1]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91' make[1]: Nothing to be done for 'all-am'. make[1]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91' Making install in src make[1]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/src' make[2]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/src' /usr/bin/mkdir -p '/usr/src/slapt-src-i486/multimedia/mp3fs/package-mp3fs/usr/bin' /usr/bin/ginstall -c mp3fs '/usr/src/slapt-src-i486/multimedia/mp3fs/package-mp3fs/usr/bin' make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/src' make[1]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/src' Making install in test make[1]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/test' make[2]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/test' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/test' make[1]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91/test' make[1]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91' make[2]: Entering directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91' make[2]: Nothing to be done for 'install-exec-am'. /usr/bin/mkdir -p '/usr/src/slapt-src-i486/multimedia/mp3fs/package-mp3fs/usr/man/man1' /usr/bin/ginstall -c -m 644 mp3fs.1 '/usr/src/slapt-src-i486/multimedia/mp3fs/package-mp3fs/usr/man/man1' make[2]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91' make[1]: Leaving directory '/usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91' 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-i486/multimedia/mp3fs/mp3fs-0.91-i586-1salix15.0.txz ./ install/ install/slack-desc usr/ usr/bin/ usr/bin/mp3fs usr/doc/ usr/doc/mp3fs-0.91/ usr/doc/mp3fs-0.91/COPYING usr/doc/mp3fs-0.91/COPYING.DOC usr/doc/mp3fs-0.91/ChangeLog usr/doc/mp3fs-0.91/INSTALL.md usr/doc/mp3fs-0.91/NEWS usr/doc/mp3fs-0.91/README usr/doc/mp3fs-0.91/README.md usr/doc/mp3fs-0.91/mp3fs.SlackBuild usr/man/ usr/man/man1/ usr/man/man1/mp3fs.1.gz Slackware package /usr/src/slapt-src-i486/multimedia/mp3fs/mp3fs-0.91-i586-1salix15.0.txz created. Installing package mp3fs-0.91-i586-1salix15.0... | mp3fs (mount dir with flac as mountpoint, presented as mp3) | | mp3fs is a read-only FUSE filesystem which transcodes | between audio formats (currently FLAC to MP3) on the fly | when files are opened and read. | | It can let you use a FLAC collection with software and/or | hardware which only understands the MP3 format, or | transcode files through simple drag-and-drop in a | file browser. | | |