I was installing fuse-exfat and got the below error while installing, I did the following things to install,
git clone https://github.com/relan/exfat.git
cd exfat
autoreconf --install
./configure --prefix=/usr
[root#angus exfat]# ./configure --prefix=/usr
checking for a BSD-compatible install... /usr/bin/install -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 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 for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... -std=gnu99
checking for ranlib... ranlib
checking for ar... ar
checking the archiver (ar) interface... ar
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for FUSE... no
configure: error: Package requirements (fuse) were not met:
No package 'fuse' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables FUSE_CFLAGS
and FUSE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
Please help to resolve the error.
I have found a possible solution to the existing problem of compiling exFAT from GitHub source code.
download:
https://github.com/libfuse/libfuse/releases/download/fuse-3.10.4/fuse-3.10.4.tar.xz
or:
sudo apt-get install fuse-exfat exfat-utils`
then:
git clone https://github.com/relan/exfat.git cd exfat
You must export these flages:
export FUSE_CFLAGS=-lfuse3
export FUSE_LIBS=/usr/lib/libfuse3.so
autoreconf --install
Add links to '/usr/include/fuse3/' files pointing to '/usr/include/' file name:
ln -s /usr/include/fuse3/fuse.h /usr/include/fuse.h
ln -s /usr/include/fuse3/fuse_common.h /usr/include/fuse_common.h
ln -s /usr/include/fuse3/fuse_opt.h /usr/include/fuse_opt.h
ln -s /usr/include/fuse3/fuse_log.h /usr/include/fuse_log.h
use an editor (e.g nano) and edit exfat/fuse/main.c file
nano /sources/exfat/fuse/main.c
some one could make a patch for this.
old lines:
filler(buffer, ".", NULL, 0);
filler(buffer, "..", NULL, 0);
filler(buffer, name, &stbuf, 0);
new lines:
filler(buffer, ".", NULL,0, 0);
filler(buffer, "..", NULL,0, 0);
filler(buffer, name, &stbuf,0, 0);
now compile the program:
./configure --prefix=/usr
make
make install
this was successfully compiled and installed on Linux , I am currently working my way though the Beyond Linux from Scratch book, the goal is to have a custom OS.
checking for FUSE... no
So I think you need to try install fuse because it's required listed in README.md.
To install fuse-exfat and exfat-utils packages:
sudo apt-get install fuse-exfat exfat-utils
Related
Im trying to build pulseaudio-11.1 because firefox asks for it to play audio on video.
Im using knoppix 8.1, 64 bit installation, but it runs in 32bits.
When I configure the pulseaudio source, I get a message stating that intltool is too old. Despite having met their version requirement at 0.35.0. I installed from source version 0.51.0 and 0.50.2 but neither installation satisfied the demand. I get the same message at the end when I run bootstrap.sh
root#kami:/Downloads/pulseaudio-11.1# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... //bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '0' is supported by ustar format... yes
checking whether GID '0' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for stow... no
checking whether make supports nested variables... (cached) yes
checking whether ln -s works... 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 whether g++ supports C++11 features by default... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... //bin/grep
checking for egrep... //bin/grep -E
checking whether gcc needs -traditional... no
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 minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for gm4... no
checking for m4... m4
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether NLS is requested... yes
Unescaped left brace in regex is illegal here in regex; marked by <-- HERE in m/^(.*)\${ <-- HERE ?([A-Z_]+)}?(.*)$/ at /usr/local/bin/intltool-update line 1064.
checking for intltool >= 0.35.0... found
configure: error: Your intltool is too old. You need intltool 0.35.0 or later.
This was before and after I removed version 0.35.0 of intltool that was pre-installed and then installed the newer versions, 0.51.0, then 0.50.2 to try a slightly older version if there was something wrong with the newest release, which is ironically quite old dating back to 2015.
Also bizarrly to top it off as you can see in the output before stating that the version is too old that it had found exactly what it is saying it does not have.
So in conclusion pulseaudio asks for intltool >= 0.35.0 which it finds and says right afterwards that it has not, which remained true across 3 seperate instances that satisfied their request on version 0.35.0, 0.51.0 and 0.50.2
Any help is appreciated.
At installation 'NetworkManager-l2tp-master' i stumbled upon an error:
configure: error: Your intltool is too old. You need intltool 0.35 or later.
I used intermediate commands:
./configure
sudo apt update
sudo apt install intltool imagemagick libmagickcore-dev pstoedit libpstoedit-dev
git clone https://github.com/autotrace/autotrace.git
cd autotrace
#unnecessary command for clarification should bugs be introduced later
git rev-parse HEAD
#t86c9c80c4h669302cb2571c0cab0rer7a102731
./autogen.sh
cd .. # necessarily exit from 'autotrace' directory
autoreconf -i
./configure # again
after that, the error is resolved and indicates to:
configure: error: Package requirements (gtk+-3.0 >= 3.4) were not met:
No package 'gtk+-3.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables GTK_CFLAGS
and GTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
This alert indicates that possible it is not installed pkg-config (corresponding version of Linux).
I am trying to build GCC on Alpine Linux. I do not have root access or sudo enabled user. I am following GCC Wiki. I got this output.
~/objdir $ $PWD/../gcc-5.2.0/configure --prefix=$HOME/gcc-5.2.0 --enable-languages=c,c++,fortran,go
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking for libatomic support... yes
checking for libcilkrts support... yes
checking for libitm support... yes
checking for libsanitizer support... yes
checking for libvtv support... yes
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/asgeek/objdir':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
I have searched through the internet for couple of days but couldn't find proper solution. Please help me to solve this.
Thanks in advance!
I had the same error while installing python in alpine, I fixed it with this:
apk --update add gcc make g++ zlib-dev
But what I want is to create a script to build GCC for non-root
environment
Well, then create a user (May be you already did), and install {gcc, g++, etc. build requirements} with apk , and do the build in /home/[name]/gcc-build/ with
1) ../gcc-5.4.0/configure --prefix=/home/[name]/gcc54 --program-suffix=54 --enable-languages=c,c++ --disable-multilib
2) make
GCC version 5 or lower is suggested. Note : If e.g. gcc-4.9.x, the configuring command, etc. is different.
I'm trying to install MIT-Scheme in Ubuntu on Windows 10.
I downloaded the tar-file from the Mit-Scheme website.
I run the command tar -xzf mit-scheme-9.2.tar.gz. Then cd mit-scheme-9.2/. Then cd src. Then ./configure.
However, I get the error logs below. Appreciate some advise. Thanks.
mingerz#DESKTOP-BMERQIM:~/mit-scheme-9.2/src$ ./configure
checking whether make sets $(MAKE)... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
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 how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /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 for native-code support... yes, for x86-64
checking for an existing MIT/GNU Scheme installation... configure: error:
This script needs an existing MIT/GNU Scheme installation to function,
but the following programs do not run it:
mit-scheme-x86-64
mit-scheme
If you have installed MIT/GNU Scheme in an unusual location, set the
environment variable MIT_SCHEME_EXE to the name or pathname of the
MIT/GNU Scheme executable, which is usually `mit-scheme' or
`/usr/local/bin/mit-scheme', and set the environment variable
MITSCHEME_LIBRARY_PATH to the pathname of the MIT/GNU Scheme library
directory, which is usually `/usr/local/lib/mit-scheme-x86-64'.
I dont understand how to implement the suggestion it is asking me to in regards to the environment variable.
This script needs an existing MIT/GNU Scheme installation to function
$ sudo apt-get install mit-scheme : http://packages.ubuntu.com/search?keywords=mit-scheme&searchon=names
Facing same issue on mac.
Instead of building from source, installing package helped in my case.
A. Installing Binary :
Get MIT-scheme (package) for Ubunto from MIT site http://www.gnu.org/software/mit-scheme/
Install it
Alias mit_scheme in ~/.bash_profile -->
alias mit-scheme=" path to MIT_scheme on your machine"
eg. alias mit-scheme="/Applications/MIT-Scheme.app/Contents/Resources/mit-scheme"
So that you can access it from bash.
B. If building from source, this link might be helpful.
https://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/
And they say --> Don't Panic
I downloaded pam_sasl source code from
http://sourceforge.net/projects/pam-sasl/?source=typ_redirect
After issue ./configure command, it returns configure: error: sasl2 not found
linux-xbx0:~/pam_sasl-0.1.2 # ./configure
checking for a BSD-compatible install... /usr/bin/install -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 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 for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for xsltproc... /usr/bin/xsltproc
checking for sasl_checkpass in -lsasl2... no
configure: error: sasl2 not found
linux-xbx0:~/pam_sasl-0.1.2 # rpm -ql libsasl2-3-2.1.26-7.1.x86_64
/usr/lib64/libsasl2.so.3
/usr/lib64/libsasl2.so.3.0.0
linux-xbx0:~/pam_sasl-0.1.2 # echo $LD_LIBRARY_PATH
:/usr/lib:/usr/lib64:/usr/lib:/usr/lib64:/usr/lib/sasl2/:/usr/lib64/sasl2
linux-xbx0:~/pam_sasl-0.1.2 # rpm -qa | grep sasl
cyrus-sasl-sqlauxprop-32bit-2.1.26-7.1.x86_64
cyrus-sasl-gssapi-2.1.26-7.1.x86_64
libsasl2-3-2.1.26-7.1.x86_64
libsasl2-3-32bit-2.1.26-7.1.x86_64
cyrus-sasl-saslauthd-2.1.26-7.1.x86_64
cyrus-sasl-crammd5-2.1.26-7.1.x86_64
cyrus-sasl-otp-2.1.26-7.1.x86_64
cyrus-sasl-32bit-2.1.26-7.1.x86_64
cyrus-sasl-digestmd5-2.1.26-7.1.x86_64
cyrus-sasl-gssapi-32bit-2.1.26-7.1.x86_64
cyrus-sasl-plain-32bit-2.1.26-7.1.x86_64
cyrus-sasl-sqlauxprop-2.1.26-7.1.x86_64
cyrus-sasl-plain-2.1.26-7.1.x86_64
cyrus-sasl-otp-32bit-2.1.26-7.1.x86_64
cyrus-sasl-2.1.26-7.1.x86_64
cyrus-sasl-crammd5-32bit-2.1.26-7.1.x86_64
linux-xbx0:~/pam_sasl-0.1.2 # cat /etc/*release
SUSE Linux Enterprise Server 12 (x86_64) VERSION = 12 PATCHLEVEL = 1
Development packages corresponding to the "normal" packages usually have a -devel appended to their name. Since the SASL2 library is provided by the package cyrus-sasl you are now looking for the package cyrus-sasl-devel.
Since you are using an openSUSE distribution derivate, here SLES, you can use either the provided software management utility, YaST to install that package, or the command line tool zypper if installed, which is much faster in use. So you have these two alternatives:
launch the YaST control center, chose the "Software Management" module, wait until it is loaded. Then search for the string "sasl" and pick the package from the list of hits.
zypper install cyrus-sasl-devel
I was following "rTorrent on Windows" tutorial, and i think i installed all requested packages for rTorrent, though i am not 100% sure.
Problem starts with installing and configuring libsigc++
./configure
user#computer ~
$ cd /usr/local/src/libsigc++-2.2.10
user#computer /usr/local/src/libsigc++-2.2.10
$ ./configure
checking for a BSD-compatible install... /usr/bin/install -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 how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether make supports GNU make features... yes
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether the C++ compiler works... no
configure: error: in `/usr/local/src/libsigc++-2.2.10':
configure: error: C++ compiler cannot create executables
See `config.log' for more details
config.log: http://pastebin.com/G1Xn30iL
Did i miss any package or something else?
I am hoping for help. This is my first time with cygwin and rtorrent... obviously i need to figure things out before going further :O
You're missing a C compiler in your cygwin environment. Run the cygwin setup again and choose to install g++, and you should see progress.