Não consigo compilar Alô mundo

2009-03-02 Por tôpico Sávio M. Ramos
Olá,

Tentei compilar o programa abaixo, com cpp e gcc e não consegui.

Alguma luz?

Grato.

O prgrama:

#includeiostream
int main()
{
  std::coutAlô mundostd::endl;
  return 0;
}



1) Com cpp:

$ cpp -o teste alo.cpp

$ ./teste 
./teste: line 42: syntax error near unexpected token `('
./teste: line 42: `namespace std __attribute__ ((__visibility__ (default))) {'




2) Com gcc:

$ gcc -o teste_gcc alo.cpp 

/tmp/cc03JGq6.o: In function `main':
alo.cpp:(.text+0xa): undefined reference to `std::cout'
alo.cpp:(.text+0xf): undefined reference to `std::basic_ostreamchar, 
std::char_traitschar  std::operator std::char_traitschar 
(std::basic_ostreamchar, std::char_traitschar , char const*)'
alo.cpp:(.text+0x17): undefined reference to `std::basic_ostreamchar, 
std::char_traitschar  std::endlchar, std::char_traitschar 
(std::basic_ostreamchar, std::char_traitschar )'
alo.cpp:(.text+0x1c): undefined reference to `std::basic_ostreamchar, 
std::char_traitschar ::operator(std::basic_ostreamchar, 
std::char_traitschar  (*)(std::basic_ostreamchar, std::char_traitschar 
))'
/tmp/cc03JGq6.o: In function `__static_initialization_and_destruction_0(int, 
int)':
alo.cpp:(.text+0x4a): undefined reference to `std::ios_base::Init::Init()'
alo.cpp:(.text+0x4f): undefined reference to `std::ios_base::Init::~Init()'
/tmp/cc03JGq6.o:(.eh_frame+0x12): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status


--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Não consigo compilar Alô mundo

2009-03-02 Por tôpico Arthur Furlan
On Mon, Mar 2, 2009 at 6:55 AM, Sávio M. Ramos savio.deb...@gmail.com wrote:
 Olá,

Olá,

 Tentei compilar o programa abaixo, com cpp e gcc e não consegui.

O seu programa abaixo está em C++, então você deve compilá-lo com o g++.

 #includeiostream
 int main()
 {
  std::coutAlô mundostd::endl;
  return 0;
 }

afur...@beterraba:~$ cat  teste.cpp
#include iostream
using namespace std;

int main() {
cout  Hello World!  endl;
return 0;
}
^C
afur...@beterraba:~$ g++ -o teste -Wall teste.cpp
afur...@beterraba:~$ ./teste
Hello World!
afur...@beterraba:~$


-- 
Atenciosamente,

Arthur Furlan
arthur.fur...@gmail.com


--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Não consigo compilar Alô mundo

2009-03-02 Por tôpico Junior Polegato - Linux

Sávio M. Ramos escreveu:

Olá,

Tentei compilar o programa abaixo, com cpp e gcc e não consegui.

Alguma luz?

Grato.

O prgrama:

#includeiostream
int main()
{
  std::coutAlô mundostd::endl;
  return 0;
}
[...]
  


Olá,

  Use o g++ em vez de cpp ou gcc.


[]'s
  Junior Polegato


--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Não consigo compilar Alô mundo

2009-03-02 Por tôpico Sávio M. Ramos
Em Mon, 02 Mar 2009 15:45:57 -0300
Junior Polegato - Linux li...@juniorpolegato.com.br escreveu:

  Use o g++ em vez de cpp ou gcc.

Sou um mané! Funcionou...


--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Não consigo compilar pacote da Debian

2007-04-27 Por tôpico Danilo G. Baio

apt-get source PACOTE

apt-get build-dep PACOTE

cd PACOTE-374/

debuild -us -uc

cd ..

dpkg -i PACOTE_374-4_i386.deb



On 4/25/07, Savio Ramos [EMAIL PROTECTED] wrote:


Olá,

Baixei o fonte com o apt-get source e tentei compilar com o comando:

apt-get source --compile -b sylpheed-claws-gtk2

O erro foi:

dpkg-buildpackage: source version without epoch 2.6.0-1.1
dpkg-checkbuilddeps: Unmet build dependencies: debhelper (= 5.0.0)
dpatch (= 2.0.10) libcompfaceg1-dev libglib2.0-dev libgtk2.0-dev
libgdk-pixbuf-dev libgpgme11-dev (= 0.4.5) libssl-dev libpisock-dev
libldap2-dev gettext libltdl3-dev autotools-dev libtool libaspell-dev
(= 0.50.3) libclamav-dev libt1-dev libgtkmathview-dev
libgnomeprintui2.2-dev libetpan-dev (= 0.48)
dpkg-buildpackage: Build dependencies/conflicts unsatisfied; aborting.
dpkg-buildpackage: (Use -d flag to override.)
Comando de construção 'cd sylpheed-claws-gtk2-2.6.0  dpkg-buildpackage
-b -uc' falhou.
E: Processo filho falhou

Alguma luz?

Grato.

Sávio.





--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 .''`.Danilo G. Baio (dbaio)
: :'  :   (44) 8801 1257
`. `'`danilobaio in gmail.com
  `-  danilobaio2 in gmail.com
___
http://dbaio.sicesumar.org/
http://sicesumar.org/forum/
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=


Re: Não consigo compilar pacote da Debian

2007-04-26 Por tôpico Sávio Ramos
Em Wed, 25 Apr 2007 20:23:27 -0300
Fernando Ike de Oliveira [EMAIL PROTECTED] escreveu:

 #apt-get build-dep sylpheed-claws.

Funcionou. Mas mesmo assim compilei o programa e não consegui
instala-lo. Está conflitando com gtk não sei o que...

Tive que baixar o fonte original tar.gz e compila-lo com auto-apt.

Grato.

-- 
Sávio Martins Ramos -  Arquiteto
Rio de Janeiro  ICQ 174972645
Pirataria não! Seja livre: Linux
http://www.debian.org



Não consigo compilar pacote debian

2007-04-25 Por tôpico savio . debian
Olá,

Baixei o fonte com o apt-get source e tentei compilar com o comando:

apt-get source --compile -b sylpheed-claws-gtk2

O erro foi:

dpkg-buildpackage: source version without epoch 2.6.0-1.1
dpkg-checkbuilddeps: Unmet build dependencies: debhelper (= 5.0.0)
dpatch (= 2.0.10) libcompfaceg1-dev libglib2.0-dev libgtk2.0-dev
libgdk-pixbuf-dev libgpgme11-dev (= 0.4.5) libssl-dev libpisock-dev
libldap2-dev gettext libltdl3-dev autotools-dev libtool libaspell-dev
(= 0.50.3) libclamav-dev libt1-dev libgtkmathview-dev
libgnomeprintui2.2-dev libetpan-dev (= 0.48)
dpkg-buildpackage: Build dependencies/conflicts unsatisfied; aborting.
dpkg-buildpackage: (Use -d flag to override.)
Comando de construção 'cd sylpheed-claws-gtk2-2.6.0 
dpkg-buildpackage -b -uc' falhou.
E: Processo filho falhou

Alguma luz?

Grato.

Sávio.

Aqui na Oi Internet você ganha ou ganha. Além de acesso grátis com
qualidade, ganha contas ilimitadas de email com 1 giga cada uma. Ganha
espaço ilimitado para hospedar sua página pessoal. Ganha flog, suporte
grátis e muito mais. Baixe grátis o Discador em
http://www.oi.com.br/discador e comece a ganhar.

Agora, se o seu negócio é voar na internet sem pagar uma fortuna,
assine Oi Internet banda larga e ganhe modem grátis. Clique em
http://www.oi.com.br/bandalarga e aproveite essa moleza!




Não consigo compilar pacote da Debian

2007-04-25 Por tôpico Savio Ramos

Olá,

Baixei o fonte com o apt-get source e tentei compilar com o comando:

apt-get source --compile -b sylpheed-claws-gtk2

O erro foi:

dpkg-buildpackage: source version without epoch 2.6.0-1.1
dpkg-checkbuilddeps: Unmet build dependencies: debhelper (= 5.0.0)
dpatch (= 2.0.10) libcompfaceg1-dev libglib2.0-dev libgtk2.0-dev
libgdk-pixbuf-dev libgpgme11-dev (= 0.4.5) libssl-dev libpisock-dev
libldap2-dev gettext libltdl3-dev autotools-dev libtool libaspell-dev
(= 0.50.3) libclamav-dev libt1-dev libgtkmathview-dev
libgnomeprintui2.2-dev libetpan-dev (= 0.48)
dpkg-buildpackage: Build dependencies/conflicts unsatisfied; aborting.
dpkg-buildpackage: (Use -d flag to override.)
Comando de construção 'cd sylpheed-claws-gtk2-2.6.0  dpkg-buildpackage
-b -uc' falhou.
E: Processo filho falhou

Alguma luz?

Grato.

Sávio.



Fwd: Não consigo compilar pacote da Debian

2007-04-25 Por tôpico Silvino Silva

Em 25/04/07, Savio Ramos [EMAIL PROTECTED] escreveu:


Olá,

Baixei o fonte com o apt-get source e tentei compilar com o comando:

apt-get source --compile -b sylpheed-claws-gtk2

O erro foi:

dpkg-buildpackage: source version without epoch 2.6.0-1.1
dpkg-checkbuilddeps: Unmet build dependencies: debhelper (= 5.0.0)
dpatch (= 2.0.10) libcompfaceg1-dev libglib2.0-dev libgtk2.0-dev
libgdk-pixbuf-dev libgpgme11-dev (= 0.4.5) libssl-dev libpisock-dev
libldap2-dev gettext libltdl3-dev autotools-dev libtool libaspell-dev
(= 0.50.3) libclamav-dev libt1-dev libgtkmathview-dev
libgnomeprintui2.2-dev libetpan-dev (= 0.48)
dpkg-buildpackage: Build dependencies/conflicts unsatisfied; aborting.
dpkg-buildpackage: (Use -d flag to override.)
Comando de construção 'cd sylpheed-claws-gtk2-2.6.0  dpkg-buildpackage
-b -uc' falhou.
E: Processo filho falhou

Alguma luz?

Grato.

Sávio.




Olá  Sávio, porque não experimentas o apt-build ?
Pelo pouco que percebo o teu problema está nas dependências para a
compilação do pacote, se usares o apt-build ele resolve automaticamente as
dependências.

Eu escrevi alguma coisa sobre o assunto em ;
http://silvinosilva.no-ip.org gnu\linux  optimizar distribuição

Boa sorte :)
SilvinoSilva


Res: Fwd: Não consigo compilar pacote da Debian

2007-04-25 Por tôpico Claudio Rocha de Jesus
Tente tambem rodar o comando 










!--
@page { margin: 2cm }
PRE.western { font-family: Nimbus Mono L, monospace }
PRE.cjk { font-family: Nimbus Mono L, monospace }
PRE.ctl { font-family: Nimbus Mono L, monospace }
P { margin-bottom: 0.21cm }
--


apt-get build-dep nomedopacote
para baixar todas as dependencias do pacote antes de compila-lo.

Falou

--
 -   -Claudio Rocha de Jesus
|.|-|.| Analista de Suporte Tecnico
   -[EMAIL PROTECTED]
 Linux user number 433834
--

- Mensagem original 
De: Silvino Silva [EMAIL PROTECTED]
Para: debian-user-portuguese@lists.debian.org
Enviadas: Quarta-feira, 25 de Abril de 2007 17:04:02
Assunto: Fwd: Não consigo compilar pacote da Debian


Em 25/04/07, Savio Ramos [EMAIL PROTECTED] escreveu:

Olá,

Baixei o fonte com o apt-get source e tentei compilar com o comando:

apt-get source --compile -b sylpheed-claws-gtk2

O erro foi:

dpkg-buildpackage: source version without epoch 2.6.0-1.1


dpkg-checkbuilddeps: Unmet build dependencies: debhelper (= 5.0.0)
dpatch (= 2.0.10) libcompfaceg1-dev libglib2.0-dev libgtk2.0-dev
libgdk-pixbuf-dev libgpgme11-dev (= 0.4.5) libssl-dev libpisock-dev


libldap2-dev gettext libltdl3-dev autotools-dev libtool libaspell-dev
(= 0.50.3) libclamav-dev libt1-dev libgtkmathview-dev
libgnomeprintui2.2-dev libetpan-dev (= 0.48)
dpkg-buildpackage: Build dependencies/conflicts unsatisfied; aborting.

dpkg-buildpackage: (Use -d flag to override.)
Comando de construção 'cd sylpheed-claws-gtk2-2.6.0  dpkg-buildpackage
-b -uc' falhou.
E: Processo filho falhou

Alguma luz?

Grato.


Sávio.


Olá  Sávio, porque não experimentas o apt-build ?
Pelo pouco que percebo o teu problema está nas dependências para a compilação 
do pacote, se usares o apt-build ele resolve automaticamente as dependências.


Eu escrevi alguma coisa sobre o assunto em ;
http://silvinosilva.no-ip.org gnu\linux  optimizar distribuição


Boa sorte :)
SilvinoSilva












__
Fale com seus amigos  de graça com o novo Yahoo! Messenger 
http://br.messenger.yahoo.com/ 

Re: Não consigo compilar pacote da Debian

2007-04-25 Por tôpico Fernando Ike de Oliveira
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Em Wed, 25 Apr 2007 07:04:23 -0300
Savio Ramos [EMAIL PROTECTED] escreveu:

 Olá,
 
 Baixei o fonte com o apt-get source e tentei compilar com o comando:
 
 apt-get source --compile -b sylpheed-claws-gtk2
 
 O erro foi:
 
 dpkg-buildpackage: source version without epoch 2.6.0-1.1
 dpkg-checkbuilddeps: Unmet build dependencies: debhelper (= 5.0.0)
 dpatch (= 2.0.10) libcompfaceg1-dev libglib2.0-dev libgtk2.0-dev
 libgdk-pixbuf-dev libgpgme11-dev (= 0.4.5) libssl-dev libpisock-dev
 libldap2-dev gettext libltdl3-dev autotools-dev libtool libaspell-dev
 (= 0.50.3) libclamav-dev libt1-dev libgtkmathview-dev
 libgnomeprintui2.2-dev libetpan-dev (= 0.48)
 dpkg-buildpackage: Build dependencies/conflicts unsatisfied; aborting.
 dpkg-buildpackage: (Use -d flag to override.)
 Comando de construção 'cd sylpheed-claws-gtk2-2.6.0 
 dpkg-buildpackage -b -uc' falhou.
 E: Processo filho falhou
 

Se está usando unstable, o sylpheed-claws precisa ser recompilado e
também tem que mexer nas arquivo control do diretório debian para
acertar algumas dependências. Mas sobre o problema vc tem que instalar
as dependências de geração do pacote. 

#apt-get build-dep sylpheed-claws.



[]'s
- -- 
Fernando Ike
http://www.midstorm.org/~fike/weblog
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iQIVAwUBRi/i9dlDpkkM3Ld6AQJTqQ/9HTW7vXd/FSMac7HQK8hhwLGaKpe8KggK
P79Y18QNek1ZWr6Dj1W3ZXFUNQMcbJwxPYNNRishe7CIL39JsuCx1vOcO+HjRjFt
GjMdoMJcj9uBfl6ZMPCqESxj4IHbOLC/6hNPChBUJp7iGmC4EJ1GRp0Guv01jaof
gmqv7zPt3IH9H9Uls8lTzoDs4jdrhPab8Vp1QWsUQe7k4h52pSnUp7AtF291G9JP
baFnCn3SCYvmLddogU1SUVHz0cryvJOudENtkCqz4Bm5XnPZsW+q/iTBfr2rQtrU
ndAexCN3VGhVEdSmiujz8Zw0sPWO87TF0JSwn+K2PmDuWUB+gtUoZj+l2OlADoRm
fvXWsU4BDWEq3ncK3Ul1MzdMnRP691mNaJHPGpUu3Y3XOMho1E3vyMuX34/eEIHV
O/al5Orj7rzqff4JUTlo18scApz/nc429wa5N1Ch0kI9ZBAahKN8iF1i73N0PuxV
I2ljCGpLiQpXgrHpZnL26vi6ANeSamQ/7NRoAk6B/DmdBIUHPWbnZr6ep5NCbam8
EXc9Tn6ylONXq0D3+Fei9jeYV3rZ59+TnvPhFMur++iyLa1k3gmMDStp//t/jnGa
Jy6+cDLvdLIMwRjukY4Wb/BGDlNzDpRmAwv5YRPMgcgSRiafDeSftDbFB/QQPvCo
UVAqdYzrXjo=
=Y5RI
-END PGP SIGNATURE-


Re: Re: Não consigo compilar o lufs!!!

2006-01-02 Por tôpico Marcos Fuentes

Intenta usar fixscript, para resolver versiones

http://132.68.73.235/linmodems/pctel-linux/fixscript.gz


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



não consigo compilar

2005-01-27 Por tôpico Adriano C. de Moura
pessoal não consigo compilar,

checking for POSIXized ISC... no
checking for c++... no
checking for g++... no
checking for gcc... gcc
checking whether the C++ compiler (gcc  ) works... no
configure: error: installation or configuration
problem: C++ compiler cannot create executables

dpkg -l | grep -i gcc
ii  gcc3.3.5-1The GNU C compiler
ii  gcc-2.95   2.95.4-22  The GNU C compiler
ii  gcc-3.33.3.5-5The GNU C compiler
ii  gcc-3.3-base   3.3.5-5The GNU Compiler
Collection (base package)
ii  libgcc13.4.2-2GCC support library

o que está faltando instalar ???





___ 
Yahoo! Acesso Grátis - Instale o discador do Yahoo! agora. 
http://br.acesso.yahoo.com/ - Internet rápida e grátis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: não consigo compilar

2005-01-27 Por tôpico Carlucio Lopes
On Thu, 27 Jan 2005 08:17:33 -0300 (ART)
Adriano C. de Moura [EMAIL PROTECTED] wrote:

 pessoal não consigo compilar,
 
 checking for POSIXized ISC... no
 checking for c++... no
 checking for g++... no

faltando.

 checking for gcc... gcc
 checking whether the C++ compiler (gcc  ) works... no
 configure: error: installation or configuration
 problem: C++ compiler cannot create executables
 
 dpkg -l | grep -i gcc
 ii  gcc3.3.5-1The GNU C compiler
 ii  gcc-2.95   2.95.4-22  The GNU C compiler
 ii  gcc-3.33.3.5-5The GNU C compiler
 ii  gcc-3.3-base   3.3.5-5The GNU Compiler
 Collection (base package)
 ii  libgcc13.4.2-2GCC support library
 
 o que está faltando instalar ???
 

#apt-get install g++

-- 
Carlucio Lopes - Debian Gnu/Linux+Tinycobol+Tcl+Postgresql
Por que COBOL? http://www.clubecobol.com.br/cc_pq_cobol.asp
Pirataria!!??.. entenda o que e'.- www.carlinux.hpg.com.br
Goiania-Goias-Brasil   62-526-8006  62-9946-3523
icq - 267274130  msn - [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Não consigo compilar o lufs!!!

2004-10-29 Por tôpico Sergio Luz

Olá a todos;

Em um Debian Woody stable com kernel 2.4.18-bf2.4 (instalação padrão) instalei os 
kernel-headers via apt-get e compilei o LUFS sem problemas. Ao fazer uma atualização do 
kernel para 2.4.27 a partir de fonte e kernel-headers baixados de kernel.org passei a 
encontrar os mesmos problemas de compilação do LUFS que estão sendo reportados aqui na lista.


Pra ver se resolvia, refiz a máquina do zero a partir do CD-ROM (kernel 2.4.18-bf2.4), 
migrei pra testing, instalei o kernel-source e kernel-headers pelo apt-get, compilei o 
kernel do modo Debian (#fakeroot make-kpkg ... kernel_image) e tentei compilar o LUFS 
novamente, mas o erro persiste.


Quando recompilo o kernel, desabilito um monte de coisas que não estão sendo utilizadas, 
como suporte a FDDI, interfaces WAN, Multimidia, Som... Será que pode ser alguma coisa que 
foi retirada? Vou continuar fuçando.


Segue a sequencia de comandos que utilizei e as saídas, as etapas com resultado normal 
foram simplificadas, a com erro está completa. Se alguém tiver alguma idéia, avisa.


#tar -xvzf lufs-0.9.7.tar.gz
#cd lufs-0.9.7
#./configure --with-ssh=/usr/bin/ssh
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
(...)
config.status: creating config.h
config.status: executing depfiles commands
###
 supported filesystems: localfs locasefs ftpfs gnetfs sshfs
 suid files: lufsmnt  lufsumount.
###

#make
make  all-recursive
make[1]: Entering directory `/root/sources/lufs-0.9.7'
Making all in kernel
make[2]: Entering directory `/root/sources/lufs-0.9.7/kernel'
(...)
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/root/sources/lufs-0.9.7'
make[1]: Leaving directory `/root/sources/lufs-0.9.7'

#make install--- aqui acontece o erro
Making install in kernel
make[1]: Entering directory `/root/sources/lufs-0.9.7/kernel'
Making install in Linux
make[2]: Entering directory `/root/sources/lufs-0.9.7/kernel/Linux'
Making install in 2.4
make[3]: Entering directory `/root/sources/lufs-0.9.7/kernel/Linux/2.4'
make[4]: Entering directory `/root/sources/lufs-0.9.7/kernel/Linux/2.4'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../config/mkinstalldirs 
/lib/modules/2.4.27-protegere/kernel/fs/lufs
mkdir -p -- /lib/modules/2.4.27-protegere/kernel/fs/lufs
  /bin/sh ../../../libtool --mode=install /usr/bin/install -c lufs.o 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o

/usr/bin/install -c lufs.o /lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o
make  install-data-hook
make[5]: Entering directory `/root/sources/lufs-0.9.7/kernel/Linux/2.4'
depmod -aq
if [ `lsmod | grep lufs` ]; then rmmod lufs; fi
modprobe lufs
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol put_cmsg
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol generic_file_llseek
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol generic_file_write
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol unlock_page
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol clear_inode
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol kmalloc
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol new_inode
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol generic_read_dir
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol scm_detach_fds
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol unregister_filesystem
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol vfs_readlink
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol force_delete
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol find_inode_number
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: unresolved symbol generic_file_mmap
/lib/modules/2.4.27-protegere/kernel/fs/lufs/lufs.o: 

Re: Não consigo compilar o lufs!!!

2004-10-04 Por tôpico Danilo Balarini

Oi pessoal, e oi Still

saída do uname -a
Linux supserservidor 2.4.26-1-386 #1 Tue Aug 24 13:31:19 JST 2004 i686 
GNU/Linux


eu vou colocar o make inteiro...

Abraços gente - obrigadaço
Danilo Balarini


supserservidor:~/firefox-downloads/lufs-0.9.7# make
make all-recursive
make[1]: Entering directory `/root/firefox-downloads/lufs-0.9.7'
Making all in kernel
make[2]: Entering directory `/root/firefox-downloads/lufs-0.9.7/kernel'
Making all in Linux
make[3]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux'

Making all in 2.4
make[4]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux/2.4'

make[4]: Nada a ser feito para `all'.
make[4]: Leaving directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux/2.4'
make[4]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux'

make[4]: Nada a ser feito para `all-am'.
make[4]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/kernel/Linux'
make[3]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/kernel/Linux'
make[3]: Entering directory `/root/firefox-downloads/lufs-0.9.7/kernel'
make[3]: Nada a ser feito para `all-am'.
make[3]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/kernel'
make[2]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/kernel'
Making all in lufsd
make[2]: Entering directory `/root/firefox-downloads/lufs-0.9.7/lufsd'
make[2]: Nada a ser feito para `all'.
make[2]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/lufsd'
Making all in filesystems
make[2]: Entering directory `/root/firefox-downloads/lufs-0.9.7/filesystems'
Making all in localfs
make[3]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/localfs'

make[3]: Nada a ser feito para `all'.
make[3]: Leaving directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/localfs'

Making all in locasefs
make[3]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/locasefs'

make[3]: Nada a ser feito para `all'.
make[3]: Leaving directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/locasefs'

Making all in ftpfs
make[3]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/ftpfs'

make[3]: Nada a ser feito para `all'.
make[3]: Leaving directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/ftpfs'

Making all in gnetfs
make[3]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/gnetfs'

make[3]: Nada a ser feito para `all'.
make[3]: Leaving directory 
`/root/firefox-downloads/lufs-0.9.7/filesystems/gnetfs'

make[3]: Entering directory `/root/firefox-downloads/lufs-0.9.7/filesystems'
make[3]: Nada a ser feito para `all-am'.
make[3]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/filesystems'
make[2]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/filesystems'
Making all in util
make[2]: Entering directory `/root/firefox-downloads/lufs-0.9.7/util'
make[2]: Nada a ser feito para `all'.
make[2]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/util'
Making all in include
make[2]: Entering directory `/root/firefox-downloads/lufs-0.9.7/include'
make[2]: Nada a ser feito para `all'.
make[2]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/include'
Making all in man
make[2]: Entering directory `/root/firefox-downloads/lufs-0.9.7/man'
make[2]: Nada a ser feito para `all'.
make[2]: Leaving directory `/root/firefox-downloads/lufs-0.9.7/man'
make[2]: Entering directory `/root/firefox-downloads/lufs-0.9.7'
make[2]: Leaving directory `/root/firefox-downloads/lufs-0.9.7'
make[1]: Leaving directory `/root/firefox-downloads/lufs-0.9.7'



Danilo;
* Musashi corta a msg que Danilo Balarini enviou para Still:

aqui está
isso aparece no make install


Muito obrigado a todos
Danilo Balarini


supserservidor:~/firefox-downloads/lufs-0.9.7# make install
Making install in kernel
make[1]: Entering directory `/root/firefox-downloads/lufs-0.9.7/kernel'


Onde está a saída da compilação ? Qual a saída do seu uname -a ?

[]'s,

Still
--
Nelson Luiz Campos  .''`. | I hear; I forget.
Engenheiro Eletricista : :'  :| I see; I remember.
Linux User #89621 UIN 11464303 `. `'` | I do; I understand.
gnupgID: 55577339`-   | Chinese Proverb

_
MSN Hotmail, o maior webmail do Brasil.  http://www.hotmail.com



Não consigo compilar o lufs!!!

2004-10-01 Por tôpico Danilo Balarini

Oi lista
estou tentando compilar o lufs (para poder acessar outras partições)
no make, ele já dá uns paus
make install ele dá vários paus e não instala
estou usando a testing(muito boa por sinal)
já instalei o kernel-headers
libc6dev
build-essential
e por aí vai... essa é a minha saída do ./configure
... vocês conseguem perceber algo faltando ???

Abraços - Obrigado pela ajuda
Balarini

supserservidor:~/firefox-downloads/lufs-0.9.7# ./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... gawk
checking whether make sets $(MAKE)... yes
checking OS... Linux
checking kernel... 2.4.26-1-386
checking kernel support... supported in kernel/Linux/2.4
checking kernel headers... found in /lib/modules/2.4.26-1-386/build/include
checking kernel configuration... found, using modversions
checking modversions.h... 
/lib/modules/2.4.26-1-386/build/include/config/modversions.h

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... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
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 for a BSD-compatible install... /usr/bin/install -c
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
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 how to recognise dependent libraries... pass_all
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 how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
checking for fl32... no
checking for af77... no
checking for fort77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
checking for lf95... no
checking for g95... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... 
yes

checking whether -lc should be explicitly linked in... no
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... no
configure: creating libtool
appending configuration tag CXX to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... 
yes

checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ 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
appending configuration tag F77 to libtool
checking whether make sets $(MAKE)... (cached) yes
checking for ssh... not found (sshfs support disabled)
checking for gnome-config... no

Re: Não consigo compilar o lufs!!!

2004-10-01 Por tôpico Danilo Balarini

aqui está
isso aparece no make install

Muito obrigado a todos
Danilo Balarini

supserservidor:~/firefox-downloads/lufs-0.9.7# make install
Making install in kernel
make[1]: Entering directory `/root/firefox-downloads/lufs-0.9.7/kernel'
Making install in Linux
make[2]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux'

Making install in 2.4
make[3]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux/2.4'
make[4]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux/2.4'

make[4]: Nada a ser feito para `install-exec-am'.
/bin/sh ../../../config/mkinstalldirs 
/lib/modules/2.4.26-1-386/kernel/fs/lufs
 /bin/sh ../../../libtool --mode=install /usr/bin/install -c lufs.o 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o

/usr/bin/install -c lufs.o /lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o
make  install-data-hook
make[5]: Entering directory 
`/root/firefox-downloads/lufs-0.9.7/kernel/Linux/2.4'

depmod -aq
if [ `lsmod | grep lufs` ]; then rmmod lufs; fi
modprobe lufs
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol put_cmsg
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
generic_file_llseek
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
generic_file_write
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
unlock_page
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
clear_inode
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol kmalloc
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol new_inode
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
generic_read_dir
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
scm_detach_fds
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
unregister_filesystem
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
vfs_readlink
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
force_delete
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
find_inode_number
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
generic_file_mmap
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
is_bad_inode
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol d_rehash
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
make_bad_inode
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
generic_file_read
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
generic_file_open
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
register_filesystem
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
zone_table
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
invalidate_inode_pages
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
d_alloc_root
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
kill_proc_info
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol kfree
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol iunique
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
vfs_follow_link
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
__scm_destroy
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol xtime
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: 
/lib/modules/2.4.26-1-386/kernel/fs/lufs/lufs.o: unresolved symbol 
sock_release

Não consigo compilar o núcleo

2004-04-04 Por tôpico Savio Ramos
Olá,

Acabei de mandar uma mensagem dizendo que não rodava o script do velox. Agora 
notei que a mensagem de erro quando tentei recompilar o núcleo é parecida, 
vejam:

debian:/usr/src/kernel-source-2.6.4# make-kpkg gconfig
Can't locate strict.pm in @INC (@INC contains: /etc/perl 
/usr/local/lib/perl/5.8.3 /usr/local/share/perl/5.8.3 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at /usr/bin/make-kpkg line 20.
BEGIN failed--compilation aborted at /usr/bin/make-kpkg line 20.


Alguma luz?

Grato.
-- 
Savio Martins Ramos Arquiteto
Rio de Janeiro  ICQ 174972645
Pirataria não!  Use GNU/Linux
Debian-br #705 Unstable
http://www.debian.org



Re: Não consigo compilar o nú cleo

2004-04-04 Por tôpico Agney Lopes Roth Ferraz
apt-get install perl-base


On Sun, 4 Apr 2004 22:12:15 -0300
Savio Ramos [EMAIL PROTECTED] wrote:

 Olá,
 
 Acabei de mandar uma mensagem dizendo que não rodava o script do velox.
 Agora notei que a mensagem de erro quando tentei recompilar o núcleo é
 parecida, vejam:
 
 debian:/usr/src/kernel-source-2.6.4# make-kpkg gconfig
 Can't locate strict.pm in @INC (@INC contains: /etc/perl
 /usr/local/lib/perl/5.8.3 /usr/local/share/perl/5.8.3 /usr/lib/perl5
 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8
 /usr/local/lib/site_perl .) at /usr/bin/make-kpkg line 20. BEGIN
 failed--compilation aborted at /usr/bin/make-kpkg line 20.
 
 
 Alguma luz?
 
 Grato.
 -- 
 Savio Martins Ramos Arquiteto
 Rio de Janeiro  ICQ 174972645
 Pirataria não!  Use GNU/Linux
 Debian-br #705 Unstable
 http://www.debian.org
 
 


-- 
---
Agney Lopes Roth Ferraz
http://agney.linuxhome.com.br
[EMAIL PROTECTED]
Dúvidas sobre debian: http://rautu.cipsga.org.br



Re: Não consigo compilar

2003-11-25 Por tôpico Leandro Guimarães Faria Corsetti Dutra
Em Wed, 19 Nov 2003 10:20:40 -0200, Sávio Ramos escreveu:

 Não seria alguma coisa velha que está faltando? Veja a mensagem:
 Qt-1.4

Aparentemente.  Como o Debian tem versões nos nomes, você talvez ainda
consiga instalar essa.


-- 
Leandro Guimarães Faria Corsetti Dutra [EMAIL PROTECTED]
+55 (11) 5685 2219
+55 (11) 5686 9607
+55 (11) 9406 7191




Re: Não consigo compilar

2003-11-19 Por tôpico Sávio Ramos
On Wed, 19 Nov 2003 05:28:05 -0200
caio ferreira [EMAIL PROTECTED] wrote:

 Por acaso você instalou a -dev da biblioteca qt ?!?!

Instalei tudo quanto é dev que achei, veja abaixo, mas a mensagem continua a 
mesma:
checking for killpg in -lucb... no
checking for Qt... Warning: locale not supported by C library, locale unchanged
configure: error: Qt-1.4 (libraries) not found. Please check your installation!

Não seria alguma coisa velha que está faltando? Veja a mensagem: Qt-1.4 .


Abaixo os pacotes dev instalados:
ii  qt2-dev-tools   2.3.2-14Qt2 development tools
ii  qt3-apps-dev3.2.1-6 Qt3 Developer applications development files
ii  qt3-dev-tools   3.2.1-6 Qt3 development tools
ii  qt3-dev-tools-compa 3.2.1-6 Conversion utilities for Qt3 development
ii  qt3-dev-tools-embed 3.2.1-6 Tools to develop embedded Qt applications


Obs: se fosse a necessidade de alguma dev o auto-apt não a instalaria???
-- 
Savio M. Ramos -  Arquiteto
Rio de Janeiro ICQ174972645
Não a pirataria.  GNU/Linux
Debian-br#705 test/unstable



Re: Não consigo compilar

2003-11-19 Por tôpico Thadeu Penna
On Wed, 19 Nov 2003, Sávio Ramos wrote:
 On Wed, 19 Nov 2003 05:28:05 -0200
 caio ferreira [EMAIL PROTECTED] wrote:

  Por acaso você instalou a -dev da biblioteca qt ?!?!

 Instalei tudo quanto é dev que achei, veja abaixo, mas a mensagem continua a 
 mesma:
 checking for killpg in -lucb... no
 checking for Qt... Warning: locale not supported by C library, locale 
 unchanged
 configure: error: Qt-1.4 (libraries) not found. Please check your 
 installation!

 Não seria alguma coisa velha que está faltando? Veja a mensagem: Qt-1.4 .


 Abaixo os pacotes dev instalados:
 ii  qt2-dev-tools   2.3.2-14Qt2 development tools
 ii  qt3-apps-dev3.2.1-6 Qt3 Developer applications development 
 files
 ii  qt3-dev-tools   3.2.1-6 Qt3 development tools
 ii  qt3-dev-tools-compa 3.2.1-6 Conversion utilities for Qt3 development
 ii  qt3-dev-tools-embed 3.2.1-6 Tools to develop embedded Qt applications


Note que nenhuma delas é a versão 1.4 (antiquíssima...). Acho que nem tem
mais nos repositórios debian. O autor não portou o programa para versões
mais novas do Qt???



 Obs: se fosse a necessidade de alguma dev o auto-apt não a instalaria???

Só se existisse no repositório..
Se não resolver, a gente discute no almoço sexta, antes dos chopps :)




 ___  _ .''`.
  | |_  _. _| _  |_) _ ._ ._  _.   : :'  :
  | | |(_|(_|(/_|_|  |  (/_| || |(_|   `. `'`
Linux User #50500`-
Prof.Adjunto - Instituto de Física  ---Debian-
Universidade Federal Fluminense Alpha/i386



Re: Não consigo compilar

2003-11-19 Por tôpico José Oliveira
Em Qua, 2003-11-19 às 18:33, Thadeu Penna escreveu:
  Abaixo os pacotes dev instalados:
  ii  qt2-dev-tools   2.3.2-14Qt2 development tools
  ii  qt3-apps-dev3.2.1-6 Qt3 Developer applications development 
  files
  ii  qt3-dev-tools   3.2.1-6 Qt3 development tools
  ii  qt3-dev-tools-compa 3.2.1-6 Conversion utilities for Qt3 development
  ii  qt3-dev-tools-embed 3.2.1-6 Tools to develop embedded Qt 
  applications
 
 
 Note que nenhuma delas é a versão 1.4 (antiquíssima...). Acho que nem tem
 mais nos repositórios debian. O autor não portou o programa para versões
 mais novas do Qt???

Aparentemente deve tá faltando são as libqt*-dev.
apt-cache search libqt --names-only

t+!
-- 
José Oliveira [EMAIL PROTECTED]


signature.asc
Description: Esta é uma parte de mensagem	assinada digitalmente


Re: Não consigo compilar

2003-11-19 Por tôpico Sávio Ramos
On Wed, 19 Nov 2003 18:31:43 -0200
caio ferreira [EMAIL PROTECTED] wrote:

 É isso que eu estou achando estranho, a versão 1.4 é muito velha. Que
 software você esta tentando instalar ?!?!?

lx-viewer um programa que trabalha com dwg do autocad.

É um programa recente: 21/08/2003
-- 
Savio M. Ramos -  Arquiteto
Rio de Janeiro ICQ174972645
Não a pirataria.  GNU/Linux
Debian-br#705 test/unstable



Não consigo compilar

2003-11-18 Por tôpico Sávio Ramos
Olá,

Estou tentando compilar o lx-viewer e aparece o seguinte:

debian:/opt/lx-viewer# ./configure
loading cache ./config.cache
checking for gcc... gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking for X... configure: error: Can't find X includes. Please check your 
installation and add the correct paths!


Alguma luz?
Grato.
-- 
Savio M. Ramos -  Arquiteto
Rio de Janeiro ICQ174972645
Não a pirataria.  GNU/Linux
Debian-br#705 test/unstable



Re: Não consigo compilar

2003-11-18 Por tôpico Mario Olimpio de Menezes
On Tue, Nov 18, 2003 at 03:13:05PM -0200, Sávio Ramos wrote:
 Olá,
 
 Estou tentando compilar o lx-viewer e aparece o seguinte:
 
 debian:/opt/lx-viewer# ./configure
 loading cache ./config.cache
 checking for gcc... gcc
 checking whether the C compiler (gcc  ) works... yes
 checking whether the C compiler (gcc  ) is a cross-compiler... no
 checking whether we are using GNU C... yes
 checking whether gcc accepts -g... yes
 checking how to run the C++ preprocessor... g++ -E
 checking for X... configure: error: Can't find X includes. Please check your 
 installation and add the correct paths!

instale as bibliotecas -dev do X
apt-cache search xlibs dev 
pegue a sua!


-- 
Mario O.de Menezes, Ph.D.Many are the plans in a man's heart, but
IPEN-CNEN/SPis the Lord's purpose that prevails
http://www.ipen.br/~mario  Prov. 19.21




Re: Não consigo compilar

2003-11-18 Por tôpico Sávio Ramos
On Tue, 18 Nov 2003 15:22:06 -0200
Mario Olimpio de Menezes [EMAIL PROTECTED] wrote:

 instale as bibliotecas -dev do X

Instalei, agora o problema é outro:

checking for Qt... configure: error: Qt-1.4 (headers and libraries) not found. 
Please check your installation!


Digitei export QTDIR=/usr/lib/qt3/  mas mesmo assim não foi. Está instalado o 
qt3, vejam:

ii  qt3-dev-tools   3.2.1-6 Qt3 development tools


Alguma luz?
Grato.
-- 
Savio M. Ramos -  Arquiteto
Rio de Janeiro ICQ174972645
Não a pirataria.  GNU/Linux
Debian-br#705 test/unstable



Re: Não consigo compilar

2003-11-18 Por tôpico José Oliveira
Em Ter, 2003-11-18 às 16:40, Sávio Ramos escreveu:
 On Tue, 18 Nov 2003 15:22:06 -0200
 Mario Olimpio de Menezes [EMAIL PROTECTED] wrote:
 
  instale as bibliotecas -dev do X
 
 Instalei, agora o problema é outro:
 
 checking for Qt... configure: error: Qt-1.4 (headers and libraries) not 
 found. Please check your installation!

Tente instalar as libs de desenvolvimento da Qt
# apt-cache search qt | grep dev
Vai retornar eles (libqt-dev, libqt3-dev... por exemplo)

- ZehOliveira
-- 
José Oliveira [EMAIL PROTECTED]


signature.asc
Description: Esta é uma parte de mensagem	assinada digitalmente


Re: Não consigo compilar

2003-11-18 Por tôpico caio ferreira
On Tue, 18 Nov 2003 15:13:05 -0200
Sávio Ramos [EMAIL PROTECTED] wrote:

 Estou tentando compilar o lx-viewer e aparece o seguinte:
 debian:/opt/lx-viewer# ./configure
 loading cache ./config.cache
 checking for gcc... gcc
 checking whether the C compiler (gcc  ) works... yes
 checking whether the C compiler (gcc  ) is a cross-compiler... no
 checking whether we are using GNU C... yes
 checking whether gcc accepts -g... yes
 checking how to run the C++ preprocessor... g++ -E
 checking for X... configure: error: Can't find X includes. Please check
 your installation and add the correct paths!

Guia Prático para o Debian GNU/Linux
2.5 Como instalar pacotes sob demanda

http://debian-br.alioth.debian.org/docs/sgml/pratico/pratico-html/ch-instalar.html#s-auto-apt

-- 

[ ]'s
 
  ***.''`.
* Caio A. Ferreira   *  : :'  :
* GNU/Linux Debian   *  `. `'`
  *** `-
Gnupg ID 0x01186BE1
Key fingerprint =3D F17E 75C6 CE00 0E09 F63B  71B0 A0D2 FAD9 0118 6BE1

Historia, s. f. Um relato, quase todo falso, de eventos, 
quase todos sem importancia, provocados por governantes, 
quase todos uns velhacos, e soldados, quase todos uns 
patetas.
-- Ambrose Bierce