Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

what does run the script "./configure" mean? How do I run a script? I know nothing.

OpenStudy (rsmith6559):

First, that looks like a Unix command, so if this isn't a Linux machine, forget about it. ./ means this directory, so ./configure means run the program configure in this directory. Probably, there was a cd (Change Directory) command before this one.

OpenStudy (e.mccormick):

In general, the configuration script sets up for compiling code by going through packages and checking for dependencies while at the same time allowing you to turn on and off options or change settings. Just as a random example, this might be something like: ./configure use_ssl=true min_css_version=2 That might be used to prepare to compile some web related program that had secure sockets (ssl) as an option and allowed for different levels of Cascading Style Sheets. Exactly what options a configuration script allows will be different for every program. In fact, some have NO options and only check for dependencies.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!