Changeset 4100 for zzuf/trunk/msvc
- Timestamp:
- Dec 7, 2009, 1:36:15 PM (11 years ago)
- Location:
- zzuf/trunk/msvc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/msvc/config.h
r4041 r4100 41 41 /* #undef HAVE_FREOPEN64 */ 42 42 /* #undef HAVE_FSEEKO */ 43 #define HAVE_FSEEKO64 1 43 /* #undef HAVE_FSEEKO64 */ 44 44 /* #undef HAVE_FSETPOS64 */ 45 45 /* #undef HAVE_FTELLO */ 46 #define HAVE_FTELLO64 1 46 /* #undef HAVE_FTELLO64 */ 47 47 /* #undef HAVE_GETCHAR_UNLOCKED */ 48 48 /* #undef HAVE_GETC_UNLOCKED */ 49 49 /* #undef HAVE_GETDELIM */ 50 50 /* #undef HAVE_GETLINE */ 51 #define HAVE_GETOPT_H 1 52 #define HAVE_GETOPT_LONG 1 51 /* #undef HAVE_GETOPT_H */ 52 /* #undef HAVE_GETOPT_LONG */ 53 53 #define HAVE_GETPAGESIZE 1 54 #define HAVE_GETTIMEOFDAY 1 54 /* #undef HAVE_GETTIMEOFDAY */ 55 55 /* #undef HAVE_GLIBC_FP */ 56 56 #define HAVE_INTTYPES_H 1 … … 58 58 /* #undef HAVE_KILL */ 59 59 /* #undef HAVE_LIBC_H */ 60 #define HAVE_LSEEK64 1 60 /* #undef HAVE_LSEEK64 */ 61 61 #define HAVE_MALLOC_H 1 62 62 /* #undef HAVE_MAP_FD */ … … 93 93 /* #undef HAVE_SYS_SOCKET_H */ 94 94 #define HAVE_SYS_STAT_H 1 95 #define HAVE_SYS_TIME_H 1 95 /* #undef HAVE_SYS_TIME_H */ 96 96 #define HAVE_SYS_TYPES_H 1 97 97 /* #undef HAVE_SYS_UIO_H */ 98 98 /* #undef HAVE_SYS_WAIT_H */ 99 #define HAVE_UNISTD_H 1 99 /* #undef HAVE_UNISTD_H */ 100 100 /* #undef HAVE_VALLOC */ 101 101 /* #undef HAVE_WAITPID */ … … 130 130 /* #undef __func__ */ 131 131 132 /* Fucking Visual Studio should just shut the fuck up with this fucking 133 * warning about fucking ISO C++ when we fucking compile fucking C. */ 134 #pragma warning(disable: 4996) 135 132 136 /* Win32-specific, of course. */ 133 137 typedef signed long long int int64_t; -
zzuf/trunk/msvc/libzzuf.vcxproj
r3971 r4100 63 63 </ClCompile> 64 64 <Link> 65 <AdditionalDependencies>imagehlp.lib; %(AdditionalDependencies)</AdditionalDependencies>65 <AdditionalDependencies>imagehlp.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies> 66 66 <GenerateDebugInformation>true</GenerateDebugInformation> 67 67 <SubSystem>Windows</SubSystem> … … 88 88 </ClCompile> 89 89 <Link> 90 <AdditionalDependencies>imagehlp.lib; %(AdditionalDependencies)</AdditionalDependencies>90 <AdditionalDependencies>imagehlp.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies> 91 91 <GenerateDebugInformation>true</GenerateDebugInformation> 92 92 <SubSystem>Windows</SubSystem> -
zzuf/trunk/msvc/zzuf.sln
r1729 r4100 1 Microsoft Visual Studio Solution File, Format Version 8.00 2 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zzuf", "zzuf.vcproj", "{2E5723ED-A886-45A9-AAAC-3D02F2EFC358}" 3 ProjectSection(ProjectDependencies) = postProject 4 EndProjectSection 1 Microsoft Visual Studio Solution File, Format Version 11.00 2 # Visual Studio 2010 3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zzuf", "zzuf.vcxproj", "{2E5723ED-A886-45A9-AAAC-3D02F2EFC358}" 5 4 EndProject 6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libzzuf", "libzzuf.vcproj", "{E658DCE5-E1E5-41C8-910B-1CC2D73C435C}" 7 ProjectSection(ProjectDependencies) = postProject 8 EndProjectSection 5 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libzzuf", "libzzuf.vcxproj", "{E658DCE5-E1E5-41C8-910B-1CC2D73C435C}" 9 6 EndProject 10 7 Global 11 GlobalSection(SolutionConfiguration ) = preSolution12 Debug = Debug13 Release = Release8 GlobalSection(SolutionConfigurationPlatforms) = preSolution 9 Debug|Win32 = Debug|Win32 10 Release|Win32 = Release|Win32 14 11 EndGlobalSection 15 GlobalSection(ProjectConfiguration ) = postSolution16 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Debug .ActiveCfg = Debug|Win3217 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Debug .Build.0 = Debug|Win3218 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Release .ActiveCfg = Release|Win3219 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Release .Build.0 = Release|Win3220 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Debug .ActiveCfg = Debug|Win3221 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Debug .Build.0 = Debug|Win3222 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Release .ActiveCfg = Release|Win3223 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Release .Build.0 = Release|Win3212 GlobalSection(ProjectConfigurationPlatforms) = postSolution 13 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Debug|Win32.ActiveCfg = Debug|Win32 14 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Debug|Win32.Build.0 = Debug|Win32 15 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Release|Win32.ActiveCfg = Release|Win32 16 {2E5723ED-A886-45A9-AAAC-3D02F2EFC358}.Release|Win32.Build.0 = Release|Win32 17 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Debug|Win32.ActiveCfg = Debug|Win32 18 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Debug|Win32.Build.0 = Debug|Win32 19 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Release|Win32.ActiveCfg = Release|Win32 20 {E658DCE5-E1E5-41C8-910B-1CC2D73C435C}.Release|Win32.Build.0 = Release|Win32 24 21 EndGlobalSection 25 GlobalSection(ExtensibilityGlobals) = postSolution 26 EndGlobalSection 27 GlobalSection(ExtensibilityAddIns) = postSolution 22 GlobalSection(SolutionProperties) = preSolution 23 HideSolutionNode = FALSE 28 24 EndGlobalSection 29 25 EndGlobal
Note: See TracChangeset
for help on using the changeset viewer.