Library installation Help!

So i bought an Arduino datalogger Shield from Adafruit. this one:

On their learn page they have a few libraries for you to use, after installing all the libraries i keep getting an error message that: " 'SPI' was not declared in this scope". this is really confusing, the shield SD card uses SPI communication to send the data to my SD card, in the code i included the SPI library by doing #include <SPI.h> . i dont get why it is asking me to declare it again? here are the links to all the libraries i am using if you want to check it out:

https://github.com/adafruit/Light-and-Temp-logger/blob/master/lighttemplogger.pde

Adafruit says i should be able to plug and play as soon as the libraries are installed but this error is the only thing stopping me. Thanks for the help!

here are the links to all the libraries i am using

Those "links" are not posted correctly, so they don't work.

What version of the IDE are you using? Which Arduino?

i keep getting an error message that: " 'SPI' was not declared in this scope"

The message says a LOT more than that, including some critical information.

im using IDE 1.0.5 on an Arduino Uno. i figured out the mistake. it turns out i had another file in my libraries containing the same .h file. apparently it doesnt like multiple files with the same name. once i deleted the extra file, everything ran smoothly. Thanks anyways.