switch from Pthreads-w32 to using the win32 API directly in package fftw

This commit is contained in:
Volker Grabsch 2010-05-02 17:59:19 +02:00
parent 9ff1828308
commit 6941c5d3e6
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,8 @@ define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)'
--prefix='$(PREFIX)/$(TARGET)' \
--enable-threads
$(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
$(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef