Module: wine Branch: master Commit: 07decea8721e8cb9098f02e4b6d93d6c435d270f URL: http://source.winehq.org/git/wine.git/?a=commit;h=07decea8721e8cb9098f02e4b6...
Author: Charles Davis cdavis@mymail.mines.edu Date: Mon Oct 3 12:16:39 2011 -0600
libwine: Fix resetting the install_name on Mac OS.
---
libs/wine/Makefile.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libs/wine/Makefile.in b/libs/wine/Makefile.in index fe33595..1ef9ff2 100644 --- a/libs/wine/Makefile.in +++ b/libs/wine/Makefile.in @@ -128,7 +128,7 @@ libwine.a: wine.def libwine.dll: $(OBJS) wine.def Makefile.in $(DLLWRAP) --def $(srcdir)/wine.def -o $@ $(OBJS) $(EXTRALIBS)
-DYLIB_LDFLAGS = -compatibility_version $(SOVERSION) -current_version $(VERSION) +DYLIB_LDFLAGS = -compatibility_version $(SOVERSION) -current_version $(VERSION) -headerpad_max_install_names
libwine.$(VERSION).dylib: $(OBJS) $(RELPATH) Makefile.in $(LDSHARED) -install_name $(libdir)/$(DYNAME) $(DYLIB_LDFLAGS) $(OBJS) $(EXTRALIBS) $(LDFLAGS) $(LIBS) -o $@