You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pagespeed.apache.org by GitBox <gi...@apache.org> on 2021/10/04 18:10:43 UTC

[GitHub] [incubator-pagespeed-mod] nemihome commented on issue #2083: Using automated install for Nginx 1.21.3 - Nginx does not start after successfull build and install - Ubuntu Impish

nemihome commented on issue #2083:
URL: https://github.com/apache/incubator-pagespeed-mod/issues/2083#issuecomment-933729910


   Hi, ok, the error message sounds like it is included in pagespeed.so. So what's the problem? Is pagespeed.so using something which is depreciated or is this a bug in the new pthread.h version?
   
   Ubuntu 21.10 (relevant part):
   ```
   extern int pthread_mutex_consistent (pthread_mutex_t *__mutex)
        __THROW __nonnull ((1));
   # ifdef __USE_GNU
   #  ifdef __REDIRECT_NTH
   extern int __REDIRECT_NTH (pthread_mutex_consistent_np, (pthread_mutex_t *),
   			   pthread_mutex_consistent) __nonnull ((1))
     __attribute_deprecated_msg__ ("\
   pthread_mutex_consistent_np is deprecated, use pthread_mutex_consistent");
   #  else
   #   define pthread_mutex_consistent_np pthread_mutex_consistent
   #  endif
   # endif
   #endif
   ```
   
   Ubuntu 20.04:
   ```
   /* Declare the state protected by MUTEX as consistent.  */
   extern int pthread_mutex_consistent (pthread_mutex_t *__mutex)
        __THROW __nonnull ((1));
   # ifdef __USE_GNU
   extern int pthread_mutex_consistent_np (pthread_mutex_t *__mutex)
        __THROW __nonnull ((1));
   # endif
   #endif
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@pagespeed.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org