Annotation of freem/configure.ac, revision 1.16

1.1       snw         1: #
1.16    ! snw         2: #   $Id: configure.ac,v 1.15 2025/04/03 15:51:17 snw Exp $
1.1       snw         3: #    autoconf rules for FreeM
                      4: #
                      5: #  
1.4       snw         6: #   Author: Serena Willis <jpw@coherent-logic.com>
1.1       snw         7: #    Copyright (C) 1998 MUG Deutschland
1.5       snw         8: #    Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1       snw         9: #
                     10: #
                     11: #   This file is part of FreeM.
                     12: #
                     13: #   FreeM is free software: you can redistribute it and/or modify
                     14: #   it under the terms of the GNU Affero Public License as published by
                     15: #   the Free Software Foundation, either version 3 of the License, or
                     16: #   (at your option) any later version.
                     17: #
                     18: #   FreeM is distributed in the hope that it will be useful,
                     19: #   but WITHOUT ANY WARRANTY; without even the implied warranty of
                     20: #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     21: #   GNU Affero Public License for more details.
                     22: #
                     23: #   You should have received a copy of the GNU Affero Public License
                     24: #   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
                     25: #
1.6       snw        26: #   $Log: configure.ac,v $
1.16    ! snw        27: #   Revision 1.15  2025/04/03 15:51:17  snw
        !            28: #   Add fmadm man page and apply minor updates to freem man page
        !            29: #
1.15      snw        30: #   Revision 1.14  2025/04/03 01:41:01  snw
1.16    ! snw        31: #   New features frozen; prepare 0.63.0-rc3
1.15      snw        32: #
1.14      snw        33: #   Revision 1.13  2025/03/30 01:36:58  snw
                     34: #   Make it easier to bring back fma_gedit, fix double-free in global handler, limit $CHAR to 7-bit ASCII
                     35: #
1.13      snw        36: #   Revision 1.12  2025/03/29 16:50:42  snw
1.16    ! snw        37: #   Back to 0.63.0-rc3 as version for development; temp fix for double-free issue in global_dispatch
1.13      snw        38: #
1.12      snw        39: #   Revision 1.11  2025/03/27 03:31:16  snw
1.16    ! snw        40: #   Prepare for release of FreeM 0.63.0-rc3
1.12      snw        41: #
1.11      snw        42: #   Revision 1.10  2025/03/23 19:42:18  snw
1.16    ! snw        43: #   Back to 0.63.0-rc3 versioning for continued development work
1.11      snw        44: #
1.10      snw        45: #   Revision 1.9  2025/03/23 04:42:33  snw
1.16    ! snw        46: #   Prepare for release of FreeM 0.63.0-rc3
1.10      snw        47: #
1.9       snw        48: #   Revision 1.8  2025/03/16 16:08:26  snw
1.16    ! snw        49: #   Back on 0.63.0-rc3 versioning for continued development
1.9       snw        50: #
1.8       snw        51: #   Revision 1.7  2025/03/15 03:19:33  snw
1.16    ! snw        52: #   Fix broken build and update to 0.63.0-rc3
1.8       snw        53: #
1.7       snw        54: #   Revision 1.6  2025/03/15 02:26:35  snw
1.16    ! snw        55: #   Prepare for 0.63.0-rc3 release
1.7       snw        56: #
1.6       snw        57: #   Revision 1.5  2025/03/09 19:14:24  snw
                     58: #   First phase of REUSE compliance and header reformat
                     59: #
1.1       snw        60: #
1.5       snw        61: # SPDX-FileCopyrightText:  (C) 2025 Coherent Logic Development LLC
                     62: # SPDX-License-Identifier: AGPL-3.0-or-later
                     63: 
1.1       snw        64: 
1.16    ! snw        65: AC_INIT([freem],[0.63.0-rc3],[snw@coherent-logic.com])
1.1       snw        66: AC_CONFIG_HEADERS([src/config.h])
                     67: AC_CONFIG_MACRO_DIR([m4])
                     68: 
                     69: AX_LIB_READLINE
                     70: 
                     71: # check for libm
                     72: AC_CHECK_LIB([m], [powf])
                     73: AC_CHECK_LIB([m], [pow])
                     74: 
                     75: AC_CANONICAL_HOST
1.13      snw        76: #AX_WITH_CURSES
1.1       snw        77: 
                     78: # find out if we need to link with -lsocket and/or -lnsl to get
                     79: # BSD sockets support
                     80: 
                     81: AU_ALIAS([LIB_SOCKET_NSL], [AX_LIB_SOCKET_NSL])
                     82: 
                     83: AC_DEFUN([AX_LIB_SOCKET_NSL],
                     84: [
                     85:         AC_SEARCH_LIBS([gethostbyname], [nsl])
                     86:         AC_SEARCH_LIBS([socket], [socket], [], [
                     87:                 AC_CHECK_LIB([socket], [socket], [LIBS="-lsocket -lnsl $LIBS"],
                     88:                 [], [-lnsl])])
                     89: ])
                     90: 
                     91: AX_LIB_SOCKET_NSL
                     92: 
                     93: #
                     94: # check for getopt.h and getopt_long
                     95: #
                     96: AC_CHECK_HEADERS(getopt.h)
                     97: AC_CHECK_FUNCS([getopt_long])
                     98: 
                     99: #
                    100: # bring in X11, X Toolkit, and Motif if --enable-mwapi is passed to configure
                    101: #
                    102: AC_ARG_ENABLE([mwapi],  AS_HELP_STRING([--enable-mwapi], [Enable MWAPI (OSF/Motif) support (EXPERIMENTAL)]))
                    103: 
                    104: AS_IF([test "x$enable_mwapi" = "xyes"], [
                    105:   AX_LIB_MOTIF
                    106: ]) 
                    107: 
                    108: # check for wiringPi headers and library linkage for
                    109: # ^$ZRPI ssv on Raspberry Pi SBCs
                    110: AC_CHECK_HEADERS(wiringPi.h)
                    111: 
                    112: AC_DEFUN([AX_LIB_WIRINGPI],
                    113: [
                    114:         AC_SEARCH_LIBS([wiringPiSetup], [wiringPi], [], [
                    115:                 AC_CHECK_LIB([wiringPi], [wiringPiSetup], [LIBS="-lwiringPi $LIBS"],
                    116:                 [], [-lwiringPi])])
                    117: ])
                    118: 
                    119: AX_LIB_WIRINGPI
                    120: 
                    121: AC_ENABLE_SHARED
                    122: AC_DISABLE_STATIC
                    123: LT_INIT
                    124: AM_INIT_AUTOMAKE
                    125: AC_CONFIG_FILES(Makefile src/Makefile doc/Makefile)
                    126: AC_PROG_CC
                    127: # AC_PATH_XTRA
                    128: AC_OUTPUT

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>