Problem With Makefiles, how do I install gandalf vision library?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Problem With Makefiles, how do I install gandalf vision library?
# 1  
Old 02-16-2005
Question Problem With Makefiles, how do I install gandalf vision library?

Hi,

I am trying to install Gandalf, a computer vision and numerical library (http://gandalf-library.sourceforge.net/). I am using Cygwin on a Windows machine and have tried everything to get this to build, but to no avail.

Gcc, make, and libtool are all included in my Cygwin install. I downloaded the Gandalf tar (gandalf-1.3.2.tar.gz) to /home/Justin/ and extracted it using "tar -xvpzf gandalf-1.3.2.tar.gz" to create the /home/Justin/gandalf/ directory with all the installation files.

following the directions in INSTALL:
cd gandalf
./configure
make

Unfortunately, when I run the last line ("make"), I get the following error:

$ make
for f in common linalg image vision; do (cd $f; make); done
make[1]: Entering directory `/home/Justin/gandalf/common'
libtool gcc -I../.. -g -O2 -Wall -c misc_defs.c -o misc_defs_rl.o
libtool: Couldn't find configure.ac nor configure.in file
make[1]: *** [misc_defs_rl.lo] Error 1
make[1]: Leaving directory `/home/Justin/gandalf/common'
make[1]: Entering directory `/home/Justin/gandalf/linalg'
libtool gcc -I../.. -g -O2 -Wall -c mat_gen.c -o mat_gen_rl.o
libtool: Couldn't find configure.ac nor configure.in file
make[1]: *** [mat_gen_rl.lo] Error 1
make[1]: Leaving directory `/home/Justin/gandalf/linalg'
make[1]: Entering directory `/home/Justin/gandalf/image'
libtool gcc -I../.. -g -O2 -Wall -c pixel.c -o pixel_rl.o
libtool: Couldn't find configure.ac nor configure.in file
make[1]: *** [pixel_rl.lo] Error 1
make[1]: Leaving directory `/home/Justin/gandalf/image'
make[1]: Entering directory `/home/Justin/gandalf/vision'
libtool gcc -I../.. -g -O2 -Wall -c camera.c -o camera_rl.o
libtool: Couldn't find configure.ac nor configure.in file
make[1]: *** [camera_rl.lo] Error 1
make[1]: Leaving directory `/home/Justin/gandalf/vision'
make: *** [gandalf] Error 2


It keeps complaining about not finding configure.ac/configure.in. However, these files are not in any of the subfolders - there are only Makefile and Makefile.in files. Is it possible that ./configure was supposed to create the configure.ac/configure.in files? Do I have to create these files manually? Might I have the wrong version of gcc/make/libtool?

Any idea what my problem might be?


Thanks,

Justin

Last edited by justinh; 02-16-2005 at 02:55 PM..
# 2  
Old 02-16-2005
You may have better look by posting your question on the Gandalf Forum:
http://sourceforge.net/forum/?group_id=39018

It looks fairly active. The last post in the "Help" section was on "2005-01-25 08:25"

HTH...James
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Makefiles

Hi All, I was going through some makefiles where I saw occurrences of explib_subdirs and expinc_subdirs, which I could not understand. Exporting libs to subdirs ? Exporting include files to specified subdirs ? When do we need to do that ? What I could understand is, for a build, I would... (4 Replies)
Discussion started by: alltaken
4 Replies

2. UNIX for Dummies Questions & Answers

Problem with install aquila dsp library from source.

Hi All, I am trying to install aquila-dsp. an open source c++ library from dsp functions in my ubuntu 12.10. I downloaded the aquila source. configured, make and did make install. It seems to be installed in /usr/lib/aquila. The compile fails in linking when I try using api provided by... (0 Replies)
Discussion started by: tamil.pamaran
0 Replies

3. UNIX for Dummies Questions & Answers

Install library in linux

Hello, I try to install a library (BLCR) on Ubuntu , i'd like to install it on two machines. This library has a respository named blcr-build , i have this rep in /home/user1 in machine1 and in /home/user2 in machine2. When can i store this repository of the library so i will have the same path... (1 Reply)
Discussion started by: chercheur857
1 Replies

4. Linux

./configure problem for libsf library due to apparently missing libdb library.

Hello, ./configure script fails to configure libsf. Please check the following last few lines of configure script error. checking for db1/db.h... no checking for db.h... yes checking for dbopen in -ldb1... no configure: error: No libdb? No libsf. But find command shows the following; ... (4 Replies)
Discussion started by: vectrum
4 Replies

5. Shell Programming and Scripting

How to unpack and install .tar.bz2 library ?

Hi, I am trying to unpack and install .tar.bz2 library. I was told to cd / and than tar -jxvf /source-of-library-file?...tar.bz2 to get files unpacked and installed into / Darius $ pwd / $ $ tar -jxvf /tmp/local/root/ncurses-dev-addon.tar.bz2 ncurses-dev-addon/... (3 Replies)
Discussion started by: jack2
3 Replies

6. UNIX for Advanced & Expert Users

GigE Vision driver for VxWorks

Hello, has anybody implemented a driver for the GigE camera interface standard GigE Vision for VxWorks or knows where to aquire it? I have contacted all GigE Vision camera vendors, but most of them only have support for Windows and Linux and nobody does for VxWorks. Best regards, Anna (1 Reply)
Discussion started by: iq128
1 Replies

7. UNIX for Advanced & Expert Users

makefiles

Solved........ (0 Replies)
Discussion started by: klam
0 Replies

8. UNIX for Dummies Questions & Answers

for do done loop -- my vision blurs

Someone check my code and tell me why there's no output? I've been coding for 10 hours and I can't tell. I've stripped every command, and broken it down to just an echo. for FILENAME in `cat ${TMP_PATH}fxsol_ls.txt` do echo $FILENAME done (6 Replies)
Discussion started by: yongho
6 Replies
Login or Register to Ask a Question