[geany/geany] 723f43: autotools: Avoid building non-shared versions of the object files

Colomban Wendling git-noreply at xxxxx
Fri Apr 17 13:11:00 UTC 2015


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Fri, 17 Apr 2015 13:11:00 UTC
Commit:      723f4302e0d7bbd938c789b9730366f7c7e03080
             https://github.com/geany/geany/commit/723f4302e0d7bbd938c789b9730366f7c7e03080

Log Message:
-----------
autotools: Avoid building non-shared versions of the object files

libtool apparently builds every object twice by default when shared and
static objects need to be build differently.  As we never use the
statically linked objects, avoid building them at all.


Modified Paths:
--------------
    configure.ac

Modified: configure.ac
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -24,7 +24,7 @@ fi
 AC_USE_SYSTEM_EXTENSIONS
 
 m4_ifdef([AM_PROG_AR],[AM_PROG_AR])
-LT_INIT
+LT_INIT([disable-static])
 AC_PROG_CC
 AC_PROG_CC_C99
 AM_PROG_CC_C_O



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list