| OLD | NEW |
| 1 # This was retrieved from | 1 # This was retrieved from |
| 2 # http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?revision=1277&roo
t=avahi | 2 # http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?revision=1277&roo
t=avahi |
| 3 # See also (perhaps for new versions?) | 3 # See also (perhaps for new versions?) |
| 4 # http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?root=avahi | 4 # http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?root=avahi |
| 5 # | 5 # |
| 6 # We've rewritten the inconsistency check code (from avahi), to work | 6 # We've rewritten the inconsistency check code (from avahi), to work |
| 7 # more broadly. In particular, it no longer assumes ld accepts -zdefs. | 7 # more broadly. In particular, it no longer assumes ld accepts -zdefs. |
| 8 # This caused a restructing of the code, but the functionality has only | 8 # This caused a restructing of the code, but the functionality has only |
| 9 # changed a little. | 9 # changed a little. |
| 10 | 10 |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: | 388 # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: |
| 389 if test x"$acx_pthread_ok" = xyes; then | 389 if test x"$acx_pthread_ok" = xyes; then |
| 390 ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads
libraries and header files.]),[$1]) | 390 ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads
libraries and header files.]),[$1]) |
| 391 : | 391 : |
| 392 else | 392 else |
| 393 acx_pthread_ok=no | 393 acx_pthread_ok=no |
| 394 $2 | 394 $2 |
| 395 fi | 395 fi |
| 396 AC_LANG_RESTORE | 396 AC_LANG_RESTORE |
| 397 ])dnl ACX_PTHREAD | 397 ])dnl ACX_PTHREAD |
| OLD | NEW |