diff options
-rw-r--r-- | redland/prj/d.lst | 1 | ||||
-rw-r--r-- | redland/raptor/makefile.mk | 9 | ||||
-rw-r--r-- | redland/rasqal/makefile.mk | 7 | ||||
-rw-r--r-- | redland/redland/makefile.mk | 7 | ||||
-rw-r--r-- | redland/redlandversion.mk | 43 |
5 files changed, 60 insertions, 7 deletions
diff --git a/redland/prj/d.lst b/redland/prj/d.lst index 622e83e038f5..681b83717500 100644 --- a/redland/prj/d.lst +++ b/redland/prj/d.lst @@ -4,3 +4,4 @@ ..\%__SRC%\lib\lib*.dylib %_DEST%\lib%_EXT% ..\%__SRC%\lib\*.lib %_DEST%\lib%_EXT% ..\%__SRC%\bin\*.dll %_DEST%\bin%_EXT% +..\redlandversion.mk %_DEST%\inc%_EXT%\redlandversion.mk diff --git a/redland/raptor/makefile.mk b/redland/raptor/makefile.mk index b454aa96efab..be51b4e2f738 100644 --- a/redland/raptor/makefile.mk +++ b/redland/raptor/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: mst $ $Date: 2008-06-17 16:12:51 $ +# last change: $Author: mst $ $Date: 2008-06-26 10:52:14 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -50,7 +50,10 @@ all: # --- Files -------------------------------------------------------- -RAPTORVERSION=1.4.17 +.INCLUDE : ../redlandversion.mk + +#RAPTORVERSION=$(RAPTOR_MAJOR).$(RAPTOR_MINOR).$(RAPTOR_MICRO) +RAPTORVERSION=$(RAPTOR_MAJOR).4.17 TARFILE_NAME=raptor-$(RAPTORVERSION) PATCH_FILE_NAME=$(TARFILE_NAME).patch diff --git a/redland/rasqal/makefile.mk b/redland/rasqal/makefile.mk index 9e25f27c86a0..017256636eda 100644 --- a/redland/rasqal/makefile.mk +++ b/redland/rasqal/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: mst $ $Date: 2008-06-17 16:12:51 $ +# last change: $Author: mst $ $Date: 2008-06-26 10:52:14 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -50,6 +50,9 @@ all: # --- Files -------------------------------------------------------- +.INCLUDE : ../redlandversion.mk + +#RASQALVERSION=$(RASQAL_MAJOR).$(RASQAL_MINOR).$(RASQAL_MICRO) RASQALVERSION=0.9.15 TARFILE_NAME=rasqal-$(RASQALVERSION) diff --git a/redland/redland/makefile.mk b/redland/redland/makefile.mk index a91b8fd4ce54..2404f509c84f 100644 --- a/redland/redland/makefile.mk +++ b/redland/redland/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: mst $ $Date: 2008-06-17 16:12:51 $ +# last change: $Author: mst $ $Date: 2008-06-26 10:52:14 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -50,6 +50,9 @@ all: # --- Files -------------------------------------------------------- +.INCLUDE : ../redlandversion.mk + +#REDLANDVERSION=$(REDLAND_MAJOR).$(REDLAND_MINOR).$(REDLAND_MICRO) REDLANDVERSION=1.0.7 TARFILE_NAME=redland-$(REDLANDVERSION) diff --git a/redland/redlandversion.mk b/redland/redlandversion.mk new file mode 100644 index 000000000000..a95bdb82cbea --- /dev/null +++ b/redland/redlandversion.mk @@ -0,0 +1,43 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2008 by Sun Microsystems, Inc. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: redlandversion.mk,v $ +# +# $Revision: 1.1 $ +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +RAPTOR_MAJOR=1 +RAPTOR_MINOR=1 +RAPTOR_MICRO=0 +# rasqal has no stable abi +RASQAL_MAJOR=0 +RASQAL_MINOR=0 +RASQAL_MICRO=0 +# redland has no stable abi +REDLAND_MAJOR=0 +REDLAND_MINOR=0 +REDLAND_MICRO=0 + |