LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General > LinuxAnswers Discussion
User Name
Password
LinuxAnswers Discussion This forum is to discuss articles posted to LinuxAnswers.

Notices


Reply
  Search this Thread
Old 08-29-2005, 03:48 AM   #46
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Rep: Reputation: Disabled

First, I'd suggest you create your own thread, here nobody will realize that this particular new question was asked.

As to your question, you either need some lib or other or your path(s) is (are) incomplete. Suggestion: Search for 'FT_GlyphSlot_Embolden' on your machine or google for it...

Last edited by JZL240I-U; 08-29-2005 at 03:50 AM.
 
Old 10-14-2005, 12:41 PM   #47
fakie_flip
Senior Member
 
Registered: Feb 2005
Location: San Antonio, Texas
Distribution: Gentoo Hardened using OpenRC not Systemd
Posts: 1,495

Rep: Reputation: 85
I have am having problems compiling programs from source in Ubuntu Linux 5.04 Hoary. Has anyone else had this problem? I installed g++ and it's dependencies from Synaptic. I use the commands ./configure make and make install, but I get errors, and it does not work. I have reinstalled Ubuntu on my computer and still have the same thing, so I am sure other people have the same problem too.
 
Old 10-14-2005, 04:45 PM   #48
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,129

Rep: Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121Reputation: 4121
fakie_flip look at your message from our perspective - it tells us almost nothing.

If it's the "make install" that's failing, it (generally) needs root - try "sudo make install" instead.
Otherwise we are going to need some indication of messages.
 
Old 10-15-2005, 03:26 AM   #49
fakie_flip
Senior Member
 
Registered: Feb 2005
Location: San Antonio, Texas
Distribution: Gentoo Hardened using OpenRC not Systemd
Posts: 1,495

Rep: Reputation: 85
I installed build-essential and got the same error as before. This time I noticed a message "configure: error: You need to install SDL (http://www.libsdl.org/)." I went to that website for SDL. I clicked on downloadable, and it took me to documentation. I am not sure where to download it at. I already looked in Synaptic, and it is not there. What should I do? I found several files that had libsdl in their names, but I did not know which one to get.

Code:
chris@ubuntu:~$ sudo apt-get install build-essential
Reading package lists... Done
Building dependency tree... Done
build-essential is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 12 not upgraded.
chris@ubuntu:~$ cd install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/
chris@ubuntu:~/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2$ ls
AUTHORS config.h.in configure depcomp Makefile missing
CHANGELOG config.log COPYING install-sh Makefile.in README
config.guess config.sub data lib makerules src
chris@ubuntu:~/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2$ sudo ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... gcc
checking for C compiler default output file name... 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... GNU
checking dependency style of gcc... gcc3
checking for ranlib... ranlib
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking how to run the C preprocessor... gcc -E
checking for egrep... 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 limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for memory.h... (cached) yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking whether closedir returns void... no
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for working memcmp... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking whether lstat dereferences a symlink specified with a trailing slash... yes
checking whether stat accepts an empty string... no
checking for vprintf... yes
checking for _doprnt... no
checking for gethostname... yes
checking for memmove... yes
checking for memset... yes
checking for sqrt... no
checking for strchr... yes
checking for strdup... yes
checking for strncasecmp... yes
checking for strrchr... yes
checking for strstr... yes
checking for stdbool.h that conforms to C99... (cached) yes
checking for _Bool... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
checking for sdl-config... no
checking for SDL - version >= 1.1.4... no
*** The sdl-config script installed by SDL could not be found
*** If SDL was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the SDL_CONFIG environment variable to the
*** full path to sdl-config.
configure: error: You need to install SDL (http://www.libsdl.org/).
chris@ubuntu:~/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2$ make
make[1]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/framework'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../../src -c -o block.o block.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [block.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/framework'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/gamelib'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../framework -I ../sound -I ../ivis_opengl -I ../../src -c -o anim.o anim.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [anim.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/gamelib'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/netplay'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../framework -I ../../src -c -o netaudio_stub.o netaudio_stub.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [netaudio_stub.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/netplay'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/script'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../framework -I ../../src -c -o codeprint.o codeprint.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [codeprint.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/script'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/sequence'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../framework -I ../../src -c -o adpcm.o adpcm.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [adpcm.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/sequence'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/sound'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../framework -I ../gamelib -I ../ivis_opengl -I ../../src -c -o audio.o audio.c/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [audio.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/sound'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/widget'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../framework -I ../ivis_opengl -I ../../src -c -o bar.o bar.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [bar.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/widget'
make[2]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/ivis_opengl'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g `sdl-config --cflags` -I . -I ../framework -I ../gamelib -I ../../src -c -o bitimage.o bitimage.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[2]: *** [bitimage.o] Error 1
make[2]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib/ivis_opengl'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/lib'
make[1]: svnversion: Command not found
make[1]: Entering directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/src'
gcc -gstabs -DYY_STATIC -Wall -Wno-pointer-sign -g -I . `sdl-config --cflags` -I ../lib/framework -I ../lib/gamelib -I ../lib/netplay -I ../lib/script -I ../lib/sequence -I ../lib/sound -I ../lib/widget -I ../lib/ivis_opengl -DSVN_REVISION=\"\" -c -o ai.o ai.c
/bin/sh: sdl-config: command not found
cc1: error: unrecognized option `-Wno-pointer-sign'
make[1]: *** [ai.o] Error 1
make[1]: Leaving directory `/home/chris/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2/src'
make: *** [all] Error 2
chris@ubuntu:~/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2$
 
Old 10-15-2005, 12:19 PM   #50
fakie_flip
Senior Member
 
Registered: Feb 2005
Location: San Antonio, Texas
Distribution: Gentoo Hardened using OpenRC not Systemd
Posts: 1,495

Rep: Reputation: 85
I installed libsdl-dev and libsdl-net. That seemed to fix some of the problems. Now I have a new one when I try to run configure. Look down towards the bottom. I get several errors about OpenAL.
Code:
chris@ubuntu:~/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2$ sudo ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... gcc
checking for C compiler default output file name... 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... GNU
checking dependency style of gcc... gcc3
checking for ranlib... ranlib
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking how to run the C preprocessor... gcc -E
checking for egrep... 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 limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for memory.h... (cached) yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking whether closedir returns void... no
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for working memcmp... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking whether lstat dereferences a symlink specified with a trailing slash... yes
checking whether stat accepts an empty string... no
checking for vprintf... yes
checking for _doprnt... no
checking for gethostname... yes
checking for memmove... yes
checking for memset... yes
checking for sqrt... no
checking for strchr... yes
checking for strdup... yes
checking for strncasecmp... yes
checking for strrchr... yes
checking for strstr... yes
checking for stdbool.h that conforms to C99... (cached) yes
checking for _Bool... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
checking for sdl-config... /usr/bin/sdl-config
checking for SDL - version >= 1.1.4... yes
checking for presence of SDL_net... Found SDL_net in path
checking GL/gl.h usability... yes
checking GL/gl.h presence... yes
checking for GL/gl.h... yes
checking for main in -lGL... yes
checking OpenGL... yes
checking AL/al.h usability... no
checking AL/al.h presence... no
checking for AL/al.h... no
checking for main in -lopenal... no
checking for main in -lopenal32... no
checking for main in -lalut... no
checking OpenAL... no
configure: error: OpenAL is currently mandatory
chris@ubuntu:~/install/warzone2100-0.2.2.tar.bz2_FILES/warzone2100-0.2.2$
 
Old 10-27-2005, 08:45 AM   #51
svar
Member
 
Registered: Jul 2003
Posts: 362

Rep: Reputation: 30
Nice, but how about a more complex installation?
Like OpenMotif, for example. If this article is addressed to newbies, there is a lot
of stuff to explain when installing Open Motif or similar stuff involving choices and installation
specific parameters. maybe a walkthrough for such a case would be helpful
 
Old 11-21-2005, 04:35 AM   #52
KohlInGA
LQ Newbie
 
Registered: Nov 2005
Location: Stone Mountain, GA
Distribution: SuSE
Posts: 28

Rep: Reputation: 15
Quote:
Originally posted by MasterC
Use the [ code ] brackets without the space
Exactly where would the [code] brackets go?
Would it look something like this?
tar xvf [linuxquestions]
thanks!

Last edited by KohlInGA; 11-21-2005 at 04:38 AM.
 
Old 03-02-2024, 12:26 PM   #53
0Era0
LQ Newbie
 
Registered: Feb 2024
Location: Ecuador
Distribution: Basaded on Debian
Posts: 13

Rep: Reputation: 0
Lightbulb Tip in compilation from source

I'm just learning how to compile programs, in fact I'm already finding the fun in that, now in compilation, most developers say not to delete the folder where you compiled the program until you feel sure of what you installed, if not It's easy for you, the sudo make uninstall command uninstalls the program, and in addition to that you also have to install the subversion package since this will provide us with information and downloads about the program, such as a new version, and when you are sure of the compiled program, there If you delete it and that's it, I suggest before deleting and installing for Debian and derivative users, create a .deb package with checkinstall and finally, something that I also recommend and so that there is no shampoo when installing the program, install it and configure it in the opt folder, it will be easier for them to identify and delete the program, if they no longer want to, delete the name of the program that was installed in opt + the shortcuts that if they are installed on the system and that they identify it with fsearch or catfish, and even with mate-tools search, what results from your program is deleted until nothing appears, that is the manual way to uninstall a compiled program
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
compiling programs from source Frank Leone Linux - Newbie 3 10-30-2005 01:47 AM
why is compiling source programs under linux such a headache? guy24x Linux - Software 21 07-28-2005 06:04 AM
Compiling Programs from Source-help orisma Linux - Newbie 6 03-03-2005 07:57 AM
Compiling programs from source rpms coolfrog Linux - General 1 09-10-2004 03:17 PM
Compiling programs from source in Mandrake 10 AMD64 RC1 hydroxy Linux - Software 7 05-12-2004 03:55 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General > LinuxAnswers Discussion

All times are GMT -5. The time now is 06:59 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration