6b92a88a3d
fix buildconf with newer libtool (#670621)
14 lines
309 B
Diff
14 lines
309 B
Diff
--- apr-1.4.2/include/apr_ring.h.pr50190
|
|
+++ apr-1.4.2/include/apr_ring.h
|
|
@@ -90,8 +90,8 @@
|
|
*/
|
|
#define APR_RING_HEAD(head, elem) \
|
|
struct head { \
|
|
- struct elem *next; \
|
|
- struct elem *prev; \
|
|
+ struct elem * volatile next; \
|
|
+ struct elem * volatile prev; \
|
|
}
|
|
|
|
/**
|