From b86d2b80040c0ac6810a49f593934d651a257128 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 1 Sep 2015 15:34:05 +0100 Subject: config.ac fixes and new .gitignore --- .gitignore | 17 +++++++++++++++++ configure.ac | 1 + dfu.c | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b12ffae..2f141fe 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,20 @@ core.* *~ nrfdfu .*.swp +.deps +INSTALL +Makefile +Makefile.in +aclocal.m4 +autom4te.cache/ +.dirstamp +compile +config.h +config.h.in +config.log +config.status +configure +depcomp +install-sh +missing +stamp-h1 diff --git a/configure.ac b/configure.ac index 9bb8e31..9ef9265 100644 --- a/configure.ac +++ b/configure.ac @@ -12,6 +12,7 @@ AC_CONFIG_SRCDIR(nrfdfu.c) AM_INIT_AUTOMAKE AC_PROG_CC +AM_PROG_CC_C_O AC_SYS_LARGEFILE diff --git a/dfu.c b/dfu.c index 8bd142e..1833bcc 100644 --- a/dfu.c +++ b/dfu.c @@ -8,7 +8,7 @@ send_data_quickly (BLE * b, uint8_t * d, size_t sz, int pkts) size_t mtu = 16; size_t off = 0; size_t tx, rx; - int sent=0; + int sent = 0; ble_notify_pkts_start (b); -- cgit v1.2.3