Changeset 785 for trunk/src/lib
- Timestamp:
- Jan 24, 2007, 11:21:56 PM (18 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/Makefile.kmk
r648 r785 4 4 # kDepIDB - IDB based dependency generator. 5 5 # 6 # Copyright (c) 2006 knut st. osmundsen <bird@anduin.net>6 # Copyright (c) 2006-2007 knut st. osmundsen <bird-kBuild-spam@anduin.net> 7 7 # 8 8 # -
trunk/src/lib/kDep.c
r733 r785 2 2 /** @file 3 3 * 4 * kDep - Common Dependency Managemnt Code. 5 * 6 * Copyright (c) 2004-200 6 knut st. osmundsen <bird@innotek.de>4 * kDep - Common Dependency Managemnt Code. 5 * 6 * Copyright (c) 2004-2007 knut st. osmundsen <bird-kBuild-spam@anduin.net> 7 7 * 8 8 * … … 84 84 #ifdef __WIN32__ 85 85 /** 86 * Corrects the case of a path and changes any path components containing 86 * Corrects the case of a path and changes any path components containing 87 87 * spaces with the short name (which can be longer). 88 * 88 * 89 89 * Expects a _fullpath! 90 90 * -
trunk/src/lib/kDep.h
r393 r785 2 2 /** @file 3 3 * 4 * kDep - Common Dependency Managemnt Code. 4 * kDep - Common Dependency Managemnt Code. 5 5 * 6 * Copyright (c) 2004-200 6 knut st. osmundsen <bird@innotek.de>6 * Copyright (c) 2004-2007 knut st. osmundsen <bird-kBuild-spam@anduin.net> 7 7 * 8 8 * -
trunk/src/lib/startuphacks-win.c
r678 r785 4 4 * kBuild - Alternative argument parser for the windows startup code. 5 5 * 6 * Copyright (c) 2006 knut st. osmundsen <bird-kbuild-pszSrc@anduin.net>6 * Copyright (c) 2006-2007 knut st. osmundsen <bird-kBuild-spam@anduin.net> 7 7 * 8 8 * parse_args(): Copyright (c) 1992-1998 by Eberhard Mattes … … 58 58 int cb; 59 59 60 /* 61 * Set the program name. 60 /* 61 * Set the program name. 62 62 */ 63 63 GetModuleFileName(NULL, s_szProgramName, MAX_PATH); … … 65 65 #if _MSC_VER >= 1400 66 66 _set_pgmptr(s_szProgramName); 67 #endif 67 #endif 68 68 69 69 /* … … 73 73 if (!pszCmdLine || !*pszCmdLine) 74 74 pszCmdLine = s_szProgramName; 75 75 76 76 /* 77 77 * Parse the argument commandline emitting the unix argument vector.
Note:
See TracChangeset
for help on using the changeset viewer.