New issue 76 by stanisla...@gmail.com: ubuntu natty build
http://code.google.com/p/uguu/issues/detail?id=76
What steps will reproduce the problem?
1. pull the code
2. make (see os below)
What is the expected output? What do you see instead?
I receive linking errors:
$ cc `curl-config --libs` curlftpscan.o cfwk.o
ftpparse.o ../libuguu/libuguu.a -o curlftpscan
curlftpscan.o: In function `main':
curlftpscan.c:(.text+0x148): undefined reference to `curl_global_init'
But
$ cc curlftpscan.o cfwk.o ftpparse.o ../libuguu/libuguu.a -o
curlftpscan `curl-config --libs`
works fine
What version of the product are you using? On what operating system?
Ubuntu Natty 64-bit
Gcc: 4.5, 4.6
See also:
Similar problem: http://ubuntuforums.org/showthread.php?p=10452995
Thanks for the bugreport. How about --no-as-needed flag? In general I like
your solution, but I want to keep Makefiles the way they are.
I tried it, but i didn't manage to make it work.