I want to avoid compiling php with fileinfo, ereg, and parch. What is the difference between –disable and –without with configure?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to the manual of Autoconf, and, more specifically, the two following sections :
--withshould be used if a package requires, or can optionally use, other software that is already installed.And
--enableshould be used if a package provides some feature, without depending on any other external software.Basically, I suppose it means that
--withshould be used for extensions that depend on another external library ; and that--enableshould be used in the other situations.After that, I’d say that
--disableand--withoutare just the negative form of those two.