summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2015-12-18 20:24:57 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2015-12-18 20:24:57 +0100
commit2af512e7b590baa8754c643b60ae9dac8bcdc4b8 (patch)
treeb9aab8ce5585cef6eee9663682e126680ab3860f /configure.ac
parentafd9ca3c5c3cac30ebdef3a400e6f720d8c48f48 (diff)
removing autotools
Change-Id: I619109ba3c5d603ce628dfc8a2419c64ef991571
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac46
1 files changed, 0 insertions, 46 deletions
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index adee3da..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,46 +0,0 @@
-# -*- Autoconf -*-
-# Process this file with autoconf to produce a configure script.
-
-AC_PREREQ([2.69])
-AC_INIT([wgtpkg], [1.0], [wgtpkg@iot.bzh])
-AM_INIT_AUTOMAKE
-#AM_INIT_AUTOMAKE([-Wall -Wno-pointer-sign])
-AC_CONFIG_SRCDIR([src/wgtpkg-files.c])
-AC_CONFIG_HEADERS([src/config.h])
-
-# Checks for programs.
-#AC_PROG_CXX
-AC_PROG_CC
-
-# Checks for libraries.
-# FIXME: Replace `main' with a function in `-lcrypto':
-#AC_CHECK_LIB([crypto], [d2i_X509])
-# FIXME: Replace `main' with a function in `-lxml2':
-#AC_CHECK_LIB([xml2], [xmlSaveFormatFileEnc])
-# FIXME: Replace `main' with a function in `-lzip':
-#AC_CHECK_LIB([zip], [zip_open])
-
-PKG_CHECK_MODULES([ZIP], [libzip >= 0.11])
-PKG_CHECK_MODULES([XML2], [libxml-2.0])
-PKG_CHECK_MODULES([OPENSSL], [openssl])
-PKG_CHECK_MODULES([XMLSEC], [xmlsec1 xmlsec1-openssl])
-PKG_CHECK_MODULES([JSON], [json-c])
-PKG_CHECK_MODULES([DBUS], [dbus-1])
-
-# Checks for header files.
-AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h string.h syslog.h unistd.h])
-
-# Checks for typedefs, structures, and compiler characteristics.
-AC_CHECK_HEADER_STDBOOL
-AC_TYPE_SIZE_T
-AC_TYPE_SSIZE_T
-
-# Checks for library functions.
-AC_FUNC_MALLOC
-AC_FUNC_REALLOC
-AC_CHECK_FUNCS([atexit memmove mkdir realpath rmdir stpcpy strrchr strtoul])
-AC_CHECK_FUNCS([strcasecmp strdup strndup])
-
-AC_CONFIG_FILES([Makefile
- src/Makefile])
-AC_OUTPUT