From: "André Hentschel" <nerv@dawncrow.de>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCHv3] wine: Bump to version 1.8.1
Date: Mon, 8 Feb 2016 19:21:53 +0100 [thread overview]
Message-ID: <56B8DCC1.9080203@dawncrow.de> (raw)
Bumping to stable version 1.8.1
Upstreamed patch is finally dropped.
Signed-off-by: Andr? Hentschel <nerv@dawncrow.de>
---
try2: removing autoreconf, thanks to Thomas for reviewing
try3: resend
-------------- next part --------------
diff --git a/package/wine/0001-configure-allow-to-override-the-location-of-the-conf.patch b/package/wine/0001-configure-allow-to-override-the-location-of-the-conf.patch
deleted file mode 100644
index 9fc9f64..0000000
--- a/package/wine/0001-configure-allow-to-override-the-location-of-the-conf.patch
+++ /dev/null
@@ -1,109 +0,0 @@
-From 18078feecc8da0ab2693d0bb5423489fa62920ef Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-Date: Tue, 22 Dec 2015 21:25:19 +0100
-Subject: [PATCH] configure: allow to override the location of the *-config
- scripts
-
-Currently, the configure.ac calls a number of *-config scripts to get
-details about installed libraries. It assumes that those *-config
-scripts are readily available in the PATH.
-
-While this is true in most situations, it may not be true when
-cross-compiling: you may have the *-config scripts matching the target
-environment in a location that isn't in the PATH. For such situations,
-it is very useful to be able to override the location of such *-config
-scripts using environment variables.
-
-The proposed changes does not introduce any functional difference if
-you don't pass those new environment variables: if they are not
-passed, it falls back to the current value.
-
-However, if those *_CONFIG variables are passed, then they are used as
-the path to the corresponding *-config script.
-
-The ${FOO_CONFIG:-foo-config} construct is POSIX compliant, so it is
-available in all shells.
-
-(Patch submitted upstream.)
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
----
- configure.ac | 20 ++++++++++----------
- 1 file changed, 10 insertions(+), 10 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 86f12c5..37ceab5 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -1191,7 +1191,7 @@ dnl **** Check for libxml2 ****
- if test "x$with_xml" != "xno"
- then
- WINE_PACKAGE_FLAGS(XML2,[libxml-2.0],[-lxml2],
-- [`xml2-config --cflags 2>/dev/null`],[`xml2-config --libs 2>/dev/null`],
-+ [`${XML2_CONFIG:-xml2-config} --cflags 2>/dev/null`],[`${XML2_CONFIG:-xml2-config} --libs 2>/dev/null`],
- [AC_CHECK_HEADERS([libxml/parser.h libxml/xmlsave.h libxml/SAX2.h])
- if test "$ac_cv_header_libxml_parser_h" = "yes" -a "$ac_cv_header_libxml_xmlsave_h" = "yes" -a "$ac_cv_header_libxml_SAX2_h" = "yes"
- then
-@@ -1220,7 +1220,7 @@ WINE_WARNING_WITH(xml,[test "$ac_cv_lib_xml2_xmlParseMemory" != "yes"],
- if test "x$with_xslt" != "xno"
- then
- WINE_PACKAGE_FLAGS(XSLT,[libxslt],[-lxml2],
-- [`xslt-config --cflags 2>/dev/null`],[`xslt-config --libs 2>/dev/null`],
-+ [`${XSLT_CONFIG:-xslt-config} --cflags 2>/dev/null`],[`${XSLT_CONFIG:-xslt-config} --libs 2>/dev/null`],
- [AC_CHECK_HEADERS([libxslt/pattern.h libxslt/transform.h],,,
- [#ifdef HAVE_LIBXSLT_PATTERN_H
- # include <libxslt/pattern.h>
-@@ -1291,7 +1291,7 @@ WINE_NOTICE_WITH(curses,[test "x$ac_cv_lib_soname_curses$ac_cv_lib_soname_ncurse
- dnl **** Check for SANE ****
- if test "x$with_sane" != "xno"
- then
-- WINE_PACKAGE_FLAGS(SANE,[libsane],,[`sane-config --cflags 2>/dev/null`],[`sane-config --ldflags 2>/dev/null`],
-+ WINE_PACKAGE_FLAGS(SANE,[libsane],,[`${SANE_CONFIG:-sane-config} --cflags 2>/dev/null`],[`${SANE_CONFIG:-sane-config} --ldflags 2>/dev/null`],
- [AC_CHECK_HEADER(sane/sane.h,
- [WINE_CHECK_SONAME(sane,sane_init,,[SANE_CFLAGS=""],[$SANE_LIBS])],
- [SANE_CFLAGS=""])])
-@@ -1311,7 +1311,7 @@ dnl **** Check for libgphoto2 ****
- if test "x$with_gphoto" != "xno"
- then
- WINE_PACKAGE_FLAGS(GPHOTO2,[libgphoto2],[-lgphoto2],
-- [`gphoto2-config --cflags 2>/dev/null`],[`gphoto2-config --libs 2>/dev/null`],
-+ [`${GPHOTO2_CONFIG:-gphoto2-config} --cflags 2>/dev/null`],[`${GPHOTO2_CONFIG:-gphoto2-config} --libs 2>/dev/null`],
- [AC_CHECK_HEADER(gphoto2-camera.h,
- [AC_CHECK_LIB(gphoto2,gp_camera_new,
- [AC_DEFINE(HAVE_GPHOTO2, 1, [Define if we have the libgphoto2 development environment])],
-@@ -1319,8 +1319,8 @@ then
- [$GPHOTO2_LIBS])],
- [GPHOTO2_LIBS=""; GPHOTO2_CFLAGS=""])])
- WINE_PACKAGE_FLAGS(GPHOTO2_PORT,[libgphoto2_port],[-lgphoto2_port],
-- [`gphoto2-port-config --cflags 2>/dev/null`],
-- [`gphoto2-port-config --libs 2>/dev/null`],
-+ [`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --cflags 2>/dev/null`],
-+ [`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --libs 2>/dev/null`],
- [AC_CHECK_HEADER(gphoto2-port.h,
- [AC_CHECK_LIB(gphoto2_port,gp_port_info_list_new,
- [AC_DEFINE(HAVE_GPHOTO2_PORT, 1, [Define if we have the libgphoto2_port development environment])],
-@@ -1382,8 +1382,8 @@ dnl **** Check for FreeType 2 ****
- if test "x$with_freetype" != "xno"
- then
- WINE_PACKAGE_FLAGS(FREETYPE,[freetype2],[-lfreetype],
-- [`(freetype-config --cflags || freetype2-config --cflags) 2>/dev/null`],
-- [`(freetype-config --libs || freetype2-config --libs) 2>/dev/null`],
-+ [`(${FREETYPE_CONFIG:-freetype-config} --cflags || ${FREETYPE2_CONFIG:-freetype2-config} --cflags) 2>/dev/null`],
-+ [`(${FREETYPE_CONFIG:-freetype-config} --libs || ${FREETYPE2_CONFIG:-freetype2-config} --libs) 2>/dev/null`],
- [AC_CHECK_HEADERS([ft2build.h])
- if test "$ac_cv_header_ft2build_h" = "yes"
- then
-@@ -1538,8 +1538,8 @@ AC_SUBST(CUPS_CFLAGS,"")
- if test "x$with_cups" != "xno"
- then
- ac_save_CPPFLAGS="$CPPFLAGS"
-- ac_cups_cflags=`cups-config --cflags 2>/dev/null`
-- ac_cups_libs=`cups-config --ldflags 2>/dev/null`
-+ ac_cups_cflags=`${CUPS_CONFIG:-cups-config} --cflags 2>/dev/null`
-+ ac_cups_libs=`${CUPS_CONFIG:-cups-config} --ldflags 2>/dev/null`
- CPPFLAGS="$CPPFLAGS $ac_cups_cflags"
- AC_CHECK_HEADERS(cups/cups.h,
- [WINE_CHECK_SONAME(cups,cupsGetDefault,
---
-2.6.4
-
diff --git a/package/wine/wine.hash b/package/wine/wine.hash
index 80c0f68..31db6c0 100644
--- a/package/wine/wine.hash
+++ b/package/wine/wine.hash
@@ -1,2 +1,2 @@
# Locally calculated after checking pgp signature
-sha256 f33b45c18112b2071fbf9edee0e8c575407f9e2a9855ca4ee918ed33efa7c6f4 wine-1.8.tar.bz2
+sha256 149ad3daaf8593b36c5c061285df0ec2a25e20ea48c61323be91088c4d22ca97 wine-1.8.1.tar.bz2
diff --git a/package/wine/wine.mk b/package/wine/wine.mk
index 2cd5c30..fc04027 100644
--- a/package/wine/wine.mk
+++ b/package/wine/wine.mk
@@ -4,14 +4,12 @@
#
################################################################################
-WINE_VERSION = 1.8
+WINE_VERSION = 1.8.1
WINE_SOURCE = wine-$(WINE_VERSION).tar.bz2
WINE_SITE = https://dl.winehq.org/wine/source/1.8
WINE_LICENSE = LGPLv2.1+
WINE_LICENSE_FILES = COPYING.LIB LICENSE
WINE_DEPENDENCIES = host-bison host-flex host-wine
-# For 0001-sane-config-fix.patch
-WINE_AUTORECONF = YES
# Wine needs its own directory structure and tools for cross compiling
WINE_CONF_OPTS = \
next reply other threads:[~2016-02-08 18:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-08 18:21 André Hentschel [this message]
2016-02-08 20:21 ` [Buildroot] [PATCHv3] wine: Bump to version 1.8.1 Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56B8DCC1.9080203@dawncrow.de \
--to=nerv@dawncrow.de \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.