Added -lwsock32 (needed for socket support)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3583 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
a9775f1f58
commit
881eba2c0d
@ -54,7 +54,9 @@ RESFLAGS=$(RCINCSWITCH) $(WXDIR)/include $(RCDEFSWITCH) __WIN32__ $(RCDEFSWITCH)
|
|||||||
########################## Compiler flags #############################
|
########################## Compiler flags #############################
|
||||||
|
|
||||||
# Miscellaneous compiler options
|
# Miscellaneous compiler options
|
||||||
OPTIONS= -D__EGCS__ -DSTRICT # -D__MINGW32__
|
# GRG: The __EGCS__ symbol is not needed anymore!
|
||||||
|
OPTIONS= -D__MINGW32__ -DSTRICT # -D__EGCS__
|
||||||
|
|
||||||
|
|
||||||
# Debugging information
|
# Debugging information
|
||||||
# AIX: comment out.
|
# AIX: comment out.
|
||||||
@ -92,10 +94,11 @@ WARN = -Wall
|
|||||||
# Which GUI, -Dwx_xview or -Dwx_motif (don't change this)
|
# Which GUI, -Dwx_xview or -Dwx_motif (don't change this)
|
||||||
GUI = -D__WXMSW__ -D__WINDOWS__
|
GUI = -D__WXMSW__ -D__WINDOWS__
|
||||||
|
|
||||||
# according to Guillermo Rodriguez Garcia <guille@iies.es> this flag is needed
|
# according to Guillermo Rodriguez Garcia <guille@iies.es> this flag is
|
||||||
# to make the standard div() functio work - otherwise it returns absolutely
|
# needed to make the standard div() function work - otherwise it returns
|
||||||
# incorrect results and completely breaks the wxImage class (where it's used
|
# absolutely incorrect results and completely breaks the wxImage class
|
||||||
# extensively)
|
# (where it's used extensively)
|
||||||
|
# GRG: at least it is needed in mingw32-gcc2.8.1
|
||||||
OPT = -fno-pcc-struct-return -O2 -fno-rtti -fno-exceptions
|
OPT = -fno-pcc-struct-return -O2 -fno-rtti -fno-exceptions
|
||||||
|
|
||||||
# Options for ar archiver
|
# Options for ar archiver
|
||||||
@ -116,7 +119,7 @@ COMPPATHS=
|
|||||||
|
|
||||||
WINLIBS=-lstdc++ -lgcc \
|
WINLIBS=-lstdc++ -lgcc \
|
||||||
-lwinspool -lwinmm -lshell32 \
|
-lwinspool -lwinmm -lshell32 \
|
||||||
-lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 # -loldnames
|
-lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 -lwsock32 # -loldnames
|
||||||
|
|
||||||
# Shouldn't need to change these...
|
# Shouldn't need to change these...
|
||||||
WXSRC=$(WXDIR)/src/msw
|
WXSRC=$(WXDIR)/src/msw
|
||||||
@ -138,6 +141,7 @@ LDLIBS = $(LIBS)
|
|||||||
|
|
||||||
# Directory for object files (don't change)
|
# Directory for object files (don't change)
|
||||||
# OBJDIR = objects$(GUISUFFIX)
|
# OBJDIR = objects$(GUISUFFIX)
|
||||||
|
OBJDIR = .
|
||||||
|
|
||||||
# You shouldn't need to change these...
|
# You shouldn't need to change these...
|
||||||
CPPFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACPPFLAGS)
|
CPPFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACPPFLAGS)
|
||||||
|
Loading…
Reference in New Issue
Block a user