ffi-tox 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/ProjectTox-Core/AUTHORS +0 -0
  3. data/ProjectTox-Core/ChangeLog +0 -0
  4. data/ProjectTox-Core/INSTALL +370 -0
  5. data/ProjectTox-Core/INSTALL.md +455 -56
  6. data/ProjectTox-Core/Makefile.am +35 -0
  7. data/ProjectTox-Core/NEWS +0 -0
  8. data/ProjectTox-Core/README +43 -0
  9. data/ProjectTox-Core/README.md +34 -44
  10. data/ProjectTox-Core/auto_tests/Makefile.inc +110 -0
  11. data/ProjectTox-Core/auto_tests/TCP_test.c +519 -0
  12. data/ProjectTox-Core/auto_tests/assoc_test.c +160 -0
  13. data/ProjectTox-Core/auto_tests/crypto_test.c +302 -0
  14. data/ProjectTox-Core/auto_tests/dht_test.c +362 -0
  15. data/ProjectTox-Core/auto_tests/encryptsave_test.c +104 -0
  16. data/ProjectTox-Core/auto_tests/friends_test.c +238 -0
  17. data/ProjectTox-Core/auto_tests/helpers.h +15 -0
  18. data/ProjectTox-Core/auto_tests/messenger_test.c +365 -0
  19. data/ProjectTox-Core/auto_tests/network_test.c +171 -0
  20. data/ProjectTox-Core/auto_tests/onion_test.c +363 -0
  21. data/ProjectTox-Core/auto_tests/skeleton_test.c +49 -0
  22. data/ProjectTox-Core/auto_tests/tox_test.c +454 -0
  23. data/ProjectTox-Core/auto_tests/toxav_basic_test.c +597 -0
  24. data/ProjectTox-Core/auto_tests/toxav_many_test.c +402 -0
  25. data/ProjectTox-Core/autogen.sh +6 -0
  26. data/ProjectTox-Core/build/Makefile.am +14 -0
  27. data/ProjectTox-Core/configure.ac +694 -0
  28. data/ProjectTox-Core/dist-build/android-arm.sh +3 -0
  29. data/ProjectTox-Core/dist-build/android-armv7.sh +3 -0
  30. data/ProjectTox-Core/dist-build/android-build.sh +59 -0
  31. data/ProjectTox-Core/dist-build/android-mips.sh +3 -0
  32. data/ProjectTox-Core/dist-build/android-x86.sh +3 -0
  33. data/ProjectTox-Core/docs/Group-Chats.md +71 -0
  34. data/ProjectTox-Core/docs/Hardening.txt +60 -0
  35. data/ProjectTox-Core/docs/Hardening_docs.txt +30 -0
  36. data/ProjectTox-Core/docs/Prevent_Tracking.txt +160 -0
  37. data/ProjectTox-Core/docs/TCP_Network.txt +154 -0
  38. data/ProjectTox-Core/docs/TODO +62 -0
  39. data/ProjectTox-Core/docs/Tox_middle_level_network_protocol.txt +120 -0
  40. data/ProjectTox-Core/docs/av_api.md +194 -0
  41. data/ProjectTox-Core/libtoxav.pc.in +11 -0
  42. data/ProjectTox-Core/libtoxcore.pc.in +11 -0
  43. data/ProjectTox-Core/m4/ax_have_epoll.m4 +104 -0
  44. data/ProjectTox-Core/m4/ax_pthread.m4 +317 -0
  45. data/ProjectTox-Core/m4/pkg.m4 +199 -0
  46. data/ProjectTox-Core/other/DHT_bootstrap.c +121 -58
  47. data/ProjectTox-Core/other/DHTnodes +3 -0
  48. data/ProjectTox-Core/other/Makefile.inc +20 -0
  49. data/ProjectTox-Core/other/bootstrap_node_packets.c +65 -0
  50. data/ProjectTox-Core/other/tox.png +0 -0
  51. data/ProjectTox-Core/testing/DHT_test.c +170 -98
  52. data/ProjectTox-Core/testing/Makefile.inc +112 -0
  53. data/ProjectTox-Core/testing/Messenger_test.c +133 -69
  54. data/ProjectTox-Core/testing/dns3_test.c +115 -0
  55. data/ProjectTox-Core/testing/misc_tools.c +59 -13
  56. data/ProjectTox-Core/testing/nTox.c +1127 -264
  57. data/ProjectTox-Core/testing/nTox.h +10 -19
  58. data/ProjectTox-Core/testing/tox_shell.c +159 -0
  59. data/ProjectTox-Core/testing/tox_sync.c +299 -0
  60. data/ProjectTox-Core/tools/README +11 -0
  61. data/ProjectTox-Core/tools/astylerc +11 -0
  62. data/ProjectTox-Core/tools/pre-commit +17 -0
  63. data/ProjectTox-Core/toxav/Makefile.inc +36 -0
  64. data/ProjectTox-Core/toxav/codec.c +357 -0
  65. data/ProjectTox-Core/toxav/codec.h +116 -0
  66. data/ProjectTox-Core/toxav/msi.c +1949 -0
  67. data/ProjectTox-Core/toxav/msi.h +267 -0
  68. data/ProjectTox-Core/toxav/rtp.c +600 -0
  69. data/ProjectTox-Core/toxav/rtp.h +196 -0
  70. data/ProjectTox-Core/toxav/toxav.c +1148 -0
  71. data/ProjectTox-Core/toxav/toxav.h +389 -0
  72. data/ProjectTox-Core/toxcore/DHT.c +2521 -0
  73. data/ProjectTox-Core/toxcore/DHT.h +412 -0
  74. data/ProjectTox-Core/toxcore/LAN_discovery.c +322 -0
  75. data/ProjectTox-Core/{core → toxcore}/LAN_discovery.h +17 -12
  76. data/ProjectTox-Core/toxcore/Makefile.inc +67 -0
  77. data/ProjectTox-Core/toxcore/Messenger.c +3006 -0
  78. data/ProjectTox-Core/toxcore/Messenger.h +818 -0
  79. data/ProjectTox-Core/toxcore/TCP_client.c +858 -0
  80. data/ProjectTox-Core/toxcore/TCP_client.h +156 -0
  81. data/ProjectTox-Core/toxcore/TCP_server.c +1332 -0
  82. data/ProjectTox-Core/toxcore/TCP_server.h +181 -0
  83. data/ProjectTox-Core/toxcore/assoc.c +1033 -0
  84. data/ProjectTox-Core/toxcore/assoc.h +104 -0
  85. data/ProjectTox-Core/toxcore/crypto_core.c +278 -0
  86. data/ProjectTox-Core/toxcore/crypto_core.h +151 -0
  87. data/ProjectTox-Core/toxcore/friend_requests.c +175 -0
  88. data/ProjectTox-Core/toxcore/friend_requests.h +83 -0
  89. data/ProjectTox-Core/toxcore/group_chats.c +837 -0
  90. data/ProjectTox-Core/toxcore/group_chats.h +199 -0
  91. data/ProjectTox-Core/toxcore/list.c +256 -0
  92. data/ProjectTox-Core/toxcore/list.h +85 -0
  93. data/ProjectTox-Core/toxcore/logger.c +153 -0
  94. data/ProjectTox-Core/toxcore/logger.h +84 -0
  95. data/ProjectTox-Core/toxcore/misc_tools.h +70 -0
  96. data/ProjectTox-Core/toxcore/net_crypto.c +2753 -0
  97. data/ProjectTox-Core/toxcore/net_crypto.h +410 -0
  98. data/ProjectTox-Core/toxcore/network.c +979 -0
  99. data/ProjectTox-Core/toxcore/network.h +367 -0
  100. data/ProjectTox-Core/toxcore/onion.c +540 -0
  101. data/ProjectTox-Core/toxcore/onion.h +150 -0
  102. data/ProjectTox-Core/toxcore/onion_announce.c +433 -0
  103. data/ProjectTox-Core/toxcore/onion_announce.h +139 -0
  104. data/ProjectTox-Core/toxcore/onion_client.c +1347 -0
  105. data/ProjectTox-Core/toxcore/onion_client.h +253 -0
  106. data/ProjectTox-Core/toxcore/ping.c +346 -0
  107. data/ProjectTox-Core/toxcore/ping.h +47 -0
  108. data/ProjectTox-Core/toxcore/ping_array.c +162 -0
  109. data/ProjectTox-Core/toxcore/ping_array.h +75 -0
  110. data/ProjectTox-Core/toxcore/tox.c +940 -0
  111. data/ProjectTox-Core/toxcore/tox.h +734 -0
  112. data/ProjectTox-Core/toxcore/util.c +193 -0
  113. data/ProjectTox-Core/toxcore/util.h +63 -0
  114. data/ProjectTox-Core/toxdns/Makefile.inc +29 -0
  115. data/ProjectTox-Core/toxdns/toxdns.c +238 -0
  116. data/ProjectTox-Core/toxdns/toxdns.h +88 -0
  117. data/ProjectTox-Core/toxencryptsave/Makefile.inc +45 -0
  118. data/ProjectTox-Core/toxencryptsave/toxencryptsave.c +179 -0
  119. data/ProjectTox-Core/toxencryptsave/toxencryptsave.h +74 -0
  120. data/interfaces/libtox.i +2 -6
  121. data/lib/ffi-tox/libtox.rb +406 -28
  122. metadata +124 -46
  123. data/ProjectTox-Core/CMakeLists.txt +0 -50
  124. data/ProjectTox-Core/cmake/FindLIBCONFIG.cmake +0 -15
  125. data/ProjectTox-Core/cmake/FindNaCl.cmake +0 -17
  126. data/ProjectTox-Core/cmake/FindSODIUM.cmake +0 -15
  127. data/ProjectTox-Core/core/CMakeLists.txt +0 -19
  128. data/ProjectTox-Core/core/DHT.c +0 -1104
  129. data/ProjectTox-Core/core/DHT.h +0 -111
  130. data/ProjectTox-Core/core/LAN_discovery.c +0 -79
  131. data/ProjectTox-Core/core/Lossless_UDP.c +0 -755
  132. data/ProjectTox-Core/core/Lossless_UDP.h +0 -106
  133. data/ProjectTox-Core/core/Messenger.c +0 -596
  134. data/ProjectTox-Core/core/Messenger.h +0 -165
  135. data/ProjectTox-Core/core/friend_requests.c +0 -131
  136. data/ProjectTox-Core/core/friend_requests.h +0 -51
  137. data/ProjectTox-Core/core/net_crypto.c +0 -575
  138. data/ProjectTox-Core/core/net_crypto.h +0 -134
  139. data/ProjectTox-Core/core/network.c +0 -205
  140. data/ProjectTox-Core/core/network.h +0 -134
  141. data/ProjectTox-Core/docs/commands.md +0 -25
  142. data/ProjectTox-Core/docs/start_guide.de.md +0 -40
  143. data/ProjectTox-Core/docs/start_guide.md +0 -38
  144. data/ProjectTox-Core/other/CMakeLists.txt +0 -9
  145. data/ProjectTox-Core/testing/CMakeLists.txt +0 -18
  146. data/ProjectTox-Core/testing/DHT_cryptosendfiletest.c +0 -228
  147. data/ProjectTox-Core/testing/DHT_sendfiletest.c +0 -176
  148. data/ProjectTox-Core/testing/Lossless_UDP_testclient.c +0 -214
  149. data/ProjectTox-Core/testing/Lossless_UDP_testserver.c +0 -201
  150. data/ProjectTox-Core/testing/misc_tools.h +0 -29
  151. data/ProjectTox-Core/testing/nTox_win32.c +0 -387
  152. data/ProjectTox-Core/testing/nTox_win32.h +0 -40
  153. data/ProjectTox-Core/testing/rect.py +0 -45
@@ -0,0 +1,317 @@
1
+ # ===========================================================================
2
+ # http://www.gnu.org/software/autoconf-archive/ax_pthread.html
3
+ # ===========================================================================
4
+ #
5
+ # SYNOPSIS
6
+ #
7
+ # AX_PTHREAD([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
8
+ #
9
+ # DESCRIPTION
10
+ #
11
+ # This macro figures out how to build C programs using POSIX threads. It
12
+ # sets the PTHREAD_LIBS output variable to the threads library and linker
13
+ # flags, and the PTHREAD_CFLAGS output variable to any special C compiler
14
+ # flags that are needed. (The user can also force certain compiler
15
+ # flags/libs to be tested by setting these environment variables.)
16
+ #
17
+ # Also sets PTHREAD_CC to any special C compiler that is needed for
18
+ # multi-threaded programs (defaults to the value of CC otherwise). (This
19
+ # is necessary on AIX to use the special cc_r compiler alias.)
20
+ #
21
+ # NOTE: You are assumed to not only compile your program with these flags,
22
+ # but also link it with them as well. e.g. you should link with
23
+ # $PTHREAD_CC $CFLAGS $PTHREAD_CFLAGS $LDFLAGS ... $PTHREAD_LIBS $LIBS
24
+ #
25
+ # If you are only building threads programs, you may wish to use these
26
+ # variables in your default LIBS, CFLAGS, and CC:
27
+ #
28
+ # LIBS="$PTHREAD_LIBS $LIBS"
29
+ # CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
30
+ # CC="$PTHREAD_CC"
31
+ #
32
+ # In addition, if the PTHREAD_CREATE_JOINABLE thread-attribute constant
33
+ # has a nonstandard name, defines PTHREAD_CREATE_JOINABLE to that name
34
+ # (e.g. PTHREAD_CREATE_UNDETACHED on AIX).
35
+ #
36
+ # Also HAVE_PTHREAD_PRIO_INHERIT is defined if pthread is found and the
37
+ # PTHREAD_PRIO_INHERIT symbol is defined when compiling with
38
+ # PTHREAD_CFLAGS.
39
+ #
40
+ # ACTION-IF-FOUND is a list of shell commands to run if a threads library
41
+ # is found, and ACTION-IF-NOT-FOUND is a list of commands to run it if it
42
+ # is not found. If ACTION-IF-FOUND is not specified, the default action
43
+ # will define HAVE_PTHREAD.
44
+ #
45
+ # Please let the authors know if this macro fails on any platform, or if
46
+ # you have any other suggestions or comments. This macro was based on work
47
+ # by SGJ on autoconf scripts for FFTW (http://www.fftw.org/) (with help
48
+ # from M. Frigo), as well as ac_pthread and hb_pthread macros posted by
49
+ # Alejandro Forero Cuervo to the autoconf macro repository. We are also
50
+ # grateful for the helpful feedback of numerous users.
51
+ #
52
+ # Updated for Autoconf 2.68 by Daniel Richard G.
53
+ #
54
+ # LICENSE
55
+ #
56
+ # Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
57
+ # Copyright (c) 2011 Daniel Richard G. <skunk@iSKUNK.ORG>
58
+ #
59
+ # This program is free software: you can redistribute it and/or modify it
60
+ # under the terms of the GNU General Public License as published by the
61
+ # Free Software Foundation, either version 3 of the License, or (at your
62
+ # option) any later version.
63
+ #
64
+ # This program is distributed in the hope that it will be useful, but
65
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
66
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
67
+ # Public License for more details.
68
+ #
69
+ # You should have received a copy of the GNU General Public License along
70
+ # with this program. If not, see <http://www.gnu.org/licenses/>.
71
+ #
72
+ # As a special exception, the respective Autoconf Macro's copyright owner
73
+ # gives unlimited permission to copy, distribute and modify the configure
74
+ # scripts that are the output of Autoconf when processing the Macro. You
75
+ # need not follow the terms of the GNU General Public License when using
76
+ # or distributing such scripts, even though portions of the text of the
77
+ # Macro appear in them. The GNU General Public License (GPL) does govern
78
+ # all other use of the material that constitutes the Autoconf Macro.
79
+ #
80
+ # This special exception to the GPL applies to versions of the Autoconf
81
+ # Macro released by the Autoconf Archive. When you make and distribute a
82
+ # modified version of the Autoconf Macro, you may extend this special
83
+ # exception to the GPL to apply to your modified version as well.
84
+
85
+ #serial 20
86
+
87
+ AU_ALIAS([ACX_PTHREAD], [AX_PTHREAD])
88
+ AC_DEFUN([AX_PTHREAD], [
89
+ AC_REQUIRE([AC_CANONICAL_HOST])
90
+ AC_LANG_PUSH([C])
91
+ ax_pthread_ok=no
92
+
93
+ # We used to check for pthread.h first, but this fails if pthread.h
94
+ # requires special compiler flags (e.g. on True64 or Sequent).
95
+ # It gets checked for in the link test anyway.
96
+
97
+ # First of all, check if the user has set any of the PTHREAD_LIBS,
98
+ # etcetera environment variables, and if threads linking works using
99
+ # them:
100
+ if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then
101
+ save_CFLAGS="$CFLAGS"
102
+ CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
103
+ save_LIBS="$LIBS"
104
+ LIBS="$PTHREAD_LIBS $LIBS"
105
+ AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS])
106
+ AC_TRY_LINK_FUNC(pthread_join, ax_pthread_ok=yes)
107
+ AC_MSG_RESULT($ax_pthread_ok)
108
+ if test x"$ax_pthread_ok" = xno; then
109
+ PTHREAD_LIBS=""
110
+ PTHREAD_CFLAGS=""
111
+ fi
112
+ LIBS="$save_LIBS"
113
+ CFLAGS="$save_CFLAGS"
114
+ fi
115
+
116
+ # We must check for the threads library under a number of different
117
+ # names; the ordering is very important because some systems
118
+ # (e.g. DEC) have both -lpthread and -lpthreads, where one of the
119
+ # libraries is broken (non-POSIX).
120
+
121
+ # Create a list of thread flags to try. Items starting with a "-" are
122
+ # C compiler flags, and other items are library names, except for "none"
123
+ # which indicates that we try without any flags at all, and "pthread-config"
124
+ # which is a program returning the flags for the Pth emulation library.
125
+
126
+ ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config"
127
+
128
+ # The ordering *is* (sometimes) important. Some notes on the
129
+ # individual items follow:
130
+
131
+ # pthreads: AIX (must check this before -lpthread)
132
+ # none: in case threads are in libc; should be tried before -Kthread and
133
+ # other compiler flags to prevent continual compiler warnings
134
+ # -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h)
135
+ # -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able)
136
+ # lthread: LinuxThreads port on FreeBSD (also preferred to -pthread)
137
+ # -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads)
138
+ # -pthreads: Solaris/gcc
139
+ # -mthreads: Mingw32/gcc, Lynx/gcc
140
+ # -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it
141
+ # doesn't hurt to check since this sometimes defines pthreads too;
142
+ # also defines -D_REENTRANT)
143
+ # ... -mt is also the pthreads flag for HP/aCC
144
+ # pthread: Linux, etcetera
145
+ # --thread-safe: KAI C++
146
+ # pthread-config: use pthread-config program (for GNU Pth library)
147
+
148
+ case ${host_os} in
149
+ solaris*)
150
+
151
+ # On Solaris (at least, for some versions), libc contains stubbed
152
+ # (non-functional) versions of the pthreads routines, so link-based
153
+ # tests will erroneously succeed. (We need to link with -pthreads/-mt/
154
+ # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather
155
+ # a function called by this macro, so we could check for that, but
156
+ # who knows whether they'll stub that too in a future libc.) So,
157
+ # we'll just look for -pthreads and -lpthread first:
158
+
159
+ ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags"
160
+ ;;
161
+
162
+ darwin*)
163
+ ax_pthread_flags="-pthread $ax_pthread_flags"
164
+ ;;
165
+ esac
166
+
167
+ if test x"$ax_pthread_ok" = xno; then
168
+ for flag in $ax_pthread_flags; do
169
+
170
+ case $flag in
171
+ none)
172
+ AC_MSG_CHECKING([whether pthreads work without any flags])
173
+ ;;
174
+
175
+ -*)
176
+ AC_MSG_CHECKING([whether pthreads work with $flag])
177
+ PTHREAD_CFLAGS="$flag"
178
+ ;;
179
+
180
+ pthread-config)
181
+ AC_CHECK_PROG(ax_pthread_config, pthread-config, yes, no)
182
+ if test x"$ax_pthread_config" = xno; then continue; fi
183
+ PTHREAD_CFLAGS="`pthread-config --cflags`"
184
+ PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`"
185
+ ;;
186
+
187
+ *)
188
+ AC_MSG_CHECKING([for the pthreads library -l$flag])
189
+ PTHREAD_LIBS="-l$flag"
190
+ ;;
191
+ esac
192
+
193
+ save_LIBS="$LIBS"
194
+ save_CFLAGS="$CFLAGS"
195
+ LIBS="$PTHREAD_LIBS $LIBS"
196
+ CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
197
+
198
+ # Check for various functions. We must include pthread.h,
199
+ # since some functions may be macros. (On the Sequent, we
200
+ # need a special flag -Kthread to make this header compile.)
201
+ # We check for pthread_join because it is in -lpthread on IRIX
202
+ # while pthread_create is in libc. We check for pthread_attr_init
203
+ # due to DEC craziness with -lpthreads. We check for
204
+ # pthread_cleanup_push because it is one of the few pthread
205
+ # functions on Solaris that doesn't have a non-functional libc stub.
206
+ # We try pthread_create on general principles.
207
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>
208
+ static void routine(void *a) { a = 0; }
209
+ static void *start_routine(void *a) { return a; }],
210
+ [pthread_t th; pthread_attr_t attr;
211
+ pthread_create(&th, 0, start_routine, 0);
212
+ pthread_join(th, 0);
213
+ pthread_attr_init(&attr);
214
+ pthread_cleanup_push(routine, 0);
215
+ pthread_cleanup_pop(0) /* ; */])],
216
+ [ax_pthread_ok=yes],
217
+ [])
218
+
219
+ LIBS="$save_LIBS"
220
+ CFLAGS="$save_CFLAGS"
221
+
222
+ AC_MSG_RESULT($ax_pthread_ok)
223
+ if test "x$ax_pthread_ok" = xyes; then
224
+ break;
225
+ fi
226
+
227
+ PTHREAD_LIBS=""
228
+ PTHREAD_CFLAGS=""
229
+ done
230
+ fi
231
+
232
+ # Various other checks:
233
+ if test "x$ax_pthread_ok" = xyes; then
234
+ save_LIBS="$LIBS"
235
+ LIBS="$PTHREAD_LIBS $LIBS"
236
+ save_CFLAGS="$CFLAGS"
237
+ CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
238
+
239
+ # Detect AIX lossage: JOINABLE attribute is called UNDETACHED.
240
+ AC_MSG_CHECKING([for joinable pthread attribute])
241
+ attr_name=unknown
242
+ for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do
243
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>],
244
+ [int attr = $attr; return attr /* ; */])],
245
+ [attr_name=$attr; break],
246
+ [])
247
+ done
248
+ AC_MSG_RESULT($attr_name)
249
+ if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then
250
+ AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name,
251
+ [Define to necessary symbol if this constant
252
+ uses a non-standard name on your system.])
253
+ fi
254
+
255
+ AC_MSG_CHECKING([if more special flags are required for pthreads])
256
+ flag=no
257
+ case ${host_os} in
258
+ aix* | freebsd* | darwin*) flag="-D_THREAD_SAFE";;
259
+ osf* | hpux*) flag="-D_REENTRANT";;
260
+ solaris*)
261
+ if test "$GCC" = "yes"; then
262
+ flag="-D_REENTRANT"
263
+ else
264
+ flag="-mt -D_REENTRANT"
265
+ fi
266
+ ;;
267
+ esac
268
+ AC_MSG_RESULT(${flag})
269
+ if test "x$flag" != xno; then
270
+ PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS"
271
+ fi
272
+
273
+ AC_CACHE_CHECK([for PTHREAD_PRIO_INHERIT],
274
+ ax_cv_PTHREAD_PRIO_INHERIT, [
275
+ AC_LINK_IFELSE([
276
+ AC_LANG_PROGRAM([[#include <pthread.h>]], [[int i = PTHREAD_PRIO_INHERIT;]])],
277
+ [ax_cv_PTHREAD_PRIO_INHERIT=yes],
278
+ [ax_cv_PTHREAD_PRIO_INHERIT=no])
279
+ ])
280
+ AS_IF([test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes"],
281
+ AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], 1, [Have PTHREAD_PRIO_INHERIT.]))
282
+
283
+ LIBS="$save_LIBS"
284
+ CFLAGS="$save_CFLAGS"
285
+
286
+ # More AIX lossage: compile with *_r variant
287
+ if test "x$GCC" != xyes; then
288
+ case $host_os in
289
+ aix*)
290
+ AS_CASE(["x/$CC"],
291
+ [x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6],
292
+ [#handle absolute path differently from PATH based program lookup
293
+ AS_CASE(["x$CC"],
294
+ [x/*],
295
+ [AS_IF([AS_EXECUTABLE_P([${CC}_r])],[PTHREAD_CC="${CC}_r"])],
296
+ [AC_CHECK_PROGS([PTHREAD_CC],[${CC}_r],[$CC])])])
297
+ ;;
298
+ esac
299
+ fi
300
+ fi
301
+
302
+ test -n "$PTHREAD_CC" || PTHREAD_CC="$CC"
303
+
304
+ AC_SUBST(PTHREAD_LIBS)
305
+ AC_SUBST(PTHREAD_CFLAGS)
306
+ AC_SUBST(PTHREAD_CC)
307
+
308
+ # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND:
309
+ if test x"$ax_pthread_ok" = xyes; then
310
+ ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1])
311
+ :
312
+ else
313
+ ax_pthread_ok=no
314
+ $2
315
+ fi
316
+ AC_LANG_POP
317
+ ])dnl AX_PTHREAD
@@ -0,0 +1,199 @@
1
+ # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
2
+ # serial 1 (pkg-config-0.24)
3
+ #
4
+ # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
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 2 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, but
12
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
+ # 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, write to the Free Software
18
+ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
+ #
20
+ # As a special exception to the GNU General Public License, if you
21
+ # distribute this file as part of a program that contains a
22
+ # configuration script generated by Autoconf, you may include it under
23
+ # the same distribution terms that you use for the rest of that program.
24
+
25
+ # PKG_PROG_PKG_CONFIG([MIN-VERSION])
26
+ # ----------------------------------
27
+ AC_DEFUN([PKG_PROG_PKG_CONFIG],
28
+ [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
29
+ m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
30
+ m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
31
+ AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
32
+ AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
33
+ AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
34
+
35
+ if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
36
+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
37
+ fi
38
+ if test -n "$PKG_CONFIG"; then
39
+ _pkg_min_version=m4_default([$1], [0.9.0])
40
+ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
41
+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
42
+ AC_MSG_RESULT([yes])
43
+ else
44
+ AC_MSG_RESULT([no])
45
+ PKG_CONFIG=""
46
+ fi
47
+ fi[]dnl
48
+ ])# PKG_PROG_PKG_CONFIG
49
+
50
+ # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
51
+ #
52
+ # Check to see whether a particular set of modules exists. Similar
53
+ # to PKG_CHECK_MODULES(), but does not set variables or print errors.
54
+ #
55
+ # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
56
+ # only at the first occurrence in configure.ac, so if the first place
57
+ # it's called might be skipped (such as if it is within an "if", you
58
+ # have to call PKG_CHECK_EXISTS manually
59
+ # --------------------------------------------------------------
60
+ AC_DEFUN([PKG_CHECK_EXISTS],
61
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
62
+ if test -n "$PKG_CONFIG" && \
63
+ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
64
+ m4_default([$2], [:])
65
+ m4_ifvaln([$3], [else
66
+ $3])dnl
67
+ fi])
68
+
69
+ # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
70
+ # ---------------------------------------------
71
+ m4_define([_PKG_CONFIG],
72
+ [if test -n "$$1"; then
73
+ pkg_cv_[]$1="$$1"
74
+ elif test -n "$PKG_CONFIG"; then
75
+ PKG_CHECK_EXISTS([$3],
76
+ [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
77
+ test "x$?" != "x0" && pkg_failed=yes ],
78
+ [pkg_failed=yes])
79
+ else
80
+ pkg_failed=untried
81
+ fi[]dnl
82
+ ])# _PKG_CONFIG
83
+
84
+ # _PKG_SHORT_ERRORS_SUPPORTED
85
+ # -----------------------------
86
+ AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
87
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
88
+ if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
89
+ _pkg_short_errors_supported=yes
90
+ else
91
+ _pkg_short_errors_supported=no
92
+ fi[]dnl
93
+ ])# _PKG_SHORT_ERRORS_SUPPORTED
94
+
95
+
96
+ # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
97
+ # [ACTION-IF-NOT-FOUND])
98
+ #
99
+ #
100
+ # Note that if there is a possibility the first call to
101
+ # PKG_CHECK_MODULES might not happen, you should be sure to include an
102
+ # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
103
+ #
104
+ #
105
+ # --------------------------------------------------------------
106
+ AC_DEFUN([PKG_CHECK_MODULES],
107
+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
108
+ AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
109
+ AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
110
+
111
+ pkg_failed=no
112
+ AC_MSG_CHECKING([for $1])
113
+
114
+ _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
115
+ _PKG_CONFIG([$1][_LIBS], [libs], [$2])
116
+
117
+ m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
118
+ and $1[]_LIBS to avoid the need to call pkg-config.
119
+ See the pkg-config man page for more details.])
120
+
121
+ if test $pkg_failed = yes; then
122
+ AC_MSG_RESULT([no])
123
+ _PKG_SHORT_ERRORS_SUPPORTED
124
+ if test $_pkg_short_errors_supported = yes; then
125
+ $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
126
+ else
127
+ $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
128
+ fi
129
+ # Put the nasty error message in config.log where it belongs
130
+ echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
131
+
132
+ m4_default([$4], [AC_MSG_ERROR(
133
+ [Package requirements ($2) were not met:
134
+
135
+ $$1_PKG_ERRORS
136
+
137
+ Consider adjusting the PKG_CONFIG_PATH environment variable if you
138
+ installed software in a non-standard prefix.
139
+
140
+ _PKG_TEXT])[]dnl
141
+ ])
142
+ elif test $pkg_failed = untried; then
143
+ AC_MSG_RESULT([no])
144
+ m4_default([$4], [AC_MSG_FAILURE(
145
+ [The pkg-config script could not be found or is too old. Make sure it
146
+ is in your PATH or set the PKG_CONFIG environment variable to the full
147
+ path to pkg-config.
148
+
149
+ _PKG_TEXT
150
+
151
+ To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
152
+ ])
153
+ else
154
+ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
155
+ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
156
+ AC_MSG_RESULT([yes])
157
+ $3
158
+ fi[]dnl
159
+ ])# PKG_CHECK_MODULES
160
+
161
+
162
+ # PKG_INSTALLDIR(DIRECTORY)
163
+ # -------------------------
164
+ # Substitutes the variable pkgconfigdir as the location where a module
165
+ # should install pkg-config .pc files. By default the directory is
166
+ # $libdir/pkgconfig, but the default can be changed by passing
167
+ # DIRECTORY. The user can override through the --with-pkgconfigdir
168
+ # parameter.
169
+ AC_DEFUN([PKG_INSTALLDIR],
170
+ [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
171
+ m4_pushdef([pkg_description],
172
+ [pkg-config installation directory @<:@]pkg_default[@:>@])
173
+ AC_ARG_WITH([pkgconfigdir],
174
+ [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
175
+ [with_pkgconfigdir=]pkg_default)
176
+ AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
177
+ m4_popdef([pkg_default])
178
+ m4_popdef([pkg_description])
179
+ ]) dnl PKG_INSTALLDIR
180
+
181
+
182
+ # PKG_NOARCH_INSTALLDIR(DIRECTORY)
183
+ # -------------------------
184
+ # Substitutes the variable noarch_pkgconfigdir as the location where a
185
+ # module should install arch-independent pkg-config .pc files. By
186
+ # default the directory is $datadir/pkgconfig, but the default can be
187
+ # changed by passing DIRECTORY. The user can override through the
188
+ # --with-noarch-pkgconfigdir parameter.
189
+ AC_DEFUN([PKG_NOARCH_INSTALLDIR],
190
+ [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
191
+ m4_pushdef([pkg_description],
192
+ [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
193
+ AC_ARG_WITH([noarch-pkgconfigdir],
194
+ [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
195
+ [with_noarch_pkgconfigdir=]pkg_default)
196
+ AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
197
+ m4_popdef([pkg_default])
198
+ m4_popdef([pkg_description])
199
+ ]) dnl PKG_NOARCH_INSTALLDIR