Ver código fonte

Set libdir in generated .la files

This is needed in order to get libtool to treat them as normal
libraries and not "convenience libraries". The latter are linked
with --whole-archive, which pulls a lot of unnecessary stuff into
Xvnc and libvnc.so.
tags/v1.4.90
Pierre Ossman 9 anos atrás
pai
commit
de2df7e600
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      cmake/Modules/CMakeMacroLibtoolFile.cmake

+ 1
- 1
cmake/Modules/CMakeMacroLibtoolFile.cmake Ver arquivo

@@ -130,7 +130,7 @@ macro(libtool_create_control_file _target)
file(APPEND ${_laname} "shouldnotlink=no\n\n")
file(APPEND ${_laname} "dlopen=''\n")
file(APPEND ${_laname} "dlpreopen=''\n\n")
file(APPEND ${_laname} "libdir=''\n\n")
file(APPEND ${_laname} "libdir='/usr/lib'\n\n")


# Add custom command to symlink the static library so that autotools finds

Carregando…
Cancelar
Salvar