summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorSamuel Thibault <sthibault@debian.org>2007-08-02 22:48:43 +0000
committerSamuel Thibault <sthibault@debian.org>2007-08-02 22:48:43 +0000
commitba9b87ee0c2826c52b33d5f093c8504a52a1bcdb (patch)
tree7d55e8d8b3c8c48ef27aab840241247d88e22422 /debian/patches
parent6f51486c0f198afc01393602aa84b8d8c214c4f2 (diff)
* debian/patches/patches/libpthread_no-inline.patch: New patch, removes
extern inlines to fix g++ and gettext FTBFS, by Samuel Thibault.
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/libpthread_no-inline.patch125
1 files changed, 125 insertions, 0 deletions
diff --git a/debian/patches/libpthread_no-inline.patch b/debian/patches/libpthread_no-inline.patch
new file mode 100644
index 00000000..e0634e1f
--- /dev/null
+++ b/debian/patches/libpthread_no-inline.patch
@@ -0,0 +1,125 @@
+Index: libpthread/sysdeps/generic/bits/mutex.h
+===================================================================
+RCS file: /cvsroot/hurd/hurd/libpthread/sysdeps/generic/bits/mutex.h,v
+retrieving revision 1.4
+diff -u -p -r1.4 mutex.h
+--- libpthread/sysdeps/generic/bits/mutex.h 4 Mar 2007 00:05:21 -0000 1.4
++++ libpthread/sysdeps/generic/bits/mutex.h 2 Aug 2007 17:41:05 -0000
+@@ -62,78 +62,6 @@ struct __pthread_mutex
+ #include <errno.h>
+ #include <stddef.h>
+
+-#ifdef __USE_EXTERN_INLINES
+-
+-# ifndef _EXTERN_INLINE
+-# define _EXTERN_INLINE extern __inline
+-# endif
+-
+-_EXTERN_INLINE int
+-pthread_mutex_init (struct __pthread_mutex *__restrict __mutex,
+- const pthread_mutexattr_t *__restrict attr)
+-{
+- struct __pthread_mutex initialized_mutex = __PTHREAD_MUTEX_INITIALIZER;
+-
+- extern int _pthread_mutex_init (struct __pthread_mutex *,
+- const pthread_mutexattr_t *);
+-
+- if (attr)
+- return _pthread_mutex_init (__mutex, attr);
+-
+- *__mutex = initialized_mutex;
+- return 0;
+-}
+-
+-_EXTERN_INLINE int
+-pthread_mutex_destroy (struct __pthread_mutex *__mutex)
+-{
+- extern int _pthread_mutex_destroy (struct __pthread_mutex *);
+-
+- if (__mutex->attr || __mutex->data)
+- return _pthread_mutex_destroy (__mutex);
+-
+- return 0;
+-}
+-
+-_EXTERN_INLINE int
+-__pthread_mutex_lock (struct __pthread_mutex *__mutex)
+-{
+- extern int _pthread_mutex_lock (struct __pthread_mutex *);
+-
+- if (__mutex->attr == NULL
+- && __mutex->data == NULL
+- && __pthread_spin_trylock (&__mutex->__held) == 0)
+- return 0;
+-
+- return _pthread_mutex_lock (__mutex);
+-}
+-
+-extern __inline int
+-__pthread_mutex_trylock (struct __pthread_mutex *__mutex)
+-{
+- extern int _pthread_mutex_trylock (struct __pthread_mutex *);
+-
+- if (__mutex->attr == NULL
+- && __mutex->data == NULL)
+- return __pthread_spin_trylock (&__mutex->__held);
+-
+- return _pthread_mutex_trylock (__mutex);
+-}
+-
+-extern __inline int
+-pthread_mutex_lock (struct __pthread_mutex *__mutex)
+-{
+- return __pthread_mutex_lock (__mutex);
+-}
+-
+-extern __inline int
+-pthread_mutex_trylock (struct __pthread_mutex *__mutex)
+-{
+- return __pthread_mutex_trylock (__mutex);
+-}
+-
+-#endif /* Use extern inlines. */
+-
+ #endif
+
+ #endif /* bits/mutex.h */
+Index: libpthread/sysdeps/generic/bits/rwlock.h
+===================================================================
+RCS file: /cvsroot/hurd/hurd/libpthread/sysdeps/generic/bits/rwlock.h,v
+retrieving revision 1.4
+diff -u -p -r1.4 rwlock.h
+--- libpthread/sysdeps/generic/bits/rwlock.h 24 Jun 2007 15:11:52 -0000 1.4
++++ libpthread/sysdeps/generic/bits/rwlock.h 2 Aug 2007 17:41:05 -0000
+@@ -43,31 +43,4 @@ struct __pthread_rwlock
+ { __SPIN_LOCK_INITIALIZER, __SPIN_LOCK_INITIALIZER, 0, 0, 0, 0, 0 }
+
+
+-_EXTERN_INLINE int
+-pthread_rwlock_init (struct __pthread_rwlock *__restrict __rwlock,
+- const struct __pthread_rwlockattr *__restrict __attr)
+-{
+- struct __pthread_rwlock initialized_rwlock = __PTHREAD_RWLOCK_INITIALIZER;
+- extern int _pthread_rwlock_init (struct __pthread_rwlock *,
+- const struct __pthread_rwlockattr *);
+-
+- if (__attr)
+- return _pthread_rwlock_init (__rwlock, __attr);
+-
+- *__rwlock = initialized_rwlock;
+- return 0;
+-}
+-
+-_EXTERN_INLINE int
+-pthread_rwlock_destroy (struct __pthread_rwlock *__rwlock)
+-{
+- extern int _pthread_rwlock_destroy (struct __pthread_rwlock *);
+-
+- if (__rwlock->__attr
+- || __rwlock->__data)
+- return _pthread_rwlock_destroy (__rwlock);
+-
+- return 0;
+-}
+-
+ #endif /* bits/rwlock.h */