aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Gediminas Jakutis <gediminas@varciai.lt> 2017-06-14 15:52:45 +0300
committerGravatar Gediminas Jakutis <gediminas@varciai.lt> 2017-06-14 15:52:45 +0300
commitf8b02b46dca8f3a2689104127bbe1c0736705ff4 (patch)
treed214fb520e68d8a79e94c61842bc9dd1099e151b /configure.ac
parent49c320f951b40ed3c722ceb53c320db98fcb7ecc (diff)
downloadlibrin-f8b02b46dca8f3a2689104127bbe1c0736705ff4.tar.gz
librin-f8b02b46dca8f3a2689104127bbe1c0736705ff4.tar.bz2
librin-f8b02b46dca8f3a2689104127bbe1c0736705ff4.zip
meson: drop automake support && add initial meson support.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac51
1 files changed, 0 insertions, 51 deletions
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 34345d5..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,51 +0,0 @@
-dnl Copyright (C) 2015-2016 Gediminas Jakutis
-dnl
-dnl This configure.ac is free software; you can redistribute it and/or
-dnl modify it under the terms of the GNU Lesser General Public
-dnl License as published by the Free Software Foundation; version 2.1
-dnl of the License.
-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 GNU
-dnl Lesser General Public License for more details.
-dnl
-dnl You should have received a copy of the GNU Lesser General Public
-dnl License along with this library; if not, write to the Free Software
-dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
-
-# Process this file with autoconf to produce a configure script.
-
-AC_PREREQ([2.13])
-
-m4_define(LIBRIN_VERSION, m4_normalize(m4_include(VERSION)))
-AC_INIT([librin], [LIBRIN_VERSION], [gediminas@varciai.lt])
-AC_CONFIG_SRCDIR([src/dummy.c])
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_MACRO_DIRS([m4])
-
-# Checks for programs.
-AC_PROG_CC
-AC_PROG_INSTALL
-AM_INIT_AUTOMAKE
-LT_INIT
-
-# Checks for header files.
-AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h stdio.h stdint.h stdlib.h string.h sys/types.h sys/stat.h time,h unistd.h])
-
-# Checks for typedefs, structures, and compiler characteristics.
-AC_TYPE_INT32_T
-AC_TYPE_INT64_T
-AC_TYPE_SIZE_T
-AC_TYPE_UINT32_T
-AC_TYPE_UINT64_T
-
-# Checks for library functions.
-
-AC_CONFIG_FILES([Makefile
- src/Makefile
- src/diagnostic/Makefile
- src/float/Makefile
- src/gpio/Makefile
- test/Makefile])
-AC_OUTPUT