errore durante la compilazione di checkinstall

Se avete problemi con l'installazione e la configurazione di Slackware64 postate qui. Non usate questo forum per argomenti che trattano la Slackware32 o generali... per quelli usate rispettivamente il forum Slackware e Gnu/Linux in genere.

Moderatore: Staff

Regole del forum
1) Citare sempre la versione di Slackware64 usata, la versione del Kernel e magari anche la versione della libreria coinvolta. Questi dati aiutano le persone che possono rispondere.
2) Per evitare confusione prego inserire in questo forum solo topic che riguardano appunto Slackware64, se l'argomento è Slackware32 o generale usate rispettivamente il forum Slackware o Gnu/Linux in genere.
3) Leggere attentamente le risposte ricevute
4) Scrivere i messaggi con il colore di default, evitare altri colori.
5) Scrivere in Italiano o in Inglese, se possibile grammaticalmente corretto, evitate stili di scrittura poco chiari, quindi nessuna abbreviazione tipo telegramma o scrittura stile SMS o CHAT.
6) Appena registrati è consigliato presentarsi nel forum dedicato.

La non osservanza delle regole porta a provvedimenti di vari tipo da parte dello staff, in particolare la non osservanza della regola 5 porta alla cancellazione del post e alla segnalazione dell'utente. In caso di recidività l'utente rischia il ban temporaneo.
Rispondi
Zagorax
Linux 0.x
Linux 0.x
Messaggi: 64
Iscritto il: dom 18 apr 2010, 23:00
Contatta:

errore durante la compilazione di checkinstall

Messaggio da Zagorax »

Ciao a tutti,

prima di compilare qualsiasi altro pacchetto, volevo avere checkinstall. Tuttavia mi da dei problemi di compilazione:

Codice: Seleziona tutto

bash-3.1# make
for file in locale/checkinstall-*.po ; do \
		case ${file} in \
			locale/checkinstall-template.po)  ;; \
			*) \
				out=`echo $file | sed -s 's/po/mo/'` ; \
				msgfmt -o ${out} ${file} ; \
				if [ $? != 0 ] ; then \
					exit 1 ; \
				fi ; \
			;; \
		esac ; \
	done	
make -C installwatch
make[1]: Entering directory `/root/checkinstall-1.6.2/installwatch'
gcc -Wall -c -D_GNU_SOURCE -DPIC -fPIC -D_REENTRANT -DVERSION=\"0.7.0beta7\" installwatch.c
installwatch.c:2942: error: conflicting types for 'readlink'
/usr/include/unistd.h:787: error: previous declaration of 'readlink' was here
make[1]: *** [installwatch.o] Error 1
make[1]: Leaving directory `/root/checkinstall-1.6.2/installwatch'
make: *** [all] Error 2
Ho trovato questo link, in cui dovrebbe esserci la soluzione, ma purtroppo non ho idea di come utilizzare la soluzione proposta.
http://checkinstall.izto.org/cklist/msg00256.html

Grazie
Ciao

Avatar utente
slux
Linux 3.x
Linux 3.x
Messaggi: 789
Iscritto il: dom 20 mar 2005, 0:00
Nome Cognome: Andrea Amerini
Slackware: 14.1 x86
Kernel: 3.12.0-smp
Desktop: xfce 4.10
Località: Prato
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da slux »

Lo stai usando sulla 13?
Checkinstall è stato abbandonato da Pat perchè in passato ha dato seri problemi di affidabilità e anch'io lo posso confermare.
IMHO è meglio imparare ad usare gli slackbuild,dai retta.

Avatar utente
Blallo
Packager
Packager
Messaggi: 3302
Iscritto il: ven 12 ott 2007, 11:37
Nome Cognome: Savino Liguori
Slackware: 14.2 / 12.2
Kernel: 4.4.14-smp
Desktop: DWM
Località: Torino / Torremaggiore (FG)
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da Blallo »

oppure, in modo ancora più semplice,
/home/utente/cartellatemporanea
make install DESTDIR=cartellatemporanea
cd cartellatemporanea
makepkg -l y -c n /home/utente/nomepacchetto-versione-1_tag.txz

Zagorax
Linux 0.x
Linux 0.x
Messaggi: 64
Iscritto il: dom 18 apr 2010, 23:00
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da Zagorax »

Sì, lo volevo installare sulla 13.
Da una serie di ricerche su google avevo dedotto fosse il metodo migliore, evidentemente devo aver trovato delle guide obsolete.

Allora meglio che mi ha dato questo problema, altrimenti non vi chiedevo nulla. :D

Il meccanismo suggerito da jimmy_page_89 è facile da capire. Mi documenterò sugli slackbuild e vedrò quale dei due metodi utilizzare.

Grazie
Ciao

Avatar utente
slux
Linux 3.x
Linux 3.x
Messaggi: 789
Iscritto il: dom 20 mar 2005, 0:00
Nome Cognome: Andrea Amerini
Slackware: 14.1 x86
Kernel: 3.12.0-smp
Desktop: xfce 4.10
Località: Prato
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da slux »

jimmy_page_89 ha scritto:oppure, in modo ancora più semplice,
/home/utente/cartellatemporanea
make install DESTDIR=cartellatemporanea
cd cartellatemporanea
makepkg -l y -c n /home/utente/nomepacchetto-versione-1_tag.txz

Se non hai interesse a ricompilare spesso un pacchetto è il metodo più rapido,lo uso molto anch'io.

Avatar utente
Blallo
Packager
Packager
Messaggi: 3302
Iscritto il: ven 12 ott 2007, 11:37
Nome Cognome: Savino Liguori
Slackware: 14.2 / 12.2
Kernel: 4.4.14-smp
Desktop: DWM
Località: Torino / Torremaggiore (FG)
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da Blallo »

slux ha scritto:Se non hai interesse a ricompilare spesso un pacchetto è il metodo più rapido,lo uso molto anch'io.
io lo uso più che altro per testare prima di creare lo SlackBuild, così posso farlo direttamente da user normale, e limito al massimo l'utilizzo di root :D

Meskalamdug
Iper Master
Iper Master
Messaggi: 3965
Iscritto il: ven 14 mag 2004, 0:00

Re: errore durante la compilazione di checkinstall

Messaggio da Meskalamdug »

Lasciate perdere Checkinstall,da più rogne che altro..
se cercate in rete trovate gli slackbuild di molti pacchetti
e se mancano potete cercare i pkgbuild(sono simili) o gli
spec(che sarebbero gli slackbuild degli rpm).

Avatar utente
Savius
Linux 3.x
Linux 3.x
Messaggi: 553
Iscritto il: gio 14 ago 2008, 13:45
Slackware: Slackware64 14.0
Kernel: 3.2.29-smp
Desktop: KDE 4.8.5
Località: Napoli

Re: errore durante la compilazione di checkinstall

Messaggio da Savius »

Scusate la domanda da niubbo ma una volta creato il pacchetto con tale comando:
makepkg -l y -c n /home/utente/nomepacchetto-versione-1_tag.txz
Quando lo installeremo col comando installpkg nomepacchetto-versione-1_tag.tgz esso dove andrà a piazzarsi? ^^''

Avatar utente
Blallo
Packager
Packager
Messaggi: 3302
Iscritto il: ven 12 ott 2007, 11:37
Nome Cognome: Savino Liguori
Slackware: 14.2 / 12.2
Kernel: 4.4.14-smp
Desktop: DWM
Località: Torino / Torremaggiore (FG)
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da Blallo »

è identico ad un pacchetto da slackbuilds

Avatar utente
joe
Iper Master
Iper Master
Messaggi: 3986
Iscritto il: ven 27 apr 2007, 11:21
Slackware: 15.0
Kernel: 5.15.38
Desktop: dwm

Re: errore durante la compilazione di checkinstall

Messaggio da joe »

Dove andrà a piazzarsi lo vedi facendo un list della dir "$DESTDIR".
Dovresti ottenere qualcosa come per esempio:

Codice: Seleziona tutto

/usr
  /usr/bin
  ...
  /usr/doc
  ...
  /usr/lib
  ...
/etc
  ...
Il problema potrebbe stare a monte del "make install".
Ovvero in fase di configurazione/conpilazione uno slackbuild ben fatto dovrebbe tenere in conto le convenzioni slackware, tipo gli eseguibili in /usr/bin e non in /usr/local/bin come spesso molti programmi verrebbero compilati di default.

Pertanto è vero, il metodo citato è rapido e indolore, ma non è detto che sia proprio come uno slackbuild fatto con criterio. E d'altra parte il metodo riguarda esclusivamente l'impacchettamento di un tot di roba, non è in questa fase che si determina la correttezza del contenuto.

Avatar utente
Savius
Linux 3.x
Linux 3.x
Messaggi: 553
Iscritto il: gio 14 ago 2008, 13:45
Slackware: Slackware64 14.0
Kernel: 3.2.29-smp
Desktop: KDE 4.8.5
Località: Napoli

Re: errore durante la compilazione di checkinstall

Messaggio da Savius »

Grazie mille per la risposta! Siete stati molto chiari ed esaustivi, diciamo che da un po' di tempo stavo cercando una procedura simile e finalmente l'ho trovata! :D

Grazie ancora! ^^

Zagorax
Linux 0.x
Linux 0.x
Messaggi: 64
Iscritto il: dom 18 apr 2010, 23:00
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da Zagorax »

Sul sito slackbuilds tutto sembrava facile. Siccome volevo installare tor mi serviva libevent, ma questo è quello che accade nel momento in cui do il ./libevent.SlackBuild:

Codice: Seleziona tutto

libevent-1.4.13-stable/
libevent-1.4.13-stable/aclocal.m4
libevent-1.4.13-stable/autogen.sh
libevent-1.4.13-stable/buffer.c
libevent-1.4.13-stable/ChangeLog
libevent-1.4.13-stable/compat/
libevent-1.4.13-stable/config.guess
libevent-1.4.13-stable/config.h.in
libevent-1.4.13-stable/config.sub
libevent-1.4.13-stable/configure
libevent-1.4.13-stable/configure.in
libevent-1.4.13-stable/devpoll.c
libevent-1.4.13-stable/Doxyfile
libevent-1.4.13-stable/epoll.c
libevent-1.4.13-stable/epoll_sub.c
libevent-1.4.13-stable/evbuffer.c
libevent-1.4.13-stable/evdns.3
libevent-1.4.13-stable/evdns.c
libevent-1.4.13-stable/evdns.h
libevent-1.4.13-stable/event-internal.h
libevent-1.4.13-stable/event.3
libevent-1.4.13-stable/event.c
libevent-1.4.13-stable/event.h
libevent-1.4.13-stable/event_rpcgen.py
libevent-1.4.13-stable/event_tagging.c
libevent-1.4.13-stable/evhttp.h
libevent-1.4.13-stable/evport.c
libevent-1.4.13-stable/evrpc-internal.h
libevent-1.4.13-stable/evrpc.c
libevent-1.4.13-stable/evrpc.h
libevent-1.4.13-stable/evsignal.h
libevent-1.4.13-stable/evutil.c
libevent-1.4.13-stable/evutil.h
libevent-1.4.13-stable/http-internal.h
libevent-1.4.13-stable/http.c
libevent-1.4.13-stable/install-sh
libevent-1.4.13-stable/kqueue.c
libevent-1.4.13-stable/log.c
libevent-1.4.13-stable/log.h
libevent-1.4.13-stable/ltmain.sh
libevent-1.4.13-stable/Makefile.am
libevent-1.4.13-stable/Makefile.in
libevent-1.4.13-stable/min_heap.h
libevent-1.4.13-stable/missing
libevent-1.4.13-stable/mkinstalldirs
libevent-1.4.13-stable/poll.c
libevent-1.4.13-stable/README
libevent-1.4.13-stable/sample/
libevent-1.4.13-stable/select.c
libevent-1.4.13-stable/signal.c
libevent-1.4.13-stable/strlcpy-internal.h
libevent-1.4.13-stable/strlcpy.c
libevent-1.4.13-stable/test/
libevent-1.4.13-stable/WIN32-Code/
libevent-1.4.13-stable/WIN32-Prj/
libevent-1.4.13-stable/WIN32-Prj/event_test/
libevent-1.4.13-stable/WIN32-Prj/libevent.dsp
libevent-1.4.13-stable/WIN32-Prj/libevent.dsw
libevent-1.4.13-stable/WIN32-Prj/libevent.sln
libevent-1.4.13-stable/WIN32-Prj/libevent.vcproj
libevent-1.4.13-stable/WIN32-Prj/regress/
libevent-1.4.13-stable/WIN32-Prj/signal_test/
libevent-1.4.13-stable/WIN32-Prj/time_test/
libevent-1.4.13-stable/WIN32-Prj/time_test/time_test.dsp
libevent-1.4.13-stable/WIN32-Prj/signal_test/signal_test.dsp
libevent-1.4.13-stable/WIN32-Prj/regress/regress.vcproj
libevent-1.4.13-stable/WIN32-Prj/event_test/event_test.dsp
libevent-1.4.13-stable/WIN32-Prj/event_test/test.txt
libevent-1.4.13-stable/WIN32-Code/config.h
libevent-1.4.13-stable/WIN32-Code/event-config.h
libevent-1.4.13-stable/WIN32-Code/tree.h
libevent-1.4.13-stable/WIN32-Code/win32.c
libevent-1.4.13-stable/test/bench.c
libevent-1.4.13-stable/test/Makefile.am
libevent-1.4.13-stable/test/Makefile.in
libevent-1.4.13-stable/test/regress.c
libevent-1.4.13-stable/test/regress.gen.c
libevent-1.4.13-stable/test/regress.gen.h
libevent-1.4.13-stable/test/regress.h
libevent-1.4.13-stable/test/regress.rpc
libevent-1.4.13-stable/test/regress_dns.c
libevent-1.4.13-stable/test/regress_http.c
libevent-1.4.13-stable/test/regress_rpc.c
libevent-1.4.13-stable/test/test-eof.c
libevent-1.4.13-stable/test/test-init.c
libevent-1.4.13-stable/test/test-time.c
libevent-1.4.13-stable/test/test-weof.c
libevent-1.4.13-stable/test/test.sh
libevent-1.4.13-stable/sample/event-test.c
libevent-1.4.13-stable/sample/Makefile.am
libevent-1.4.13-stable/sample/Makefile.in
libevent-1.4.13-stable/sample/signal-test.c
libevent-1.4.13-stable/sample/time-test.c
libevent-1.4.13-stable/compat/sys/
libevent-1.4.13-stable/compat/sys/_libevent_time.h
libevent-1.4.13-stable/compat/sys/queue.h
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 for gcc... gcc
checking for C compiler default output file name... 
configure: error: in `/tmp/SBo/libevent-1.4.13-stable':
configure: error: C compiler cannot create executables
See `config.log' for more details.
Questo è quello che c'è scritto nel config.log in /tmp/SBo:

Codice: Seleziona tutto

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.63.  Invocation command line was

  $ ./configure --prefix=/usr --libdir=/usr/lib --sysconfdir=/etc --localstatedir=/var --mandir=/usr/man --enable-static=no --build=i486-slackware-linux

## --------- ##
## Platform. ##
## --------- ##

hostname = slack
uname -m = x86_64
uname -r = 2.6.29.6
uname -s = Linux
uname -v = #2 SMP Mon Aug 17 11:58:18 CDT 2009

/usr/bin/uname -p = Intel(R) Core(TM)2 Duo CPU     U7600  @ 1.20GHz
/bin/uname -X     = unknown

/bin/arch              = x86_64
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/local/sbin
PATH: /usr/sbin
PATH: /sbin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/games
PATH: /usr/lib64/java/bin
PATH: /usr/lib64/qt/bin
PATH: /usr/share/texmf/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2077: checking for a BSD-compatible install
configure:2145: result: /usr/bin/ginstall -c
configure:2156: checking whether build environment is sane
configure:2199: result: yes
configure:2224: checking for a thread-safe mkdir -p
configure:2263: result: /usr/bin/mkdir -p
configure:2276: checking for gawk
configure:2292: found /usr/bin/gawk
configure:2303: result: gawk
configure:2314: checking whether make sets $(MAKE)
configure:2336: result: yes
configure:2575: checking for gcc
configure:2591: found /usr/bin/gcc
configure:2602: result: gcc
configure:2834: checking for C compiler version
configure:2842: gcc --version >&5
gcc (GCC) 4.3.3
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:2846: $? = 0
configure:2853: gcc -v >&5
Reading specs from /usr/lib64/gcc/x86_64-slackware-linux/4.3.3/specs
Target: x86_64-slackware-linux
Configured with: ../gcc-4.3.3/configure --prefix=/usr --libdir=/usr/lib64 --enable-shared --enable-bootstrap --enable-languages=ada,c,c++,fortran,java,objc --enable-threads=posix --enable-checking=release --with-system-zlib --disable-libunwind-exceptions --enable-__cxa_atexit --enable-libssp --with-gnu-ld --verbose --disable-multilib --target=x86_64-slackware-linux --build=x86_64-slackware-linux --host=x86_64-slackware-linux
Thread model: posix
gcc version 4.3.3 (GCC) 
configure:2857: $? = 0
configure:2864: gcc -V >&5
gcc: '-V' option must have argument
configure:2868: $? = 1
configure:2891: checking for C compiler default output file name
configure:2913: gcc -O2 -march=i486 -mtune=i686   conftest.c  >&5
conftest.c:1: error: CPU you selected does not support x86-64 instruction set
configure:2917: $? = 1
configure:2955: result: 
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "libevent"
| #define VERSION "1.4.13-stable"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:2961: error: in `/tmp/SBo/libevent-1.4.13-stable':
configure:2964: error: C compiler cannot create executables
See `config.log' for more details.

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-O2 -march=i486 -mtune=i686'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=i486-slackware-linux
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_path_install='/usr/bin/ginstall -c'
ac_cv_path_mkdir=/usr/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_make_make_set=yes

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /tmp/SBo/libevent-1.4.13-stable/missing --run aclocal-1.10'
AMDEPBACKSLASH=''
AMDEP_FALSE=''
AMDEP_TRUE=''
AMTAR='${SHELL} /tmp/SBo/libevent-1.4.13-stable/missing --run tar'
AR=''
AUTOCONF='${SHELL} /tmp/SBo/libevent-1.4.13-stable/missing --run autoconf'
AUTOHEADER='${SHELL} /tmp/SBo/libevent-1.4.13-stable/missing --run autoheader'
AUTOMAKE='${SHELL} /tmp/SBo/libevent-1.4.13-stable/missing --run automake-1.10'
AWK='gawk'
BUILD_WIN32_FALSE=''
BUILD_WIN32_TRUE=''
CC='gcc'
CCDEPMODE=''
CFLAGS='-O2 -march=i486 -mtune=i686'
CPP=''
CPPFLAGS=''
CXX=''
CXXCPP=''
CXXDEPMODE=''
CXXFLAGS=''
CYGPATH_W='echo'
DEFS=''
DEPDIR=''
DSYMUTIL=''
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP=''
EXEEXT=''
F77=''
FFLAGS=''
GREP=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL=''
LIBTOOL_DEPS=''
LN_S=''
LTLIBOBJS=''
MAKEINFO='${SHELL} /tmp/SBo/libevent-1.4.13-stable/missing --run makeinfo'
MKDIR_P='/usr/bin/mkdir -p'
NMEDIT=''
OBJEXT=''
PACKAGE='libevent'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB=''
SED=''
SET_MAKE=''
SHELL='/bin/sh'
STRIP=''
VERSION='1.4.13-stable'
ac_ct_CC='gcc'
ac_ct_CXX=''
ac_ct_F77=''
am__fastdepCC_FALSE=''
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE=''
am__fastdepCXX_TRUE=''
am__include=''
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i486-slackware-linux'
build_alias='i486-slackware-linux'
build_cpu=''
build_os=''
build_vendor=''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='NONE'
host=''
host_alias=''
host_cpu=''
host_os=''
host_vendor=''
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='$(SHELL) /tmp/SBo/libevent-1.4.13-stable/install-sh'
libdir='/usr/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='/var'
mandir='/usr/man'
mkdir_p='/usr/bin/mkdir -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE "libevent"
#define VERSION "1.4.13-stable"

configure: exit 77
Anche stavolta ha qualche problema... mi sapete aiutare?
Grazie

Zagorax
Linux 0.x
Linux 0.x
Messaggi: 64
Iscritto il: dom 18 apr 2010, 23:00
Contatta:

Re: errore durante la compilazione di checkinstall

Messaggio da Zagorax »

Ehm... risolto... dovevo modificare a mano nello slackbuild l'architettura in x86_64... credevo che la serie di if con le avrie architetture modificasse da sola quel parametro.

Ciao

Rispondi