]> git.sur5r.net Git - ptouch-print/commitdiff
Fix compile error on debian jessie
authorDominic Radermacher <dominic.radermacher@gmail.com>
Thu, 3 Mar 2016 21:08:04 +0000 (22:08 +0100)
committerDominic Radermacher <dominic.radermacher@gmail.com>
Thu, 3 Mar 2016 21:08:04 +0000 (22:08 +0100)
Makefile.am
src/libptouch.c

index 9232eafd1ffe11a4e31ce3a41ba2b282c0c38896..e6f56fa548fedd3ce35ec557c7b5e7d899c629dc 100644 (file)
@@ -1,6 +1,6 @@
 AUTOMAKE_OPTIONS = subdir-objects
 AM_CPPFLAGS= -DLOCALEDIR='"$(localedir)"'
-AM_CFLAGS=-g -Wall -O3 -I$(top_srcdir)/include `pkg-config --cflags gtk+-3.0`
+AM_CFLAGS=-g -std=c11 -Wall -O3 -I$(top_srcdir)/include `pkg-config --cflags gtk+-3.0`
 SUBDIRS = po
 ACLOCAL_AMFLAGS = -I m4
 EXTRA_DIST = config.rpath m4/ChangeLog Makefile.old data/ptouch.ui
index db0b07de2d76589e0b6a54d8a0e6169d369dd436..45833df28921cc38ade26c9c971a888450a4fd85 100644 (file)
@@ -17,6 +17,8 @@
        Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */
 
+#define _POSIX_C_SOURCE        199309L /* needed for nanosleep() when using -std=c11 */
+
 #include <stdio.h>
 #include <stdlib.h>    /* malloc() */
 #include <string.h>    /* memcmp()  */