Advertisement
geomaster

Patch for wine-1.5.30 for solve problem libwine.so.1.0

May 16th, 2013
633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.99 KB | None | 0 0
  1. From ce4b6451aabbe83809c7483c748cfa009cc090d6 Mon Sep 17 00:00:00 2001
  2. From: Alexandre Julliard <julliard@winehq.org>
  3. Date: Fri, 10 May 2013 22:01:44 +0200
  4. Subject: [PATCH] configure: Add explicit install targets in libs/wine for make_makefiles.
  5.  
  6. ---
  7. configure             |    2 +-
  8.  configure.ac          |    2 +-
  9.  libs/wine/Makefile.in |    4 ++++
  10.  3 files changed, 6 insertions(+), 2 deletions(-)
  11.  
  12. diff --git a/configure b/configure
  13. index d4c1f8e..ef38bfd 100755
  14. --- a/configure
  15. +++ b/configure
  16. @@ -16379,7 +16379,7 @@ wine_fn_config_makefile documentation enable_documentation
  17.  wine_fn_config_makefile fonts enable_fonts install-lib
  18.  wine_fn_config_makefile include enable_include install-dev
  19.  wine_fn_config_makefile libs/port enable_libs_port
  20. -wine_fn_config_makefile libs/wine enable_libs_wine
  21. +wine_fn_config_makefile libs/wine enable_libs_wine install-dev,install-lib
  22.  wine_fn_config_makefile libs/wpp enable_libs_wpp
  23.  wine_fn_config_makefile loader enable_loader install-lib,manpage
  24.  wine_fn_config_program aspnet_regiis enable_aspnet_regiis install
  25. diff --git a/configure.ac b/configure.ac
  26. index 6dd2348..b44673e 100644
  27. --- a/configure.ac
  28. +++ b/configure.ac
  29. @@ -3173,7 +3173,7 @@ WINE_CONFIG_MAKEFILE([documentation])
  30.  WINE_CONFIG_MAKEFILE([fonts],,[install-lib])
  31.  WINE_CONFIG_MAKEFILE([include],,[install-dev])
  32.  WINE_CONFIG_MAKEFILE([libs/port])
  33. -WINE_CONFIG_MAKEFILE([libs/wine])
  34. +WINE_CONFIG_MAKEFILE([libs/wine],,[install-dev,install-lib])
  35.  WINE_CONFIG_MAKEFILE([libs/wpp])
  36.  WINE_CONFIG_MAKEFILE([loader],,[install-lib,manpage])
  37.  WINE_CONFIG_PROGRAM(aspnet_regiis,,[install])
  38. diff --git a/libs/wine/Makefile.in b/libs/wine/Makefile.in
  39. index b8dc385..7de7799 100644
  40. --- a/libs/wine/Makefile.in
  41. +++ b/libs/wine/Makefile.in
  42. @@ -111,4 +111,8 @@ version.c: dummy
  43.  $(RELPATH):
  44.         @cd $(TOOLSDIR)/tools && $(MAKE) relpath$(TOOLSEXT)
  45.  
  46. +# Make sure that make_makefiles sees the install rules
  47. +install install-lib::
  48. +install install-dev::
  49. +
  50.  @LIBWINE_RULES@
  51. --
  52. 1.7.2.5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement