1 2 3 4 5 |
make[2]: *** [exports.lo] 오류 1 make[2]: Leaving directory `/root/httpd-2.4.29/server' make[1]: *** [all-recursive] 오류 1 make[1]: Leaving directory `/root/httpd-2.4.29/server' make: *** [all-recursive] 오류 1 |
apahce 2.4 comfile make 작업시 에러가 발생
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
exports.c:1938: note: previous definition of 'ap_hack_apr_ctime' was here exports.c:2676: error: redefinition of 'ap_hack_apr_strftime' exports.c:1939: note: previous definition of 'ap_hack_apr_strftime' was here exports.c:2677: error: redefinition of 'ap_hack_apr_time_clock_hires' exports.c:1940: note: previous definition of 'ap_hack_apr_time_clock_hires' was here exports.c:2683: error: redefinition of 'ap_hack_apr_uid_current' exports.c:1954: note: previous definition of 'ap_hack_apr_uid_current' was here exports.c:2684: error: redefinition of 'ap_hack_apr_uid_name_get' exports.c:1955: note: previous definition of 'ap_hack_apr_uid_name_get' was here exports.c:2685: error: redefinition of 'ap_hack_apr_uid_get' exports.c:1956: note: previous definition of 'ap_hack_apr_uid_get' was here exports.c:2686: error: redefinition of 'ap_hack_apr_uid_homepath_get' exports.c:1957: note: previous definition of 'ap_hack_apr_uid_homepath_get' was here exports.c:2691: error: redefinition of 'ap_hack_apr_gid_name_get' exports.c:1962: note: previous definition of 'ap_hack_apr_gid_name_get' was here exports.c:2692: error: redefinition of 'ap_hack_apr_gid_get' exports.c:1963: note: previous definition of 'ap_hack_apr_gid_get' was here exports.c:2703: error: redefinition of 'ap_hack_apr_version' exports.c:1981: note: previous definition of 'ap_hack_apr_version' was here exports.c:2704: error: redefinition of 'ap_hack_apr_version_string' exports.c:1982: note: previous definition of 'ap_hack_apr_version_string' was here make[2]: *** [exports.lo] 오류 1 make[2]: Leaving directory `/root/httpd-2.4.29/server' make[1]: *** [all-recursive] 오류 1 make[1]: Leaving directory `/root/httpd-2.4.29/server' make: *** [all-recursive] 오류 1 |
해당 부분은 apr 버전이 기본으로 설치된 yum 버전이 낮아서 그렇다 별도 apr를 comfile을 진행하기 위해서 기본 설치된 버전을 삭제 후 진행하자
1 |
[root@localhost httpd-2.4.29]# yum remove apr |