зеркало из https://github.com/mozilla/gecko-dev.git
r=me, sr=blizzard (platform specific) Start landing GCC support for OS/2 - mainly cleanup to start
This commit is contained in:
Родитель
d6719582d1
Коммит
02e6723fc3
|
@ -47,7 +47,7 @@ include $(topsrcdir)/config/rules.mk
|
|||
ifeq ($(MOZ_OS2_TOOLS),VACPP)
|
||||
LDFLAGS += /PM:PM
|
||||
else
|
||||
LDFLAGS += -ZLinker /PM:PM
|
||||
LDFLAGS += -Zlinker /PM:PM
|
||||
endif
|
||||
|
||||
libs:: $(PROGRAM)
|
||||
|
|
|
@ -70,7 +70,7 @@ include $(topsrcdir)/config/rules.mk
|
|||
ifeq ($(MOZ_OS2_TOOLS),VACPP)
|
||||
LDFLAGS += /PM:PM
|
||||
else
|
||||
LDFLAGS += -ZLinker /PM:PM
|
||||
LDFLAGS += -Zlinker /PM:PM
|
||||
endif
|
||||
|
||||
libs:: $(PROGRAM)
|
||||
|
|
|
@ -1093,7 +1093,7 @@ MRESULT EXPENTRY DlgProcSelectComponents(HWND hDlg, ULONG msg, MPARAM mp1, MPARA
|
|||
/* update the disk space available info in the dialog. GetDiskSpaceAvailable()
|
||||
returns value in kbytes */
|
||||
ulDSBuf = GetDiskSpaceAvailable(sgProduct.szPath);
|
||||
itoa(ulDSBuf, tchBuffer, 10);
|
||||
_itoa(ulDSBuf, tchBuffer, 10);
|
||||
ParsePath(sgProduct.szPath, szBuf, sizeof(szBuf), FALSE, PP_ROOT_ONLY);
|
||||
RemoveBackSlash(szBuf);
|
||||
strcat(szBuf, " ");
|
||||
|
@ -1129,7 +1129,7 @@ MRESULT EXPENTRY DlgProcSelectComponents(HWND hDlg, ULONG msg, MPARAM mp1, MPARA
|
|||
/* update the disk space required info in the dialog. It is already
|
||||
in Kilobytes */
|
||||
ulDSBuf = GetDiskSpaceRequired(DSR_DOWNLOAD_SIZE);
|
||||
itoa(ulDSBuf, tchBuffer, 10);
|
||||
_itoa(ulDSBuf, tchBuffer, 10);
|
||||
strcpy(szBuf, tchBuffer);
|
||||
strcat(szBuf, " KB");
|
||||
|
||||
|
|
|
@ -514,7 +514,7 @@ find_end:
|
|||
|
||||
strncpy(aVal, currLine, nextEq-currLine);
|
||||
aVal+= nextEq-currLine;
|
||||
*aVal = \0;
|
||||
*aVal = '\0';
|
||||
aVal++;
|
||||
|
||||
currLine = nextNL + 1;
|
||||
|
|
|
@ -43,7 +43,9 @@ typedef int PRInt32;
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#ifdef XP_OS2_VACPP
|
||||
#include <direct.h>
|
||||
#endif
|
||||
#include <ctype.h>
|
||||
#include "setuprsc.h"
|
||||
#include "resource.h"
|
||||
|
|
|
@ -165,7 +165,7 @@ char *GetErrorString(DWORD dwError, char *szErrorString, DWORD dwErrorStringSize
|
|||
if(*XpErrorList[i] == '\0')
|
||||
break;
|
||||
|
||||
if(strcmpi(szErrorNumber, XpErrorList[i]) == 0)
|
||||
if(stricmp(szErrorNumber, XpErrorList[i]) == 0)
|
||||
{
|
||||
if(*XpErrorList[i + 1] != '\0')
|
||||
strcpy(szErrorString, XpErrorList[i + 1]);
|
||||
|
|
|
@ -51,21 +51,21 @@ PR_BEGIN_EXTERN_C
|
|||
* If successful OpenArchive returns a handle in the hZip parameter
|
||||
* that must be passed to all subsequent operations on the archive
|
||||
*/
|
||||
extern _declspec(dllexport)int ZIP_OpenArchive( const char * zipname, void** hZip );
|
||||
extern _declspec(dllexport)int ZIP_CloseArchive( void** hZip );
|
||||
PR_EXTERN(int) ZIP_OpenArchive( const char * zipname, void** hZip );
|
||||
PR_EXTERN(int) ZIP_CloseArchive( void** hZip );
|
||||
|
||||
|
||||
/* Test the integrity of every item in this open archive
|
||||
* by verifying each item's checksum against the stored
|
||||
* CRC32 value.
|
||||
*/
|
||||
extern _declspec(dllexport)int ZIP_TestArchive( void* hZip );
|
||||
PR_EXTERN(int) ZIP_TestArchive( void* hZip );
|
||||
|
||||
/* Extract the named file in the archive to disk.
|
||||
* This function will happily overwrite an existing Outfile if it can.
|
||||
* It's up to the caller to detect or move it out of the way if it's important.
|
||||
*/
|
||||
extern _declspec(dllexport)int ZIP_ExtractFile( void* hZip, const char * filename, const char * outname );
|
||||
PR_EXTERN(int) ZIP_ExtractFile( void* hZip, const char * filename, const char * outname );
|
||||
|
||||
|
||||
/* Functions to list the files contained in the archive
|
||||
|
@ -82,9 +82,9 @@ extern _declspec(dllexport)int ZIP_ExtractFile( void* hZip, const char * filenam
|
|||
* will return ZIP_ERR_SMALLBUF. When no more matches can be found in
|
||||
* the archive it will return ZIP_ERR_FNF
|
||||
*/
|
||||
extern _declspec(dllexport)void* ZIP_FindInit( void* hZip, const char * pattern );
|
||||
extern _declspec(dllexport)int ZIP_FindNext( void* hFind, char * outbuf, int bufsize );
|
||||
extern _declspec(dllexport)int ZIP_FindFree( void* hFind );
|
||||
PR_EXTERN(void*) ZIP_FindInit( void* hZip, const char * pattern );
|
||||
PR_EXTERN(int) ZIP_FindNext( void* hFind, char * outbuf, int bufsize );
|
||||
PR_EXTERN(int) ZIP_FindFree( void* hFind );
|
||||
|
||||
|
||||
PR_END_EXTERN_C
|
||||
|
|
|
@ -57,7 +57,7 @@ include $(topsrcdir)/config/rules.mk
|
|||
ifeq ($(MOZ_OS2_TOOLS),VACPP)
|
||||
LDFLAGS += /PM:PM
|
||||
else
|
||||
LDFLAGS += -ZLinker /PM:PM
|
||||
LDFLAGS += -Zlinker /PM:PM
|
||||
endif
|
||||
|
||||
libs:: $(PROGRAM)
|
||||
|
|
|
@ -22,8 +22,9 @@
|
|||
* Sean Su <ssu@netscape.com>
|
||||
*/
|
||||
|
||||
#include "ifuncns.h"
|
||||
#include "uninstall.h"
|
||||
#include "extra.h"
|
||||
#include "ifuncns.h"
|
||||
|
||||
BOOL SearchForUninstallKeys(char *szStringToMatch)
|
||||
{
|
||||
|
|
|
@ -514,7 +514,7 @@ find_end:
|
|||
|
||||
strncpy(aVal, currLine, nextEq-currLine);
|
||||
aVal+= nextEq-currLine;
|
||||
*aVal = \0;
|
||||
*aVal = '\0';
|
||||
aVal++;
|
||||
|
||||
currLine = nextNL + 1;
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
|
||||
#include "extern.h"
|
||||
#include "logkeys.h"
|
||||
#include "parser.h"
|
||||
#include "extra.h"
|
||||
#include "parser.h"
|
||||
#include "ifuncns.h"
|
||||
#include "dialogs.h"
|
||||
|
||||
|
@ -361,7 +361,7 @@ ULONG GetLogFile(PSZ szTargetPath, PSZ szInFilename, PSZ szOutBuf, ULONG dwOutBu
|
|||
while(bFound)
|
||||
{
|
||||
memset(szNumber, 0, sizeof(szNumber));
|
||||
if((strcmpi(fdFile.achName, ".") != 0) && (strcmpi(fdFile.achName, "..") != 0))
|
||||
if((stricmp(fdFile.achName, ".") != 0) && (strcmpi(fdFile.achName, "..") != 0))
|
||||
{
|
||||
strcpy(szNumber, &fdFile.achName[iFilenameOnlyLen]);
|
||||
ulNumber = atoi(szNumber);
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
*/
|
||||
|
||||
#include "extern.h"
|
||||
#include "parser.h"
|
||||
#include "extra.h"
|
||||
#include "parser.h"
|
||||
#include "ifuncns.h"
|
||||
|
||||
char szUnreadMailKey[] = "Software\\Microsoft\\Windows\\CurrentVersion\\UnreadMail";
|
||||
|
@ -109,7 +109,7 @@ BOOL UndoDesktopIntegration(void)
|
|||
/* Check to see if uninstall.ini has indicated to restore
|
||||
* the destktop integration performed by the browser/mail */
|
||||
GetPrivateProfileString(szRDISection, "Enabled", "", szBuf, sizeof(szBuf), szFileIniUninstall);
|
||||
if(strcmpi(szBuf, "TRUE") == 0)
|
||||
if(stricmp(szBuf, "TRUE") == 0)
|
||||
{
|
||||
RestoreDesktopIntegration();
|
||||
|
||||
|
|
|
@ -44,8 +44,6 @@ typedef int PRInt32;
|
|||
#include <os2.h>
|
||||
#include "nsINIParser.h"
|
||||
|
||||
typedef long HRESULT;
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
|
Загрузка…
Ссылка в новой задаче