Click to See Complete Forum and Search --> : Installing Quickstarter problem


satimis
10-31-2003, 09:47 AM
Hi folk,

RH9.0
=====

I encountered problem in installing oooqs-2.0.2 as follows;

untar oooqs-2.0.2.tar.gz
# cd /home/satimis/Download/Quickstart/oooqs-2.0.2
# ./configure
......
checking for X... configure: error: Can't find X includes. Please check your installation and add the correct paths!

# make
make: *** No targets specified and no makefile found. Stop.

I tried several times with the same result.

Kindly advise how to check which dependencies needed and which packages have to be installed to render that dependenices

Thanks in advance.

B.R.
satimis

mrBen
10-31-2003, 10:38 AM
You'll need some of the 'development' packages - look for anything to do with X with devel in the RPM name.

Also, you'll need some of the GNU C stuff - gcc, make, and stuff like that.

Should all be on your distro CDs

satimis
10-31-2003, 11:09 AM
Originally posted by mrBen
You'll need some of the 'development' packages - look for anything to do with X with devel in the RPM name.

Also, you'll need some of the GNU C stuff - gcc, make, and stuff like that.

Should all be on your distro CDs
Hi,

Thanks for your advice.

I have RH9 CDs in front of me but could not ascertain which packages are necessary. Tarball is not like RPM. For RPM packages with

rpm -ivh --test package

I can find out the dependencies and packages needed. It there a similar test for tarball.

Thanks

B.R.
satimis

mrBen
10-31-2003, 11:29 AM
Well, kinda. The ./configure in each tarball will test for all dependencies. In your case it has not found the X library headers, hence the suggestion that you install the -devel packages, which are quite often not installed by default.

./configure will go through and check that you have all the necessary dependencies, and will halt if you don't have them.

satimis
10-31-2003, 11:01 PM
Originally posted by mrBen
Well, kinda. The ./configure in each tarball will test for all dependencies. In your case it has not found the X library headers, hence the suggestion that you install the -devel packages, which are quite often not installed by default.

./configure will go through and check that you have all the necessary dependencies, and will halt if you don't have them.
Hi,

Thanks for your advice.

I have following packages installed;

fontconfig-devel-2.1-9.i386.rpm
pcre-devel-3.9-10.i386.rpm
freetype-devel-2.1.3-6.i386.rpm
qt-devel-3.1.1-6.i386.rpm
kdelibs-devel-3.1-10.i386.rpm
XFree86-devel-4.3.0-2.i386.rpm

# ./configure
configure: WARNING: libjpeg not found.
disable JPEG support.
checking for Qt... configure: error: Qt (>=
Qt 3.0) (headers and libraries) not found.
Please check your installation!
For more details about this problem, look
at the end of config.log.

Hereinunder is end of cat
./Download/Quickstarter/oooqs-2.0.2/./config.log

xdg_appsdir=''
xdg_directorydir=''

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

#define HAVE_CRYPT 1
#define HAVE_DLFCN_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIBPTHREAD 1
#define HAVE_LIBZ 1
#define HAVE_MEMORY_H 1
#define HAVE_RES_INIT 1
#define HAVE_RES_INIT 1
#define HAVE_SNPRINTF 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VSNPRINTF 1
#define KDELIBSUFF ""
#define PACKAGE "oooqs"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define SIZEOF_CHAR_P 4
#define SIZEOF_INT 4
#define SIZEOF_LONG 4
#define SIZEOF_SIZE_T 4
#define SIZEOF_UNSIGNED_LONG 4
#define STDC_HEADERS 1
#define VERSION "2.0.2"
#define ksize_t socklen_t
#endif
#ifdef __cplusplus
#include <stdlib.h>

configure: exit 1

Is it the error coming from "confdefs.h."?
How to get it rectified.

Thanks

B.R.
satimis