Version 4.0.2.1, tag libreoffice-4.0.2.1
[LibreOffice.git] / clucene / UnpackedTarball_clucene.mk
blob5b53226721e8faca12d9164a3d03eae68de246e3
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 $(eval $(call gb_UnpackedTarball_UnpackedTarball,clucene))
12 $(eval $(call gb_UnpackedTarball_set_tarball,clucene,$(CLUCENE_TARBALL)))
14 ifneq ($(OS),WNT)
15 $(eval $(call gb_UnpackedTarball_set_post_action,clucene,\
16 mkdir -p inc/internal/CLucene/util && \
17 mv src/shared/CLucene/util/dirent.h inc/internal/CLucene/util \
19 endif
21 $(eval $(call gb_UnpackedTarball_set_patchlevel,clucene,0))
23 # clucene-multimap-put.patch was proposed upstream, see
24 # http://sourceforge.net/mailarchive/message.php?msg_id=29143260
25 $(eval $(call gb_UnpackedTarball_add_patches,clucene,\
26 clucene/patches/clucene-debug.patch \
27 clucene/patches/clucene-internal-zlib.patch \
28 clucene/patches/clucene-multimap-put.patch \
29 clucene/patches/clucene-narrowing-conversions.patch \
30 clucene/patches/clucene-nullptr.patch \
31 clucene/patches/clucene-warnings.patch \
34 ifeq ($(OS),WNT)
35 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/_clucene-config.h,clucene/configs/_clucene-config-MSVC.h))
36 ifeq ($(COM),MSC)
37 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/clucene-config.h,clucene/configs/clucene-config-MSVC.h))
38 else
39 ifeq ($(HAVE_GCC_BUILTIN_ATOMIC),TRUE)
40 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/clucene-config.h,clucene/configs/clucene-config-MINGW-atomic.h))
41 else
42 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/clucene-config.h,clucene/configs/clucene-config-MINGW.h))
43 endif
44 endif
45 else # ! $(OS),WNT
46 ifeq ($(HAVE_GCC_BUILTIN_ATOMIC),TRUE)
47 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/clucene-config.h,clucene/configs/clucene-config-GCC-atomic.h))
48 else
49 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/clucene-config.h,clucene/configs/clucene-config-generic.h))
50 endif
51 ifeq ($(OS),LINUX)
52 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/_clucene-config.h,clucene/configs/_clucene-config-LINUX.h))
53 else
54 $(eval $(call gb_UnpackedTarball_add_file,clucene,src/shared/CLucene/_clucene-config.h,clucene/configs/_clucene-config-generic.h))
55 endif
56 endif # $(OS),WNT
58 # vim: set noet sw=4 ts=4: