Skip to content

Commit 9365248

Browse files
committed
Refactor - allow configurating more than 99 , since large platforms which use high scale of operations require more than 99 index options back from SSL_get_ex_new_index
1 parent f086e91 commit 9365248

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

configure.ac

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10376,9 +10376,10 @@ case "$ENABLED_EX_DATA" in
1037610376
no) ;;
1037710377
yes) AM_CFLAGS="$AM_CFLAGS -DHAVE_EX_DATA"
1037810378
;;
10379-
[[1-9]]|[[1-9]][[0-9]]) AM_CFLAGS="$AM_CFLAGS -DHAVE_EX_DATA -DMAX_EX_DATA=$ENABLED_EX_DATA"
10379+
[[1-9]]|[[1-9]][[0-9]]|[[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]])
10380+
AM_CFLAGS="$AM_CFLAGS -DHAVE_EX_DATA -DMAX_EX_DATA=$ENABLED_EX_DATA"
1038010381
;;
10381-
*) AC_MSG_ERROR([Invalid argument to --enable-context-extra-user-data -- must be yes, no, or a number from 1 to 99])
10382+
*) AC_MSG_ERROR([Invalid argument to --enable-context-extra-user-data -- must be yes, no, or a number from 1 to 9999])
1038210383
;;
1038310384
esac
1038410385

0 commit comments

Comments
 (0)