LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Fluxbox compiling problem (https://www.linuxquestions.org/questions/linux-software-2/fluxbox-compiling-problem-94591/)

Duukkis 09-19-2003 02:15 PM

Fluxbox compiling problem
 
When I try to compile fluxbox version 0.1.14 it says:

Tuukka:/home/duukkis/paketit/fluxbox-0.1.14# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
/home/duukkis/paketit/fluxbox-0.1.14/missing: Unknown `--run' option
Try `/home/duukkis/paketit/fluxbox-0.1.14/missing --help' for more information
configure: WARNING: `missing' script is too old or missing
checking for gawk... no
checking for mawk... mawk
checking whether make sets ${MAKE}... no
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
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 ANSI C... none needed
checking for style of include used by make... none
checking dependency style of gcc... none
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++... none
checking for a BSD-compatible install... /usr/bin/install -c
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependant libraries... pass_all
checking command to parse /usr/bin/nm -B output... ok
checking how to run the C++ preprocessor... g++ -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 dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for ranlib... ranlib
checking for strip... strip
checking for objdir... .libs
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... no
checking if we can lock with hard links... yes
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether -lc should be explicitly linked in... no
creating libtool
checking for sed... sed
checking for ANSI C header files... (cached) yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking dirent.h usability... yes
checking dirent.h presence... yes
checking for dirent.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking libgen.h usability... yes
checking libgen.h presence... yes
checking for libgen.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking nl_types.h usability... yes
checking nl_types.h presence... yes
checking for nl_types.h... yes
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/signal.h usability... yes
checking sys/signal.h presence... yes
checking for sys/signal.h... yes
checking for sys/stat.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/types.h... (cached) yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking for basename... yes
checking for getpid... yes
checking for setlocale... yes
checking for sigaction... yes
checking for strftime... yes
checking for strcasestr... yes
checking for snprintf... yes
checking for vsnprintf... yes
checking for catopen... yes
checking for catgets... yes
checking for catclose... yes
checking for t_open in -lnsl... no
checking for socket in -lsocket... no
checking for X... no
configure: error: Fluxbox requires the X Window System libraries and headers.
Tuukka:/home/duukkis/paketit/fluxbox-0.1.14#

I have xlibs= X Window System libraries installed but I don't know the name of that header package. What's the name of it?

DrOzz 09-19-2003 02:29 PM

well when it doesn't find the includes and libraries you can specify it with the configure script with the following syntax::
./configure --x-includes=DIR --x-libraries=DIR
where you will replace DIR with the appropriate path.

footfrisbee 09-19-2003 03:13 PM

You will need to install the "xlibs-dev" package.

# apt-get install xlibs-dev

Duukkis 09-20-2003 03:23 AM

I installed that xlibs-dev package successfully and now I have done the ./configure but when I try to execute Makefile (./make) in root it says:

bash: ./make: No such file or directory

There are INSTALL help file in that fluxbox dir and they tell that I should make commands:

./configure
./make
./make install (Don't need in Debian I think)

So what's wrong?

kev82 09-20-2003 05:52 AM

./configure
make
make install

Duukkis 09-20-2003 07:37 AM

duukkis@Tuukka:~/paketit/fluxbox-0.1.14$ make
bash: make: command not found
duukkis@Tuukka:~/paketit/fluxbox-0.1.14$ make install
bash: make: command not found
duukkis@Tuukka:~/paketit/fluxbox-0.1.14$

???

kev82 09-20-2003 09:29 AM

umm looks like you havnt got make installed, although i find that very suprising, whats the output of 'which make' if its not there then you'll need to install it i think the debian package manager is apt-get but a debian person can tell you more

footfrisbee 09-20-2003 11:48 AM

Like kev82 says, look at the output of `which make', and if you don't have make then run `apt-get install make'.

In fact you don't need to do any of this. Just run `apt-get install fluxbox'. That will install version 0.1.14. That's really the easiest way to do it.


All times are GMT -5. The time now is 03:24 PM.