diff options
author | Dan Williams <dcbw@redhat.com> | 2019-04-02 11:17:21 -0500 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2019-04-02 11:20:11 -0500 |
commit | 1c14ca7262403ef6dc30319e3dc2aaa3ba47a225 (patch) | |
tree | f0274e750829c32609fe431e3b7916154bf31a05 /libwmc/configure.ac | |
parent | 88fac7f14a8898a7856a6868bbd94d4cf576723a (diff) |
libwmc: remove it
The WMC protocol was only present on older Panasonic/Verizon devices
from the 2006 - 2011 timeframe. The last device to support WMC was
the UML290 which also supported QMI (which is much more functional).
ModemManager also never used WMC support and it was never significantly
reverse engineered.
So remove WMC code from git; it'll still be in the history if anyone
cares in the future.
Diffstat (limited to 'libwmc/configure.ac')
-rw-r--r-- | libwmc/configure.ac | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/libwmc/configure.ac b/libwmc/configure.ac deleted file mode 100644 index 4d2b90c6..00000000 --- a/libwmc/configure.ac +++ /dev/null @@ -1,48 +0,0 @@ -# NOTE -# This configure.ac is only used when building libqcdm separately from -# ModemManager. -# - -AC_PREREQ(2.52) - -AC_INIT(libwmc, 0.1, dcbw@redhat.com, libwmc) -AM_INIT_AUTOMAKE([1.9 subdir-objects tar-ustar no-dist-gzip dist-bzip2]) -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -AM_MAINTAINER_MODE - -AC_CONFIG_MACRO_DIR([m4]) - -AC_CONFIG_HEADERS(config.h) - -dnl Define _GNU_SOURCE for various things like strcasestr() -AC_GNU_SOURCE - -dnl Required programs -AC_PROG_CC -AM_PROG_CC_C_O -AC_PROG_INSTALL -AC_PROG_LIBTOOL - -dnl -dnl Tests -dnl -AC_ARG_WITH(tests, AS_HELP_STRING([--with-tests], [Build libwmc tests])) -AM_CONDITIONAL(WITH_TESTS, test "x$with_tests" = "xyes") -case $with_tests in - yes) - PKG_CHECK_MODULES(MM, glib-2.0 >= 2.20) - AC_SUBST(MM_CFLAGS) - AC_SUBST(MM_LIBS) - ;; - *) ;; -esac - -AM_CONDITIONAL(WMC_STANDALONE, test "yes" = "yes") - -AC_CONFIG_FILES([ -Makefile -src/Makefile -tests/Makefile -]) -AC_OUTPUT - |