2009-02-20 08:46:43 +01:00
|
|
|
#
|
2011-02-04 02:37:38 +01:00
|
|
|
# spec file for package glibc
|
2009-02-20 08:46:43 +01:00
|
|
|
#
|
2013-01-08 12:55:27 +01:00
|
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2009-02-20 08:46:43 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2011-07-21 08:55:20 +02:00
|
|
|
|
2012-12-17 14:15:06 +01:00
|
|
|
# PLEASE run pre_checkin.sh in this directory before submitting
|
|
|
|
# this package. Otherwise the .spec and .changes for glibc-testsuite
|
2012-12-19 18:04:05 +01:00
|
|
|
# and glibc-utils aren't updated.
|
2012-12-17 14:15:06 +01:00
|
|
|
|
2012-04-17 14:34:50 +02:00
|
|
|
# Run with osc --with=fast_build to have a shorter turnaround
|
2012-12-17 14:15:06 +01:00
|
|
|
# It will avoid building some parts of glibc
|
2012-04-17 14:34:50 +02:00
|
|
|
%bcond_with fast_build
|
2012-04-13 11:37:44 +02:00
|
|
|
|
2011-07-19 14:17:47 +02:00
|
|
|
%define crypt_bf_version 1.2
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
Name: glibc
|
2012-12-19 18:04:05 +01:00
|
|
|
%define normal_build ("%{name}" == "glibc")
|
|
|
|
%define utils_build ("%{name}" == "glibc-utils")
|
2012-12-17 14:15:06 +01:00
|
|
|
%define testsuite_build ("%{name}" == "glibc-testsuite")
|
2012-12-19 18:04:05 +01:00
|
|
|
# UTILS-SUMMARY-BEGIN
|
2011-06-20 14:47:04 +02:00
|
|
|
Summary: Standard Shared Libraries (from the GNU C Library)
|
2012-01-18 10:31:00 +01:00
|
|
|
License: LGPL-2.1+ and SUSE-LGPL-2.1+-with-GCC-exception and GPL-2.0+
|
2011-06-20 14:47:04 +02:00
|
|
|
Group: System/Libraries
|
2012-12-19 18:04:05 +01:00
|
|
|
# UTILS-SUMMARY-END
|
2012-08-28 14:25:24 +02:00
|
|
|
BuildRequires: fdupes
|
2009-02-20 08:46:43 +01:00
|
|
|
BuildRequires: libselinux-devel
|
2012-07-17 21:30:18 +02:00
|
|
|
BuildRequires: makeinfo
|
2012-07-20 19:37:36 +02:00
|
|
|
BuildRequires: xz
|
2012-11-24 15:18:54 +01:00
|
|
|
BuildRequires: pkgconfig(systemd)
|
2012-12-17 14:15:06 +01:00
|
|
|
%if %{testsuite_build}
|
2012-08-28 14:25:24 +02:00
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: libstdc++-devel
|
|
|
|
%endif
|
2012-12-19 18:04:05 +01:00
|
|
|
%if %{utils_build}
|
|
|
|
BuildRequires: gd-devel
|
|
|
|
%endif
|
2012-04-16 22:11:08 +02:00
|
|
|
|
2012-12-19 18:04:05 +01:00
|
|
|
%define __filter_GLIBC_PRIVATE 1
|
2012-04-16 22:11:08 +02:00
|
|
|
%if %_target_cpu == "i686"
|
2012-12-14 20:35:52 +01:00
|
|
|
# For i686 let's only build what's different from i586, so
|
|
|
|
# no need to build documentation
|
|
|
|
%define build_profile 1
|
|
|
|
%define build_locales 1
|
2012-04-16 22:11:08 +02:00
|
|
|
%define build_html 0
|
|
|
|
%else
|
2012-12-19 18:04:05 +01:00
|
|
|
%if %{with fast_build} || %{utils_build}
|
2012-04-17 14:34:50 +02:00
|
|
|
%define build_profile 0
|
|
|
|
%define build_locales 0
|
|
|
|
%define build_html 0
|
|
|
|
%else
|
|
|
|
# Default:
|
2013-02-19 18:17:41 +01:00
|
|
|
%ifarch aarch64
|
|
|
|
# aarch64 doesn't support -pg yet
|
|
|
|
%define build_profile 0
|
|
|
|
%else
|
2012-04-16 22:11:08 +02:00
|
|
|
%define build_profile 1
|
2013-02-19 18:17:41 +01:00
|
|
|
%endif
|
2009-02-20 08:46:43 +01:00
|
|
|
%define build_locales 1
|
2012-04-16 22:11:08 +02:00
|
|
|
%define build_html 1
|
|
|
|
%endif
|
2012-04-17 14:34:50 +02:00
|
|
|
%endif
|
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%define disable_assert 0
|
|
|
|
%define enable_stackguard_randomization 1
|
|
|
|
%ifarch ppc ppc64
|
2010-01-03 12:31:34 +01:00
|
|
|
%define optimize_power 1
|
2010-04-26 13:34:14 +02:00
|
|
|
%ifarch ppc
|
2012-06-13 15:54:01 +02:00
|
|
|
%define powerpc_optimize_base power3
|
|
|
|
%define powerpc_optimize_tune power3
|
2012-12-19 18:04:05 +01:00
|
|
|
%define powerpc_optimize_cpu_power4 %{normal_build}
|
2010-04-26 13:34:14 +02:00
|
|
|
%else
|
2010-01-03 12:31:34 +01:00
|
|
|
%define powerpc_optimize_base power4
|
|
|
|
%define powerpc_optimize_tune power5
|
2012-06-13 15:54:01 +02:00
|
|
|
%define powerpc_optimize_cpu_power4 0
|
2010-04-26 13:34:14 +02:00
|
|
|
%endif
|
2010-01-29 14:56:15 +01:00
|
|
|
# We are not building Power CPU specific optimizations for openSUSE.
|
|
|
|
%define powerpc_optimize_cpu_power6 0
|
|
|
|
%define powerpc_optimize_cpu_power7 0
|
|
|
|
%define powerpc_optimize_cpu_cell 0
|
2009-02-20 08:46:43 +01:00
|
|
|
%else
|
2010-01-03 12:31:34 +01:00
|
|
|
%define optimize_power 0
|
|
|
|
%define powerpc_optimize_base 0
|
2010-04-26 13:34:14 +02:00
|
|
|
%define powerpc_optimize_cpu_power4 0
|
2010-01-03 12:31:34 +01:00
|
|
|
%define powerpc_optimize_cpu_power6 0
|
|
|
|
%define powerpc_optimize_cpu_power7 0
|
|
|
|
%define powerpc_optimize_cpu_cell 0
|
|
|
|
%endif # ppc, ppc64
|
2012-01-31 11:21:58 +01:00
|
|
|
%ifarch x86_64
|
|
|
|
# 2.6.32 is the SLES 11 SP1 kernel
|
|
|
|
# 2.6.34 is the openSUSE 11.3 kernel
|
|
|
|
%define enablekernel 2.6.32
|
|
|
|
%else
|
2011-06-30 13:28:39 +02:00
|
|
|
# 2.6.16 is the SLES 10 kernel, use this as oldest supported kernel
|
|
|
|
%define enablekernel 2.6.16
|
2012-01-31 11:21:58 +01:00
|
|
|
%endif
|
2012-12-25 18:00:16 +01:00
|
|
|
Version: 2.17
|
2012-01-31 10:40:30 +01:00
|
|
|
Release: 0
|
2012-12-25 18:00:16 +01:00
|
|
|
%define glibc_major_version 2.17
|
|
|
|
%define git_id c758a6861537
|
2009-02-20 08:46:43 +01:00
|
|
|
Url: http://www.gnu.org/software/libc/libc.html
|
2011-08-17 21:42:24 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2012-06-26 09:45:02 +02:00
|
|
|
Source: glibc-%{version}-%{git_id}.tar.xz
|
2009-02-20 08:46:43 +01:00
|
|
|
Source3: noversion.tar.bz2
|
|
|
|
Source4: manpages.tar.bz2
|
2012-04-19 13:14:21 +02:00
|
|
|
Source5: nsswitch.conf
|
|
|
|
Source7: bindresvport.blacklist
|
|
|
|
Source8: glibc_post_upgrade.c
|
|
|
|
Source9: glibc.rpmlintrc
|
|
|
|
Source10: baselibs.conf
|
2011-07-07 10:29:39 +02:00
|
|
|
# For systemd
|
|
|
|
Source20: nscd.conf
|
|
|
|
Source21: nscd.service
|
2012-04-19 13:14:21 +02:00
|
|
|
# crypt_blowfish
|
2011-07-19 14:17:47 +02:00
|
|
|
Source50: http://www.openwall.com/crypt/crypt_blowfish-%{crypt_bf_version}.tar.gz
|
|
|
|
Source51: http://www.openwall.com/crypt/crypt_blowfish-%{crypt_bf_version}.tar.gz.sign
|
2011-07-07 10:29:39 +02:00
|
|
|
|
2012-12-19 18:04:05 +01:00
|
|
|
%if %{normal_build}
|
|
|
|
# ngpt was used in 8.1 and SLES8
|
|
|
|
Obsoletes: ngpt < 2.2.2
|
|
|
|
Obsoletes: ngpt-devel < 2.2.2
|
|
|
|
Provides: ngpt = 2.2.2
|
|
|
|
Provides: ngpt-devel = 2.2.2
|
|
|
|
Conflicts: kernel < %{enablekernel}
|
|
|
|
# bug437293 - handle update from SLES10 on PowerPC
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: glibc-64bit
|
|
|
|
%endif
|
|
|
|
%ifarch ppc
|
|
|
|
Obsoletes: glibc-32bit
|
|
|
|
%endif
|
|
|
|
%ifarch armv7l armv7hl
|
|
|
|
# The old runtime linker link gets not provided by rpm find.provides, but it exists
|
|
|
|
Provides: ld-linux.so.3
|
|
|
|
Provides: ld-linux.so.3(GLIBC_2.4)
|
|
|
|
%endif
|
2011-06-27 14:05:13 +02:00
|
|
|
Requires(pre): filesystem
|
2012-01-16 16:06:45 +01:00
|
|
|
Recommends: glibc-extra
|
2011-06-15 14:55:16 +02:00
|
|
|
Provides: rtld(GNU_HASH)
|
2012-12-19 18:04:05 +01:00
|
|
|
%endif # %{normal_build}
|
|
|
|
%if %{utils_build}
|
|
|
|
Requires: glibc = %{version}
|
|
|
|
%endif
|
2011-06-15 14:55:16 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2009-02-20 08:46:43 +01:00
|
|
|
%if %_target_cpu == "i686"
|
2010-01-03 12:31:34 +01:00
|
|
|
# We need to avoid to have only the src rpm from i686 on the media,
|
2009-02-20 08:46:43 +01:00
|
|
|
# since it does not work on other architectures.
|
|
|
|
NoSource: 0
|
|
|
|
%endif
|
|
|
|
#
|
2012-04-17 14:34:50 +02:00
|
|
|
|
|
|
|
###
|
2012-04-19 13:14:21 +02:00
|
|
|
# Patches are ordered in the following groups:
|
2012-04-19 10:18:58 +02:00
|
|
|
# Patches that we will never upstream or which have not been looked at: 0-999
|
2012-04-17 14:34:50 +02:00
|
|
|
# Patches taken from upstream: 1000-2000
|
|
|
|
# Patches that are going upstream, waiting approval: 2000-3000
|
|
|
|
###
|
|
|
|
|
|
|
|
###
|
|
|
|
# Patches that upstream will not accept
|
|
|
|
###
|
2012-04-19 10:18:58 +02:00
|
|
|
|
|
|
|
###
|
|
|
|
# openSUSE specific patches - won't go upstream
|
|
|
|
###
|
|
|
|
### openSUSE extensions, configuration
|
2011-07-19 14:17:47 +02:00
|
|
|
# PATCH-FEATURE-OPENSUSE -- add crypt_blowfish support - bnc#700876
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch1: glibc-2.14-crypt.diff
|
2011-08-29 10:21:41 +02:00
|
|
|
# PATCH-FEATURE-OPENSUSE -- use separate symbol version for Owl extensions - lnussel@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch2: glibc-2.14-crypt-versioning.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FEATURE-OPENSUSE -- add sha support to crypt_blowfish lnussel@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch3: crypt_blowfish-1.2-sha.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FEATURE-OPENSUSE -- use separate symbol version for Owl extensions - lnussel@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch4: crypt_blowfish-1.2-versioning.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Avoid build failure on noexecstack marker on ARM dmueller@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch5: crypt_blowfish-1.2-hack_around_arm.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Fix path for nscd databases
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch6: glibc-2.3.3-nscd-db-path.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Fix path for nss_db (bnc#753657) - aj@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch7: nss-db-path.patch
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE adjust nscd.conf
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch8: glibc-nscd.conf.patch
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE do not use compile time in binaries
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch9: glibc-nodate.patch
|
2012-04-18 13:54:26 +02:00
|
|
|
# PATCH-FIX-OPENSUSE -- add some extra information to version output - kukuk@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch10: glibc-version.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE remove lfs test from testsuite aj@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch11: glibc-testsuite.patch
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE handle old glibc binaries
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch12: glibc-2.3.90-noversion.diff
|
2012-04-18 13:54:26 +02:00
|
|
|
# PATCH-FIX-OPENSUSE -- Make --no-archive default for localedef - kukuk@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch13: glibc-2.3.2.no_archive.diff
|
2012-04-18 13:54:26 +02:00
|
|
|
# PATCH-FIX-OPENSUSE -- add blacklist for bindresvport
|
2011-02-04 05:30:37 +01:00
|
|
|
Patch14: glibc-2.3.90-bindresvport.blacklist.diff
|
2011-07-04 15:26:19 +02:00
|
|
|
# PATCH-FIX-OPENSUSE prefer -lang rpm packages
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch15: glibc-2.3.90-langpackdir.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FEATURE-SLE increase cpusetsize to 4096, needs to be kept for compatibility kukuk@suse.de (XXX: Review)
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch18: glibc-cpusetsize.diff
|
2012-05-14 11:39:40 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Allow ARM binaries with old linker path to run - aj@suse.de
|
|
|
|
Patch20: glibc-armhf-compat.patch
|
2012-08-28 14:25:24 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Fix check abi for crypt additions
|
|
|
|
Patch21: glibc-fix-check-abi.patch
|
2013-01-24 18:32:50 +01:00
|
|
|
# PATCH-FIX-OPENSUSE Disable badsalttest which expects that crypt can fail
|
|
|
|
Patch22: glibc-crypt-badsalttest.patch
|
2012-04-19 10:18:58 +02:00
|
|
|
|
|
|
|
### Locale related patches
|
|
|
|
# PATCH-FIX-OPENSUSE Add additional locales
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch100: glibc-2.3.locales.diff.bz2
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Support pre-EURO currencies (XXX: Still needed?)
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch101: glibc-2.4.90-revert-only-euro.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE -- Add no_NO back (XXX: Still needed?)
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch102: glibc-2.4.90-no_NO.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE -- Renames for China
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch103: glibc-2.4-china.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
|
|
|
|
### Broken patches in glibc that we revert for now:
|
2012-12-08 21:14:46 +01:00
|
|
|
# None
|
2012-04-19 10:18:58 +02:00
|
|
|
|
|
|
|
### Network related patches
|
|
|
|
# PATCH-FIX-OPENSUSE reload /etc/resolv.conf on change
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch300: glibc-resolv-reload.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Fix hangs in UDP RPC calls bso#5379 bnc#257745 aj@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch301: glibc-2.2-sunrpc.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE only use ipv6 if real ipv6 address exists bnc#361697, bnc#684534
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch302: getaddrinfo-ipv6-sanity.diff
|
2012-04-18 13:54:26 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Warn about usage of mdns in resolv.conv
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch304: glibc-resolv-mdnshint.diff
|
2012-04-18 13:54:26 +02:00
|
|
|
# PATCH-FIX-OPENSUSE nscd does not account for 'multi on' in /etc/host.conf when ai-resolving host bso#11928
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch305: glibc-nscd-hconf.diff
|
2011-07-25 10:53:48 +02:00
|
|
|
# PATCH-FIX-OPENSUSE disable rewriting ::1 to 127.0.0.1 for /etc/hosts bnc#684534, bnc#706719
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch306: glibc-fix-double-loopback.diff
|
2012-04-19 10:18:58 +02:00
|
|
|
|
2012-04-17 14:34:50 +02:00
|
|
|
###
|
|
|
|
# Patches from upstream
|
|
|
|
###
|
2013-05-16 17:57:30 +02:00
|
|
|
# PATCH-FIX-UPSTREAM Extend i486 pthread_cond_timedwait to use futex syscall with absolute timeout
|
|
|
|
Patch1000: pthread-cond-timedwait-i486.patch
|
|
|
|
# PATCH-FIX-UPSTREAM Use lib64 for aarch64
|
|
|
|
Patch1001: glibc-aarch64-lib64.patch
|
|
|
|
# PATCH-FIX-UPSTREAM ARM: Support loading unmarked objects from cache
|
|
|
|
Patch1002: arm-ld-so-cache.patch
|
|
|
|
# PATCH-FIX-UPSTREAM Add support for rtld directory different from slib directory
|
|
|
|
Patch1003: rtlddir.patch
|
|
|
|
# PATCH-FIX-UPSTREAM Fix buffer overrun in regexp matcher
|
|
|
|
Patch1004: regexp-overrun.patch
|
|
|
|
# PATCH-FIX-UPSTREAM Fix stack overflow in getaddrinfo with many results
|
|
|
|
Patch1005: getaddrinfo-overflow.patch
|
2012-04-17 14:34:50 +02:00
|
|
|
|
|
|
|
###
|
|
|
|
# Patches awaiting upstream approval
|
|
|
|
###
|
2012-04-19 10:18:58 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Fix LD_PROFILE (glibc bug#13818) - aj@suse.de
|
2012-04-19 13:14:21 +02:00
|
|
|
Patch2008: glibc-ld-profile.patch
|
2012-12-10 14:11:27 +01:00
|
|
|
# PATCH-FIX-OPENSUSE Properly check for short writes when sending the response in nscd
|
|
|
|
Patch2010: nscd-short-write.patch
|
2013-05-16 17:57:30 +02:00
|
|
|
# PATCH-FIX-OPENSUSE Update BIG5-HKSCS charmap to HKSCS-2008
|
|
|
|
Patch2011: big5-hkscs-update.patch.bz2
|
|
|
|
# PATCH-FIX-OPENSUSE Fix parsing of numeric hosts in gethostbyname_r
|
|
|
|
Patch2012: digits-dots.patch
|
|
|
|
# PATCH-FIX-OPENSUSE Properly cache the result from looking up the nss database config
|
|
|
|
Patch2013: nss-database.patch
|
|
|
|
# PATCH-FIX-OPENSUSE Properly handle %W in strptime
|
|
|
|
Patch2014: strptime-W-week.patch
|
|
|
|
# PATCH-FIX-OPENSUSE Revert problematic fixes for [BZ #11741]
|
|
|
|
Patch2015: printf-overrun.patch
|
2011-06-16 15:36:45 +02:00
|
|
|
|
2013-02-28 16:19:48 +01:00
|
|
|
# Non-glibc patches
|
|
|
|
# PATCH-FIX-OPENSUSE Remove debianisms from manpages
|
|
|
|
Patch3000: manpages.patch
|
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%description
|
|
|
|
The GNU C Library provides the most important standard libraries used
|
|
|
|
by nearly all programs: the standard C library, the standard math
|
|
|
|
library, and the POSIX thread library. A system is not functional
|
|
|
|
without these libraries.
|
|
|
|
|
|
|
|
%package info
|
|
|
|
Summary: Info Files for the GNU C Library
|
2012-01-18 10:31:00 +01:00
|
|
|
License: GFDL-1.1
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: Documentation/Other
|
2011-06-27 14:05:13 +02:00
|
|
|
Requires(post): %{install_info_prereq}
|
|
|
|
Requires(postun): %{install_info_prereq}
|
2011-08-18 14:05:28 +02:00
|
|
|
BuildArch: noarch
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%description info
|
|
|
|
This package contains the documentation for the GNU C library stored as
|
|
|
|
info files. Due to a lack of resources, this documentation is not
|
|
|
|
complete and is partially out of date.
|
|
|
|
|
|
|
|
%package html
|
|
|
|
Summary: HTML Documentation for the GNU C Library
|
2012-01-18 10:31:00 +01:00
|
|
|
License: GFDL-1.1
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: Documentation/HTML
|
2011-08-18 14:05:28 +02:00
|
|
|
BuildArch: noarch
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%description html
|
|
|
|
This package contains the HTML documentation for the GNU C library. Due
|
|
|
|
to a lack of resources, this documentation is not complete and is
|
|
|
|
partially out of date.
|
|
|
|
|
|
|
|
%package i18ndata
|
|
|
|
Summary: Database Sources for 'locale'
|
2012-01-18 10:31:00 +01:00
|
|
|
License: GPL-2.0+ and MIT
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: System/Libraries
|
2011-08-18 14:05:28 +02:00
|
|
|
BuildArch: noarch
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%description i18ndata
|
|
|
|
This package contains the data needed to build the locale data files to
|
|
|
|
use the internationalization features of the GNU libc. It is normally
|
|
|
|
not necessary to install this packages, the data files are already
|
|
|
|
created.
|
|
|
|
|
|
|
|
%package locale
|
|
|
|
Summary: Locale Data for Localized Programs
|
2012-01-18 10:31:00 +01:00
|
|
|
License: GPL-2.0+ and MIT and LGPL-2.1+
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: System/Libraries
|
2011-06-27 14:05:13 +02:00
|
|
|
Requires(post): /bin/cat
|
2011-06-15 14:55:16 +02:00
|
|
|
Requires: glibc = %{version}
|
2009-02-20 08:46:43 +01:00
|
|
|
# bug437293
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: glibc-locale-64bit
|
|
|
|
%endif
|
|
|
|
%ifarch ppc
|
|
|
|
Obsoletes: glibc-locale-32bit
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description locale
|
|
|
|
Locale data for the internationalisation features of the GNU C library.
|
|
|
|
|
|
|
|
%package -n nscd
|
|
|
|
Summary: Name Service Caching Daemon
|
2012-01-18 10:31:00 +01:00
|
|
|
License: GPL-2.0+
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: System/Daemons
|
2011-06-15 14:55:16 +02:00
|
|
|
Provides: glibc:/usr/sbin/nscd
|
2012-01-10 14:02:38 +01:00
|
|
|
Requires: glibc = %{version}
|
2013-01-31 17:31:36 +01:00
|
|
|
Obsoletes: unscd <= 0.48
|
2012-11-24 15:18:54 +01:00
|
|
|
%{?systemd_requires}
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%description -n nscd
|
|
|
|
Nscd caches name service lookups and can dramatically improve
|
|
|
|
performance with NIS, NIS+, and LDAP.
|
|
|
|
|
|
|
|
%package profile
|
|
|
|
Summary: Libc Profiling and Debugging Versions
|
2012-01-18 10:31:00 +01:00
|
|
|
License: LGPL-2.1+ and SUSE-LGPL-2.1+-with-GCC-exception and GPL-2.0+
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Requires: glibc = %{version}
|
|
|
|
# bug437293
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: glibc-profile-64bit
|
|
|
|
%endif
|
|
|
|
%ifarch ppc
|
|
|
|
Obsoletes: glibc-profile-32bit
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%description profile
|
|
|
|
This package contains special versions of the GNU C library which are
|
|
|
|
necessary for profiling and debugging.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Include Files and Libraries Mandatory for Development
|
2012-01-18 10:31:00 +01:00
|
|
|
License: BSD-3-Clause and LGPL-2.1+ and SUSE-LGPL-2.1+-with-GCC-exception and GPL-2.0+
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Obsoletes: epoll = 1.0
|
2011-05-24 17:08:51 +02:00
|
|
|
Provides: epoll < 1.0
|
2009-02-20 08:46:43 +01:00
|
|
|
# bug437293
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: glibc-devel-64bit
|
|
|
|
%endif
|
|
|
|
%ifarch ppc
|
|
|
|
Obsoletes: glibc-devel-32bit
|
|
|
|
%endif
|
2011-06-27 14:05:13 +02:00
|
|
|
Requires: glibc = %{version}
|
|
|
|
Requires: linux-kernel-headers
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
These libraries are needed to develop programs which use the standard C
|
|
|
|
library.
|
|
|
|
|
2011-06-16 15:36:45 +02:00
|
|
|
%package devel-static
|
2011-06-16 17:38:23 +02:00
|
|
|
Summary: C library static libraries for -static linking
|
2012-01-18 10:31:00 +01:00
|
|
|
License: BSD-3-Clause and LGPL-2.1+ and SUSE-LGPL-2.1+-with-GCC-exception and GPL-2.0+
|
2011-06-16 17:14:19 +02:00
|
|
|
Group: Development/Libraries/C and C++
|
2011-06-16 15:36:45 +02:00
|
|
|
Requires: %{name}-devel = %{version}
|
2011-10-19 14:10:22 +02:00
|
|
|
# Provide Fedora name for package to make packaging easier
|
2011-11-08 22:56:00 +01:00
|
|
|
Provides: %{name}-static = %version
|
2011-06-16 15:36:45 +02:00
|
|
|
|
|
|
|
%description devel-static
|
|
|
|
The glibc-devel-static package contains the C library static libraries
|
|
|
|
for -static linking. You don't need these, unless you link statically,
|
|
|
|
which is highly discouraged.
|
|
|
|
|
2012-01-16 16:06:45 +01:00
|
|
|
# makedb requires libselinux. We add this program in a separate
|
|
|
|
# package so that glibc does not require libselinux.
|
|
|
|
%package extra
|
|
|
|
Summary: Extra binaries from GNU C Library
|
2012-01-18 10:31:00 +01:00
|
|
|
License: LGPL-2.1+
|
2012-01-16 16:06:45 +01:00
|
|
|
Group: Development/Languages/C and C++
|
|
|
|
Requires: glibc = %{version}
|
|
|
|
|
|
|
|
%description extra
|
|
|
|
The glibc-extra package contains some extra binaries for glibc that
|
|
|
|
are not essential but recommend to use.
|
|
|
|
|
|
|
|
makedb: A program to create a database for nss
|
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%package obsolete
|
|
|
|
Summary: Obsolete Shared Libraries from the GNU C Library
|
2012-01-18 10:31:00 +01:00
|
|
|
License: LGPL-2.0+
|
2009-02-20 08:46:43 +01:00
|
|
|
Group: System/Libraries
|
|
|
|
Requires: glibc = %{version}
|
|
|
|
|
|
|
|
%description obsolete
|
|
|
|
This package provides some old libraries from the GNU C Library which
|
|
|
|
are no longer supported. Additional it provides a compatibility library
|
|
|
|
for old binaries linked against glibc 2.0.
|
|
|
|
|
|
|
|
Install this package if you need one of this libraries to get old
|
|
|
|
binaries working, but since this libraries are not supported and there
|
|
|
|
is no gurantee that they work for you, you should try to get newer
|
|
|
|
versions of your software.
|
|
|
|
|
|
|
|
%prep
|
2012-11-13 12:56:09 +01:00
|
|
|
%setup -n glibc-%{version} -q -a 3 -a 4
|
2011-07-19 14:17:47 +02:00
|
|
|
# Owl crypt_blowfish
|
|
|
|
tar -xzf %SOURCE50
|
|
|
|
pushd crypt_blowfish-%{crypt_bf_version}
|
2012-04-19 13:14:21 +02:00
|
|
|
%patch3 -p1
|
|
|
|
%patch4 -p1
|
|
|
|
%patch5
|
2011-07-19 14:17:47 +02:00
|
|
|
popd
|
|
|
|
mv crypt/{crypt.h,gnu-crypt.h}
|
|
|
|
mv crypt_blowfish-%crypt_bf_version/*.[chS] crypt/
|
|
|
|
#
|
2012-04-13 11:37:44 +02:00
|
|
|
%patch1 -p1
|
2012-04-19 13:14:21 +02:00
|
|
|
%patch2 -p1
|
|
|
|
%patch6 -p1
|
|
|
|
%patch7 -p1
|
|
|
|
%patch8 -p1
|
2010-03-18 14:37:59 +01:00
|
|
|
# avoid changing nscd_stat.c mtime to avoid code generation
|
|
|
|
# differences on each rebuild
|
|
|
|
touch -r nscd/nscd_stat.c nscd/s-stamp
|
2012-04-19 13:14:21 +02:00
|
|
|
%patch9 -p1
|
2010-03-18 14:37:59 +01:00
|
|
|
touch -r nscd/s-stamp nscd/nscd_stat.c
|
|
|
|
rm nscd/s-stamp
|
2012-04-19 13:14:21 +02:00
|
|
|
%patch10 -p1
|
|
|
|
%patch11 -p1
|
|
|
|
%patch12 -p1
|
|
|
|
%patch13 -p1
|
|
|
|
%patch14 -p1
|
|
|
|
%patch15 -p1
|
|
|
|
%patch18 -p1
|
2012-08-28 14:25:24 +02:00
|
|
|
%patch21 -p1
|
2013-01-24 18:32:50 +01:00
|
|
|
%patch22 -p1
|
2012-04-19 13:14:21 +02:00
|
|
|
|
|
|
|
%patch100 -p1
|
|
|
|
%patch101 -p1
|
|
|
|
%patch102 -p1
|
|
|
|
%patch103 -p1
|
|
|
|
|
|
|
|
%patch300 -p1
|
|
|
|
%patch301 -p1
|
2012-11-23 16:16:20 +01:00
|
|
|
%patch302 -p1
|
2012-04-19 13:14:21 +02:00
|
|
|
%patch304 -p1
|
|
|
|
%patch305 -p1
|
|
|
|
%patch306 -p1
|
|
|
|
|
2012-04-25 12:41:00 +02:00
|
|
|
%ifarch armv7l armv7hl
|
2012-05-14 11:39:40 +02:00
|
|
|
%patch20 -p1
|
2012-04-16 22:11:08 +02:00
|
|
|
%endif
|
2012-05-14 11:39:40 +02:00
|
|
|
|
2013-05-16 17:57:30 +02:00
|
|
|
%patch1000 -p1
|
|
|
|
%patch1001 -p1
|
|
|
|
%patch1002 -p1
|
|
|
|
%patch1003 -p1
|
|
|
|
%patch1004 -p1
|
|
|
|
%patch1005 -p1
|
|
|
|
|
2012-04-19 13:14:21 +02:00
|
|
|
# XXX Disable, it breaks the testsuite, test elf/tst-audit2
|
|
|
|
# %patch2008 -p1
|
2012-12-10 14:11:27 +01:00
|
|
|
%patch2010 -p1
|
2013-02-19 18:17:41 +01:00
|
|
|
%patch2011 -p1
|
2013-05-16 17:57:30 +02:00
|
|
|
%patch2012 -p1
|
|
|
|
%patch2013 -p1
|
|
|
|
%patch2014 -p1
|
|
|
|
%patch2015 -p1
|
2011-07-04 15:26:19 +02:00
|
|
|
|
2013-02-28 16:19:48 +01:00
|
|
|
%patch3000
|
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
#
|
|
|
|
# Inconsistency detected by ld.so: dl-close.c: 719: _dl_close: Assertion `map->l_init_called' failed!
|
|
|
|
#
|
|
|
|
# Glibc 2.8 introduced the HP_TIMING element to the rtld_global_ro struct # definition.
|
|
|
|
# If the base is built without power4 the loader won't have this element in
|
|
|
|
# the struct whereas the power4/5/6/... libc will, so there will be a disconnect
|
|
|
|
# between the size of the rtld_global_ro struct between the two and dl_close
|
|
|
|
# ends up getting called incorrectly when it's actually attempting to call a
|
|
|
|
# resolver function. This is because the GLRO() macro simply attempts to
|
|
|
|
# compute an offset and gets the wrong one.
|
|
|
|
# Building the base glibc with --with-cpu=power4 solves this problem.
|
|
|
|
# But: ppc32 can not default to -mcpu=power4 because it would emit instructions
|
|
|
|
# which are not available on G3, G4 etc.
|
|
|
|
#
|
|
|
|
# We simply remove the power4 files, and build the base glibc for a generic powerpc cpu
|
|
|
|
# Additional cputuned libs can now be used on powerpc32
|
|
|
|
#
|
|
|
|
rm -fv sysdeps/powerpc/powerpc32/power4/hp-timing.c sysdeps/powerpc/powerpc32/power4/hp-timing.h
|
|
|
|
find . -name configure | xargs touch
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
#######################################################################
|
|
|
|
###
|
|
|
|
### BUILD
|
|
|
|
###
|
|
|
|
#######################################################################
|
2011-02-04 02:37:38 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%build
|
|
|
|
if [ -x /bin/uname.bin ]; then
|
2010-01-03 12:31:34 +01:00
|
|
|
/bin/uname.bin -a
|
2009-02-20 08:46:43 +01:00
|
|
|
else
|
2010-01-03 12:31:34 +01:00
|
|
|
uname -a
|
2009-02-20 08:46:43 +01:00
|
|
|
fi
|
|
|
|
uptime || :
|
|
|
|
ulimit -a
|
|
|
|
nice
|
2012-01-12 12:49:18 +01:00
|
|
|
# We do not want configure to figure out the system its building one
|
|
|
|
# to support a common ground and thus set build and host to the
|
|
|
|
# target_cpu.
|
2012-01-31 10:40:30 +01:00
|
|
|
%ifarch %arm
|
|
|
|
%define target %{_target_cpu}-suse-linux-gnueabi
|
|
|
|
%else
|
2012-01-12 12:49:18 +01:00
|
|
|
%define target %{_target_cpu}-suse-linux
|
2012-01-31 10:40:30 +01:00
|
|
|
%endif
|
2012-04-13 11:37:44 +02:00
|
|
|
# Don't use as-needed, it breaks glibc assumptions
|
|
|
|
# Before enabling it, run the testsuite and verify that it
|
|
|
|
# passes completely
|
|
|
|
export SUSE_ASNEEDED=0
|
2009-02-20 08:46:43 +01:00
|
|
|
# Adjust glibc version.h
|
2012-01-31 10:40:30 +01:00
|
|
|
echo "#define CONFHOST \"%{target}\"" >> version.h
|
2012-11-13 12:56:09 +01:00
|
|
|
echo "#define GITID \"%{git_id}\"" >> version.h
|
2009-02-20 08:46:43 +01:00
|
|
|
#
|
|
|
|
# Default CFLAGS and Compiler
|
|
|
|
#
|
2011-06-27 14:05:13 +02:00
|
|
|
BuildFlags="%{optflags} -U_FORTIFY_SOURCE"
|
2009-02-20 08:46:43 +01:00
|
|
|
BuildFlags="$(echo $BuildFlags | sed -e 's#-fstack-protector##' -e 's#-ffortify=[0-9]*##')"
|
2011-10-10 15:44:00 +02:00
|
|
|
BuildCC="%__cc"
|
|
|
|
BuildCCplus="%__cxx"
|
2009-02-20 08:46:43 +01:00
|
|
|
add_ons=",libidn"
|
|
|
|
#
|
|
|
|
#now overwrite for some architectures
|
|
|
|
#
|
|
|
|
%ifarch sparc64
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="-O2 -mcpu=ultrasparc -mvis -fcall-used-g6"
|
|
|
|
BuildCC="gcc -m64"
|
|
|
|
BuildCCplus="$BuildCCplus -m64"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%ifarch sparc
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="$BuildFlags -fcall-used-g6"
|
|
|
|
BuildCC="gcc -m32"
|
|
|
|
BuildCCplus="$BuildCCplus -m32"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%ifarch sparcv9
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="$BuildFlags -mcpu=ultrasparc -fcall-used-g6"
|
|
|
|
BuildCC="gcc -m32"
|
|
|
|
BuildCCplus="$BuildCCplus -m32"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%ifarch alphaev6
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="-mcpu=ev6"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%ifarch ppc ppc64
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="$(echo $BuildFlags | sed 's#-mminimal-toc##')"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%ifarch ppc64
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildCC="$BuildCC -m64"
|
|
|
|
BuildCCplus="$BuildCCplus -m64"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%ifarch hppa
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="$BuildFlags -mpa-risc-1-1 -fstrict-aliasing"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
# Add flags for all plattforms except AXP
|
|
|
|
%ifnarch alpha
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="$BuildFlags -g"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%if %{disable_assert}
|
2010-01-03 12:31:34 +01:00
|
|
|
BuildFlags="$BuildFlags -DNDEBUG=1"
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%ifarch %ix86
|
2010-01-03 12:31:34 +01:00
|
|
|
add_ons=$add_ons,noversion
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
2013-02-03 01:09:09 +01:00
|
|
|
%ifarch %arm aarch64 mipsel ia64
|
2012-11-13 12:56:09 +01:00
|
|
|
add_ons=$add_ons,ports
|
2012-08-28 14:25:24 +02:00
|
|
|
%endif
|
|
|
|
%ifarch %arm mipsel
|
2010-01-03 12:31:34 +01:00
|
|
|
# fails to build otherwise - need to recheck and fix
|
|
|
|
%define enable_stackguard_randomization 0
|
2009-05-27 12:39:38 +02:00
|
|
|
%endif
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
configure_and_build_glibc() {
|
2010-01-03 12:31:34 +01:00
|
|
|
local dirname="$1"; shift
|
|
|
|
local cflags="$1"; shift
|
|
|
|
local addons="$1"; shift
|
|
|
|
mkdir "cc-$dirname"
|
|
|
|
cd "cc-$dirname"
|
2013-02-03 01:09:09 +01:00
|
|
|
%ifarch %arm aarch64
|
2011-11-10 15:05:53 +01:00
|
|
|
# remove asynchronous-unwind-tables during configure as it causes
|
2011-12-27 09:19:44 +01:00
|
|
|
# some checks to fail spuriously on arm
|
2011-11-10 15:05:53 +01:00
|
|
|
conf_cflags="${cflags/-fasynchronous-unwind-tables/}"
|
|
|
|
conf_cflags="${conf_cflags/-funwind-tables/}"
|
|
|
|
%else
|
|
|
|
conf_cflags="$cflags"
|
|
|
|
%endif
|
2012-04-13 11:37:44 +02:00
|
|
|
|
2012-04-18 13:54:26 +02:00
|
|
|
profile="--disable-profile"
|
|
|
|
%if %{build_profile}
|
2012-04-19 10:18:58 +02:00
|
|
|
if [ "$dirname" = "base" ] ; then
|
2012-04-18 13:54:26 +02:00
|
|
|
profile="--enable-profile"
|
|
|
|
fi
|
|
|
|
%endif
|
2012-08-28 14:25:24 +02:00
|
|
|
CFLAGS="$conf_cflags" BUILD_CFLAGS="$conf_cflags" \
|
|
|
|
CC="$BuildCC" CXX="$BuildCCplus" ../configure \
|
2010-01-03 12:31:34 +01:00
|
|
|
--prefix=%{_prefix} \
|
2012-09-04 20:58:49 +02:00
|
|
|
--libexecdir=%{_libexecdir} --infodir=%{_infodir} \
|
2012-04-16 22:11:08 +02:00
|
|
|
--enable-add-ons=nptl$addons \
|
2012-04-18 13:54:26 +02:00
|
|
|
$profile \
|
2010-01-03 12:31:34 +01:00
|
|
|
"$@" \
|
2009-02-20 08:46:43 +01:00
|
|
|
%if %{enable_stackguard_randomization}
|
2010-01-03 12:31:34 +01:00
|
|
|
--enable-stackguard-randomization \
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
2012-01-12 12:49:18 +01:00
|
|
|
--build=%{target} --host=%{target} \
|
2012-11-28 17:19:40 +01:00
|
|
|
%ifarch ppc ppc64 %{ix86} x86_64 sparc sparc64 s390 s390x
|
2010-11-16 02:47:23 +01:00
|
|
|
--enable-multi-arch \
|
2009-05-27 12:39:38 +02:00
|
|
|
%endif
|
2011-10-10 15:44:00 +02:00
|
|
|
%ifarch mipsel
|
|
|
|
--without-fp \
|
|
|
|
%endif
|
2012-01-03 15:57:43 +01:00
|
|
|
--enable-kernel=%{enablekernel} \
|
2012-12-27 13:32:57 +01:00
|
|
|
--with-bugurl=http://bugs.opensuse.org \
|
2012-08-28 14:25:24 +02:00
|
|
|
--enable-bind-now --enable-obsolete-rpc
|
|
|
|
# Should we enable --enable-systemtap?
|
2011-05-25 21:08:25 +02:00
|
|
|
# Should we enable --enable-nss-crypt to build use freebl3 hash functions?
|
2011-11-10 15:05:53 +01:00
|
|
|
# explicitly set CFLAGS to use the full CFLAGS (not the reduced one for configure)
|
2012-08-28 14:25:24 +02:00
|
|
|
make %{?_smp_mflags} CFLAGS="$cflags" BUILD_CFLAGS="$cflags"
|
2010-01-03 12:31:34 +01:00
|
|
|
cd ..
|
2009-02-20 08:46:43 +01:00
|
|
|
}
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
%if !%{optimize_power}
|
|
|
|
#
|
|
|
|
# Build base glibc
|
|
|
|
#
|
|
|
|
configure_and_build_glibc base "$BuildFlags" "$add_ons"
|
2009-02-20 08:46:43 +01:00
|
|
|
%else
|
2010-01-03 12:31:34 +01:00
|
|
|
#
|
|
|
|
# Build POWER-optimized glibc
|
|
|
|
#
|
|
|
|
# First, base build:
|
|
|
|
pBuildFlags="$BuildFlags -mcpu=%{powerpc_optimize_base} -mtune=%{powerpc_optimize_tune}"
|
2010-04-26 13:34:14 +02:00
|
|
|
%if %{powerpc_optimize_base} != "power3"
|
2010-03-25 17:12:02 +01:00
|
|
|
configure_and_build_glibc base "$pBuildFlags" "$add_ons" --with-cpu=%{powerpc_optimize_base}
|
2010-04-26 13:34:14 +02:00
|
|
|
%else
|
|
|
|
# Use no default CPU
|
|
|
|
configure_and_build_glibc base "$pBuildFlags" "$add_ons"
|
|
|
|
%endif
|
2010-01-03 12:31:34 +01:00
|
|
|
# Then other power variants:
|
|
|
|
for pcpu in \
|
2010-04-26 13:34:14 +02:00
|
|
|
%if %{powerpc_optimize_cpu_power4}
|
|
|
|
power4 \
|
|
|
|
%endif
|
2010-01-03 12:31:34 +01:00
|
|
|
%if %{powerpc_optimize_cpu_power6}
|
|
|
|
power6 \
|
|
|
|
%endif
|
|
|
|
%if %{powerpc_optimize_cpu_power7}
|
|
|
|
power7 \
|
|
|
|
%endif
|
|
|
|
; do
|
2010-03-25 17:12:02 +01:00
|
|
|
configure_and_build_glibc $pcpu "$BuildFlags -mcpu=$pcpu" "$add_ons" \
|
2012-11-21 19:55:43 +01:00
|
|
|
--with-cpu=$pcpu
|
2010-01-03 12:31:34 +01:00
|
|
|
done
|
|
|
|
# Eventually, special Cell variant:
|
|
|
|
%if %{powerpc_optimize_cpu_cell}
|
2012-11-21 19:55:43 +01:00
|
|
|
configure_and_build_glibc ppc-cell-be "$BuildFlags -mcpu=cell" "$add_ons"
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
|
|
|
%endif # optimize_power
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
#
|
|
|
|
# Build html documentation
|
|
|
|
#
|
2012-04-16 22:11:08 +02:00
|
|
|
%if %{build_html}
|
2010-01-03 12:31:34 +01:00
|
|
|
make -C cc-base html
|
2012-04-16 22:11:08 +02:00
|
|
|
%endif
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
#
|
|
|
|
# Build glibc_post_upgrade binary
|
|
|
|
#
|
2011-06-27 14:05:13 +02:00
|
|
|
$BuildCC -static %{optflags} -Os $RPM_SOURCE_DIR/glibc_post_upgrade.c -o glibc_post_upgrade \
|
2010-01-03 12:31:34 +01:00
|
|
|
-Lcc-base -Bcc-base/csu \
|
2010-04-26 13:34:14 +02:00
|
|
|
'-DREMOVE_TLS_DIRS' '-DREMOVE_PPC_OPTIMIZE_POWER5' \
|
2009-02-20 08:46:43 +01:00
|
|
|
%ifarch ppc ppc64
|
2010-04-26 13:34:14 +02:00
|
|
|
%if !%{powerpc_optimize_cpu_power4}
|
|
|
|
'-DREMOVE_PPC_OPTIMIZE_POWER4' \
|
|
|
|
%endif
|
2010-01-03 12:31:34 +01:00
|
|
|
%if !%{powerpc_optimize_cpu_power6}
|
2009-02-20 08:46:43 +01:00
|
|
|
'-DREMOVE_PPC_OPTIMIZE_POWER6' \
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
|
|
|
%if !%{powerpc_optimize_cpu_power7}
|
2009-02-20 08:46:43 +01:00
|
|
|
'-DREMOVE_PPC_OPTIMIZE_POWER7' \
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
|
|
|
%if !%{powerpc_optimize_cpu_cell}
|
2009-02-20 08:46:43 +01:00
|
|
|
'-DREMOVE_PPC_OPTIMIZE_CELL' \
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
2011-06-27 14:05:13 +02:00
|
|
|
'-DLIBDIR="/%{_lib}"' '-DGCONV_MODULES_DIR="%{_libdir}/gconv"'
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-07-21 11:06:03 +02:00
|
|
|
# crypt_blowfish man pages
|
|
|
|
pushd crypt_blowfish-%{crypt_bf_version}
|
|
|
|
make man
|
|
|
|
popd
|
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
#######################################################################
|
|
|
|
###
|
|
|
|
### CHECK
|
|
|
|
###
|
|
|
|
#######################################################################
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%check
|
2013-01-24 18:32:50 +01:00
|
|
|
%if %{testsuite_build}
|
2012-04-13 11:37:44 +02:00
|
|
|
# The testsuite will fail if asneeded is used
|
|
|
|
export SUSE_ASNEEDED=0
|
2012-12-17 14:15:06 +01:00
|
|
|
# Increase timeout
|
|
|
|
export TIMEOUTFACTOR=16
|
2013-05-16 12:43:57 +02:00
|
|
|
make -C cc-base -k check ||
|
|
|
|
find cc-base -name "*.out" | tar -czf - -T - | base64
|
2012-12-17 14:15:06 +01:00
|
|
|
%else
|
2012-08-28 14:25:24 +02:00
|
|
|
# This has to pass on all platforms!
|
2012-04-17 14:34:50 +02:00
|
|
|
# Exceptions:
|
2012-10-25 18:41:15 +02:00
|
|
|
# None!
|
2012-08-28 14:25:24 +02:00
|
|
|
make %{?_smp_mflags} -C cc-base check-abi
|
2013-01-24 18:32:50 +01:00
|
|
|
%endif
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
#######################################################################
|
|
|
|
###
|
|
|
|
### INSTALL
|
|
|
|
###
|
|
|
|
#######################################################################
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%install
|
2012-12-19 18:04:05 +01:00
|
|
|
%if %{normal_build}
|
2009-02-20 08:46:43 +01:00
|
|
|
# We don't want to strip the .symtab from our libraries in find-debuginfo.sh,
|
2010-01-03 12:31:34 +01:00
|
|
|
# certainly not from libpthread.so.* because it is used by libthread_db to find
|
2009-02-20 08:46:43 +01:00
|
|
|
# some non-exported symbols in order to detect if threading support
|
|
|
|
# should be enabled. These symbols are _not_ exported, and we can't easily
|
|
|
|
# export them retroactively without changing the ABI. So we have to
|
|
|
|
# continue to "export" them via .symtab, instead of .dynsym :-(
|
2010-01-03 12:31:34 +01:00
|
|
|
# But we also want to keep .symtab and .strtab of other libraries since some
|
|
|
|
# debugging tools currently require these sections directly inside the main
|
|
|
|
# files - specifically valgrind and PurifyPlus.
|
|
|
|
export STRIP_KEEP_SYMTAB=*.so*
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
# Make sure we will create the gconv-modules.cache
|
2011-06-27 14:05:13 +02:00
|
|
|
mkdir -p %{buildroot}%{_libdir}/gconv
|
|
|
|
touch %{buildroot}%{_libdir}/gconv/gconv-modules.cache
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Install base glibc
|
2012-08-28 14:25:24 +02:00
|
|
|
make %{?_smp_mflags} install_root=%{buildroot} install -C cc-base
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2012-01-04 08:26:35 +01:00
|
|
|
install_optimized_variant() {
|
|
|
|
local dirname="$1"; shift
|
|
|
|
local subdir="$1"; shift
|
|
|
|
local subdir_up="$1"; shift
|
|
|
|
|
|
|
|
cd "cc-$dirname"
|
|
|
|
destdir=$RPM_BUILD_ROOT/%{_lib}/$subdir
|
|
|
|
mkdir -p $destdir
|
|
|
|
# Don't run a complete make install, we know which libraries
|
|
|
|
# we want
|
|
|
|
for lib in libc math/libm nptl/libpthread rt/librt nptl_db/libthread_db
|
|
|
|
do
|
|
|
|
libbase=${lib#*/}
|
|
|
|
libbaseso=$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}-*.so)
|
|
|
|
# Only install if different from base lib
|
|
|
|
if cmp -s ${lib}.so ../cc-base/${lib}.so; then
|
|
|
|
ln -sf $subdir_up/$libbaseso $destdir/$libbaseso
|
|
|
|
else
|
|
|
|
cp -a ${lib}.so $destdir/$libbaseso
|
|
|
|
fi
|
|
|
|
# Emulate ldconfig
|
|
|
|
ln -sf $libbaseso $destdir/$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}.so.*)
|
|
|
|
done
|
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Install power-optimized glibc
|
2009-02-20 08:46:43 +01:00
|
|
|
%if %{optimize_power}
|
2010-04-26 13:34:14 +02:00
|
|
|
%if %{powerpc_optimize_cpu_power4}
|
2012-01-04 08:26:35 +01:00
|
|
|
install_optimized_variant power4 power4 ".."
|
2010-04-26 13:34:14 +02:00
|
|
|
%endif
|
2010-01-03 12:31:34 +01:00
|
|
|
%if %{powerpc_optimize_cpu_power6}
|
2012-01-04 08:26:35 +01:00
|
|
|
install_optimized_variant power6 power6 ".."
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
|
|
|
%if %{powerpc_optimize_cpu_power7}
|
2012-01-04 08:26:35 +01:00
|
|
|
install_optimized_variant power7 power7 ".."
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
|
|
|
%if %{powerpc_optimize_cpu_cell}
|
2012-01-04 08:26:35 +01:00
|
|
|
install_optimized_variant ppc-cell-be ppc-cell-be ".."
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
|
|
|
%if %{powerpc_optimize_cpu_power6}
|
2012-01-04 08:26:35 +01:00
|
|
|
# power6 is compatible with power6x
|
|
|
|
# doing a directory symlink doesnt work, ldconfig follows them and accepts only the first real dir
|
|
|
|
if test -d %{buildroot}/%{_lib}/power6; then
|
|
|
|
mkdir -p %{buildroot}/%{_lib}/power6x
|
|
|
|
for i in %{buildroot}/%{_lib}/power6/*.so; do
|
|
|
|
b=`basename $i`
|
|
|
|
ln -vs ../power6/$b %{buildroot}/%{_lib}/power6x/$b
|
|
|
|
libbase=${b%.so}
|
|
|
|
libbaseso=$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}-*.so)
|
|
|
|
# Emulate ldconfig
|
|
|
|
ln -sf $libbaseso %{buildroot}/%{_lib}/power6x/$(basename $RPM_BUILD_ROOT/%{_lib}/${libbase}.so.*)
|
|
|
|
done
|
|
|
|
fi
|
2010-01-03 12:31:34 +01:00
|
|
|
%endif
|
|
|
|
%endif # optimize_power
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Install locales
|
2009-02-20 08:46:43 +01:00
|
|
|
%if %{build_locales}
|
2012-08-28 14:25:24 +02:00
|
|
|
# XXX Do not install locales in parallel!
|
2010-01-03 12:31:34 +01:00
|
|
|
cd cc-base
|
2012-08-28 14:25:24 +02:00
|
|
|
# localedef creates hardlinks to other locales if possible
|
|
|
|
# this will not work if we generate them in parallel.
|
|
|
|
# thus we need to run fdupes on /usr/lib/locale/
|
|
|
|
# Still, on my system this is a speed advantage:
|
|
|
|
# non-parallel build for install-locales: 9:34mins
|
|
|
|
# parallel build with fdupes: 7:08mins
|
|
|
|
make %{?_smp_mflags} install_root=%{buildroot} localedata/install-locales
|
|
|
|
%fdupes %{buildroot}/usr/lib/locale
|
2010-01-03 12:31:34 +01:00
|
|
|
cd ..
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
2010-01-03 12:31:34 +01:00
|
|
|
# Create file list for glibc-locale package
|
2009-02-20 08:46:43 +01:00
|
|
|
%{find_lang} libc
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Prepare obsolete/, used only on some architectures:
|
2009-02-20 08:46:43 +01:00
|
|
|
export RPM_BUILD_ROOT
|
2011-05-27 17:33:06 +02:00
|
|
|
%ifarch %ix86
|
2011-06-27 14:05:13 +02:00
|
|
|
mkdir -p %{buildroot}/%{_lib}/obsolete
|
2011-05-27 17:33:06 +02:00
|
|
|
%endif
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
# NPTL <bits/stdio-lock.h> is not usable outside of glibc, so include
|
|
|
|
# the generic one (RH#162634)
|
2011-06-27 14:05:13 +02:00
|
|
|
cp -av bits/stdio-lock.h %{buildroot}%{_includedir}/bits/stdio-lock.h
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Miscelanna:
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-06-27 14:05:13 +02:00
|
|
|
install -m 0700 glibc_post_upgrade %{buildroot}%{_sbindir}
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2012-04-19 13:14:21 +02:00
|
|
|
install -m 644 %{SOURCE7} %{buildroot}/etc
|
|
|
|
install -m 644 %{SOURCE5} %{buildroot}/etc
|
2011-06-27 14:05:13 +02:00
|
|
|
install -m 644 posix/gai.conf %{buildroot}/etc
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-06-27 14:05:13 +02:00
|
|
|
mkdir -p %{buildroot}/etc/default
|
|
|
|
install -m 644 nis/nss %{buildroot}/etc/default/
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-06-27 14:05:13 +02:00
|
|
|
mkdir -p %{buildroot}%{_includedir}/resolv
|
|
|
|
install -m 0644 resolv/mapv4v6addr.h %{buildroot}%{_includedir}/resolv/
|
|
|
|
install -m 0644 resolv/mapv4v6hostent.h %{buildroot}%{_includedir}/resolv/
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2012-04-16 22:11:08 +02:00
|
|
|
%if %{build_html}
|
2011-06-27 14:05:13 +02:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/doc/glibc
|
2012-08-28 14:25:24 +02:00
|
|
|
cp -p cc-base/manual/libc/*.html %{buildroot}%{_datadir}/doc/glibc
|
2012-04-16 22:11:08 +02:00
|
|
|
%endif
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-06-27 14:05:13 +02:00
|
|
|
cd manpages; make install_root=%{buildroot} install; cd ..
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-07-21 11:06:03 +02:00
|
|
|
# crypt_blowfish man pages
|
|
|
|
pushd crypt_blowfish-%{crypt_bf_version}
|
|
|
|
install -m755 -d %{buildroot}%{_mandir}/man3
|
|
|
|
install -m644 *.3 %{buildroot}%{_mandir}/man3
|
|
|
|
popd
|
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# nscd tools:
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-06-27 14:05:13 +02:00
|
|
|
cp nscd/nscd.conf %{buildroot}/etc
|
|
|
|
mkdir -p %{buildroot}/etc/init.d
|
2012-11-24 15:18:54 +01:00
|
|
|
ln -sf /sbin/service %{buildroot}/usr/sbin/rcnscd
|
2011-06-27 14:05:13 +02:00
|
|
|
mkdir -p %{buildroot}/var/run/nscd
|
|
|
|
touch %{buildroot}/var/run/nscd/{passwd,group,hosts}
|
|
|
|
touch %{buildroot}/var/run/nscd/{socket,nscd.pid}
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
#
|
|
|
|
# Create ld.so.conf
|
|
|
|
#
|
2011-06-27 14:05:13 +02:00
|
|
|
cat > %{buildroot}/etc/ld.so.conf <<EOF
|
2009-02-20 08:46:43 +01:00
|
|
|
%ifarch s390x sparc64 x86_64 ppc64 ppc
|
2011-07-04 15:26:19 +02:00
|
|
|
/usr/local/lib64
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
2011-06-17 13:07:37 +02:00
|
|
|
/usr/local/lib
|
2009-02-20 08:46:43 +01:00
|
|
|
include /etc/ld.so.conf.d/*.conf
|
2011-07-04 15:26:19 +02:00
|
|
|
# /lib64, /lib, /usr/lib64 and /usr/lib gets added
|
|
|
|
# automatically by ldconfig after parsing this file.
|
|
|
|
# So, they do not need to be listed.
|
2009-02-20 08:46:43 +01:00
|
|
|
EOF
|
|
|
|
# Add ldconfig cache directory for directory ownership
|
2011-06-27 14:05:13 +02:00
|
|
|
mkdir -p %{buildroot}/var/cache/ldconfig
|
2010-01-03 12:31:34 +01:00
|
|
|
# Empty the ld.so.cache:
|
2011-06-27 14:05:13 +02:00
|
|
|
rm -f %{buildroot}/etc/ld.so.cache
|
|
|
|
touch %{buildroot}/etc/ld.so.cache
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# libNoVersion belongs only to glibc-obsolete:
|
2009-02-20 08:46:43 +01:00
|
|
|
%ifarch %ix86
|
2011-06-27 14:05:13 +02:00
|
|
|
rm -f %{buildroot}%{_libdir}/libNoVersion*
|
|
|
|
mkdir -p %{buildroot}/%{_lib}/obsolete/noversion
|
|
|
|
mv -v %{buildroot}/%{_lib}/libNoVersion* %{buildroot}/%{_lib}/obsolete/noversion/
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Don't look at ldd! We don't wish a /bin/sh requires
|
2011-06-27 14:05:13 +02:00
|
|
|
chmod 644 %{buildroot}%{_bindir}/ldd
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Remove timezone data, now coming in standalone package:
|
2009-02-20 08:46:43 +01:00
|
|
|
for i in sbin/sln usr/bin/tzselect usr/sbin/zic usr/sbin/zdump etc/localtime; do
|
2011-06-27 14:05:13 +02:00
|
|
|
rm -f %{buildroot}/$i
|
2009-02-20 08:46:43 +01:00
|
|
|
done
|
2011-06-27 14:05:13 +02:00
|
|
|
rm -rf %{buildroot}%{_datadir}/zoneinfo
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
# Remove the buildflags tracking section and the build-id
|
2011-06-27 14:05:13 +02:00
|
|
|
for o in %{buildroot}/%{_libdir}/crt[1in].o %{buildroot}/%{_libdir}/lib*_nonshared.a; do
|
2010-01-03 12:31:34 +01:00
|
|
|
objcopy -R ".comment.SUSE.OPTs" -R ".note.gnu.build-id" $o
|
2009-02-20 08:46:43 +01:00
|
|
|
done
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2011-07-07 10:29:39 +02:00
|
|
|
mkdir -p %{buildroot}/usr/lib/tmpfiles.d/
|
|
|
|
install -m 644 %{SOURCE20} %{buildroot}/usr/lib/tmpfiles.d/
|
2012-11-28 21:52:39 +01:00
|
|
|
mkdir -p %{buildroot}/usr/lib/systemd/system
|
|
|
|
install -m 644 %{SOURCE21} %{buildroot}/usr/lib/systemd/system
|
2011-07-07 10:29:39 +02:00
|
|
|
|
2012-04-25 12:41:00 +02:00
|
|
|
%ifarch armv7l armv7hl
|
2012-04-16 22:11:08 +02:00
|
|
|
# Provide compatibility link
|
2012-05-24 11:00:17 +02:00
|
|
|
ln -s ld-%{glibc_major_version}.so %{buildroot}/lib/ld-linux.so.3
|
2012-04-16 22:11:08 +02:00
|
|
|
%endif
|
|
|
|
|
2012-09-04 20:58:49 +02:00
|
|
|
# Move getconf to %{_libexecdir}/getconf/ to avoid cross device link
|
|
|
|
mv %{buildroot}%{_bindir}/getconf %{buildroot}%{_libexecdir}/getconf/getconf
|
|
|
|
ln -s %{_libexecdir}/getconf/getconf %{buildroot}%{_bindir}/getconf
|
2012-12-19 18:04:05 +01:00
|
|
|
|
|
|
|
# Remove unwanted files (packaged in glibc-utils)
|
|
|
|
rm -f %{buildroot}/%{_lib}/libmemusage*
|
|
|
|
rm -f %{buildroot}/%{_lib}/libpcprofile*
|
|
|
|
rm -f %{buildroot}%{_bindir}/memusage*
|
|
|
|
rm -f %{buildroot}%{_bindir}/mtrace
|
|
|
|
rm -f %{buildroot}%{_bindir}/pcprofiledump
|
|
|
|
rm -f %{buildroot}%{_bindir}/sotruss
|
|
|
|
rm -f %{buildroot}%{_bindir}/xtrace
|
|
|
|
rm -f %{buildroot}%{_bindir}/pldd
|
|
|
|
rm -f %{buildroot}%{_mandir}/man1/mtrace.*
|
|
|
|
rm -rf %{buildroot}%{_libdir}/audit
|
|
|
|
|
|
|
|
%endif # %{normal_build}
|
|
|
|
|
|
|
|
%if %{utils_build}
|
|
|
|
|
|
|
|
make %{?_smp_mflags} install_root=%{buildroot} install -C cc-base \
|
|
|
|
subdirs='malloc debug elf'
|
|
|
|
cd manpages; make install_root=%{buildroot} install; cd ..
|
|
|
|
# Remove unwanted files
|
|
|
|
rm -f %{buildroot}/%{_lib}/ld*.so* %{buildroot}/%{_lib}/lib[!mp]*
|
|
|
|
rm -f %{buildroot}%{_libdir}/lib*
|
|
|
|
rm -f %{buildroot}%{_bindir}/{catchsegv,ldd*,sprof}
|
|
|
|
rm -f %{buildroot}%{_mandir}/man1/[!m]*
|
|
|
|
rm -rf %{buildroot}%{_mandir}/man[!1]
|
|
|
|
rm -rf %{buildroot}/sbin %{buildroot}%{_includedir}
|
|
|
|
|
|
|
|
%endif # %{utils_build}
|
2012-09-04 20:58:49 +02:00
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
#######################################################################
|
|
|
|
###
|
|
|
|
### ...
|
|
|
|
###
|
|
|
|
#######################################################################
|
2009-02-20 08:46:43 +01:00
|
|
|
|
2012-12-19 18:04:05 +01:00
|
|
|
%if %{normal_build}
|
2011-06-15 14:55:16 +02:00
|
|
|
# Note: glibc_post_upgrade does:
|
2012-09-04 20:58:49 +02:00
|
|
|
# %%set_permissions %%{_libexecdir}/pt_chown
|
2011-06-15 14:55:16 +02:00
|
|
|
# since we cannot do it in our own post section
|
2011-06-16 15:36:45 +02:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%post -p %{_sbindir}/glibc_post_upgrade
|
|
|
|
|
2012-11-07 16:20:31 +01:00
|
|
|
%if 0
|
2012-01-16 16:06:45 +01:00
|
|
|
# Enabling the following lines will generate a
|
|
|
|
# requires on /bin/sh but glibc should not require any other binary
|
2012-09-04 20:58:49 +02:00
|
|
|
# packages. Therefore we do the change with the built-in lua:
|
|
|
|
# %%verifyscript
|
|
|
|
# %%verify_permissions -e %%{_libexecdir}/pt_chown
|
2012-11-07 16:20:31 +01:00
|
|
|
%endif
|
2012-01-16 16:06:45 +01:00
|
|
|
|
|
|
|
%verifyscript -p <lua>
|
2012-09-04 20:58:49 +02:00
|
|
|
os.execute("/usr/bin/chkstat -n --warn --system -e %{_libexecdir}/pt_chown")
|
2012-01-16 16:06:45 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2012-12-19 18:04:05 +01:00
|
|
|
%endif # %{normal_build}
|
|
|
|
|
2010-01-03 12:31:34 +01:00
|
|
|
%post locale
|
|
|
|
for l in /usr/share/locale/locale.alias %{_libdir}/gconv/gconv-modules; do
|
|
|
|
[ -d "$l.d" ] || continue
|
|
|
|
echo "###X# The following is autogenerated from extra files in the .d directory:" >>"$l"
|
|
|
|
cat "$l.d"/* >>"$l"
|
|
|
|
done
|
2011-02-04 05:30:37 +01:00
|
|
|
/usr/sbin/iconvconfig
|
2010-01-03 12:31:34 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%post info
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/libc.info.gz
|
|
|
|
|
|
|
|
%postun info
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libc.info.gz
|
|
|
|
|
2012-11-24 15:18:54 +01:00
|
|
|
%pre -n nscd
|
|
|
|
%service_add_pre nscd.service
|
2012-06-28 21:42:24 +02:00
|
|
|
|
2012-11-24 15:18:54 +01:00
|
|
|
%preun -n nscd
|
|
|
|
%service_del_preun nscd.service
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%post -n nscd
|
2012-11-24 15:18:54 +01:00
|
|
|
%service_add_post nscd.service
|
2011-06-15 14:55:16 +02:00
|
|
|
mkdir -p /var/run/nscd
|
2012-06-28 21:42:24 +02:00
|
|
|
# Previously we had nscd.socket, remove it
|
2012-12-03 15:51:36 +01:00
|
|
|
test -x /usr/bin/systemctl && /usr/bin/systemctl stop nscd.socket 2>/dev/null || :
|
|
|
|
test -x /usr/bin/systemctl && /usr/bin/systemctl disable nscd.socket 2>/dev/null || :
|
2012-06-28 21:42:24 +02:00
|
|
|
# Hard removal in case the above did not work
|
|
|
|
rm -f /etc/systemd/system/sockets.target.wants/nscd.socket
|
|
|
|
exit 0
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%postun -n nscd
|
2012-11-24 15:18:54 +01:00
|
|
|
%service_del_postun nscd.service
|
2009-02-20 08:46:43 +01:00
|
|
|
exit 0
|
2010-03-18 14:37:59 +01:00
|
|
|
|
2012-12-19 18:04:05 +01:00
|
|
|
%if %{normal_build}
|
2012-12-03 15:51:36 +01:00
|
|
|
%files
|
2010-01-03 12:31:34 +01:00
|
|
|
#######################################################################
|
|
|
|
###
|
|
|
|
### FILES
|
|
|
|
###
|
|
|
|
#######################################################################
|
2009-02-20 08:46:43 +01:00
|
|
|
|
2010-03-18 14:37:59 +01:00
|
|
|
# glibc
|
2009-02-20 08:46:43 +01:00
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc LICENSES
|
|
|
|
%config(noreplace) /etc/bindresvport.blacklist
|
|
|
|
%config /etc/ld.so.conf
|
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /etc/ld.so.cache
|
|
|
|
%config(noreplace) /etc/rpc
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/nsswitch.conf
|
|
|
|
%verify(not md5 size mtime) %config(noreplace) /etc/gai.conf
|
|
|
|
%config(noreplace) /etc/default/nss
|
2012-08-28 14:25:24 +02:00
|
|
|
%doc %{_mandir}/man1/gencat.1.gz
|
2009-02-20 08:46:43 +01:00
|
|
|
%doc %{_mandir}/man1/getconf.1.gz
|
2012-08-28 14:25:24 +02:00
|
|
|
%doc %{_mandir}/man1/locale.1.gz
|
2009-02-20 08:46:43 +01:00
|
|
|
%doc %{_mandir}/man1/localedef.1.gz
|
|
|
|
%doc %{_mandir}/man5/*
|
2012-08-28 14:25:24 +02:00
|
|
|
%doc %{_mandir}/man8/iconvconfig.8.gz
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/ld-%{glibc_major_version}.so
|
2012-04-16 22:11:08 +02:00
|
|
|
|
|
|
|
# Each architecture has a different name for the dynamic linker:
|
|
|
|
%ifarch %arm
|
2012-04-25 12:41:00 +02:00
|
|
|
%ifarch armv7l armv7hl
|
2012-04-18 13:54:26 +02:00
|
|
|
/%{_lib}/ld-linux-armhf.so.3
|
2012-04-16 22:11:08 +02:00
|
|
|
# Keep compatibility link
|
|
|
|
/%{_lib}/ld-linux.so.3
|
2009-05-27 12:39:38 +02:00
|
|
|
%else
|
2012-05-03 16:04:04 +02:00
|
|
|
/%{_lib}/ld-linux.so.3
|
2009-05-27 12:39:38 +02:00
|
|
|
%endif
|
2012-04-17 14:34:50 +02:00
|
|
|
%endif
|
2012-04-16 22:11:08 +02:00
|
|
|
%ifarch ia64
|
|
|
|
/%{_lib}/ld-linux-ia64.so.2
|
|
|
|
%endif
|
|
|
|
%ifarch ppc s390 mips hppa
|
|
|
|
/%{_lib}/ld.so.1
|
|
|
|
%endif
|
|
|
|
%ifarch ppc64
|
|
|
|
/%{_lib}/ld64.so.1
|
|
|
|
%endif
|
|
|
|
%ifarch s390x
|
|
|
|
/lib/ld64.so.1
|
|
|
|
/%{_lib}/ld64.so.1
|
|
|
|
%endif
|
|
|
|
%ifarch x86_64
|
|
|
|
/%{_lib}/ld-linux-x86-64.so.2
|
|
|
|
%endif
|
2012-07-20 10:33:20 +02:00
|
|
|
%ifarch %ix86 %sparc
|
2012-04-16 22:11:08 +02:00
|
|
|
/%{_lib}/ld-linux.so.2
|
|
|
|
%endif
|
2013-02-19 18:17:41 +01:00
|
|
|
%ifarch aarch64
|
|
|
|
/lib/ld-linux-aarch64.so.1
|
|
|
|
/%{_lib}/ld-linux-aarch64.so.1
|
|
|
|
%endif
|
2012-04-16 22:11:08 +02:00
|
|
|
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libBrokenLocale-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libBrokenLocale.so.1
|
|
|
|
/%{_lib}/libSegFault.so
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libanl-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libanl.so.1
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libc-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libc.so.6*
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libcidn-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libcidn.so.1
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libcrypt-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libcrypt.so.1
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libdl-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libdl.so.2*
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libm-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libm.so.6*
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnsl-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libnsl.so.1
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnss_compat-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libnss_compat.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnss_db-%{glibc_major_version}.so
|
2011-12-27 09:19:44 +01:00
|
|
|
/%{_lib}/libnss_db.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnss_dns-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libnss_dns.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnss_files-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libnss_files.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnss_hesiod-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libnss_hesiod.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnss_nis-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libnss_nis.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libnss_nisplus-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libnss_nisplus.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libpthread-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libpthread.so.0
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libresolv-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libresolv.so.2
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/librt-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/librt.so.1
|
|
|
|
/%{_lib}/libthread_db-1.0.so
|
|
|
|
/%{_lib}/libthread_db.so.1
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/libutil-%{glibc_major_version}.so
|
2009-02-20 08:46:43 +01:00
|
|
|
/%{_lib}/libutil.so.1
|
2012-01-04 08:26:35 +01:00
|
|
|
%define optimized_libs() \
|
|
|
|
%dir %attr(0755,root,root) /%{_lib}/%1\
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/%1/libc-%{glibc_major_version}.so\
|
2012-01-04 08:26:35 +01:00
|
|
|
/%{_lib}/%1/libc.so.6*\
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/%1/libm-%{glibc_major_version}.so\
|
2012-01-04 08:26:35 +01:00
|
|
|
/%{_lib}/%1/libm.so.6*\
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/%1/libpthread-%{glibc_major_version}.so\
|
2012-01-04 08:26:35 +01:00
|
|
|
/%{_lib}/%1/libpthread.so.0\
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/%1/librt-%{glibc_major_version}.so\
|
2012-01-04 08:26:35 +01:00
|
|
|
/%{_lib}/%1/librt.so.1\
|
|
|
|
/%{_lib}/%1/libthread_db-1.0.so\
|
|
|
|
/%{_lib}/%1/libthread_db.so.1
|
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%if %{optimize_power}
|
2010-04-26 13:34:14 +02:00
|
|
|
%if %{powerpc_optimize_cpu_power4}
|
|
|
|
%{optimized_libs power4}
|
|
|
|
%endif
|
2010-01-03 12:31:34 +01:00
|
|
|
%if %{powerpc_optimize_cpu_power6}
|
|
|
|
%{optimized_libs power6}
|
|
|
|
%{optimized_libs power6x}
|
|
|
|
%endif
|
|
|
|
%if %{powerpc_optimize_cpu_power7}
|
|
|
|
%{optimized_libs power7}
|
|
|
|
%endif
|
|
|
|
%if %{powerpc_optimize_cpu_cell}
|
|
|
|
%{optimized_libs ppc-cell-be}
|
|
|
|
%endif
|
|
|
|
%endif # optimize_power
|
2009-02-20 08:46:43 +01:00
|
|
|
%dir %attr(0700,root,root) /var/cache/ldconfig
|
|
|
|
/sbin/ldconfig
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_bindir}/gencat
|
|
|
|
%{_bindir}/getconf
|
|
|
|
%{_bindir}/getent
|
|
|
|
%{_bindir}/iconv
|
|
|
|
%attr(755,root,root) %{_bindir}/ldd
|
2009-02-20 08:46:43 +01:00
|
|
|
%ifarch %ix86 sparc sparcv9
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_bindir}/lddlibc4
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_bindir}/locale
|
|
|
|
%{_bindir}/localedef
|
2012-09-04 20:58:49 +02:00
|
|
|
%verify(not mode caps) %attr(4755,root,root) %{_libexecdir}/pt_chown
|
|
|
|
%dir %attr(0755,root,root) %{_libexecdir}/getconf
|
|
|
|
%{_libexecdir}/getconf/*
|
2009-02-20 08:46:43 +01:00
|
|
|
%{_sbindir}/glibc_post_upgrade
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_sbindir}/iconvconfig
|
2009-02-20 08:46:43 +01:00
|
|
|
|
2011-05-27 17:33:06 +02:00
|
|
|
%ifarch %ix86
|
2011-06-16 15:36:45 +02:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%files obsolete
|
|
|
|
%defattr (755,root,root,755)
|
|
|
|
%dir /%{_lib}/obsolete/
|
2010-01-03 12:31:34 +01:00
|
|
|
%dir /%{_lib}/obsolete/noversion
|
2012-05-24 11:00:17 +02:00
|
|
|
/%{_lib}/obsolete/noversion/libNoVersion-%{glibc_major_version}.so
|
2010-01-03 12:31:34 +01:00
|
|
|
/%{_lib}/obsolete/noversion/libNoVersion.so.1
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%files locale -f libc.lang
|
|
|
|
%defattr(-,root,root)
|
2011-06-27 14:05:13 +02:00
|
|
|
%{_datadir}/locale/locale.alias
|
2009-02-20 08:46:43 +01:00
|
|
|
%if %{build_locales}
|
2010-01-03 12:31:34 +01:00
|
|
|
/usr/lib/locale
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%{_libdir}/gconv
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
2012-08-28 14:25:24 +02:00
|
|
|
%doc COPYING COPYING.LIB NEWS README BUGS CONFORMANCE
|
2009-02-20 08:46:43 +01:00
|
|
|
%doc %{_mandir}/man1/catchsegv.1.gz
|
|
|
|
%doc %{_mandir}/man1/rpcgen.1.gz
|
|
|
|
%doc %{_mandir}/man1/sprof.1.gz
|
|
|
|
%doc %{_mandir}/man3/*
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_bindir}/catchsegv
|
|
|
|
%{_bindir}/rpcgen
|
|
|
|
%{_bindir}/sprof
|
2011-06-27 14:05:13 +02:00
|
|
|
%{_includedir}/*
|
2009-02-20 08:46:43 +01:00
|
|
|
%{_libdir}/*.o
|
|
|
|
%{_libdir}/*.so
|
2011-06-16 15:36:45 +02:00
|
|
|
# These static libraries are needed even for shared builds
|
2009-02-20 08:46:43 +01:00
|
|
|
%{_libdir}/libbsd-compat.a
|
|
|
|
%{_libdir}/libc_nonshared.a
|
|
|
|
%{_libdir}/libg.a
|
|
|
|
%{_libdir}/libieee.a
|
2010-01-03 12:31:34 +01:00
|
|
|
%ifarch ppc ppc64 s390 s390x sparc sparcv8 sparcv9 sparcv9v
|
|
|
|
# This is not built on sparc64.
|
|
|
|
%{_libdir}/libnldbl_nonshared.a
|
2009-02-20 08:46:43 +01:00
|
|
|
%endif
|
|
|
|
%{_libdir}/libmcheck.a
|
2011-06-16 15:36:45 +02:00
|
|
|
%{_libdir}/libpthread_nonshared.a
|
|
|
|
%{_libdir}/librpcsvc.a
|
|
|
|
|
|
|
|
%files devel-static
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libBrokenLocale.a
|
|
|
|
%{_libdir}/libanl.a
|
|
|
|
%{_libdir}/libc.a
|
|
|
|
%{_libdir}/libcrypt.a
|
|
|
|
%{_libdir}/libdl.a
|
|
|
|
%{_libdir}/libm.a
|
2009-02-20 08:46:43 +01:00
|
|
|
%{_libdir}/libnsl.a
|
|
|
|
%{_libdir}/libpthread.a
|
|
|
|
%{_libdir}/libresolv.a
|
|
|
|
%{_libdir}/librt.a
|
|
|
|
%{_libdir}/libutil.a
|
|
|
|
|
|
|
|
%files info
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc %{_infodir}/libc.info.gz
|
|
|
|
%doc %{_infodir}/libc.info-?.gz
|
|
|
|
%doc %{_infodir}/libc.info-??.gz
|
|
|
|
|
2012-04-16 22:11:08 +02:00
|
|
|
%if %{build_html}
|
2009-02-20 08:46:43 +01:00
|
|
|
%files html
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc %{_prefix}/share/doc/glibc
|
2012-04-16 22:11:08 +02:00
|
|
|
%endif
|
2009-02-20 08:46:43 +01:00
|
|
|
|
|
|
|
%files i18ndata
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_prefix}/share/i18n
|
|
|
|
|
|
|
|
%files -n nscd
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%config(noreplace) /etc/nscd.conf
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_sbindir}/nscd
|
|
|
|
%{_sbindir}/rcnscd
|
2012-11-28 21:52:39 +01:00
|
|
|
/usr/lib/systemd/system/nscd.service
|
2011-07-07 10:29:39 +02:00
|
|
|
%dir /usr/lib/tmpfiles.d
|
|
|
|
/usr/lib/tmpfiles.d/nscd.conf
|
2010-05-04 08:54:49 +02:00
|
|
|
%dir %attr(0755,root,root) %ghost /var/run/nscd
|
2009-02-20 08:46:43 +01:00
|
|
|
%attr(0644,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/nscd.pid
|
|
|
|
%attr(0666,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/socket
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/passwd
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/group
|
|
|
|
%attr(0600,root,root) %verify(not md5 size mtime) %ghost %config(missingok,noreplace) /var/run/nscd/hosts
|
|
|
|
|
2012-04-16 22:11:08 +02:00
|
|
|
%if %{build_profile}
|
2009-02-20 08:46:43 +01:00
|
|
|
%files profile
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libc_p.a
|
|
|
|
%{_libdir}/libBrokenLocale_p.a
|
|
|
|
%{_libdir}/libanl_p.a
|
|
|
|
%{_libdir}/libm_p.a
|
|
|
|
%{_libdir}/libcrypt_p.a
|
|
|
|
%{_libdir}/libpthread_p.a
|
|
|
|
%{_libdir}/libresolv_p.a
|
|
|
|
%{_libdir}/libnsl_p.a
|
|
|
|
%{_libdir}/librt_p.a
|
|
|
|
%{_libdir}/librpcsvc_p.a
|
|
|
|
%{_libdir}/libutil_p.a
|
|
|
|
%{_libdir}/libdl_p.a
|
2012-04-16 22:11:08 +02:00
|
|
|
%endif
|
2009-02-20 08:46:43 +01:00
|
|
|
|
2012-12-19 18:04:05 +01:00
|
|
|
%files extra
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/makedb
|
|
|
|
/var/lib/misc/Makefile
|
|
|
|
|
|
|
|
%endif # %{normal_build}
|
|
|
|
|
|
|
|
%if %{utils_build}
|
|
|
|
%files
|
2011-06-15 09:27:54 +02:00
|
|
|
%defattr(-,root,root)
|
|
|
|
/%{_lib}/libmemusage.so
|
|
|
|
/%{_lib}/libpcprofile.so
|
2012-12-19 18:04:05 +01:00
|
|
|
%dir %{_libdir}/audit
|
|
|
|
%{_libdir}/audit/sotruss-lib.so
|
|
|
|
%{_bindir}/memusage
|
|
|
|
%{_bindir}/memusagestat
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_bindir}/mtrace
|
|
|
|
%{_bindir}/pcprofiledump
|
2011-08-17 21:42:24 +02:00
|
|
|
%{_bindir}/sotruss
|
2011-06-15 14:55:16 +02:00
|
|
|
%{_bindir}/xtrace
|
2011-12-27 09:19:44 +01:00
|
|
|
%{_bindir}/pldd
|
2012-08-28 14:25:24 +02:00
|
|
|
%doc %{_mandir}/man1/mtrace.1.gz
|
2012-12-19 18:04:05 +01:00
|
|
|
%endif # %{utils_build}
|
2012-12-17 14:15:06 +01:00
|
|
|
|
2009-02-20 08:46:43 +01:00
|
|
|
%changelog
|