| 10 | | What can I do to help? |
| | 10 | Got both to compile, and modified config files to load php into apache. |
| | 11 | |
| | 12 | sudo apachectl start gives me this: |
| | 13 | |
| | 14 | |
| | 15 | {{{ |
| | 16 | httpd: Syntax error on line 169 of /opt/local/apache24/conf/httpd.conf: |
| | 17 | Cannot load /opt/local/apache24/modules/mod_php54.so into server: |
| | 18 | dlopen(/opt/local/apache24/modules/mod_php54.so, 10): |
| | 19 | Symbol not found: _unixd_config\n |
| | 20 | Referenced from: /opt/local/apache24/modules/mod_php54.so\n |
| | 21 | Expected in: /opt/local/apache24/bin/httpd\n in /opt/local/apache24/modules/mod_php54.so |
| | 22 | |
| | 23 | }}} |
| | 24 | |
| | 25 | Ryan uses this code to set up the php port group: |
| | 26 | |
| | 27 | |
| | 28 | {{{ |
| | 29 | # Set up the php portgroup, for extension subports. |
| | 30 | if {[is_extension_subport]} { |
| | 31 | if {![info exists php.extensions]} { |
| | 32 | php.extensions ${php.rootname} |
| | 33 | } |
| | 34 | php.setup ${php.extensions} ${version} |
| | 35 | }}} |
| | 36 | |
| | 37 | While Bradley uses this code to set up the php portgroup: |
| | 38 | |
| | 39 | |
| | 40 | {{{ |
| | 41 | # Set up the php portgroup, for extension subports. |
| | 42 | if {[is_extension_subport]} { |
| | 43 | default php.extensions ${php.rootname} |
| | 44 | }}} |
| | 45 | |
| | 46 | It's over my head how this works and if it matters. |
| | 47 | |
| | 48 | You can do a diff on my portfile with Bradleys to see all changes. |
| | 49 | |
| | 50 | Anyone? |