Skip to content
Snippets Groups Projects
Commit 2f3c030e authored by Andrew Walker's avatar Andrew Walker
Browse files

autotools: Use newer configure syntax.

Using AM_INIT_AUTOMAKE with 2 and 3 arguments is deprecated.

Change-Id: I656c13497e9eb38ba64180b40e3b46c11f1eb6d8
parent 67be864a
No related branches found
No related tags found
No related merge requests found
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT(data-oss, 1.0.0)
AM_INIT_AUTOMAKE(data-oss, 1.0.0)
AC_INIT([data-oss], [1.0.0])
AM_INIT_AUTOMAKE
AC_OUTPUT(Makefile rmnetctl/src/Makefile rmnetctl/cli/Makefile data-oss.pc)
AC_CONFIG_SRCDIR([rmnetctl/src/librmnetctl.c])
#AC_CONFIG_HEADERS([config.h])
......@@ -11,6 +11,7 @@ AC_CONFIG_MACRO_DIR([m4])
# Checks for programs.
AC_PROG_CC
AC_PROG_LIBTOOL
PKG_PROG_PKG_CONFIG
# Checks for libraries.
AC_ARG_WITH(sanitized-headers,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment