Overview
Comment: | Fall back to checking for eopenssl |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6215f6e9228f7edfdf24c48a4520aaac |
User & Date: | js on 2017-12-28 01:39:35 |
Other Links: | manifest | tags |
Context
2017-12-28
| ||
01:54 | Fixup for previous incomplete buildsys update check-in: c00698d91e user: js tags: trunk | |
01:39 | Fall back to checking for eopenssl check-in: 6215f6e922 user: js tags: trunk | |
01:04 | Update buildsys check-in: f19bee8289 user: js tags: trunk | |
Changes
Modified configure.ac from [6ce20f4d23] to [d462286b75].
︙ | ︙ | |||
39 40 41 42 43 44 45 | AC_SUBST(OBJOPENSSL_STATIC_LIB, "libobjopenssl.a") ]) PKG_CHECK_MODULES(openssl, [openssl >= 1.0.2], [ CPPFLAGS="$CPPFLAGS $openssl_CFLAGS" LIBS="$LIBS $openssl_LIBS" ], [ | > > > > | > | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | AC_SUBST(OBJOPENSSL_STATIC_LIB, "libobjopenssl.a") ]) PKG_CHECK_MODULES(openssl, [openssl >= 1.0.2], [ CPPFLAGS="$CPPFLAGS $openssl_CFLAGS" LIBS="$LIBS $openssl_LIBS" ], [ PKG_CHECK_MODULES(eopenssl, [eopenssl >= 1.0.2], [ CPPFLAGS="$CPPFLAGS $eopenssl_CFLAGS" LIBS="$LIBS $eopenssl_LIBS" ], [ AC_MSG_ERROR(You need openssl >= 1.0.2 installed!) ]) ]) AS_IF([test x"$GOBJC" = x"yes"], [ OBJCFLAGS="$OBJCFLAGS -Wwrite-strings -Wpointer-arith -Werror" ]) BUILDSYS_INIT |
︙ | ︙ |