[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1705 - glibc-package/branches/glibc-2.4/debian/sysdeps



Author: aurel32
Date: 2006-08-06 20:16:32 +0000 (Sun, 06 Aug 2006)
New Revision: 1705

Modified:
   glibc-package/branches/glibc-2.4/debian/sysdeps/amd64.mk
   glibc-package/branches/glibc-2.4/debian/sysdeps/i386.mk
   glibc-package/branches/glibc-2.4/debian/sysdeps/powerpc.mk
   glibc-package/branches/glibc-2.4/debian/sysdeps/ppc64.mk
   glibc-package/branches/glibc-2.4/debian/sysdeps/s390.mk
   glibc-package/branches/glibc-2.4/debian/sysdeps/sparc.mk
Log:
My clean of the sysdeps/ directory was to invasive, revert some parts.


Modified: glibc-package/branches/glibc-2.4/debian/sysdeps/amd64.mk
===================================================================
--- glibc-package/branches/glibc-2.4/debian/sysdeps/amd64.mk	2006-08-06 19:48:35 UTC (rev 1704)
+++ glibc-package/branches/glibc-2.4/debian/sysdeps/amd64.mk	2006-08-06 20:16:32 UTC (rev 1705)
@@ -13,7 +13,7 @@
 GLIBC_PASSES += i386
 DEB_ARCH_REGULAR_PACKAGES += libc6-i386 libc6-dev-i386
 libc6-i386_shlib_dep = libc6-i386 (>= $(shlib_dep_ver))
-
+i386_add-ons = nptl $(add-ons)
 i386_configure_target = i486-linux
 i386_CC = $(CC) -m32
 i386_add-ons = nptl $(add-ons)

Modified: glibc-package/branches/glibc-2.4/debian/sysdeps/i386.mk
===================================================================
--- glibc-package/branches/glibc-2.4/debian/sysdeps/i386.mk	2006-08-06 19:48:35 UTC (rev 1704)
+++ glibc-package/branches/glibc-2.4/debian/sysdeps/i386.mk	2006-08-06 20:16:32 UTC (rev 1705)
@@ -16,6 +16,7 @@
 # The optimized libraries also use NPTL!
 GLIBC_PASSES += i686
 DEB_ARCH_REGULAR_PACKAGES += libc6-i686
+i686_add-ons = nptl $(add-ons)
 i686_configure_target=i686-linux
 i686_extra_cflags = -march=i686 -mtune=i686 -g1 -O3
 i686_rtlddir = /lib
@@ -26,6 +27,7 @@
 # greatly reduce the speed when running under the Xen hypervisor.
 GLIBC_PASSES += xen
 DEB_ARCH_REGULAR_PACKAGES += libc6-xen
+xen_add-ons = nptl $(add-ons)
 xen_configure_target=i686-linux
 xen_extra_cflags = -march=i686 -mtune=i686 -g1 -O3 -mno-tls-direct-seg-refs
 xen_rtlddir = /lib
@@ -36,6 +38,7 @@
 GLIBC_PASSES += amd64
 DEB_ARCH_REGULAR_PACKAGES += libc6-amd64 libc6-dev-amd64
 libc6-amd64_shlib_dep = libc6-amd64 (>= $(shlib_dep_ver))
+amd64_add-ons = nptl $(add-ons)
 amd64_configure_target = x86_64-linux
 # __x86_64__ is defined here because Makeconfig uses -undef and the
 # /usr/include/asm wrappers need that symbol.

Modified: glibc-package/branches/glibc-2.4/debian/sysdeps/powerpc.mk
===================================================================
--- glibc-package/branches/glibc-2.4/debian/sysdeps/powerpc.mk	2006-08-06 19:48:35 UTC (rev 1704)
+++ glibc-package/branches/glibc-2.4/debian/sysdeps/powerpc.mk	2006-08-06 20:16:32 UTC (rev 1705)
@@ -1,6 +1,7 @@
 # build 64-bit (ppc64) alternative library
 GLIBC_PASSES += ppc64
 DEB_ARCH_REGULAR_PACKAGES += libc6-ppc64 libc6-dev-ppc64
+ppc64_add-ons = nptl $(add-ons)
 ppc64_configure_target = powerpc64-linux
 ppc64_CC = $(CC) -m64
 libc6-ppc64_shlib_dep = libc6-ppc64 (>= $(shlib_dep_ver))

Modified: glibc-package/branches/glibc-2.4/debian/sysdeps/ppc64.mk
===================================================================
--- glibc-package/branches/glibc-2.4/debian/sysdeps/ppc64.mk	2006-08-06 19:48:35 UTC (rev 1704)
+++ glibc-package/branches/glibc-2.4/debian/sysdeps/ppc64.mk	2006-08-06 20:16:32 UTC (rev 1705)
@@ -13,7 +13,7 @@
 GLIBC_PASSES += powerpc
 DEB_ARCH_REGULAR_PACKAGES += libc6-powerpc libc6-dev-powerpc
 libc6-powerpc_shlib_dep = libc6-powerpc (>= $(shlib_dep_ver))
-
+powerpc_add-ons = nptl $(add-ons)
 powerpc_configure_target = powerpc-linux
 powerpc_CC = $(CC) -m32
 powerpc_extra_cflags = -O3 -g1

Modified: glibc-package/branches/glibc-2.4/debian/sysdeps/s390.mk
===================================================================
--- glibc-package/branches/glibc-2.4/debian/sysdeps/s390.mk	2006-08-06 19:48:35 UTC (rev 1704)
+++ glibc-package/branches/glibc-2.4/debian/sysdeps/s390.mk	2006-08-06 20:16:32 UTC (rev 1705)
@@ -1,6 +1,7 @@
 # build 64-bit (s390x) alternative library
 GLIBC_PASSES += s390x
 DEB_ARCH_REGULAR_PACKAGES += libc6-s390x libc6-dev-s390x
+s390x_add-ons = nptl $(add-ons)
 s390x_configure_target = s390x-linux
 s390x_CC = $(CC) -m64
 libc6-s390x_shlib_dep = libc6-s390x (>= $(shlib_dep_ver))

Modified: glibc-package/branches/glibc-2.4/debian/sysdeps/sparc.mk
===================================================================
--- glibc-package/branches/glibc-2.4/debian/sysdeps/sparc.mk	2006-08-06 19:48:35 UTC (rev 1704)
+++ glibc-package/branches/glibc-2.4/debian/sysdeps/sparc.mk	2006-08-06 20:16:32 UTC (rev 1705)
@@ -1,6 +1,7 @@
 # build 64-bit (sparc64) alternative library
 GLIBC_PASSES += sparc64
 DEB_ARCH_REGULAR_PACKAGES += libc6-sparc64 libc6-dev-sparc64
+sparc64_add-ons = nptl $(add-ons)
 sparc64_configure_target=sparc64-linux
 sparc64_CC = $(BUILD_CC) -m64
 sparc64_extra_cflags = -g1 -O3
@@ -12,6 +13,7 @@
 # build a sparcv9 optimized library
 GLIBC_PASSES += sparcv9
 DEB_ARCH_REGULAR_PACKAGES += libc6-sparcv9
+sparcv9_add-ons = nptl $(add-ons)
 sparcv9_configure_target=sparcv9-linux
 sparcv9_configure_build=sparcv9-linux
 sparcv9_extra_cflags = -g1 -O3
@@ -22,6 +24,7 @@
 # build a sparcv9b optimized library
 GLIBC_PASSES += sparcv9b
 DEB_ARCH_REGULAR_PACKAGES += libc6-sparcv9b
+sparcv9b_add-ons = nptl $(add-ons)
 sparcv9b_configure_target=sparcv9b-linux
 sparcv9b_configure_build=sparcv9b-linux
 sparcv9b_extra_cflags = -mtune=ultrasparc3 -g1 -O3



Reply to: