Show
Ignore:
Timestamp:
12/06/08 00:59:25 (4 years ago)
Author:
saturday06
Message:

tazyu keisyou

Location:
lang/cplusplus/i3/trunk
Files:
8 modified
2 moved

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/i3/trunk/src/Common.h

    r24965 r25972  
    1919 
    2020#include <iconv.h> 
    21  
    22 #ifdef MOL_OS_WINDOWS 
    2321#include <libintl.h> 
    24 #ifndef wgettext 
    25 #include "os-windows/wgettext.h" 
    26 #endif 
    27 // disable POSIX/XSI format strings 
    28 #undef fprintf 
    29 #undef vfprintf 
    30 #undef printf 
    31 #undef vprintf 
    32 #undef sprintf 
    33 #undef vsprintf 
    34 #undef snprintf 
    35 #undef vsnprintf 
    36 #else 
    37 #include <libintl.h> 
    38 #endif 
    3922 
    4023//#include <argtable2.h> 
  • lang/cplusplus/i3/trunk/src/mol/include/mol/Thread.h

    r24774 r25972  
    33 
    44#if defined(MOL_OS_WINDOWS) 
    5 #include "os-windows/ThreadCore.h" 
     5#include "os-windows/Thread.h" 
    66#elif defined(__CYGWIN__) 
    7 #include "os-windows/ThreadCore.h" 
     7#include "os-windows/Thread.h" 
    88#elif defined(MOL_OS_UNIX) 
    9 #include "os-unix/ThreadCore.h" 
     9#include "os-unix/Thread.h" 
    1010#else 
    1111#error 
     
    2222#endif 
    2323 
    24 namespace mol 
    25 { 
    26 class NullType 
    27 { 
    28 }; 
    29  
    30 template <typename Target, typename TargetArg1 = NullType, typename TargetArg2 = NullType> 
    31 class Thread : 
    32             public boost::noncopyable 
    33 { 
    34 private: 
    35     // 
    36     Target target; 
    37     // 
    38     bool end_request; 
    39     // 
    40     ThreadCore<Thread> core; 
    41 public: 
    42  
    43     void createUI() 
    44     { 
    45         target.createUI(); 
    46     } 
    47  
    48     void run() 
    49     { 
    50         target.run(); 
    51     } 
    52  
    53     template <typename T> 
    54     void post(const T& event) 
    55     { 
    56         target.post(event); 
    57     } 
    58  
    59     void start() 
    60     { 
    61 #if MOL_OS_WINDOWS 
    62         Sleep(100); 
    63 #else 
    64 #endif 
    65         core.start(); 
    66     } 
    67  
    68     void join() 
    69     { 
    70         target.destroy(); 
    71         core.join(); 
    72     } 
    73  
    74     Thread(): core(*this) 
    75     { 
    76     } 
    77  
    78     Thread(TargetArg1 arg1): target(arg1), core(*this) 
    79     { 
    80     } 
    81  
    82     Thread(TargetArg1 arg1, TargetArg2 arg2): target(arg1, arg2), core(*this) 
    83     { 
    84     } 
    85  
    86     ~Thread() 
    87     { 
    88         join(); 
    89     } 
    90 }; 
    91  
    92 } 
  • lang/cplusplus/i3/trunk/src/mol/include/mol/os-unix/Thread.h

  • lang/cplusplus/i3/trunk/src/mol/include/mol/os-windows/Thread.h

    r22613 r25972  
    11#pragma once 
     2 
    23#include "../Mol.h" 
    3  
    44#include <windows.h> 
    55#include <process.h> 
    66 
    7  
    8 /** 
    9  * Windows 
    10  */ 
    117namespace mol 
    128{ 
    13 template <typename Thread> 
    14 class ThreadCore : public boost::noncopyable 
     9 
     10template <typename Child> 
     11class Thread : public boost::noncopyable 
    1512{ 
    16     Thread& thread; 
     13private: 
     14    bool end_request; 
     15    Child& getChild() { 
     16        return static_cast<Child&>(*this); 
     17    } 
     18    static DWORD WINAPI ThreadProc(LPVOID object) 
     19    { 
     20        Thread* this_ =  static_cast<Thread*>(object); 
     21        this_->getChild().run(); 
     22        InterlockedExchangePointer(&this_->isExited, 1); 
     23        return 0; 
     24    } 
    1725    HANDLE hThread; 
    1826    LONG_PTR isExited; 
    1927public: 
    20     static DWORD WINAPI ThreadProc(LPVOID object) 
    21     { 
    22         ThreadCore<Thread>* this_ =  static_cast<ThreadCore<Thread>*>(object); 
    23         this_->thread.run(); 
    24         InterlockedExchangePointer(&this_->isExited, 1); 
    25         return 0; 
    26     } 
    27     void start()   // not sync 
     28    void start() 
    2829    { 
    2930        DWORD threadId; 
    3031        hThread = CreateThread(NULL, 0, ThreadProc, static_cast<void*>(this),0 , &threadId); 
    3132    } 
    32     ThreadCore(Thread& thread) : thread(thread), hThread(0), isExited(0) 
    33     { 
    34     } 
    35     void join()   // not sync 
     33    void join() 
    3634    { 
    3735        if (!hThread) 
     
    5856    } 
    5957 
    60     ~ThreadCore() 
     58    ~Thread() 
    6159    { 
     60        getChild().destroy(); 
    6261        join(); 
    6362    } 
  • lang/cplusplus/i3/trunk/src/mol/src/Test1.cpp

    r23153 r25972  
    279279namespace ns_test_Thread 
    280280{ 
    281 struct FooRunnableModule : public ns_test_Module::FooModule 
     281struct FooRunnableModule : public ns_test_Module::FooModule, public mol::Thread<FooRunnableModule> 
    282282{ 
    283283    void run() 
     
    286286    } 
    287287}; 
    288 struct FooRunnableGuiModule : public ns_test_Module::FooGuiModule 
     288struct FooRunnableGuiModule : public ns_test_Module::FooGuiModule, public mol::Thread<FooRunnableGuiModule> 
    289289{ 
    290290    void run() 
     
    299299    using namespace ns_test_Module; 
    300300    { 
    301         Thread<TestModuleType> t; 
    302     } 
    303     { 
    304         Thread<TestModuleType> t; 
     301        TestModuleType t; 
     302    } 
     303    { 
     304        TestModuleType t; 
    305305        t.start(); 
    306306    } 
  • lang/cplusplus/i3/trunk/src/os-windows/Os.h

    r23617 r25972  
    22 
    33#include "WindowsCommon.h" 
     4 
     5#include "wlibintl.h" 
     6// disable POSIX/XSI format strings 
     7#undef fprintf 
     8#undef vfprintf 
     9#undef printf 
     10#undef vprintf 
     11#undef sprintf 
     12#undef vsprintf 
     13#undef snprintf 
     14#undef vsnprintf 
    415 
    516namespace i3 
  • lang/cplusplus/i3/trunk/windows/i3.sln

    r15333 r25972  
    77EndProject 
    88Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "i3_test", "i3_test.vcproj", "{649C9DE4-73FE-4298-AA27-A5DF2186CB6F}" 
     9EndProject 
     10Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nl", "..\..\nl\nl.vcproj", "{4DCB30AB-A305-4D77-BB79-FD3945F39ABD}" 
    911EndProject 
    1012Global 
     
    3335                {649C9DE4-73FE-4298-AA27-A5DF2186CB6F}.Release|Win32.ActiveCfg = Release|Win32 
    3436                {649C9DE4-73FE-4298-AA27-A5DF2186CB6F}.Release|Win32.Build.0 = Release|Win32 
     37                {4DCB30AB-A305-4D77-BB79-FD3945F39ABD}.Debug Analyze|Win32.ActiveCfg = Debug|Win32 
     38                {4DCB30AB-A305-4D77-BB79-FD3945F39ABD}.Debug Analyze|Win32.Build.0 = Debug|Win32 
     39                {4DCB30AB-A305-4D77-BB79-FD3945F39ABD}.Debug|Win32.ActiveCfg = Debug|Win32 
     40                {4DCB30AB-A305-4D77-BB79-FD3945F39ABD}.Debug|Win32.Build.0 = Debug|Win32 
     41                {4DCB30AB-A305-4D77-BB79-FD3945F39ABD}.Release|Win32.ActiveCfg = Release|Win32 
     42                {4DCB30AB-A305-4D77-BB79-FD3945F39ABD}.Release|Win32.Build.0 = Release|Win32 
    3543        EndGlobalSection 
    3644        GlobalSection(SolutionProperties) = preSolution 
  • lang/cplusplus/i3/trunk/windows/i3.vcproj

    r24539 r25972  
    160160                        <Tool 
    161161                                Name="VCLinkerTool" 
    162                                 AdditionalDependencies="psapi.lib shlwapi.lib libintl.lib Binmode.obj" 
     162                                AdditionalDependencies="psapi.lib shlwapi.lib libintl-MT1.lib Binmode.obj" 
    163163                                LinkIncremental="1" 
    164164                                AdditionalLibraryDirectories="" 
     
    302302                        </File> 
    303303                        <File 
    304                                 RelativePath="..\src\Config.h" 
     304                                RelativePath="..\src\ConfigFile.h" 
    305305                                > 
    306306                        </File> 
     
    394394                        </File> 
    395395                        <File 
    396                                 RelativePath="..\src\Config.cpp" 
     396                                RelativePath="..\src\ConfigFile.cpp" 
    397397                                > 
    398398                        </File> 
     
    492492                                RelativePath="..\src\os-windows\WindowsCommon.cpp" 
    493493                                > 
     494                        </File> 
     495                </Filter> 
     496                <Filter 
     497                        Name="libintl" 
     498                        > 
     499                        <File 
     500                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\bindtextdom.c" 
     501                                > 
     502                                <FileConfiguration 
     503                                        Name="Debug|Win32" 
     504                                        > 
     505                                        <Tool 
     506                                                Name="VCCLCompilerTool" 
     507                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     508                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     509                                                UsePrecompiledHeader="0" 
     510                                        /> 
     511                                </FileConfiguration> 
     512                        </File> 
     513                        <File 
     514                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\dcgettext.c" 
     515                                > 
     516                                <FileConfiguration 
     517                                        Name="Debug|Win32" 
     518                                        > 
     519                                        <Tool 
     520                                                Name="VCCLCompilerTool" 
     521                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     522                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     523                                                UsePrecompiledHeader="0" 
     524                                        /> 
     525                                </FileConfiguration> 
     526                        </File> 
     527                        <File 
     528                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\dcigettext.c" 
     529                                > 
     530                                <FileConfiguration 
     531                                        Name="Debug|Win32" 
     532                                        > 
     533                                        <Tool 
     534                                                Name="VCCLCompilerTool" 
     535                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     536                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     537                                                UsePrecompiledHeader="0" 
     538                                        /> 
     539                                </FileConfiguration> 
     540                        </File> 
     541                        <File 
     542                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\dcngettext.c" 
     543                                > 
     544                                <FileConfiguration 
     545                                        Name="Debug|Win32" 
     546                                        > 
     547                                        <Tool 
     548                                                Name="VCCLCompilerTool" 
     549                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     550                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     551                                                UsePrecompiledHeader="0" 
     552                                        /> 
     553                                </FileConfiguration> 
     554                        </File> 
     555                        <File 
     556                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\dgettext.c" 
     557                                > 
     558                                <FileConfiguration 
     559                                        Name="Debug|Win32" 
     560                                        > 
     561                                        <Tool 
     562                                                Name="VCCLCompilerTool" 
     563                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     564                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     565                                                UsePrecompiledHeader="0" 
     566                                        /> 
     567                                </FileConfiguration> 
     568                        </File> 
     569                        <File 
     570                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\dngettext.c" 
     571                                > 
     572                                <FileConfiguration 
     573                                        Name="Debug|Win32" 
     574                                        > 
     575                                        <Tool 
     576                                                Name="VCCLCompilerTool" 
     577                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     578                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     579                                                UsePrecompiledHeader="0" 
     580                                        /> 
     581                                </FileConfiguration> 
     582                        </File> 
     583                        <File 
     584                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\explodename.c" 
     585                                > 
     586                                <FileConfiguration 
     587                                        Name="Debug|Win32" 
     588                                        > 
     589                                        <Tool 
     590                                                Name="VCCLCompilerTool" 
     591                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     592                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     593                                                UsePrecompiledHeader="0" 
     594                                        /> 
     595                                </FileConfiguration> 
     596                        </File> 
     597                        <File 
     598                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\finddomain.c" 
     599                                > 
     600                                <FileConfiguration 
     601                                        Name="Debug|Win32" 
     602                                        > 
     603                                        <Tool 
     604                                                Name="VCCLCompilerTool" 
     605                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     606                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     607                                                UsePrecompiledHeader="0" 
     608                                        /> 
     609                                </FileConfiguration> 
     610                        </File> 
     611                        <File 
     612                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\gettext.c" 
     613                                > 
     614                                <FileConfiguration 
     615                                        Name="Debug|Win32" 
     616                                        > 
     617                                        <Tool 
     618                                                Name="VCCLCompilerTool" 
     619                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     620                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     621                                                UsePrecompiledHeader="0" 
     622                                        /> 
     623                                </FileConfiguration> 
     624                        </File> 
     625                        <File 
     626                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\hash-string.c" 
     627                                > 
     628                                <FileConfiguration 
     629                                        Name="Debug|Win32" 
     630                                        > 
     631                                        <Tool 
     632                                                Name="VCCLCompilerTool" 
     633                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     634                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     635                                                UsePrecompiledHeader="0" 
     636                                        /> 
     637                                </FileConfiguration> 
     638                        </File> 
     639                        <File 
     640                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\intl-compat.c" 
     641                                > 
     642                                <FileConfiguration 
     643                                        Name="Debug|Win32" 
     644                                        > 
     645                                        <Tool 
     646                                                Name="VCCLCompilerTool" 
     647                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     648                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     649                                                UsePrecompiledHeader="0" 
     650                                        /> 
     651                                </FileConfiguration> 
     652                        </File> 
     653                        <File 
     654                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\l10nflist.c" 
     655                                > 
     656                                <FileConfiguration 
     657                                        Name="Debug|Win32" 
     658                                        > 
     659                                        <Tool 
     660                                                Name="VCCLCompilerTool" 
     661                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     662                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     663                                                UsePrecompiledHeader="0" 
     664                                        /> 
     665                                </FileConfiguration> 
     666                        </File> 
     667                        <File 
     668                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\langprefs.c" 
     669                                > 
     670                                <FileConfiguration 
     671                                        Name="Debug|Win32" 
     672                                        > 
     673                                        <Tool 
     674                                                Name="VCCLCompilerTool" 
     675                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     676                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     677                                                UsePrecompiledHeader="0" 
     678                                        /> 
     679                                </FileConfiguration> 
     680                        </File> 
     681                        <File 
     682                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\loadmsgcat.c" 
     683                                > 
     684                                <FileConfiguration 
     685                                        Name="Debug|Win32" 
     686                                        > 
     687                                        <Tool 
     688                                                Name="VCCLCompilerTool" 
     689                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     690                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     691                                                UsePrecompiledHeader="0" 
     692                                        /> 
     693                                </FileConfiguration> 
     694                        </File> 
     695                        <File 
     696                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\localcharset.c" 
     697                                > 
     698                                <FileConfiguration 
     699                                        Name="Debug|Win32" 
     700                                        > 
     701                                        <Tool 
     702                                                Name="VCCLCompilerTool" 
     703                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     704                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     705                                                UsePrecompiledHeader="0" 
     706                                        /> 
     707                                </FileConfiguration> 
     708                        </File> 
     709                        <File 
     710                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\localealias.c" 
     711                                > 
     712                                <FileConfiguration 
     713                                        Name="Debug|Win32" 
     714                                        > 
     715                                        <Tool 
     716                                                Name="VCCLCompilerTool" 
     717                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     718                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     719                                                UsePrecompiledHeader="0" 
     720                                        /> 
     721                                </FileConfiguration> 
     722                        </File> 
     723                        <File 
     724                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\localename.c" 
     725                                > 
     726                                <FileConfiguration 
     727                                        Name="Debug|Win32" 
     728                                        > 
     729                                        <Tool 
     730                                                Name="VCCLCompilerTool" 
     731                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     732                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     733                                                UsePrecompiledHeader="0" 
     734                                        /> 
     735                                </FileConfiguration> 
     736                        </File> 
     737                        <File 
     738                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\lock.c" 
     739                                > 
     740                                <FileConfiguration 
     741                                        Name="Debug|Win32" 
     742                                        > 
     743                                        <Tool 
     744                                                Name="VCCLCompilerTool" 
     745                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     746                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     747                                                UsePrecompiledHeader="0" 
     748                                        /> 
     749                                </FileConfiguration> 
     750                        </File> 
     751                        <File 
     752                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\log.c" 
     753                                > 
     754                                <FileConfiguration 
     755                                        Name="Debug|Win32" 
     756                                        > 
     757                                        <Tool 
     758                                                Name="VCCLCompilerTool" 
     759                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     760                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     761                                                UsePrecompiledHeader="0" 
     762                                        /> 
     763                                </FileConfiguration> 
     764                        </File> 
     765                        <File 
     766                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\ngettext.c" 
     767                                > 
     768                                <FileConfiguration 
     769                                        Name="Debug|Win32" 
     770                                        > 
     771                                        <Tool 
     772                                                Name="VCCLCompilerTool" 
     773                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     774                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     775                                                UsePrecompiledHeader="0" 
     776                                        /> 
     777                                </FileConfiguration> 
     778                        </File> 
     779                        <File 
     780                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\osdep.c" 
     781                                > 
     782                                <FileConfiguration 
     783                                        Name="Debug|Win32" 
     784                                        > 
     785                                        <Tool 
     786                                                Name="VCCLCompilerTool" 
     787                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     788                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     789                                                UsePrecompiledHeader="0" 
     790                                        /> 
     791                                </FileConfiguration> 
     792                        </File> 
     793                        <File 
     794                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\plural-exp.c" 
     795                                > 
     796                                <FileConfiguration 
     797                                        Name="Debug|Win32" 
     798                                        > 
     799                                        <Tool 
     800                                                Name="VCCLCompilerTool" 
     801                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     802                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     803                                                UsePrecompiledHeader="0" 
     804                                        /> 
     805                                </FileConfiguration> 
     806                        </File> 
     807                        <File 
     808                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\plural.c" 
     809                                > 
     810                                <FileConfiguration 
     811                                        Name="Debug|Win32" 
     812                                        > 
     813                                        <Tool 
     814                                                Name="VCCLCompilerTool" 
     815                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     816                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     817                                                UsePrecompiledHeader="0" 
     818                                        /> 
     819                                </FileConfiguration> 
     820                        </File> 
     821                        <File 
     822                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\printf-args.c" 
     823                                > 
     824                                <FileConfiguration 
     825                                        Name="Debug|Win32" 
     826                                        > 
     827                                        <Tool 
     828                                                Name="VCCLCompilerTool" 
     829                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     830                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     831                                                UsePrecompiledHeader="0" 
     832                                        /> 
     833                                </FileConfiguration> 
     834                        </File> 
     835                        <File 
     836                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\printf-parse.c" 
     837                                > 
     838                                <FileConfiguration 
     839                                        Name="Debug|Win32" 
     840                                        > 
     841                                        <Tool 
     842                                                Name="VCCLCompilerTool" 
     843                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     844                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     845                                                UsePrecompiledHeader="0" 
     846                                        /> 
     847                                </FileConfiguration> 
     848                        </File> 
     849                        <File 
     850                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\printf.c" 
     851                                > 
     852                                <FileConfiguration 
     853                                        Name="Debug|Win32" 
     854                                        > 
     855                                        <Tool 
     856                                                Name="VCCLCompilerTool" 
     857                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     858                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     859                                                UsePrecompiledHeader="0" 
     860                                        /> 
     861                                </FileConfiguration> 
     862                        </File> 
     863                        <File 
     864                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\relocatable.c" 
     865                                > 
     866                                <FileConfiguration 
     867                                        Name="Debug|Win32" 
     868                                        > 
     869                                        <Tool 
     870                                                Name="VCCLCompilerTool" 
     871                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     872                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     873                                                UsePrecompiledHeader="0" 
     874                                        /> 
     875                                </FileConfiguration> 
     876                        </File> 
     877                        <File 
     878                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\textdomain.c" 
     879                                > 
     880                                <FileConfiguration 
     881                                        Name="Debug|Win32" 
     882                                        > 
     883                                        <Tool 
     884                                                Name="VCCLCompilerTool" 
     885                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     886                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     887                                                UsePrecompiledHeader="0" 
     888                                        /> 
     889                                </FileConfiguration> 
     890                        </File> 
     891                        <File 
     892                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\tsearch.c" 
     893                                > 
     894                                <FileConfiguration 
     895                                        Name="Debug|Win32" 
     896                                        > 
     897                                        <Tool 
     898                                                Name="VCCLCompilerTool" 
     899                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     900                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     901                                                UsePrecompiledHeader="0" 
     902                                        /> 
     903                                </FileConfiguration> 
     904                        </File> 
     905                        <File 
     906                                RelativePath="..\..\libintl-msvc\recipes\libintl\intl\version.c" 
     907                                > 
     908                                <FileConfiguration 
     909                                        Name="Debug|Win32" 
     910                                        > 
     911                                        <Tool 
     912                                                Name="VCCLCompilerTool" 
     913                                                AdditionalOptions="/DLOCALEDIR=\&quot;/usr/local/share/locale\&quot; /DLOCALE_ALIAS_PATH=\&quot;/usr/local/share/locale\&quot; /DLIBDIR=\&quot;/usr/local/lib\&quot; /DBUILDING_LIBINTL /DIN_LIBINTL /DENABLE_RELOCATABLE=1 /DIN_LIBRARY /DINSTALLDIR=\&quot;/usr/local/lib\&quot; /DNO_XMALLOC /Dset_relocation_prefix=libintl_set_relocation_prefix /Drelocate=libintl_relocate /DDEPENDS_ON_LIBICONV=1 /DHAVE_CONFIG_H /DWIN32 /D_WIN32 /nologo /Dintmax_t=int /DEOVERFLOW=12345&#x0D;&#x0A;/D_CRT_SECURE_NO_WARNINGS&#x0D;&#x0A;/D_CRT_NONSTDC_NO_DEPRECATE" 
     914                                                AdditionalIncludeDirectories="&quot;..\..\libintl-msvc\recipes\libintl&quot;;&quot;..\..\libintl-msvc\recipes\libintl\intl&quot;" 
     915                                                UsePrecompiledHeader="0" 
     916                                        /> 
     917                                </FileConfiguration> 
    494918                        </File> 
    495919                </Filter>