view src/pthreads.mk @ 3975:9c875e7a344a

pthread: only compile if cross mingw * src/pthreads.mk: check if system=mingw and native=no
author John Donoghue
date Tue, 16 Jun 2015 12:23:05 -0400
parents c7c1065c12e0
children b7d6a53fa46c
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := pthreads
$(PKG)_IGNORE   := $(mingw-w64_IGNORE)
$(PKG)_VERSION  := $(mingw-w64_VERSION)
$(PKG)_CHECKSUM := $(mingw-w64_CHECKSUM)
$(PKG)_SUBDIR   := $(mingw-w64_SUBDIR)
$(PKG)_FILE     := $(mingw-w64_FILE)
$(PKG)_URL      := $(mingw-w64_URL)
$(PKG)_DEPS     := 

define $(PKG)_UPDATE
    echo $(mingw-w64_VERSION)
endef

ifeq ($(MXE_SYSTEM)$(MXE_NATIVE_BUILD),mingwno)
define $(PKG)_BUILD
    cd '$(1)/mingw-w64-libraries/winpthreads' && ./configure \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        --prefix='$(HOST_PREFIX)' \
        $(ENABLE_SHARED_OR_STATIC)
        
    $(MAKE) -C '$(1)/mingw-w64-libraries/winpthreads' -j '$(JOBS)'
    $(MAKE) -C '$(1)/mingw-w64-libraries/winpthreads' -j 1 install
endef
else
define $(PKG)_BUILD
endef
endif