public inbox for alsa-devel@alsa-project.org
 help / color / mirror / Atom feed
* [TINYCOMPRESS][PATCH 0/6] Convert build system to autotools
@ 2015-03-23 13:08 Qais Yousef
  2015-03-23 13:09 ` [TINYCOMPRESS][PATCH 2/6] add .gitignore file Qais Yousef
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Qais Yousef @ 2015-03-23 13:08 UTC (permalink / raw)
  To: vinod.koul; +Cc: alsa-devel, Qais Yousef

This series converts the build system to use autotools and splits the files into
lib and utils.

Also patch 5 fixes error handling code.

I can't test Android builds but both cross and native compiling worked for me.

I left AUTHORS, ChangeLog and NEWS files empty. I used the license header to fill COPYING.

Qais Yousef (6):
  Convert the build system to autotools
  add .gitignore file
  makefile.linux: delete as no longer necessary/used
  Android.mk: Update to use the new location of source files
  compress.c: fix check for errors from poll(), read() and write()
  src/lib/utils.c: remove this empty file

 .gitignore            |  39 ++++
 AUTHORS               |   0
 Android.mk            |   6 +-
 COPYING               |  51 ++++
 ChangeLog             |   0
 INSTALL               | 365 +++++++++++++++++++++++++++++
 Makefile.am           |   3 +
 NEWS                  |   0
 autogen.sh            |   6 +
 compress.c            | 632 -------------------------------------------------
 configure.ac          |  31 +++
 cplay.c               | 330 --------------------------
 crec.c                | 489 --------------------------------------
 m4/.place_holder      |   0
 makefile.linux        |  41 ----
 src/Makefile.am       |   1 +
 src/lib/Makefile.am   |   5 +
 src/lib/compress.c    | 634 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/utils/Makefile.am |  11 +
 src/utils/cplay.c     | 330 ++++++++++++++++++++++++++
 src/utils/crec.c      | 489 ++++++++++++++++++++++++++++++++++++++
 utils.c               |  62 -----
 22 files changed, 1968 insertions(+), 1557 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 AUTHORS
 create mode 100644 COPYING
 create mode 100644 ChangeLog
 create mode 100644 INSTALL
 create mode 100644 Makefile.am
 create mode 100644 NEWS
 create mode 100755 autogen.sh
 delete mode 100644 compress.c
 create mode 100644 configure.ac
 delete mode 100644 cplay.c
 delete mode 100644 crec.c
 create mode 100644 m4/.place_holder
 delete mode 100644 makefile.linux
 create mode 100644 src/Makefile.am
 create mode 100644 src/lib/Makefile.am
 create mode 100644 src/lib/compress.c
 create mode 100644 src/utils/Makefile.am
 create mode 100644 src/utils/cplay.c
 create mode 100644 src/utils/crec.c
 delete mode 100644 utils.c

-- 
2.1.0

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-03-24  9:57 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-23 13:08 [TINYCOMPRESS][PATCH 0/6] Convert build system to autotools Qais Yousef
2015-03-23 13:09 ` [TINYCOMPRESS][PATCH 2/6] add .gitignore file Qais Yousef
2015-03-23 13:09 ` [TINYCOMPRESS][PATCH 3/6] makefile.linux: delete as no longer necessary/used Qais Yousef
2015-03-23 13:09 ` [TINYCOMPRESS][PATCH 4/6] Android.mk: Update to use the new location of source files Qais Yousef
2015-03-23 13:09 ` [TINYCOMPRESS][PATCH 5/6] compress.c: fix check for errors from poll(), read() and write() Qais Yousef
2015-03-23 13:09 ` [TINYCOMPRESS][PATCH 6/6] src/lib/utils.c: remove this empty file Qais Yousef
2015-03-23 15:19 ` [TINYCOMPRESS][PATCH 0/6] Convert build system to autotools Qais Yousef
2015-03-23 16:40 ` Vinod Koul
2015-03-24  9:57   ` Qais Yousef

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox