X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/80d895cd3f624f28424cc45b9b516bf439da9c19..236a9de39afa090fdee3cf91cb5364ceca69e3f8:/src/make.env.in?ds=inline diff --git a/src/make.env.in b/src/make.env.in index 3070667152..289b3bf062 100644 --- a/src/make.env.in +++ b/src/make.env.in @@ -10,9 +10,9 @@ ####################### GENERAL SETTINGS ############################ - -EXTRA_LIBS = @EXTRA_LIBS@ -LDLIBS = ${top_builddir}/lib/@WX_TARGET_LIBRARY@ $(EXTRA_LIBS) +# see comment near LDFLAGS at the end of file +EXTRALIBS = @LDFLAGS@ @EXTRA_LIBS@ +LDLIBS = ${top_builddir}/lib/@WX_TARGET_LIBRARY@ $(EXTRALIBS) $(APPEXTRALIBS) TOOLKIT = @TOOLKIT@ TOOLKITDIR = @TOOLKIT_DIR@ @@ -20,6 +20,8 @@ TOOLKITDIR = @TOOLKIT_DIR@ WXLIB = @WX_LIBRARY_NAME_STATIC@ WXSHLIB = @WX_LIBRARY_NAME_SHARED@ +EXTRADEFS="-DwxINSTALL_PREFIX=\"@prefix@\"" + ########################### VERSION ################################# WX_MAJOR_VERSION_NUMBER = @WX_MAJOR_VERSION_NUMBER@ @@ -54,11 +56,25 @@ MAKEINFO = @MAKEINFO@ SHARED_LD = @SHARED_LD@ +RESFLAGS = @RESFLAGS@ +RESCOMP = @RESCOMP@ +DLLTOOL = @DLLTOOL@ + ########################### Flags ################################# -CFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CFLAGS@ -CPPFLAGS = @TOOLKIT_DEF@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ +# +# CPPFLAGS (gnu standard) is not C++ flags, but flags for the "cpp" +# preprocessor. Unfortunately whoever wrote this now uses CPPFLAGS for +# C++ like CFLAGS for C. :-( +# We *must* include CPPFLAGS in both of these, to make sure that all +# header files get found. (KB) + +CFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CFLAGS@ @CPPFLAGS@ +CPPFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@ PICFLAGS = @PIC_FLAG@ -LDFLAGS = @LDFLAGS@ +# taking into account how SHARED_LD is defined, appending LDFLAGS to it +# doesn't work, so we put them in the end of the linker command line in +# EXTRALIBS instead (see above) +# LDFLAGS = @LDFLAGS@