mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-18 04:02:30 +02:00
18 lines
563 B
Diff
18 lines
563 B
Diff
This fixes problem with missing symbol __va_copy, see
|
|
https://github.com/protocolbuffers/protobuf/pull/6848.
|
|
|
|
--- a/ruby/ext/google/protobuf_c/extconf.rb
|
|
+++ b/ruby/ext/google/protobuf_c/extconf.rb
|
|
@@ -3,9 +3,9 @@
|
|
require 'mkmf'
|
|
|
|
if RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/
|
|
- $CFLAGS += " -std=gnu90 -O3 -DNDEBUG -Wall -Wdeclaration-after-statement -Wsign-compare"
|
|
+ $CFLAGS += " -std=gnu99 -DNDEBUG -Wall -Wdeclaration-after-statement -Wsign-compare"
|
|
else
|
|
- $CFLAGS += " -std=gnu90 -O3 -DNDEBUG"
|
|
+ $CFLAGS += " -std=gnu99 -DNDEBUG"
|
|
end
|
|
|
|
|