how do you find out how a package was configured or compiled

Asked by DigiAngel

I won't to recompile squid with ssl. I would rather..."highjack" the existing package instead, so I just want to recompile from source exactly the same way, but with ssl. What's the configure line that was used?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu squid3 Edit question
Assignee:
No assignee Edit question
Solved by:
DigiAngel
Solved:
Last query:
Last reply:
Revision history for this message
Jacobsallan (jacobsallan) said :
#1

http://wiki.squid-cache.org/DeveloperResources . See the section "Required Build Tools".

Revision history for this message
DigiAngel (jlay) said :
#2

Ah...yes...this gives me the general overview, but how, specifically, is squid configured? What ./configure options were given? Thank you.

Revision history for this message
mycae (mycae) said :
#3

Checkout the package from the source repository. The exact build scripts are in the debian/rules file.

You can grab a copy for your system with

apt-get source NAMEOFPACKAGE

note that you must have a source repository enabled (use software-sources, or modify your sources.list to do this)

Revision history for this message
mycae (mycae) said :
#4
Revision history for this message
DigiAngel (jlay) said :
#5

Excellent...didn't know about the rules file..just what I needed. Thank you.