configure.ac

Wed, 06 Nov 2019 20:34:54 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 06 Nov 2019 20:34:54 +0100
changeset 367
e54e0b24e98e
parent 362
39cef8f37eb5
child 368
97c53f7ef5e4
permissions
-rw-r--r--

fix: configure.ac

     1 #
     2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3 #
     4 # Copyright 2019 Mike Becker, Olaf Wintermann All rights reserved.
     5 #
     6 # Redistribution and use in source and binary forms, with or without
     7 # modification, are permitted provided that the following conditions are met:
     8 #
     9 #   1. Redistributions of source code must retain the above copyright
    10 #      notice, this list of conditions and the following disclaimer.
    11 #
    12 #   2. Redistributions in binary form must reproduce the above copyright
    13 #      notice, this list of conditions and the following disclaimer in the
    14 #      documentation and/or other materials provided with the distribution.
    15 #
    16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26 # POSSIBILITY OF SUCH DAMAGE.
    27 #
    29 # the package version must match the macros in ucx.h
    30 # the lib version must follow the libtool versioning convention
    31 AC_PREREQ([2.60])
    32 AC_INIT([ucx], [2.1.0], [olaf.wintermann@gmail.com])
    33 AC_SUBST([UCX_LIB_VERSION], [4:0:1])
    35 # don't place everything in the project root
    36 AC_CONFIG_AUX_DIR([build-aux])
    37 AC_CONFIG_MACRO_DIR([m4])
    39 # we use our own directory structure
    40 AM_INIT_AUTOMAKE([foreign -Wall -Werror])
    42 # if there is an archiver, use it
    43 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
    45 # we are compiling a library
    46 LT_INIT
    48 # we want c11, and may fall back to c99
    49 AX_CHECK_COMPILE_FLAG([-std=c11],
    50     [AX_APPEND_FLAG([-std=c11])],
    51     AC_PROG_CC_C99
    52 )
    54 # we want to support automake < 1.14, so we need this deprecated macro
    55 # it tests, whether the compiler allows -c and -o simultaneously
    56 # in modern versions of autoconf, this is done by AC_PROG_CC
    57 AM_PROG_CC_C_O
    59 # where to place config macros
    60 AC_CONFIG_HEADERS([config.h])
    62 # our Makefiles
    63 AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
    65 # GO
    66 AC_OUTPUT

mercurial