Created
August 3, 2014 07:48
-
-
Save indivisible/b98a923b74f4f21e3165 to your computer and use it in GitHub Desktop.
fix for the gnutls package in lachs0r's mingw build system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/packages/gnutls.cmake b/packages/gnutls.cmake | |
| index 35788ec..43b014e 100644 | |
| --- a/packages/gnutls.cmake | |
| +++ b/packages/gnutls.cmake | |
| @@ -15,7 +15,9 @@ ExternalProject_Add(gnutls | |
| --without-p11-kit | |
| --with-included-libtasn1 | |
| --enable-threads=win32 | |
| + --enable-local-libopts | |
| BUILD_COMMAND ${MAKE} | |
| + BUILD_IN_SOURCE 1 | |
| INSTALL_COMMAND ${MAKE} install | |
| LOG_DOWNLOAD 1 LOG_UPDATE 1 LOG_CONFIGURE 1 LOG_BUILD 1 LOG_INSTALL 1 | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This fix actually help me build gnutls,
but only the
--enable-local-liboptspart.Building on ubuntu 14.04.