Module: wine
Branch: master
Commit: b48ee74832259048b834742d406f94fc220ed9b5
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b48ee74832259048b834742d4…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Jul 31 20:38:05 2013 +0200
configure: Don't use pkg-config without tool prefix when cross-compiling.
---
aclocal.m4 | 17 ++++++++++++++++-
configure | 37 +++++++++++++------------------------
2 files changed, 29 insertions(+), 25 deletions(-)
diff --git a/aclocal.m4 b/aclocal.m4
index 8aa81b2..15508d2 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -22,6 +22,21 @@ dnl configuration script generated by Autoconf, you may include it
dnl under the same distribution terms that you use for the rest of
dnl that program.
+dnl WINE_CHECK_HOST_TOOL(VARIABLE, PROG-TO-CHECK-FOR, [VALUE-IF-NOT-FOUND], [PATH])
+dnl
+dnl Like AC_CHECK_TOOL but without the broken fallback to non-prefixed name
+dnl
+AC_DEFUN([WINE_CHECK_HOST_TOOL],
+[if test -n "$ac_tool_prefix"; then
+ AC_CHECK_PROG([$1],[${ac_tool_prefix}$2],[${ac_tool_prefix}$2],,[$4])
+fi
+if test -n "$ac_cv_prog_$1"; then
+ $1="$ac_cv_prog_$1"
+elif test "$cross_compiling" != yes; then
+ unset ac_cv_prog_$1
+ AC_CHECK_PROG([$1],[$2],[$2],[$3],[$4])
+fi])
+
dnl **** Initialize the programs used by other checks ****
dnl
dnl Usage: WINE_PATH_SONAME_TOOLS
@@ -32,7 +47,7 @@ AC_DEFUN([WINE_PATH_SONAME_TOOLS],
AC_CHECK_TOOL(READELF,[readelf],true)])
AC_DEFUN([WINE_PATH_PKG_CONFIG],
-[AC_CHECK_TOOL(PKG_CONFIG,[pkg-config])])
+[WINE_CHECK_HOST_TOOL(PKG_CONFIG,[pkg-config])])
dnl **** Extract the soname of a library ****
dnl
diff --git a/configure b/configure
index a7cd48e..2cb80f4 100755
--- a/configure
+++ b/configure
@@ -5217,17 +5217,19 @@ fi
fi
-if test -z "$ac_cv_prog_PKG_CONFIG"; then
- ac_ct_PKG_CONFIG=$PKG_CONFIG
+if test -n "$ac_cv_prog_PKG_CONFIG"; then
+ PKG_CONFIG="$ac_cv_prog_PKG_CONFIG"
+elif test "$cross_compiling" != yes; then
+ unset ac_cv_prog_PKG_CONFIG
# Extract the first word of "pkg-config", so it can be a program name with args.
set dummy pkg-config; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_ac_ct_PKG_CONFIG+:} false; then :
+if ${ac_cv_prog_PKG_CONFIG+:} false; then :
$as_echo_n "(cached) " >&6
else
- if test -n "$ac_ct_PKG_CONFIG"; then
- ac_cv_prog_ac_ct_PKG_CONFIG="$ac_ct_PKG_CONFIG" # Let the user override the test.
+ if test -n "$PKG_CONFIG"; then
+ ac_cv_prog_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
@@ -5236,7 +5238,7 @@ do
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_prog_ac_ct_PKG_CONFIG="pkg-config"
+ ac_cv_prog_PKG_CONFIG="pkg-config"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
@@ -5246,30 +5248,17 @@ IFS=$as_save_IFS
fi
fi
-ac_ct_PKG_CONFIG=$ac_cv_prog_ac_ct_PKG_CONFIG
-if test -n "$ac_ct_PKG_CONFIG"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_PKG_CONFIG" >&5
-$as_echo "$ac_ct_PKG_CONFIG" >&6; }
+PKG_CONFIG=$ac_cv_prog_PKG_CONFIG
+if test -n "$PKG_CONFIG"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+$as_echo "$PKG_CONFIG" >&6; }
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
- if test "x$ac_ct_PKG_CONFIG" = x; then
- PKG_CONFIG=""
- else
- case $cross_compiling:$ac_tool_warned in
-yes:)
-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-ac_tool_warned=yes ;;
-esac
- PKG_CONFIG=$ac_ct_PKG_CONFIG
- fi
-else
- PKG_CONFIG="$ac_cv_prog_PKG_CONFIG"
-fi
+fi
if test "x$enable_maintainer_mode" != "xyes"
then
Module: wine
Branch: master
Commit: a1e4af2d1e0f35395e44b5e916a326c6a3ffefed
URL: http://source.winehq.org/git/wine.git/?a=commit;h=a1e4af2d1e0f35395e44b5e91…
Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com>
Date: Wed Jul 31 12:29:21 2013 +1000
oleacc: Add typelib.
---
dlls/oleacc/Makefile.in | 2 ++
dlls/oleacc/oleacc_classes.idl | 18 ++++++++++++++++++
2 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/dlls/oleacc/Makefile.in b/dlls/oleacc/Makefile.in
index 29a0e83..c098386 100644
--- a/dlls/oleacc/Makefile.in
+++ b/dlls/oleacc/Makefile.in
@@ -5,6 +5,8 @@ IMPORTS = user32
C_SRCS = \
main.c
+IDL_TLB_SRCS = oleacc_classes.idl
+
RC_SRCS = oleacc.rc
PO_SRCS = oleacc.rc
diff --git a/dlls/oleacc/oleacc_classes.idl b/dlls/oleacc/oleacc_classes.idl
new file mode 100644
index 0000000..28cb93e
--- /dev/null
+++ b/dlls/oleacc/oleacc_classes.idl
@@ -0,0 +1,18 @@
+/*
+ * Copyright (C) 2013 Alistair Leslie-Hughes
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+#include "oleacc.idl"