]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - lfs/glibc
kernel: add arm (versatile and kirkwood) cfg for 3.2.x.
[people/teissler/ipfire-2.x.git] / lfs / glibc
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 2.5
28
29 THISAPP = glibc-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 # Normal build or /tools build.
35 #
36 ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 EXTRA_CONFIG = --prefix=/usr \
39 --disable-profile --enable-add-ons \
40 --enable-kernel=2.6.0 --libexecdir=/usr/lib/glibc
41 EXTRA_MAKE =
42 EXTRA_INSTALL =
43 else
44 TARGET = $(DIR_INFO)/$(THISAPP)-tools
45 EXTRA_CONFIG = --prefix=/tools \
46 --disable-profile --enable-add-ons \
47 --enable-kernel=2.6.0 --with-binutils=/tools/bin \
48 --without-gd --with-headers=/tools/include \
49 --without-selinux
50 EXTRA_MAKE =
51 EXTRA_INSTALL =
52 endif
53
54 EXTRA_CONFIG += --build=$(BUILDTARGET)
55
56 ifeq "$(MACHINE_TYPE)" "arm"
57 # Disable hardware FP for ARM.
58 EXTRA_CONFIG += \
59 --without-fp
60 endif
61
62 ###############################################################################
63 # Top-level Rules
64 ###############################################################################
65
66 objects = $(DL_FILE) \
67 glibc-libidn-$(VER).tar.bz2
68
69 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
70 glibc-libidn-$(VER).tar.bz2 = $(DL_FROM)/glibc-libidn-$(VER).tar.bz2
71
72 $(DL_FILE)_MD5 = 1fb29764a6a650a4d5b409dda227ac9f
73 glibc-libidn-$(VER).tar.bz2_MD5 = 8787868ba8962d9b125997ec2f25ac01
74
75 # ARM needs glibc-ports
76 ifeq "$(MACHINE_TYPE)" "arm"
77 objects += glibc-ports-$(VER).tar.bz2
78 glibc-ports-$(VER).tar.bz2 = $(DL_FROM)/glibc-ports-$(VER).tar.bz2
79 glibc-ports-$(VER).tar.bz2_MD5 = 183f6d46e8fa5e4b2aff240ab1586c2e
80 endif
81
82 install : $(TARGET)
83
84 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
85
86 download :$(patsubst %,$(DIR_DL)/%,$(objects))
87
88 md5 : $(subst %,%_MD5,$(objects))
89
90 ###############################################################################
91 # Downloading, checking, md5sum
92 ###############################################################################
93
94 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
95 @$(CHECK)
96
97 $(patsubst %,$(DIR_DL)/%,$(objects)) :
98 @$(LOAD)
99
100 $(subst %,%_MD5,$(objects)) :
101 @$(MD5)
102
103 ###############################################################################
104 # Installation Details
105 ###############################################################################
106
107 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
108 @$(PREBUILD)
109 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
110 @mkdir $(DIR_SRC)/glibc-build
111 ifeq "$(MACHINE_TYPE)" "arm"
112 cd $(DIR_APP) && tar jxf $(DIR_DL)/glibc-ports-$(VER).tar.bz2
113 cd $(DIR_APP) && mv -v glibc-ports-$(VER) ports
114
115 cd $(DIR_APP)/ports && patch -Np1 -i $(DIR_SRC)/src/patches/glibc-ports-avoid-using-asm-procinfo.patch
116
117 # asm/page.h should not be included in sysdeps/unix/sysv/linux/arm/ioperm.c.
118 cd $(DIR_APP) && sed "/asm\/page.h/d" -i ports/sysdeps/unix/sysv/linux/arm/ioperm.c
119 endif
120
121 ifeq "$(ROOT)" ""
122 # This locale causes a loop on bash login - exclude it
123 cd $(DIR_APP) && sed -i '/vi_VN.TCVN/d' localedata/SUPPORTED
124 ifeq "$(MACHINE_TYPE)" "arm"
125 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.3 -o|' \
126 scripts/test-installation.pl
127 else
128 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.2 -o|' \
129 scripts/test-installation.pl
130 endif
131 endif
132 cd $(DIR_SRC)/glibc-build && CFLAGS="$(CFLAGS)" $(DIR_APP)/configure $(EXTRA_CONFIG)
133
134 ifeq "$(ROOT)" ""
135 touch /etc/ld.so.conf
136 cd $(DIR_SRC)/glibc-build && make $(MAKETUNING) $(EXTRA_MAKE)
137 cd $(DIR_SRC)/glibc-build && make $(EXTRA_INSTALL) install
138 else
139 -mkdir /tools/etc
140 touch /tools/etc/ld.so.conf
141 cd $(DIR_SRC)/glibc-build && make $(MAKETUNING) $(EXTRA_MAKE)
142 cd $(DIR_SRC)/glibc-build && make $(EXTRA_INSTALL) install
143 endif
144
145 # Creating the locales
146 ifeq "$(ROOT)" ""
147 mkdir -p /usr/lib/locale
148 cd $(DIR_SRC)/glibc-build && localedef -i en_US -f ISO-8859-1 en_US
149 cd $(DIR_SRC)/glibc-build && localedef -i en_US -f UTF-8 en_US.utf8
150 endif
151 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build
152 @$(POSTBUILD)