diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-01-21 20:28:19 +0100 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-01-21 20:28:19 +0100 |
commit | 9832ee35c161a39a215f400639a69f713714243c (patch) | |
tree | e88ea9e975b41441de7281fe52bd513ae8701951 /plugins | |
parent | b5159d1a3b996f1ee2eade23576bf413441845be (diff) |
fixed std=c99 compile issue
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/oss/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/oss/Makefile.am b/plugins/oss/Makefile.am index 697f4d32..e2195996 100644 --- a/plugins/oss/Makefile.am +++ b/plugins/oss/Makefile.am @@ -1,6 +1,6 @@ ossdir = $(libdir)/$(PACKAGE) pkglib_LTLIBRARIES = oss.la -AM_CFLAGS = $(CFLAGS) $(OSS_CFLAGS) +AM_CFLAGS = $(CFLAGS) $(OSS_CFLAGS) -std=c99 oss_la_SOURCES = oss.c oss_la_LDFLAGS = -module |