All of lore.kernel.org
 help / color / mirror / Atom feed
* [TINYCOMPRESS][v2 PATCH 0/7] Convert build system to autotools
@ 2015-03-24 10:32 Qais Yousef
  2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 1/7] Convert the " Qais Yousef
                   ` (7 more replies)
  0 siblings, 8 replies; 15+ messages in thread
From: Qais Yousef @ 2015-03-24 10:32 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.

Changes in v2:
 - Use -M option when generating the patches
 - Add Makefile.am to include directory that exports tinycompress.h
 - New patch (7) that fixes include dependency in tinycompress.h

Qais Yousef (7):
  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
  tinycompress.h: explicitly include required headers

 .gitignore                          |  39 ++++
 AUTHORS                             |   0
 Android.mk                          |   6 +-
 COPYING                             |  51 +++++
 ChangeLog                           |   0
 INSTALL                             | 365 ++++++++++++++++++++++++++++++++++++
 Makefile.am                         |   3 +
 NEWS                                |   0
 autogen.sh                          |   6 +
 configure.ac                        |  32 ++++
 include/Makefile.am                 |   6 +
 include/tinycompress/tinycompress.h |   3 +
 m4/.place_holder                    |   0
 makefile.linux                      |  41 ----
 src/Makefile.am                     |   1 +
 src/lib/Makefile.am                 |   5 +
 compress.c => src/lib/compress.c    |  22 ++-
 src/utils/Makefile.am               |  11 ++
 cplay.c => src/utils/cplay.c        |   0
 crec.c => src/utils/crec.c          |   0
 utils.c                             |  62 ------
 21 files changed, 537 insertions(+), 116 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
 create mode 100644 configure.ac
 create mode 100644 include/Makefile.am
 create mode 100644 m4/.place_holder
 delete mode 100644 makefile.linux
 create mode 100644 src/Makefile.am
 create mode 100644 src/lib/Makefile.am
 rename compress.c => src/lib/compress.c (98%)
 create mode 100644 src/utils/Makefile.am
 rename cplay.c => src/utils/cplay.c (100%)
 rename crec.c => src/utils/crec.c (100%)
 delete mode 100644 utils.c

-- 
2.1.0

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

end of thread, other threads:[~2015-04-29 14:37 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-24 10:32 [TINYCOMPRESS][v2 PATCH 0/7] Convert build system to autotools Qais Yousef
2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 1/7] Convert the " Qais Yousef
2015-03-30 16:02   ` Qais Yousef
2015-03-30 16:50     ` Vinod Koul
2015-03-31  9:22       ` Qais Yousef
2015-04-29 14:34       ` Qais Yousef
2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 2/7] add .gitignore file Qais Yousef
2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 3/7] makefile.linux: delete as no longer necessary/used Qais Yousef
2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 4/7] Android.mk: Update to use the new location of source files Qais Yousef
2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 5/7] compress.c: fix check for errors from poll(), read() and write() Qais Yousef
2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 6/7] src/lib/utils.c: remove this empty file Qais Yousef
2015-03-24 10:32 ` [TINYCOMPRESS][v2 PATCH 7/7] tinycompress.h: explicitly include required headers Qais Yousef
2015-03-24 16:07 ` [TINYCOMPRESS][v2 PATCH 0/7] Convert build system to autotools Vinod Koul
2015-03-24 16:26   ` Qais Yousef
2015-03-24 16:46   ` Qais Yousef

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.