Opened 14 years ago
Closed 14 years ago
#1004 closed Defect (fixed)
typo in lib/gui_rpc_client.h ?
Reported by: | Urs Echternacht | Owned by: | davea |
---|---|---|---|
Priority: | Minor | Milestone: | Undetermined |
Component: | BOINC - API | Version: | 6.11.4 |
Keywords: | Cc: |
Description
Could not find an include file named xlocale.h on FreeBSD 7.2 . So i removed the x and the libs build ok.
779 #else 780 #ifndef _WIN32 ---781 #include <xlocale.h> +++781 #include <locale.h> 782 #endif 783 784 struct SET_LOCALE { 785 // Don't need this if we have per-thread locale 786 inline SET_LOCALE() { 787 } 788 inline ~SET_LOCALE() { 789 } 790 }; 791 #endif
Note: See
TracTickets for help on using
tickets.
(In [22235]) - lib: removed unneeded include. Fixes #1004