diff options
author | B. Watson <yalhcru@gmail.com> | 2015-11-22 06:05:18 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-28 07:26:17 +0700 |
commit | 5306931eb19ce2ccce15e6b007ed290112ba852c (patch) | |
tree | 840b3bf9f0817b923f890011a86adf0b7eda9fd6 /system/systrace | |
parent | 39307645b09c18bec5d273b6e6a5d90c3f58f6be (diff) |
system/systrace: Fix compile issue.
Diffstat (limited to 'system/systrace')
-rw-r--r-- | system/systrace/systrace.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/systrace/systrace.SlackBuild b/system/systrace/systrace.SlackBuild index 0aa24a8c0659..5ed96ae89887 100644 --- a/system/systrace/systrace.SlackBuild +++ b/system/systrace/systrace.SlackBuild @@ -55,7 +55,7 @@ find -L . \ ## First, systrace itself (backend + textmode UI): -CFLAGS="$SLKCFLAGS" \ +CFLAGS="$SLKCFLAGS -std=gnu89" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ @@ -105,7 +105,7 @@ if [ "${GUI:-yes}" = "yes" ]; then autoreconf -if - CFLAGS="$SLKCFLAGS" \ + CFLAGS="$SLKCFLAGS -std=gnu89" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ |