Overview
Comment: | Updated to latest autoconf headers |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b61a769f0b98bc742ac0b9ace8200acc |
User & Date: | rkeene on 2015-02-02 16:27:12 |
Other Links: | manifest | tags |
Context
2016-01-25
| ||
18:09 | Updated to respect --prefix check-in: 4395e6083a user: rkeene tags: trunk | |
2015-02-02
| ||
16:27 | Updated to latest autoconf headers check-in: b61a769f0b user: rkeene tags: trunk | |
16:26 | Added more search paths for libcurl check-in: ecb174b881 user: rkeene tags: trunk | |
Changes
Modified aclocal/shobj.m4 from [455eb6a4ce] to [9a0374cc5c].
︙ | ︙ | |||
165 166 167 168 169 170 171 | CFLAGS="$CFLAGS -mms-bitfields" CPPFLAGS="$CPPFLAGS -mms-bitfields" SHOBJLDFLAGS='-shared -Wl,--enable-auto-image-base -Wl,--output-def,$[@].def,--out-implib,$[@].a' ;; esac fi ]) | > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | CFLAGS="$CFLAGS -mms-bitfields" CPPFLAGS="$CPPFLAGS -mms-bitfields" SHOBJLDFLAGS='-shared -Wl,--enable-auto-image-base -Wl,--output-def,$[@].def,--out-implib,$[@].a' ;; esac fi ]) AC_DEFUN(SHOBJ_SET_SONAME, [ SAVE_LDFLAGS="$LDFLAGS" AC_MSG_CHECKING([how to specify soname]) for try in "-Wl,--soname,$1" "Wl,-install_name,$1" '__fail__'; do LDFLAGS="$SAVE_LDFLAGS" if test "${try}" = '__fail__'; then AC_MSG_RESULT([can't]) break fi LDFLAGS="${LDFLAGS} ${try}" AC_TRY_LINK([void TestTest(void) { return; }], [], [ LDFLAGS="${SAVE_LDFLAGS}" SHOBJLDFLAGS="${SHOBJLDFLAGS} ${try}" AC_MSG_RESULT([$try]) break ]) done AC_SUBST(SHOBJLDFLAGS) ]) |
Modified aclocal/versionscript.m4 from [68146d5f5a] to [b9d44e1a68].
︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 | break ]) done rm -f "${TMPSYMFILE}" rm -f "${TMPVERSIONSCRIPT}" if test -n "${addldflags}"; then | > > | > < > > | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | break ]) done rm -f "${TMPSYMFILE}" rm -f "${TMPVERSIONSCRIPT}" LDFLAGS="${SAVE_LDFLAGS}" if test -n "${addldflags}"; then SHOBJLDFLAGS="${SHOBJLDFLAGS} ${addldflags}" AC_MSG_RESULT($addldflags) else AC_MSG_RESULT([don't know]) fi AC_SUBST(SHOBJLDFLAGS) ]) AC_DEFUN([DC_FIND_STRIP_AND_REMOVESYMS], [ SYMFILE="$1" dnl Determine how to strip executables AC_CHECK_TOOLS(OBJCOPY, objcopy gobjcopy, [false]) |
︙ | ︙ |