From 9751403aeb161a49287582fab5965d33801bd76c Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Wed, 1 Sep 2021 23:11:59 +0000 Subject: changed build system to cmake (yeah, it's pretty big and complex, but i kinda like it). added "-v" and "--version" flags to nimisewi, that are outputting version information and compile features. updated readme with new build instructions. FossilOrigin-Name: 2ca71b4636bf84c76232e040f8ad5e8769a5381f7f99b76360233e6e6c78d686 --- configure.ac | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 7bdd1f0..0000000 --- a/configure.ac +++ /dev/null @@ -1,34 +0,0 @@ -AC_INIT([nimisewi], [0.1.1], [aaoth@aaoth.xyz]) -AC_COPYRIGHT([Copyright (c) 2021, la-ninpre]) -AC_CONFIG_AUX_DIR([autotools]) -AM_INIT_AUTOMAKE -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([Makefile]) -AC_CANONICAL_HOST - -# Checks for programs. -AC_PROG_CC - -# Checks for libraries. -case "$host_os" in - linux*) - AC_CHECK_HEADERS([bsd/string.h]) - AC_CHECK_FUNCS([strlcat]) - ;; - *bsd*|dragonfly*) - AC_CHECK_FUNCS([strlcat pledge]) - ;; -esac - -# Checks for header files. -AC_CHECK_HEADERS([sys/time.h unistd.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_PID_T -AC_TYPE_SIZE_T - -# Checks for library functions. -AC_FUNC_MALLOC -AC_CHECK_FUNCS([gettimeofday]) - -AC_OUTPUT -- cgit v1.2.3