Lines Matching refs:apxs
130 self.apxs = self.config['httpd']['apxs']
131 if len(self.apxs) == 0:
132 self.apxs = None
226 if self._httpd_version is None and self.apxs is not None:
228 p = subprocess.run(args=[self.apxs, '-q', 'HTTPD_VERSION'],
257 self.apxs is not None and \
258 os.path.isfile(self.apxs)
267 if self.apxs is None:
269 if not os.path.isfile(self.apxs):
578 def apxs(self) -> str: member in Env
579 return self.CONFIG.apxs