diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-02-18 11:15:13 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2002-02-18 11:15:13 +0000 |
commit | 354ab7031f901bc2807d4d72834775e53aa44592 (patch) | |
tree | 2b627f57568b7924f67b5066cf981632889234ab /stlport | |
parent | 5ecc63c57ff718d8b0d0abb6ae4cff21367e3d16 (diff) |
#96515#: use STLport-4.0 again fir WNT
Diffstat (limited to 'stlport')
-rw-r--r-- | stlport/makefile.mk | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/stlport/makefile.mk b/stlport/makefile.mk index 60df50e96c9d..4064dcde8a9c 100644 --- a/stlport/makefile.mk +++ b/stlport/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.9 $ +# $Revision: 1.10 $ # -# last change: $Author: hr $ $Date: 2002-01-14 15:45:23 $ +# last change: $Author: hr $ $Date: 2002-02-18 12:15:13 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -71,8 +71,17 @@ TARGET=so_stlport # --- Files -------------------------------------------------------- +.IF "$(GUI)"=="WNT" +TARFILE_NAME=STLport-4.0 +PATCH_FILE_NAME=STLport-4.0.patch +.ELSE TARFILE_NAME=STLport-4.5 PATCH_FILE_NAME=STLport-4.5.patch +.ENDIF + +.IF "$(GUI)"=="WNT" +TAR_EXCLUDES=*/SC5/* +.ENDIF # "$(GUI)"=="WNT" ADDITIONAL_FILES=src$/gcc-3.0.mak @@ -126,3 +135,10 @@ OUT2LIB= \ .INCLUDE : target.mk .INCLUDE : tg_ext.mk +.IF "$(GUI)"=="WNT" +$(PACKAGE_DIR)$/so_custom_patch : $(PACKAGE_DIR)$/$(PATCH_FLAG_FILE) + +win32_custom.bat $(PACKAGE_DIR) "$(BACK_PATH)" && $(TOUCH) $@ + +$(PACKAGE_DIR)$/$(CONFIGURE_FLAG_FILE) : $(PACKAGE_DIR)$/so_custom_patch +.ENDIF # "$(GUI)"=="WNT" + |