Error when building Apache 2.4.25 from source with open ssl 1.1.0cSolaris 10 openssl version 1.0.1k but...

How to prevent bad sectors?

Do creatures all have the same statistics upon being reanimated via the Animate Dead spell?

Self-Preservation: How to DM NPCs that Love Living?

Is it possible to kill all life on Earth?

Can a rogue effectively triple their speed by combining Dash and Ready?

What was this black-and-white film set in the Arctic or Antarctic where the monster/alien gets fried in the end?

Can an old DSLR be upgraded to match modern smartphone image quality

Is there a rule that prohibits us from using 2 possessives in a row?

How crucial is a waifu game storyline?

How can I offer a test ride while selling a bike?

How to properly maintain eye contact with people that have distinctive facial features?

How to capture more stars?

Strange math syntax in old basic listing

chmod would set file permission to 000 no matter what permission i try to set

Tic-Tac-Toe for the terminal

Why were the Night's Watch required to be celibate?

Term for checking piece whose opponent daren't capture it

What does "tea juice" mean in this context?

If Sweden was to magically float away, at what altitude would it be visible from the southern hemisphere?

What is the difference between nullifying your vote and not going to vote at all?

The qvolume of an integer

Expenditure in Poland - Forex doesn't have Zloty

Why the lack of hesitance to wear pads on the sabbath?

Preserving culinary oils



Error when building Apache 2.4.25 from source with open ssl 1.1.0c


Solaris 10 openssl version 1.0.1k but apache httpd not compiling,showing version too old-0.9.8aBuilding PHP from source for use in ApacheConsidering Group and User to Install Apache httpd with different Directory - CentOS 6.6Trying to figure out how to install Apache for linuxApache 2.4 SSL Config - Server rejects requests with HTTP 400SSL Handshake Error with several Apache Serverspcre-config error on building Apr-util 1.6.xBuilding Apache 2.2 from source on CentOSbuilding glibc 2.16 from source throws errorHow can install mod_evasive or mod_security with httpd24






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







1















I have built Apache 2.4.25 with OpenSSL 1.0.2 successfully.



But Because of some security holes we found in our Internal tests,
I have been asked to patch Openssl with the latest version.
So I am trying to build Apache httpd 2.4.25 with OpenSSL 1.1.0c (or) 1.1.0d



My Environments



lsb_release -a
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 5.11 (Tikanga)
Release: 5.11
Codename: Tikanga

Perl: 5.24
PCRE: 8.38
APR: 1.5.2
APR-util: 1.5.4
OpenSSL: 1.1.0c / 1.1.0d


All the above Apache dependencies have been successfully built and installed



Apache 2.4.25 - Installation steps



cd /my/softwares
tar -xvf httpd-2.4.25.tar -C /my/build/

cd /my/build/httpd-2.4.25/

./configure --prefix=/my/apache-httpd-2.4.25
--with-pcre=/my/dependencies/pcre-8.38/
--with-apr=/my/dependencies/apr-1.5.2
--with-apr-util=/my/dependencies/apr-util-1.5.4
--enable-ssl
--with-ssl=/usr/local/ssl-1.1.0c
--enable-ssl-staticlib-deps
--enable-mods-static=ssl

make // see below errors
make install


I am getting the below error when building Apache from source with open ssl.
Please help me in the right directions.



ssl_engine_init.c: In function 'make_dh_params':
ssl_engine_init.c:61: error: dereferencing pointer to incomplete type
ssl_engine_init.c:62: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c: In function 'ssl_init_ctx_protocol':
ssl_engine_init.c:519: warning: 'TLSv1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1598)
ssl_engine_init.c:520: warning: 'TLSv1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1597)
ssl_engine_init.c:525: warning: 'TLSv1_1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1604)
ssl_engine_init.c:526: warning: 'TLSv1_1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1603)
ssl_engine_init.c:530: warning: 'TLSv1_2_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1610)
ssl_engine_init.c:531: warning: 'TLSv1_2_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1609)
ssl_engine_init.c: In function 'ssl_init_ctx_session_cache':
ssl_engine_init.c:641: warning: passing argument 2 of 'SSL_CTX_sess_set_get_cb' from incompatible pointer type
ssl_engine_init.c: In function 'use_certificate_chain':
ssl_engine_init.c:861: warning: implicit declaration of function 'BIO_s_file_internal'
ssl_engine_init.c:861: warning: passing argument 1 of 'BIO_new' makes pointer from integer without a cast
ssl_engine_init.c: In function 'ssl_init_server_certs':
ssl_engine_init.c:1201: error: dereferencing pointer to incomplete type
make[3]: *** [ssl_engine_init.lo] Error 1
make[3]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/my/build/httpd-2.4.25/modules'
make: *** [all-recursive] Error 1









share|improve this question
















bumped to the homepage by Community 53 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • " building Apache from binaries " does not sound right. How do you build binaries from binaries? You build binaries from source

    – Bruno9779
    Feb 15 '17 at 13:57











  • @Bruno9779 - My mistake, wish I could correct the question.

    – user292049
    Feb 15 '17 at 14:11











  • NP, I will edit it

    – Bruno9779
    Feb 15 '17 at 14:12


















1















I have built Apache 2.4.25 with OpenSSL 1.0.2 successfully.



But Because of some security holes we found in our Internal tests,
I have been asked to patch Openssl with the latest version.
So I am trying to build Apache httpd 2.4.25 with OpenSSL 1.1.0c (or) 1.1.0d



My Environments



lsb_release -a
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 5.11 (Tikanga)
Release: 5.11
Codename: Tikanga

Perl: 5.24
PCRE: 8.38
APR: 1.5.2
APR-util: 1.5.4
OpenSSL: 1.1.0c / 1.1.0d


All the above Apache dependencies have been successfully built and installed



Apache 2.4.25 - Installation steps



cd /my/softwares
tar -xvf httpd-2.4.25.tar -C /my/build/

cd /my/build/httpd-2.4.25/

./configure --prefix=/my/apache-httpd-2.4.25
--with-pcre=/my/dependencies/pcre-8.38/
--with-apr=/my/dependencies/apr-1.5.2
--with-apr-util=/my/dependencies/apr-util-1.5.4
--enable-ssl
--with-ssl=/usr/local/ssl-1.1.0c
--enable-ssl-staticlib-deps
--enable-mods-static=ssl

make // see below errors
make install


I am getting the below error when building Apache from source with open ssl.
Please help me in the right directions.



ssl_engine_init.c: In function 'make_dh_params':
ssl_engine_init.c:61: error: dereferencing pointer to incomplete type
ssl_engine_init.c:62: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c: In function 'ssl_init_ctx_protocol':
ssl_engine_init.c:519: warning: 'TLSv1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1598)
ssl_engine_init.c:520: warning: 'TLSv1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1597)
ssl_engine_init.c:525: warning: 'TLSv1_1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1604)
ssl_engine_init.c:526: warning: 'TLSv1_1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1603)
ssl_engine_init.c:530: warning: 'TLSv1_2_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1610)
ssl_engine_init.c:531: warning: 'TLSv1_2_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1609)
ssl_engine_init.c: In function 'ssl_init_ctx_session_cache':
ssl_engine_init.c:641: warning: passing argument 2 of 'SSL_CTX_sess_set_get_cb' from incompatible pointer type
ssl_engine_init.c: In function 'use_certificate_chain':
ssl_engine_init.c:861: warning: implicit declaration of function 'BIO_s_file_internal'
ssl_engine_init.c:861: warning: passing argument 1 of 'BIO_new' makes pointer from integer without a cast
ssl_engine_init.c: In function 'ssl_init_server_certs':
ssl_engine_init.c:1201: error: dereferencing pointer to incomplete type
make[3]: *** [ssl_engine_init.lo] Error 1
make[3]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/my/build/httpd-2.4.25/modules'
make: *** [all-recursive] Error 1









share|improve this question
















bumped to the homepage by Community 53 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • " building Apache from binaries " does not sound right. How do you build binaries from binaries? You build binaries from source

    – Bruno9779
    Feb 15 '17 at 13:57











  • @Bruno9779 - My mistake, wish I could correct the question.

    – user292049
    Feb 15 '17 at 14:11











  • NP, I will edit it

    – Bruno9779
    Feb 15 '17 at 14:12














1












1








1








I have built Apache 2.4.25 with OpenSSL 1.0.2 successfully.



But Because of some security holes we found in our Internal tests,
I have been asked to patch Openssl with the latest version.
So I am trying to build Apache httpd 2.4.25 with OpenSSL 1.1.0c (or) 1.1.0d



My Environments



lsb_release -a
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 5.11 (Tikanga)
Release: 5.11
Codename: Tikanga

Perl: 5.24
PCRE: 8.38
APR: 1.5.2
APR-util: 1.5.4
OpenSSL: 1.1.0c / 1.1.0d


All the above Apache dependencies have been successfully built and installed



Apache 2.4.25 - Installation steps



cd /my/softwares
tar -xvf httpd-2.4.25.tar -C /my/build/

cd /my/build/httpd-2.4.25/

./configure --prefix=/my/apache-httpd-2.4.25
--with-pcre=/my/dependencies/pcre-8.38/
--with-apr=/my/dependencies/apr-1.5.2
--with-apr-util=/my/dependencies/apr-util-1.5.4
--enable-ssl
--with-ssl=/usr/local/ssl-1.1.0c
--enable-ssl-staticlib-deps
--enable-mods-static=ssl

make // see below errors
make install


I am getting the below error when building Apache from source with open ssl.
Please help me in the right directions.



ssl_engine_init.c: In function 'make_dh_params':
ssl_engine_init.c:61: error: dereferencing pointer to incomplete type
ssl_engine_init.c:62: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c: In function 'ssl_init_ctx_protocol':
ssl_engine_init.c:519: warning: 'TLSv1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1598)
ssl_engine_init.c:520: warning: 'TLSv1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1597)
ssl_engine_init.c:525: warning: 'TLSv1_1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1604)
ssl_engine_init.c:526: warning: 'TLSv1_1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1603)
ssl_engine_init.c:530: warning: 'TLSv1_2_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1610)
ssl_engine_init.c:531: warning: 'TLSv1_2_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1609)
ssl_engine_init.c: In function 'ssl_init_ctx_session_cache':
ssl_engine_init.c:641: warning: passing argument 2 of 'SSL_CTX_sess_set_get_cb' from incompatible pointer type
ssl_engine_init.c: In function 'use_certificate_chain':
ssl_engine_init.c:861: warning: implicit declaration of function 'BIO_s_file_internal'
ssl_engine_init.c:861: warning: passing argument 1 of 'BIO_new' makes pointer from integer without a cast
ssl_engine_init.c: In function 'ssl_init_server_certs':
ssl_engine_init.c:1201: error: dereferencing pointer to incomplete type
make[3]: *** [ssl_engine_init.lo] Error 1
make[3]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/my/build/httpd-2.4.25/modules'
make: *** [all-recursive] Error 1









share|improve this question
















I have built Apache 2.4.25 with OpenSSL 1.0.2 successfully.



But Because of some security holes we found in our Internal tests,
I have been asked to patch Openssl with the latest version.
So I am trying to build Apache httpd 2.4.25 with OpenSSL 1.1.0c (or) 1.1.0d



My Environments



lsb_release -a
Distributor ID: RedHatEnterpriseServer
Description: Red Hat Enterprise Linux Server release 5.11 (Tikanga)
Release: 5.11
Codename: Tikanga

Perl: 5.24
PCRE: 8.38
APR: 1.5.2
APR-util: 1.5.4
OpenSSL: 1.1.0c / 1.1.0d


All the above Apache dependencies have been successfully built and installed



Apache 2.4.25 - Installation steps



cd /my/softwares
tar -xvf httpd-2.4.25.tar -C /my/build/

cd /my/build/httpd-2.4.25/

./configure --prefix=/my/apache-httpd-2.4.25
--with-pcre=/my/dependencies/pcre-8.38/
--with-apr=/my/dependencies/apr-1.5.2
--with-apr-util=/my/dependencies/apr-util-1.5.4
--enable-ssl
--with-ssl=/usr/local/ssl-1.1.0c
--enable-ssl-staticlib-deps
--enable-mods-static=ssl

make // see below errors
make install


I am getting the below error when building Apache from source with open ssl.
Please help me in the right directions.



ssl_engine_init.c: In function 'make_dh_params':
ssl_engine_init.c:61: error: dereferencing pointer to incomplete type
ssl_engine_init.c:62: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c:63: error: dereferencing pointer to incomplete type
ssl_engine_init.c: In function 'ssl_init_ctx_protocol':
ssl_engine_init.c:519: warning: 'TLSv1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1598)
ssl_engine_init.c:520: warning: 'TLSv1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1597)
ssl_engine_init.c:525: warning: 'TLSv1_1_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1604)
ssl_engine_init.c:526: warning: 'TLSv1_1_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1603)
ssl_engine_init.c:530: warning: 'TLSv1_2_client_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1610)
ssl_engine_init.c:531: warning: 'TLSv1_2_server_method' is deprecated (declared at /usr/local/ssl-1.1.0c/include/openssl/ssl.h:1609)
ssl_engine_init.c: In function 'ssl_init_ctx_session_cache':
ssl_engine_init.c:641: warning: passing argument 2 of 'SSL_CTX_sess_set_get_cb' from incompatible pointer type
ssl_engine_init.c: In function 'use_certificate_chain':
ssl_engine_init.c:861: warning: implicit declaration of function 'BIO_s_file_internal'
ssl_engine_init.c:861: warning: passing argument 1 of 'BIO_new' makes pointer from integer without a cast
ssl_engine_init.c: In function 'ssl_init_server_certs':
ssl_engine_init.c:1201: error: dereferencing pointer to incomplete type
make[3]: *** [ssl_engine_init.lo] Error 1
make[3]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/my/build/httpd-2.4.25/modules/ssl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/my/build/httpd-2.4.25/modules'
make: *** [all-recursive] Error 1






rhel apache-httpd openssl






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 15 '17 at 14:42







user292049

















asked Feb 15 '17 at 13:20









user292049user292049

1063




1063





bumped to the homepage by Community 53 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 53 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • " building Apache from binaries " does not sound right. How do you build binaries from binaries? You build binaries from source

    – Bruno9779
    Feb 15 '17 at 13:57











  • @Bruno9779 - My mistake, wish I could correct the question.

    – user292049
    Feb 15 '17 at 14:11











  • NP, I will edit it

    – Bruno9779
    Feb 15 '17 at 14:12



















  • " building Apache from binaries " does not sound right. How do you build binaries from binaries? You build binaries from source

    – Bruno9779
    Feb 15 '17 at 13:57











  • @Bruno9779 - My mistake, wish I could correct the question.

    – user292049
    Feb 15 '17 at 14:11











  • NP, I will edit it

    – Bruno9779
    Feb 15 '17 at 14:12

















" building Apache from binaries " does not sound right. How do you build binaries from binaries? You build binaries from source

– Bruno9779
Feb 15 '17 at 13:57





" building Apache from binaries " does not sound right. How do you build binaries from binaries? You build binaries from source

– Bruno9779
Feb 15 '17 at 13:57













@Bruno9779 - My mistake, wish I could correct the question.

– user292049
Feb 15 '17 at 14:11





@Bruno9779 - My mistake, wish I could correct the question.

– user292049
Feb 15 '17 at 14:11













NP, I will edit it

– Bruno9779
Feb 15 '17 at 14:12





NP, I will edit it

– Bruno9779
Feb 15 '17 at 14:12










2 Answers
2






active

oldest

votes


















0














Why do you need to build Apache with statically linked ssl libraries?
It is a fairly bad idea in my opinion.
With dynamically linked libraries, you can just upgrade ssl when needed.
With static ones you will need to recompile apache every time ssl gets patched






share|improve this answer
























  • I wasn't aware of them - Will remove them from my configure command.

    – user292049
    Feb 15 '17 at 14:18











  • --enable-ssl is fine, but you should be able to skip "--with-ssl=/usr/local/ssl-1.1.0c " safely

    – Bruno9779
    Feb 15 '17 at 14:23











  • I used the below command to re-build again.. /configure --prefix=/my/apache-httpd-2.4.25 --with-pcre=/my/dependencies/pcre-8.38/ --with-apr=/my/dependencies/apr-1.5.2 --with-apr-util=/my/dependencies/apr-util-1.5.4 --enable-ssl --with-ssl=/usr/local/ssl-1.1.0c But still getting error as mentioned in the post.

    – user292049
    Feb 15 '17 at 14:29





















0














From one of the online users comments



"As of now, with the latest version Apache HTTPD 2.4.25, the 2.4 branch is not yet compatible with Openssl 1.1.x, So have to stick with the latest 1.0.2x and stay up to date on security issues."



"There is no official statement, since OpenSSL 1.1.x became stable pratically "yesterday" there haven't been time and time to adapt 2.4 branch to it, all of this you can read about mainly in the dev and user httpd mailing list"






share|improve this answer


























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "106"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f345198%2ferror-when-building-apache-2-4-25-from-source-with-open-ssl-1-1-0c%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Why do you need to build Apache with statically linked ssl libraries?
    It is a fairly bad idea in my opinion.
    With dynamically linked libraries, you can just upgrade ssl when needed.
    With static ones you will need to recompile apache every time ssl gets patched






    share|improve this answer
























    • I wasn't aware of them - Will remove them from my configure command.

      – user292049
      Feb 15 '17 at 14:18











    • --enable-ssl is fine, but you should be able to skip "--with-ssl=/usr/local/ssl-1.1.0c " safely

      – Bruno9779
      Feb 15 '17 at 14:23











    • I used the below command to re-build again.. /configure --prefix=/my/apache-httpd-2.4.25 --with-pcre=/my/dependencies/pcre-8.38/ --with-apr=/my/dependencies/apr-1.5.2 --with-apr-util=/my/dependencies/apr-util-1.5.4 --enable-ssl --with-ssl=/usr/local/ssl-1.1.0c But still getting error as mentioned in the post.

      – user292049
      Feb 15 '17 at 14:29


















    0














    Why do you need to build Apache with statically linked ssl libraries?
    It is a fairly bad idea in my opinion.
    With dynamically linked libraries, you can just upgrade ssl when needed.
    With static ones you will need to recompile apache every time ssl gets patched






    share|improve this answer
























    • I wasn't aware of them - Will remove them from my configure command.

      – user292049
      Feb 15 '17 at 14:18











    • --enable-ssl is fine, but you should be able to skip "--with-ssl=/usr/local/ssl-1.1.0c " safely

      – Bruno9779
      Feb 15 '17 at 14:23











    • I used the below command to re-build again.. /configure --prefix=/my/apache-httpd-2.4.25 --with-pcre=/my/dependencies/pcre-8.38/ --with-apr=/my/dependencies/apr-1.5.2 --with-apr-util=/my/dependencies/apr-util-1.5.4 --enable-ssl --with-ssl=/usr/local/ssl-1.1.0c But still getting error as mentioned in the post.

      – user292049
      Feb 15 '17 at 14:29
















    0












    0








    0







    Why do you need to build Apache with statically linked ssl libraries?
    It is a fairly bad idea in my opinion.
    With dynamically linked libraries, you can just upgrade ssl when needed.
    With static ones you will need to recompile apache every time ssl gets patched






    share|improve this answer













    Why do you need to build Apache with statically linked ssl libraries?
    It is a fairly bad idea in my opinion.
    With dynamically linked libraries, you can just upgrade ssl when needed.
    With static ones you will need to recompile apache every time ssl gets patched







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Feb 15 '17 at 14:12









    Bruno9779Bruno9779

    1,138515




    1,138515













    • I wasn't aware of them - Will remove them from my configure command.

      – user292049
      Feb 15 '17 at 14:18











    • --enable-ssl is fine, but you should be able to skip "--with-ssl=/usr/local/ssl-1.1.0c " safely

      – Bruno9779
      Feb 15 '17 at 14:23











    • I used the below command to re-build again.. /configure --prefix=/my/apache-httpd-2.4.25 --with-pcre=/my/dependencies/pcre-8.38/ --with-apr=/my/dependencies/apr-1.5.2 --with-apr-util=/my/dependencies/apr-util-1.5.4 --enable-ssl --with-ssl=/usr/local/ssl-1.1.0c But still getting error as mentioned in the post.

      – user292049
      Feb 15 '17 at 14:29





















    • I wasn't aware of them - Will remove them from my configure command.

      – user292049
      Feb 15 '17 at 14:18











    • --enable-ssl is fine, but you should be able to skip "--with-ssl=/usr/local/ssl-1.1.0c " safely

      – Bruno9779
      Feb 15 '17 at 14:23











    • I used the below command to re-build again.. /configure --prefix=/my/apache-httpd-2.4.25 --with-pcre=/my/dependencies/pcre-8.38/ --with-apr=/my/dependencies/apr-1.5.2 --with-apr-util=/my/dependencies/apr-util-1.5.4 --enable-ssl --with-ssl=/usr/local/ssl-1.1.0c But still getting error as mentioned in the post.

      – user292049
      Feb 15 '17 at 14:29



















    I wasn't aware of them - Will remove them from my configure command.

    – user292049
    Feb 15 '17 at 14:18





    I wasn't aware of them - Will remove them from my configure command.

    – user292049
    Feb 15 '17 at 14:18













    --enable-ssl is fine, but you should be able to skip "--with-ssl=/usr/local/ssl-1.1.0c " safely

    – Bruno9779
    Feb 15 '17 at 14:23





    --enable-ssl is fine, but you should be able to skip "--with-ssl=/usr/local/ssl-1.1.0c " safely

    – Bruno9779
    Feb 15 '17 at 14:23













    I used the below command to re-build again.. /configure --prefix=/my/apache-httpd-2.4.25 --with-pcre=/my/dependencies/pcre-8.38/ --with-apr=/my/dependencies/apr-1.5.2 --with-apr-util=/my/dependencies/apr-util-1.5.4 --enable-ssl --with-ssl=/usr/local/ssl-1.1.0c But still getting error as mentioned in the post.

    – user292049
    Feb 15 '17 at 14:29







    I used the below command to re-build again.. /configure --prefix=/my/apache-httpd-2.4.25 --with-pcre=/my/dependencies/pcre-8.38/ --with-apr=/my/dependencies/apr-1.5.2 --with-apr-util=/my/dependencies/apr-util-1.5.4 --enable-ssl --with-ssl=/usr/local/ssl-1.1.0c But still getting error as mentioned in the post.

    – user292049
    Feb 15 '17 at 14:29















    0














    From one of the online users comments



    "As of now, with the latest version Apache HTTPD 2.4.25, the 2.4 branch is not yet compatible with Openssl 1.1.x, So have to stick with the latest 1.0.2x and stay up to date on security issues."



    "There is no official statement, since OpenSSL 1.1.x became stable pratically "yesterday" there haven't been time and time to adapt 2.4 branch to it, all of this you can read about mainly in the dev and user httpd mailing list"






    share|improve this answer






























      0














      From one of the online users comments



      "As of now, with the latest version Apache HTTPD 2.4.25, the 2.4 branch is not yet compatible with Openssl 1.1.x, So have to stick with the latest 1.0.2x and stay up to date on security issues."



      "There is no official statement, since OpenSSL 1.1.x became stable pratically "yesterday" there haven't been time and time to adapt 2.4 branch to it, all of this you can read about mainly in the dev and user httpd mailing list"






      share|improve this answer




























        0












        0








        0







        From one of the online users comments



        "As of now, with the latest version Apache HTTPD 2.4.25, the 2.4 branch is not yet compatible with Openssl 1.1.x, So have to stick with the latest 1.0.2x and stay up to date on security issues."



        "There is no official statement, since OpenSSL 1.1.x became stable pratically "yesterday" there haven't been time and time to adapt 2.4 branch to it, all of this you can read about mainly in the dev and user httpd mailing list"






        share|improve this answer















        From one of the online users comments



        "As of now, with the latest version Apache HTTPD 2.4.25, the 2.4 branch is not yet compatible with Openssl 1.1.x, So have to stick with the latest 1.0.2x and stay up to date on security issues."



        "There is no official statement, since OpenSSL 1.1.x became stable pratically "yesterday" there haven't been time and time to adapt 2.4 branch to it, all of this you can read about mainly in the dev and user httpd mailing list"







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Feb 15 '17 at 18:29

























        answered Feb 15 '17 at 18:24









        user292049user292049

        1063




        1063






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Unix & Linux Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f345198%2ferror-when-building-apache-2-4-25-from-source-with-open-ssl-1-1-0c%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

            Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

            Ciclooctatetraenă Vezi și | Bibliografie | Meniu de navigare637866text4148569-500570979m