Differences From Artifact [e35f021548]:
- File utils/objfw-compile — part of check-in [7413a728a7] at 2024-04-03 02:16:03 on branch trunk — Change license to LGPLv3 only (user: js, size: 7849) [annotate] [blame] [check-ins using] [more...]
To Artifact [aa288d7464]:
- File
utils/objfw-compile
— part of check-in
[c5f91347e7]
at
2024-11-06 21:28:30
on branch trunk
— objfw-compile: Remove handling of .bundle
`objfw-config --plugin-suffix` no longer returns .bundle, so the branch
can never be taken. Plus, it created an incomplete .bundle anyway. (user: js, size: 7437) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
326 327 328 329 330 331 332 | test x"$link_stdcpp" = x"yes" && LIBS="$LIBS -lstdc++" if test x"$lib" = x"yes"; then export SHARED_LIB="$out_prefix$out$out_suffix" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --lib-ldflags)" fi | < < < < < < < < < < | 326 327 328 329 330 331 332 333 334 335 336 337 338 | test x"$link_stdcpp" = x"yes" && LIBS="$LIBS -lstdc++" if test x"$lib" = x"yes"; then export SHARED_LIB="$out_prefix$out$out_suffix" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --lib-ldflags)" fi if test ! -f "$out_prefix$out$out_suffix" -o x"$link" = x"yes"; then status_linking $out_prefix$out$out_suffix $OBJC -o $out_prefix$out$out_suffix $objs $LIBS $LDFLAGS || \ status_link_failed $out $? status_linked $out_prefix$out$out_suffix fi |