The R Project SVN R

Rev

Rev 89251 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 89251 Rev 89381
Line 1... Line 1...
1
### configure.ac					-*- Autoconf -*-
1
### configure.ac					-*- Autoconf -*-
2
###
2
###
3
### Process this file with autoconf to produce a configure script.
3
### Process this file with autoconf to produce a configure script.
4
###
4
###
5
### Copyright (C) 1998-2025 R Core Team
5
### Copyright (C) 1998-2026 R Core Team
6
###
6
###
7
### This file is part of R.
7
### This file is part of R.
8
###
8
###
9
### R is free software; you can redistribute it and/or modify it under
9
### R is free software; you can redistribute it and/or modify it under
10
### the terms of the GNU General Public License as published by the Free
10
### the terms of the GNU General Public License as published by the Free
Line 311... Line 311...
311
AC_ARG_WITH([C23],
311
AC_ARG_WITH([C23],
312
[AS_HELP_STRING([--with-C23],[use C23 if available @<:@yes@:>@])],
312
[AS_HELP_STRING([--with-C23],[use C23 if available @<:@yes@:>@])],
313
[R_ARG_USE(C23)],
313
[R_ARG_USE(C23)],
314
[use_C23=yes])
314
[use_C23=yes])
315
 
315
 
-
 
316
dnl Made the default in R 4.6.0.
316
AC_ARG_WITH([CXX20],
317
AC_ARG_WITH([CXX20],
317
[AS_HELP_STRING([--with-CXX20],[make C++20 the default C++ standard if available @<:@no@:>@])],
318
[AS_HELP_STRING([--with-CXX20],[make C++20 the default C++ standard if available @<:@yes@:>@])],
318
[R_ARG_USE(CXX20)],
319
[R_ARG_USE(CXX20)],
319
[use_CXX20=no])
320
[use_CXX20=yes])
320
 
321
 
321
## Build separate shared/dynamic library containing R's BLAS if desired 
322
## Build separate shared/dynamic library containing R's BLAS if desired 
322
AC_ARG_ENABLE([BLAS-shlib],
323
AC_ARG_ENABLE([BLAS-shlib],
323
[AS_HELP_STRING([--enable-BLAS-shlib],[build BLAS into a shared/dynamic library @<:@perhaps@:>@])],
324
[AS_HELP_STRING([--enable-BLAS-shlib],[build BLAS into a shared/dynamic library @<:@perhaps@:>@])],
324
[use_blas_shlib="${enableval}"],
325
[use_blas_shlib="${enableval}"],