Bug 1043534 - move netwerk/{sctp,srtp} completely over to moz.build; r=mshal

This commit is contained in:
Nathan Froyd 2014-07-24 14:27:41 -04:00
parent 752f938aa5
commit ea13f2e259
4 changed files with 6 additions and 20 deletions

View File

@ -1,10 +0,0 @@
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
include $(topsrcdir)/config/rules.mk
ifdef GNU_CC
CFLAGS += -std=gnu99
endif

View File

@ -90,3 +90,6 @@ if CONFIG['OS_TARGET'] == 'DragonFly':
DEFINES['__DragonFly__'] = False
NO_PGO = True # Don't PGO
if CONFIG['GNU_CC']:
CFLAGS += ['-std=gnu99']

View File

@ -1,10 +0,0 @@
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
include $(topsrcdir)/config/rules.mk
ifdef GNU_CC
CFLAGS += -std=gnu99
endif

View File

@ -65,3 +65,6 @@ if CONFIG['CPU_ARCH'] in ('x86', 'x86_64'):
if CONFIG['OS_TARGET'] == 'WINNT':
DEFINES['HAVE_WINSOCK2_H'] = True
DEFINES['inline'] = '__inline'
if CONFIG['GNU_CC']:
CFLAGS += ['-std=gnu99']