diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-09 04:21:48 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-09 20:18:10 +0100 |
commit | c296fe08de3958707d8fc4c2d3131cbcdbc60f1b (patch) | |
tree | c312b760cf98d8e343708311dd0f9f60e6125176 /stlport/makefile.mk | |
parent | 053754d986bedee85fd2a5076b5f7561e945c5cd (diff) |
Build STLport only as a compatibility library
Diffstat (limited to 'stlport/makefile.mk')
-rw-r--r-- | stlport/makefile.mk | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/stlport/makefile.mk b/stlport/makefile.mk index fa1de9438a21..04ab66af2910 100644 --- a/stlport/makefile.mk +++ b/stlport/makefile.mk @@ -34,12 +34,12 @@ TARGET=so_stlport .INCLUDE : settings.mk -.IF "$(USE_SYSTEM_STL)"=="YES" +.IF "$(WITH_STLPORT)"!="YES" all: @echo "Nothing to do" -.ELSE # "$(USE_SYSTEM_STL)" +.ELSE # "$(WITH_STLPORT)"!="YES" # --- Files -------------------------------------------------------- .EXPORT : CC CXX @@ -188,16 +188,6 @@ OUT2LIB= \ # --- Targets ------------------------------------------------------ -.IF "$(STLPORT4)"!="NO_STLPORT4" -all : - @echo " An already available installation of STLport has been chosen in the configure process." - @echo " Therefore the version provided here does not need to be built in addition." -.ELIF "$(OS)"=="MACOSX" -all: - @echo '--with-stlport=yes is not supported on Mac OS X' - false -.ENDIF - .INCLUDE : set_ext.mk .INCLUDE : target.mk .INCLUDE : tg_ext.mk @@ -229,4 +219,4 @@ $(PACKAGE_DIR)$/$(CONFIGURE_FLAG_FILE) : $(PACKAGE_DIR)$/win32_sdk_patch .ENDIF "$(COM)"=="GCC" .ENDIF # "$(GUI)"=="WNT" -.ENDIF # "$(USE_SYSTEM_STL)" +.ENDIF # "$(WITH_STLPORT)"!="YES" |