IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18990


Ignore:
Timestamp:
Aug 8, 2008, 4:52:59 PM (18 years ago)
Author:
Paul Price
Message:

Wasn't using the conditional compilation correctly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fft/psFFT.c

    r18956 r18990  
    99#include "psFFT.h"
    1010
    11 static int numThreads = 0;          // Number of threads to use with FFTW
    12 
    1311bool psFFTThreads(int threads)
    1412{
    1513    PS_ASSERT_INT_NONNEGATIVE(threads, false);
    16 #ifdef HAVE_FFTW_THREADS
     14#if HAVE_FFTW_THREADS
     15    static int numThreads = 0;          // Number of threads to use with FFTW
    1716    if (threads > 0) {
    1817        if (numThreads == 0) {
Note: See TracChangeset for help on using the changeset viewer.