| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: | 354 # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: |
| 355 if test x"$acx_pthread_ok" = xyes; then | 355 if test x"$acx_pthread_ok" = xyes; then |
| 356 ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads
libraries and header files.]),[$1]) | 356 ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads
libraries and header files.]),[$1]) |
| 357 : | 357 : |
| 358 else | 358 else |
| 359 acx_pthread_ok=no | 359 acx_pthread_ok=no |
| 360 $2 | 360 $2 |
| 361 fi | 361 fi |
| 362 AC_LANG_RESTORE | 362 AC_LANG_RESTORE |
| 363 ])dnl ACX_PTHREAD | 363 ])dnl ACX_PTHREAD |
| OLD | NEW |