patch-src_common_mak 999 B

1234567891011121314151617181920212223
  1. $OpenBSD: patch-src_common_mak,v 1.1.1.1 2012/07/09 15:56:35 edd Exp $
  2. --- src/common.mak.orig Sun Jan 15 12:19:25 2012
  3. +++ src/common.mak Sat Jul 7 15:20:05 2012
  4. @@ -137,13 +137,13 @@ else
  5. soname = -Wl,-dylib_install_name,$(IPELIBDIRINFO)/lib$1.so.$(IPEVERS)
  6. else
  7. DLL_LDFLAGS += -shared
  8. - soname = -Wl,-soname,lib$1.so.$(IPEVERS)
  9. + soname = -Wl,-soname,lib$1.so.${SHLIB_VERSION}
  10. endif
  11. buildlib = $(BUILDDIR)/lib
  12. - dll_target = $(buildlib)/lib$1.so.$(IPEVERS)
  13. - dll_symlinks = ln -sf lib$1.so.$(IPEVERS) $(buildlib)/lib$1.so
  14. - install_symlinks = ln -sf lib$1.so.$(IPEVERS) \
  15. - $(INSTALL_ROOT)$(IPELIBDIR)/lib$1.so
  16. + dll_target = $(buildlib)/lib$1.so.${SHLIB_VERSION}
  17. + dll_symlinks = true #ln -sf lib$1.so.$(IPEVERS) $(buildlib)/lib$1.so
  18. + install_symlinks = true# ln -sf lib$1.so.$(IPEVERS) \
  19. + #$(INSTALL_ROOT)$(IPELIBDIR)/lib$1.so
  20. ipelet_target = $(BUILDDIR)/ipelets/$1.so
  21. exe_target = $(BUILDDIR)/bin/$1
  22. endif