aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authoraxtloss <axtlos@getcryst.al>2024-07-08 12:54:00 +0200
committeraxtloss <axtlos@getcryst.al>2024-07-08 12:54:00 +0200
commita3377b0606c708efdc5656532676038c28a5c444 (patch)
tree8595e4a6d2c56d60ade81a92baf95f6ce668fe04 /configure.ac
downloadrunc-a3377b0606c708efdc5656532676038c28a5c444.tar.gz
runc-a3377b0606c708efdc5656532676038c28a5c444.tar.bz2
initial commit
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..22a9db9
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,15 @@
+AC_INIT([runc], [1.0], [axtlos@disroot.org])
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
+AC_PROG_CC
+AC_CHECK_HEADERS([
+ extlib.h
+])
+AC_FUNC_MALLOC
+AC_FUNC_REALLOC
+AC_TYPE_SIZE_T
+AC_TYPE_SSIZE_T
+AC_CONFIG_FILES([
+ Makefile
+ src/Makefile
+])
+AC_OUTPUT \ No newline at end of file