Jak skompilowa

Tematy związane z oprogramowaniem, instalacją, konfiguracją
MrBAD
Posty: 21
Rejestracja: 28 grudnia 2008, 20:31

Jak skompilować program posiadając źródla - makefile.am

Post autor: MrBAD »

Witam.

Mam pytanie: Jak skompilować źródła programu? ¦ciągnąłem nową wersje źródeł programu, w starych był plik makefile i wystarczyło użyć polecenia make, jednak w najnowszej wersji pojawiło się tajemnicze makefile.am i zupełnie nie wiem jak się za to zabrać.

Próbowałem poleceniem automake ale:
tibia:/home/OT/0.3b3# automake
automake: no `Makefile.am' found for any configure output
Z góry dziękuję za pomoc i pozdrawiam.
LiTE
Beginner
Posty: 208
Rejestracja: 25 marca 2008, 13:22
Lokalizacja: Nowa Ruda

Post autor: LiTE »

Może uruchom configure?

Kod: Zaznacz cały

./configure
Później make ;)
Awatar użytkownika
ilin
Senior Member
Posty: 2292
Rejestracja: 26 sierpnia 2007, 11:54
Lokalizacja: PRLu

Post autor: ilin »

Pewnie jest tam jakaś dokumentacja.

Należy zacząć od jej poczytania.
MrBAD
Posty: 21
Rejestracja: 28 grudnia 2008, 20:31

Post autor: MrBAD »

ilin pisze:Pewnie jest tam jakaś dokumentacja.

Należy zacząć od jej poczytania.

Kod: Zaznacz cały

		Compiling
			Launch a terminal, and type this:
				cd 0.3a4 && ./autogen.sh && ./configure --enable-mysql --enable-server-diag && make

oto cała dokumentacja.

Kod: Zaznacz cały

tibia:/home/OT/0.3b3# ./autogen.sh && ./configure --enable-mysql --enable-server-diag && make
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
automake: no `Makefile.am' found for any configure output
autoreconf: automake failed with exit status: 1

Kod: Zaznacz cały

tibia:/home/OT/0.3b3# ./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... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for g++... g++
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 g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... none
#: command not found11:
checking how to run the C++ preprocessor... g++ -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 arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... 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 sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/timeb.h usability... yes
checking sys/timeb.h presence... yes
checking for sys/timeb.h... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... no
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for uint8_t... yes
checking for ptrdiff_t... yes
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 for floor... yes
checking for ftime... yes
checking for gethostbyname... yes
checking for gethostname... yes
checking for memset... yes
checking for pow... yes
checking for sqrt... yes
checking for strcasecmp... yes
checking for strncasecmp... yes
checking for strstr... yes
checking for strtol... yes
checking for xml2-config... /usr/bin/xml2-config
checking for libxml - version >= 2.6.5... yes (version 2.6.27)
checking gmp.h usability... yes
checking gmp.h presence... yes
checking for gmp.h... yes
checking for __gmpz_init2 in -lgmp... yes
checking for main in -lboost_regex-gcc-mt... no
checking for main in -lboost_regex-mt... no
checking for main in -lboost_regex... yes
checking for main in -lboost_system-gcc-mt... no
checking for main in -lboost_system-mt... no
checking for main in -lboost_system... yes
checking for main in -lboost_date_time-gcc-mt... no
checking for main in -lboost_date_time-mt... no
checking for main in -lboost_date_time... yes
checking boost/asio.hpp usability... yes
checking boost/asio.hpp presence... yes
checking for boost/asio.hpp... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for LUA... yes
configure: creating ./config.status
config.status: error: cannot find input file: Makefile.in
Awatar użytkownika
ilin
Senior Member
Posty: 2292
Rejestracja: 26 sierpnia 2007, 11:54
Lokalizacja: PRLu

Post autor: ilin »

Nie można wykluczyć błedu w kodzie.

Albo brakuje Ci jakiejś biblioteki której skrypt configure nie sprawdza.
MrBAD
Posty: 21
Rejestracja: 28 grudnia 2008, 20:31

Post autor: MrBAD »

ilin pisze:Nie można wykluczyć błedu w kodzie.

Albo brakuje Ci jakiejś biblioteki której skrypt configure nie sprawdza.
W takim razie mogę coś zrobić by program się skompilował czy mogę sobie odpuścić?
Awatar użytkownika
lis6502
Member
Posty: 1798
Rejestracja: 05 listopada 2008, 20:14
Lokalizacja: Miasto Szybowców

Post autor: lis6502 »

Zainteresuj się może wersją z svn, tam najczęściej znajdziesz kompletne źródła.
ODPOWIEDZ