Changes to help with Win16 compilation.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -890,10 +890,13 @@ size_t wxString::find(const wxString& str, size_t nStart) const
|
|||||||
return p == NULL ? npos : p - c_str();
|
return p == NULL ? npos : p - c_str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// VC++ 1.5 can't cope with the default argument in the header.
|
||||||
|
#if ! (defined(_MSC_VER) && !defined(__WIN32__))
|
||||||
size_t wxString::find(const char* sz, size_t nStart, size_t n) const
|
size_t wxString::find(const char* sz, size_t nStart, size_t n) const
|
||||||
{
|
{
|
||||||
return find(wxString(sz, n == npos ? 0 : n), nStart);
|
return find(wxString(sz, n == npos ? 0 : n), nStart);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
size_t wxString::find(char ch, size_t nStart) const
|
size_t wxString::find(char ch, size_t nStart) const
|
||||||
{
|
{
|
||||||
@@ -919,6 +922,8 @@ size_t wxString::rfind(const wxString& str, size_t nStart) const
|
|||||||
return npos;
|
return npos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// VC++ 1.5 can't cope with the default argument in the header.
|
||||||
|
#if ! (defined(_MSC_VER) && !defined(__WIN32__))
|
||||||
size_t wxString::rfind(const char* sz, size_t nStart, size_t n) const
|
size_t wxString::rfind(const char* sz, size_t nStart, size_t n) const
|
||||||
{
|
{
|
||||||
return rfind(wxString(sz, n == npos ? 0 : n), nStart);
|
return rfind(wxString(sz, n == npos ? 0 : n), nStart);
|
||||||
@@ -932,6 +937,7 @@ size_t wxString::rfind(char ch, size_t nStart) const
|
|||||||
|
|
||||||
return p == NULL ? npos : p - c_str();
|
return p == NULL ? npos : p - c_str();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
wxString wxString::substr(size_t nStart, size_t nLen) const
|
wxString wxString::substr(size_t nStart, size_t nLen) const
|
||||||
{
|
{
|
||||||
|
75
src/makemsc.env
Normal file
75
src/makemsc.env
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
#
|
||||||
|
# File: makemsc.env
|
||||||
|
# Author: Julian Smart
|
||||||
|
# Created: 1993
|
||||||
|
# Updated:
|
||||||
|
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
||||||
|
#
|
||||||
|
# "%W% %G%"
|
||||||
|
#
|
||||||
|
# Include file for MS VC++ makefiles
|
||||||
|
# Arguments:
|
||||||
|
#
|
||||||
|
# FINAL=1 argument to nmake to build version with no debugging info.
|
||||||
|
# DLL=1 builds a library (wxdll.lib) suitable for creating DLLs.
|
||||||
|
#
|
||||||
|
# Set WXDIR to the wxWindows directory if env. variable WXWIN not set.
|
||||||
|
# From your specific makefile, set EXTRAFLAGS to add flags to CPPFLAGS,
|
||||||
|
# such as extra include directories or defines.
|
||||||
|
|
||||||
|
WXDIR = $(WXWIN)
|
||||||
|
WXINC = $(WXDIR)\include
|
||||||
|
|
||||||
|
WXLIB=$(WXDIR)\lib\wx1.lib $(WXDIR)\lib\wx2.lib $(WXDIR)\lib\wx3.lib
|
||||||
|
|
||||||
|
# Suffixes
|
||||||
|
OBJSUFF=obj
|
||||||
|
SRCSUFF=cpp
|
||||||
|
|
||||||
|
INC=/I$(WXDIR)\include
|
||||||
|
|
||||||
|
# Set this to nothing if using MS C++ 7
|
||||||
|
ZOPTION=/Z7
|
||||||
|
|
||||||
|
!ifndef FINAL
|
||||||
|
FINAL=0
|
||||||
|
!endif
|
||||||
|
|
||||||
|
!ifndef DLL
|
||||||
|
DLL=0
|
||||||
|
!endif
|
||||||
|
|
||||||
|
!ifndef DEBUG
|
||||||
|
DEBUG=0
|
||||||
|
!endif
|
||||||
|
|
||||||
|
OPTIONS=
|
||||||
|
|
||||||
|
!if "$(FINAL)" == "0"
|
||||||
|
OPT = /Od /Gy
|
||||||
|
DEBUG_FLAGS= /Zi $(ZOPTION)
|
||||||
|
LINK_DEBUG_FLAGS=/CO
|
||||||
|
!else
|
||||||
|
OPT = /Od /Gy # Note: /Ox or /Os crash the compiler or samples
|
||||||
|
DEBUG_FLAGS=
|
||||||
|
LINK_DEBUG_FLAGS=
|
||||||
|
!endif
|
||||||
|
|
||||||
|
LIBS=$(WXLIB) $(EXTRALIBS) oldnames libw llibcew commdlg ddeml shell mmsystem $(WXDIR)\src\msw\ctl3d\msvc\ctl3dv2.lib
|
||||||
|
|
||||||
|
!if "$(DLL)" == "0"
|
||||||
|
PCH=WX.PCH
|
||||||
|
PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH)
|
||||||
|
CPPFLAGS= $(DEBUG_FLAGS) $(OPTIONS) $(INC) $(EXTRAFLAGS) /DDEBUG=$(DEBUG) /AL /Gt4 /Gx- /W4 /G2sw $(OPT) /D__WINDOWS__ $(PRECOMP)
|
||||||
|
CPPFLAGS2= $(DEBUG_FLAGS) $(OPTIONS) $(INC) $(EXTRAFLAGS) /DDEBUG=$(DEBUG) /AL /Gt4 /Gx- /W4 /G2sw $(OPT) /D__WINDOWS__
|
||||||
|
LINKFLAGS=$(LINK_DEBUG_FLAGS) /NOD /SEG:512 /ONERROR:NOEXE
|
||||||
|
DUMMY=dummy
|
||||||
|
!else
|
||||||
|
PCH=WX.PCH
|
||||||
|
PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH)
|
||||||
|
CPPFLAGS= $(DEBUG_FLAGS) $(OPTIONS) $(INC) $(EXTRAFLAGS) /AL /Gt4 /Gx- /W4 /G2s /GD $(OPT) /D__WINDOWS__ $(PRECOMP)
|
||||||
|
CPPFLAGS2= $(DEBUG_FLAGS) $(OPTIONS) $(INC) $(EXTRAFLAGS) /AL /Gt4 /Gx- /W4 /G2s /GD $(OPT) /D__WINDOWS__
|
||||||
|
LINKFLAGS=$(LINK_DEBUG_FLAGS) /NOD /SEG:512 /ONERROR:NOEXE
|
||||||
|
DUMMY=dummydll
|
||||||
|
!endif
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -144,9 +144,9 @@ PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\src\msw\wx.pdb
|
|||||||
MAKEPRECOMP=/YcWX/WXPREC.H
|
MAKEPRECOMP=/YcWX/WXPREC.H
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(OPT) $(EXTRADLLFLAGS) /MDd /GX # /D_DEBUG
|
CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(OPT) $(EXTRADLLFLAGS) /MD /GX # /D_DEBUG
|
||||||
# If you don't include wxprec.h, use CPPFLAGS2
|
# If you don't include wxprec.h, use CPPFLAGS2
|
||||||
CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(EXTRAFLAGS) $(OPT) $(EXTRADLLFLAGS) /MDd /GX # /D_DEBUG
|
CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(EXTRAFLAGS) $(OPT) $(EXTRADLLFLAGS) /MD /GX # /D_DEBUG
|
||||||
LINKFLAGS=$(LINK_DEBUG_FLAGS) $(WINLINKFLAGS) -entry:WinMainCRTStartup
|
LINKFLAGS=$(LINK_DEBUG_FLAGS) $(WINLINKFLAGS) -entry:WinMainCRTStartup
|
||||||
DUMMY=dummy
|
DUMMY=dummy
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user