LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Errror running ./configure on apollon (https://www.linuxquestions.org/questions/linux-software-2/errror-running-configure-on-apollon-166080/)

Toro 04-04-2004 11:13 AM

Errror running ./configure on apollon
 
Hi everybody,im newbie trying to find some software for my linux box, well looking for a good p2p i found this one, apollon, but whn i tried install the "all in one" package i get this error: so i read the 1 by 1 step process and i tried it too but i got the same error again.... so im very confused bout it, 'cos in the tutorial i found (//home.online.no/~osmoma/RedHat9-apt-get.html) it says that my Qt (i even know what Qt is or means!!! ) version is ok. so i'll be very gratefull is some of you guys could gime a light here. thanks in advance.


.
.
.
checking for libpng... -lpng -lz -lm
checking for libjpeg6b... no
checking for libjpeg... -ljpeg
checking for Qt... configure: error: Qt (>= Qt 3.1 (20021021)) (headers and libraries) not found. Please check your installation!
For more details about this problem, look at the end of config.log.
[root@localhost apollon-0.9.3]# kde-config --version Qt: 3.1.2
KDE: 3.1.4-4 Red Hat
kde-config: 1.0
[root@localhost apollon-0.9.3]#

hw-tph 04-04-2004 11:18 AM

You need to install the QT development packages for your distribution. They are probably called qt-devel-<version> or something to that effect.

Håkan

Toro 04-05-2004 08:59 AM

installing QT how?
 
Hi everybody, and thank you for your previous answers, now i'm trying to install QT, but there is a part in the INSTALL file i can't undestand is the next part:

-------------
In .profile (if your shell is bash, ksh, zsh or sh), add the
following lines:

QTDIR=/usr/local/qt
PATH=$QTDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

export QTDIR PATH MANPATH LD_LIBRARY_PATH

In .login (in case your shell is csh or tcsh), add the following lines:

setenv QTDIR /usr/local/qt
setenv PATH $QTDIR/bin:$PATH
setenv MANPATH $QTDIR/doc/man:$MANPATH
setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH

After you have done this, you will need to login again, or
re-source the profile before continuing, so that at least $QTDIR
and $PATH are set. Without these the installation will halt with an error
message.

-------------

how can i know what is my shell????,which file i must modify??? it's the same csh.login that .login??, well in the next csh.login i "tryied" to modify it but im not sure if it's right.......... anyway i wold like to know what i need to do to make it works, 'cos when i run "kde-config --version" it says 3.1.2 but i want the 3.3.3 (it's which im trying to intall!)

i'll thank you in advance for all the help you can give me... i'm newbie so pls explain it in the smplest way you can. thanks
_________________________________
# /etc/csh.login

# System wide environment and startup programs, for login setup

if ($?PATH) then

setenv PATH "${PATH}:/usr/X11R6/bin"
setenv QTDIR /usr/local/qt
setenv PATH $QTDIR/bin:$PATH
setenv MANPATH $QTDIR/doc/man:$MANPATH
setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH

else
setenv PATH "/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin"
endif

limit coredumpsize unlimited

setenv HOSTNAME `/bin/hostname`
set history=1000

if ( -f $HOME/.inputrc ) then
setenv INPUTRC /etc/inputrc
endif

if ( $?tcsh ) then
bindkey "^[[3~" delete-char
endif

_________________________________


___________________________________

# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

pathmunge () {
if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
fi
}

# Path manipulation
if [ `id -u` = 0 ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
fi

pathmunge /usr/X11R6/bin after

unset pathmunge

# No core files by default
ulimit -S -c 0 > /dev/null 2>&1

USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"

HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
INPUTRC=/etc/inputrc
fi

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC

for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
. $i
fi
done

unset i

___________________________________


All times are GMT -5. The time now is 03:11 AM.