~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/data/icupkg.inc.in

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#******************************************************************************
2
 
#
3
 
#   Copyright (C) 2000, International Business Machines
4
 
#   Corporation and others.  All Rights Reserved.
5
 
#
6
 
#******************************************************************************
7
 
# This Makefile is used to build the ICU's data.
8
 
# It is included with the -O option to pkgdata.
9
 
 
10
 
PLATFORM=@platform@
11
 
 
12
 
top_srcdir=@top_srcdir@
13
 
srcdir=@srcdir@
14
 
top_builddir=..
15
 
 
16
 
SHELL=@SHELL@
17
 
CFLAGS=@CFLAGS@ 
18
 
CPPFLAGS=@CPPFLAGS@ -I$(top_builddir)/common -I$(top_srcdir)/common
19
 
CXXFLAGS=@CXXFLAGS@ 
20
 
LDFLAGS=@LDFLAGS@ 
21
 
FFLAGS=@FFLAGS@
22
 
DEFS=@DEFS@ 
23
 
ENABLE_RPATH=@ENABLE_RPATH@
24
 
ifeq ($(ENABLE_RPATH),YES)
25
 
RPATH_LDFLAGS=$(LD_RPATH)$(LD_RPATH_PRE)$(libdir)
26
 
endif
27
 
LIBS=@LIBS@ 
28
 
ICULIBS=$(LIBS) -licu-uc -licu-i18n
29
 
exec_prefix=@exec_prefix@
30
 
prefix=@prefix@
31
 
program_transform_name=@program_transform_name@
32
 
bindir=@bindir@
33
 
sbindir=@sbindir@
34
 
libexecdir=@libexecdir@
35
 
datadir=@datadir@
36
 
sysconfdir=@sysconfdir@
37
 
sharedstatedir=@sharedstatedir@
38
 
localstatedir=@localstatedir@
39
 
libdir=@libdir@
40
 
includedir=@includedir@
41
 
oldincludedir=@oldincludedir@
42
 
infodir=@infodir@
43
 
mandir=@mandir@
44
 
PACKAGE=@PACKAGE@
45
 
VERSION=@VERSION@
46
 
CC=@CC@
47
 
CXX=@CXX@
48
 
AIX_SHLIB = @AIX_SHLIB@
49
 
AR = @AR@
50
 
RANLIB = @RANLIB@
51
 
 
52
 
INSTALL = @INSTALL@
53
 
INSTALL_PROGRAM = @INSTALL_PROGRAM@
54
 
INSTALL_DATA = @INSTALL_DATA@
55
 
 
56
 
INSTALL_PROGRAM=@INSTALL_PROGRAM@
57
 
INSTALL_SCRIPT=@INSTALL_SCRIPT@
58
 
INSTALL_DATA=@INSTALL_DATA@
59
 
AUTOCONF=@AUTOCONF@
60
 
host=@host@
61
 
host_alias=@host_alias@
62
 
host_cpu=@host_cpu@
63
 
host_vendor=@host_vendor@
64
 
host_os=@host_os@
65
 
LIB_M=@LIB_M@
66
 
CPP=@CPP@
67
 
U_HAVE_INTTYPES_H=@U_HAVE_INTTYPES_H@
68
 
U_IS_BIG_ENDIAN=@U_IS_BIG_ENDIAN@
69
 
HAVE_INT8_T=@HAVE_INT8_T@
70
 
HAVE_UINT8_T=@HAVE_UINT8_T@
71
 
HAVE_INT16_T=@HAVE_INT16_T@
72
 
HAVE_UINT16_T=@HAVE_UINT16_T@
73
 
HAVE_INT32_T=@HAVE_INT32_T@
74
 
HAVE_UINT32_T=@HAVE_UINT32_T@
75
 
HAVE_BOOL_T=@HAVE_BOOL_T@
76
 
EXTRAS_TRUE=@EXTRAS_TRUE@
77
 
EXTRAS_FALSE=@EXTRAS_FALSE@
78
 
TESTS_TRUE=@TESTS_TRUE@
79
 
TESTS_FALSE=@TESTS_FALSE@
80
 
SAMPLES_TRUE=@SAMPLES_TRUE@
81
 
SAMPLES_FALSE=@SAMPLES_FALSE@
82
 
platform=@platform@
83
 
 
84
 
 
85
 
ld_rpath_suf=@ld_rpath_suf@
86
 
 
87
 
include $(top_builddir)/icudefs.mk
88
 
include @platform_make_fragment@
89
 
 
90
 
subdir = tools/tmp
91
 
 
92
 
##### Add the following to source/config/Makefile.in
93
 
 
94
 
GENCCODE=$(top_builddir)/tools/genccode/genccode
95
 
GENCMN=$(top_builddir)/tools/gencmn/gencmn
96
 
 
97
 
LPATHS=$(top_builddir)/common:$(top_builddir)/i18n:$(top_builddir)/tools/toolutil
98
 
 
99
 
TOOL=env LD_LIBRARY_PATH=$(LPATHS) LIBPATH=$(LPATHS) 
100
 
 
101
 
ifeq ($(strip $(PLATFORM)),OS390)
102
 
  TOOL=
103
 
endif
104
 
 
105
 
ifeq ($(strip $(PLATFORM)),AIX)
106
 
  TOOL=env LIBPATH=$(LPATHS)
107
 
endif
108
 
 
109
 
ifeq ($(strip $(PLATFORM)),HPUX)
110
 
  TOOL=env LD_LIBRARY_PATH=$(LPATHS)
111
 
endif
112
 
 
113
 
ifeq ($(strip $(PLATFORM)),U_LINUX)
114
 
  TOOL=env LD_LIBRARY_PATH=$(LPATHS)
115
 
endif
116
 
 
117
 
ifeq ($(strip $(PLATFORM)),U_BSD)
118
 
  TOOL=env LD_LIBRARY_PATH=$(LPATHS)
119
 
endif
120