Looks like you need to install libcurl-dev. Offhand, I'm not sure of the exact package names on Ubuntu. Your best bet would be to take a look for them in the software centre or to try opening a terminal and run the command apt-cache search --names-only libcurl | grep -i dev
- That should list some packages. Once you've identified the appropriate package for libcurl-dev, use sudo apt-get install xxxxx
where xxxxx is the name of the package you need to download/install.
After installing libcurl-dev and running configure again, you might get similar errors about other missing libraries/dependencies. If this happens you'll need to download/install more dependencies as per the above instructions.
Once you have all of the dependencies installed the configure step will eventually succeed and you should be able to move-on to actually compile/build the program!