mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-21 07:13:06 +02:00
* Consolidated all canonical version declarations in 'versions/'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
83 lines
2.3 KiB
Plaintext
83 lines
2.3 KiB
Plaintext
dnl configure.ac
|
|
dnl
|
|
dnl Autoconf configuration for the MingW32 build of rivwebcapi.
|
|
dnl
|
|
dnl (C) Copyright 2015-2021 Fred Gleason <fredg@paravelsystems.com>
|
|
dnl
|
|
dnl This program is free software; you can redistribute it and/or modify
|
|
dnl it under the terms of the GNU General Public License version 2 as
|
|
dnl published by the Free Software Foundation.
|
|
dnl
|
|
dnl This program is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
dnl GNU General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU General Public
|
|
dnl License along with this program; if not, write to the Free Software
|
|
dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
dnl
|
|
dnl Use autoconf to process this into a configure script
|
|
|
|
AC_INIT([rivwebcapi],m4_esyscmd_s(cat ../../versions/PACKAGE_VERSION))
|
|
AM_INIT_AUTOMAKE
|
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
|
|
|
#
|
|
# Basic Compiler Checks
|
|
#
|
|
AC_PROG_CC
|
|
AC_PROG_LIBTOOL
|
|
|
|
#
|
|
# API Versioning
|
|
#
|
|
RIVWEBCAPI_CURRENT=m4_esyscmd(cat ../../versions/RIVWEBCAPI_CURRENT)
|
|
RIVWEBCAPI_REVISION=m4_esyscmd(cat ../../versions/RIVWEBCAPI_REVISION)
|
|
RIVWEBCAPI_AGE=m4_esyscmd(cat ../../versions/RIVWEBCAPI_AGE)
|
|
RIVWEBCAPI_POINT=$(($RIVWEBCAPI_CURRENT - $RIVWEBCAPI_AGE))
|
|
AC_SUBST(INTERFACE_RIVWEBCAPI_CURRENT,$RIVWEBCAPI_CURRENT)
|
|
AC_SUBST(INTERFACE_RIVWEBCAPI_REVISION,$RIVWEBCAPI_REVISION)
|
|
AC_SUBST(INTERFACE_RIVWEBCAPI_AGE,$RIVWEBCAPI_AGE)
|
|
AC_SUBST(INTERFACE_RIVWEBCAPI_MAJOR,$RIVWEBCAPI_POINT)
|
|
AC_SUBST(INTERFACE_RIVWEBCAPI_MINOR,$RIVWEBCAPI_AGE)
|
|
AC_SUBST(INTERFACE_RIVWEBCAPI_POINT,$RIVWEBCAPI_REVISION)
|
|
|
|
#
|
|
# Determine the target architecture
|
|
#
|
|
AR_GCC_TARGET()
|
|
AC_SUBST(VENDOR,$ar_gcc_distro)
|
|
AC_SUBST(ARCH,$ar_gcc_arch)
|
|
if test $ar_gcc_os = mingw32 ; then
|
|
AC_DEFINE(MINGW32,"yes")
|
|
fi
|
|
|
|
#
|
|
# Determine Distro
|
|
#
|
|
AR_GET_DISTRO()
|
|
AC_SUBST(DISTRO,$ar_gcc_distro)
|
|
|
|
#
|
|
# Check for LibCurl
|
|
#
|
|
AC_CHECK_HEADER(curl/curl.h,[],[AC_MSG_ERROR([*** LibCurl not found ***])])
|
|
|
|
#
|
|
# Check for Expat
|
|
#
|
|
AC_CHECK_HEADER(expat.h,[],[AC_MSG_ERROR([*** Expat not found ***])])
|
|
|
|
AC_CONFIG_FILES([ \
|
|
rivwebcapi/Makefile \
|
|
tests/Makefile \
|
|
rivwebcapi.pc \
|
|
Makefile \
|
|
])
|
|
AC_OUTPUT()
|
|
|
|
AC_MSG_NOTICE()
|
|
AC_MSG_NOTICE(Now enter 'make' to build the software.)
|
|
AC_MSG_NOTICE()
|