diff options
author | Bruno Martins <bgcngm@gmail.com> | 2018-01-11 15:56:36 +0000 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2018-01-20 09:32:11 +0100 |
commit | fc54d77844464c8546e105c3402e9157bd264d3f (patch) | |
tree | 8f9d21ee0ebe014672ee3b0b3c2436d4bd4c5960 /data-ipa-cfg-mgr/configure.ac | |
parent | ec054a141cb1cd471627ef21d362f0a916124f84 (diff) |
msm8996-common: data-ipa-cfg-mgr: Clean up and remove useless scripts
Change-Id: I511acf54907edfa3aab24d2529aecf248c4f0e67
Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
Diffstat (limited to 'data-ipa-cfg-mgr/configure.ac')
-rw-r--r-- | data-ipa-cfg-mgr/configure.ac | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/data-ipa-cfg-mgr/configure.ac b/data-ipa-cfg-mgr/configure.ac deleted file mode 100644 index 6662ef6..0000000 --- a/data-ipa-cfg-mgr/configure.ac +++ /dev/null @@ -1,58 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ([2.65]) -AC_INIT(data-ipa, 1.0.0) -AM_INIT_AUTOMAKE(data-ipa, 1.0.0) -AC_OUTPUT(Makefile ipanat/src/Makefile ipacm/src/Makefile) -AC_CONFIG_SRCDIR([ipanat/src/ipa_nat_drv.c]) -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_MACRO_DIR([m4]) - -# Checks for programs. -AC_PROG_CC -AC_PROG_LIBTOOL -AC_PROG_CXX - -PKG_CHECK_MODULES([LIBXML], [libxml-2.0]) -AC_SUBST([LIBXML_CFLAGS]) -AC_SUBST([LIBXML_LIBS]) - -# Checks for libraries. - -AC_ARG_WITH(sanitized-headers, - AS_HELP_STRING([--with-sanitized-headers=DIR], - [Specify the location of the sanitized Linux headers]), - [CPPFLAGS="$CPPFLAGS -idirafter $withval"]) -AM_CONDITIONAL(KERNELMODULES, [test -n -eq 0]) - -AC_ARG_WITH([glib], - AC_HELP_STRING([--with-glib], - [enable glib, building HLOS systems which use glib])) - -if (test "x${with_glib}" = "xyes"); then - AC_DEFINE(ENABLE_USEGLIB, 1, [Define if HLOS systems uses glib]) - PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= 2.16, dummy=yes, - AC_MSG_ERROR(GThread >= 2.16 is required)) - PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, dummy=yes, - AC_MSG_ERROR(GLib >= 2.16 is required)) - GLIB_CFLAGS="$GLIB_CFLAGS $GTHREAD_CFLAGS" - GLIB_LIBS="$GLIB_LIBS $GTHREAD_LIBS" - AC_SUBST(GLIB_CFLAGS) - AC_SUBST(GLIB_LIBS) -fi - -AM_CONDITIONAL(USE_GLIB, test "x${with_glib}" = "xyes") - -# Checks for header files. -AC_CHECK_HEADERS([fcntl.h netinet/in.h sys/ioctl.h unistd.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_OFF_T - -# Checks for library functions. -AC_FUNC_MALLOC -AC_FUNC_MMAP -AC_CHECK_FUNCS([memset munmap]) - -AC_OUTPUT |