Searched refs:apxs (Results 1 – 5 of 5) sorted by relevance
/curl/tests/http/testenv/ |
H A D | env.py | 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 [all …]
|
H A D | httpd.py | 83 assert env.apxs 84 p = subprocess.run(args=[env.apxs, '-q', 'libexecdir'], 466 p = subprocess.run([self.env.apxs, '-c', 'mod_curltest.c'],
|
/curl/tests/http/ |
H A D | config.ini.in | 29 apxs = @APXS@ key
|
H A D | CMakeLists.txt | 49 find_program(APXS "apxs")
|
/curl/ |
H A D | configure.ac | 345 AC_PATH_PROG([APXS], [apxs]) 356 AC_PATH_PROG([APXS], [apxs]) 362 AC_MSG_NOTICE([apxs not in PATH, http tests disabled]) 369 APXS="${request_httpd}/bin/apxs" 377 AC_MSG_NOTICE([apxs not found as ${APXS}, http tests disabled])
|
Completed in 14 milliseconds