Changeset 651 for trunk/launch
- Timestamp:
- 01/11/13 01:38:34 (12 years ago)
- Location:
- trunk/launch/launch
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/launch/launch/README
r490 r651 224 224 225 225 1.1.1 - unreleased 226 - update d error codes for Mac OS X 10.4226 - update error codes for OS X 10.8 227 227 - read Info.plists embedded in all Mach-O binaries (e.g. hdiutil) 228 228 - display alias targets -
trunk/launch/launch/VERSION
r490 r651 1 1.1.1d 31 1.1.1d4 -
trunk/launch/launch/launch.xcodeproj/project.pbxproj
r477 r651 107 107 buildConfigurationList = E194195609C40AD400266191 /* Build configuration list for PBXProject "launch" */; 108 108 compatibilityVersion = "Xcode 2.4"; 109 developmentRegion = English; 109 110 hasScannedForEncodings = 1; 111 knownRegions = ( 112 en, 113 ); 110 114 mainGroup = 08FB7794FE84155DC02AAC07 /* launch */; 111 115 projectDirPath = ""; … … 160 164 isa = XCBuildConfiguration; 161 165 buildSettings = { 166 ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; 167 ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; 162 168 COPY_PHASE_STRIP = NO; 163 169 GCC_ENABLE_FIX_AND_CONTINUE = NO; … … 165 171 GCC_OPTIMIZATION_LEVEL = 0; 166 172 PRODUCT_NAME = launch; 173 SDKROOT = ""; 167 174 WARNING_CFLAGS = ( 168 175 "-Wmost", … … 177 184 isa = XCBuildConfiguration; 178 185 buildSettings = { 186 ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; 187 ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; 179 188 GCC_ENABLE_FIX_AND_CONTINUE = NO; 180 189 INSTALL_PATH = "\U0001/usr/local/bin"; 181 190 PRODUCT_NAME = launch; 191 SDKROOT = ""; 182 192 WARNING_CFLAGS = ( 183 193 "-Wmost", -
trunk/launch/launch/main.c
r490 r651 3 3 Nicholas Riley <launchsw@sabi.net> 4 4 5 Copyright (c) 2001- 09, Nicholas Riley5 Copyright (c) 2001-13, Nicholas Riley 6 6 All rights reserved. 7 7 … … 37 37 const char *APP_NAME; 38 38 39 #define VERSION "1.1.1d 3"39 #define VERSION "1.1.1d4" 40 40 41 41 #define STRBUF_LEN 1024 … … 97 97 { procNotFound, "unable to connect to system service.\nAre you logged in?" }, 98 98 { kCGErrorIllegalArgument, "window server error.\nAre you logged in?" }, 99 { kCGErrorApplicationRequiresNewerSystem, "application requires a newer Mac OS X version" },100 99 { fnfErr, "file not found" }, 101 100 { eofErr, "data not found" }, … … 660 659 if (typeStr == NULL) { 661 660 // punt to displaying verbatim 662 static char tmpBuffer[ 4];661 static char tmpBuffer[5]; 663 662 tmpBuffer[4] = '\0'; 664 663 strncpy(tmpBuffer, (const char *)&osType, 4); … … 744 743 continue; 745 744 } 746 printf( arch->description);745 printf("%s", arch->description); 747 746 } 748 747 printf("\n");
Note:
See TracChangeset
for help on using the changeset viewer.