Overview
Comment: | Add LIB_PATCH to set patch level of a library |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
56ccacdc62ad446cb9b4db28f057e97d |
User & Date: | js on 2023-09-08 12:43:48 |
Other Links: | manifest | tags |
Context
2023-09-10
| ||
21:32 | Put Info.plist into Resources of .framework check-in: 6c6601b74f user: js tags: trunk | |
2023-09-08
| ||
12:43 | Add LIB_PATCH to set patch level of a library check-in: 56ccacdc62 user: js tags: trunk | |
2023-09-07
| ||
23:57 | Make sure to always use ${MAKE} check-in: 5e210b2ade user: js tags: trunk | |
Changes
Modified build-aux/m4/buildsys.m4 from [e82313b142] to [f8e7a9665b].
︙ | |||
245 246 247 248 249 250 251 | 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | - - + + | *-*-android*) AC_MSG_RESULT(Android) LIB_CFLAGS='-fPIC -DPIC' LIB_LDFLAGS='-shared -Wl,-soname=$$out.${LIB_MAJOR}' LIB_LDFLAGS_INSTALL_NAME='' LIB_PREFIX='lib' LIB_SUFFIX='.so' |
︙ | |||
289 290 291 292 293 294 295 | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 | - - + + | LIB_LDFLAGS='-shared -Wl,-soname=$$out.${LIB_MAJOR}' LIB_LDFLAGS_INSTALL_NAME='' LIB_PREFIX='lib' LIB_SUFFIX='.so' AS_IF([test x"$enable_rpath" != x"no"], [ LDFLAGS_RPATH='-Wl,-rpath,${libdir}' ]) |
︙ |