Changeset dad9c9f


Ignore:
Timestamp:
Jun 4, 2021, 4:55:52 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
9e67e92
Parents:
3f4bf57
Message:

Configure now check for rseq.h and librseq.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/configure.ac

    r3f4bf57 rdad9c9f  
    131131#io_uring 5.5 uses enum values
    132132#io_uring 5.6 and later uses probes
     133
     134AH_TEMPLATE([CFA_HAVE_LINUX_RSEQ_H],[Defined if rseq support is present when compiling libcfathread.])
     135AC_CHECK_HEADERS([linux/rseq.h], [AC_DEFINE(CFA_HAVE_LINUX_RSEQ_H)])
     136
     137AH_TEMPLATE([CFA_HAVE_LINUX_LIBRSEQ],[Defined if librseq support is present when compiling libcfathread.])
     138AC_CHECK_LIB([rseq], [rseq_available], [AC_DEFINE(CFA_HAVE_LINUX_RSEQ_H)], [])
    133139
    134140AH_TEMPLATE([CFA_HAVE_LINUX_IO_URING_H],[Defined if io_uring support is present when compiling libcfathread.])
Note: See TracChangeset for help on using the changeset viewer.