Therefore, I suggest saving the configure script's output to a text file, using the utility tee. As the man page for this utility states:
tee - read from standard input and write to standard output and files
One may test out tee by running the following from the prompt:
# ls | tee directory_listing.txt
One will not only see the contents of the directory on the screen but it will also be stored in the file, directory_listing.txt.
For each configure script detailed in this document, it is usually best to pipe tee configure_output.txt, and after the configure script is finished, to double check the file configure_output.txt to verify that everything went through okay. I have used this method throughout the configuration examples that are listed.