diff options
author | Peter Foley <pefoley2@verizon.net> | 2012-08-30 18:54:55 -0400 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-10-07 10:42:16 +0200 |
commit | 79fce4ddeb8b45fd047a97507051cd9ca4245f60 (patch) | |
tree | 30d791d9d4d9dbf85432328ae3bf4696889b7c0e /configure.in | |
parent | 959cbe4c6931170aec74a212ea02b6a64568b00a (diff) |
Win8 SDK no longer ships rebase.exe
Change-Id: I3c4280ee53411f4914be8ebd4f41d1c1cec1ba97
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 074f16c7dd19..2d3115f04313 100644 --- a/configure.in +++ b/configure.in @@ -9119,6 +9119,17 @@ AC_SUBST(WINDOWS_SDK_HOME) AC_SUBST(WINDOWS_SDK_VERSION) dnl ========================================= +dnl Check for Micorosft rebase.exe +dnl ========================================= +if test "$build_os" = "cygwin"; then + AC_PATH_PROG([REBASE], [rebase]) + if test \( -z "$REBASE" -o "$REBASE" = "/usr/bin/rebase" \) -a "$WINDOWS_SDK_VERSION" = "80"; then + REBASE=download + AC_SUBST(REBASE) + fi +fi + +dnl ========================================= dnl Check for uuidgen dnl ========================================= if test "$_os" = "WINNT" -a "$cross_compiling" != "yes"; then |