aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2021-09-01 23:11:59 +0000
committerla-ninpre <leobrekalini@gmail.com>2021-09-01 23:11:59 +0000
commit9751403aeb161a49287582fab5965d33801bd76c (patch)
tree2c567c9eace65834f8980f856a031ccaa7086658 /configure.ac
parent58a402d36d5014c6dd06b8c8845671b85f0d1916 (diff)
downloadnimisewi_c-9751403aeb161a49287582fab5965d33801bd76c.tar.gz
nimisewi_c-9751403aeb161a49287582fab5965d33801bd76c.zip
changed build system to cmake (yeah, it's pretty big and complex, but i kindav0.2.0
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
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac34
1 files changed, 0 insertions, 34 deletions
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