diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-01-25 15:46:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-01-28 15:19:52 +0100 |
commit | ef28740d0ae036f6fa2e9866cadf335e9f0ad8b9 (patch) | |
tree | 69da0c0787d45f0743ca412f7ee9b4b3cbc26e7f /configure.ac | |
parent | 6584a5d9d1bb3e9b00e529358c989e8485071e36 (diff) |
It's called libatomic_ops not libatomic-ops
cf. <https://github.com/ivmai/libatomic_ops/> (as mentioned in
external/libatomic_ops/README)
Change-Id: Ibd50ca81695cbcd73e005b0bbbd46ceb62b1e9dc
Reviewed-on: https://gerrit.libreoffice.org/66912
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 16666c887612..f80716445395 100644 --- a/configure.ac +++ b/configure.ac @@ -8879,16 +8879,16 @@ int fb_api_is_30(void) { return 0; } else dnl Embedded Firebird has version 3.0 AC_DEFINE(HAVE_FIREBIRD_30, 1) - dnl We need libatomic-ops for any non X86/X64 system + dnl We need libatomic_ops for any non X86/X64 system if test "${CPUNAME}" != INTEL -a "${CPUNAME}" != X86_64; then dnl =================================================================== - dnl Check for system libatomic-ops + dnl Check for system libatomic_ops dnl =================================================================== libo_CHECK_SYSTEM_MODULE([libatomic_ops],[ATOMIC_OPS],[atomic_ops >= 0.7.2]) if test "$with_system_libatomic_ops" = "yes"; then SYSTEM_LIBATOMIC_OPS=TRUE AC_CHECK_HEADERS(atomic_ops.h, [], - [AC_MSG_ERROR(atomic_ops.h not found. install libatomic-ops)], []) + [AC_MSG_ERROR(atomic_ops.h not found. install libatomic_ops)], []) else SYSTEM_LIBATOMIC_OPS= LIBATOMIC_OPS_CFLAGS="-I${WORKDIR}/UnpackedTarball/libatomic_ops/include" |