view src/pthreads.mk @ 3808:c7c1065c12e0

pthreads: use mingw-w64 threads * src/pthreads.mk: use pthreads from mingw-w64 source tree * src/pthreads-1-fixes.patch: removed * dist-files.mk: remove pthreads-1-fixes.patch
author John Donoghue
date Wed, 25 Feb 2015 13:18:35 -0500
parents 13be64f9f16d
children 9c875e7a344a
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),mingw)
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