Bump version to 24.04.3.4
[LibreOffice.git] / external / gpgmepp / configure.patch
blobad3f97e632fb6ff1a3c4d92b2fcc4476209c4ade
1 --- configure.ac
2 +++ configure.ac
3 @@ -617,6 +617,15 @@
4 AC_SUBST(API__SSIZE_T)
5 AM_SUBST_NOTMAKE(API__SSIZE_T)
7 +# Try to find a thread-safe version of ttyname().
8 +gnupg_REPLACE_TTYNAME_R
9 +if test "$ac_cv_func_ttyname_r" != yes; then
10 + AC_MSG_WARN([
11 +***
12 +*** ttyname() is not thread-safe and ttyname_r() does not exist
13 +***])
14 +fi
16 # Checks for compiler features.
17 if test "$GCC" = yes; then
18 CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes"
19 @@ -677,15 +686,6 @@
21 AC_FUNC_FSEEKO
23 -# Try to find a thread-safe version of ttyname().
24 -gnupg_REPLACE_TTYNAME_R
25 -if test "$ac_cv_func_ttyname_r" != yes; then
26 - AC_MSG_WARN([
27 -***
28 -*** ttyname() is not thread-safe and ttyname_r() does not exist
29 -***])
30 -fi
32 # Try to find a thread-safe version of getenv().
33 have_thread_safe_getenv=no
34 jm_GLIBC21