~ubuntu-branches/ubuntu/precise/boinc/precise

« back to all changes in this revision

Viewing changes to lib/base64.cpp

Tags: 6.12.8+dfsg-1
* New upstream release.
* Simplified debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
// You should have received a copy of the GNU Lesser General Public License
16
16
// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
 
 
19
 
#ifdef _WIN32
 
18
#if   defined(_WIN32) && !defined(__STDWX_H__)
20
19
#include "boinc_win.h"
21
 
#endif
22
 
 
23
 
#ifndef _WIN32
 
20
#elif defined(_WIN32) && defined(__STDWX_H__)
 
21
#include "stdwx.h"
 
22
#else
24
23
#include "config.h"
25
24
#endif
26
25
 
205
204
    }
206
205
}
207
206
 
208
 
const char *BOINC_RCSID_2b47467419 = "$Id: base64.cpp 16069 2008-09-26 18:20:24Z davea $";