Changeset 209611 in webkit
- Timestamp:
- Dec 9, 2016, 9:57:39 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r209610 r209611 1 2016-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> 2 3 Fedora also needs a PHP7 config file alternative 4 https://bugs.webkit.org/show_bug.cgi?id=165606 5 6 Reviewed by Michael Catanzaro. 7 8 * http/conf/fedora-httpd-2.4-php7.conf: Added. 9 1 10 2016-12-09 Ryosuke Niwa <rniwa@webkit.org> 2 11 -
trunk/Tools/ChangeLog
r209609 r209611 1 2016-12-09 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> 2 3 Fedora also needs a PHP7 config file alternative 4 https://bugs.webkit.org/show_bug.cgi?id=165606 5 6 Reviewed by Michael Catanzaro. 7 8 * Scripts/webkitpy/port/base.py: 9 (Port._is_fedora_php_version_7): check for the php7 library. 10 (Port._fedora_php_version): get the appropriate filename for Fedora. 11 (Port._apache_config_file_name_for_platform): 12 1 13 2016-12-09 Ryan Haddad <ryanhaddad@apple.com> 2 14 -
trunk/Tools/Scripts/webkitpy/port/base.py
r206934 r209611 1155 1155 return None 1156 1156 1157 def _is_fedora_php_version_7(self): 1158 if self._filesystem.exists("/etc/httpd/modules/libphp7.so"): 1159 return True 1160 return False 1161 1157 1162 def _is_debian_php_version_7(self): 1158 1163 if self._filesystem.exists("/usr/lib/apache2/modules/libphp7.0.so"): … … 1176 1181 def _debian_php_version(self): 1177 1182 if self._is_debian_php_version_7(): 1183 return "-php7" 1184 return "" 1185 1186 def _fedora_php_version(self): 1187 if self._is_fedora_php_version_7(): 1178 1188 return "-php7" 1179 1189 return "" … … 1185 1195 if sys_platform.startswith('linux'): 1186 1196 if self._is_redhat_based(): 1187 return 'fedora-httpd-' + self._apache_version() + '.conf'1197 return 'fedora-httpd-' + self._apache_version() + self._fedora_php_version() + '.conf' 1188 1198 if self._is_debian_based(): 1189 1199 return 'debian-httpd-' + self._apache_version() + self._debian_php_version() + '.conf'
Note:
See TracChangeset
for help on using the changeset viewer.