rmultimarkdown 6.4.0.2 → 6.4.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/Makefile +12 -12
- data/ext/extconf.rb +3 -3
- data/lib/multi_markdown.bundle +0 -0
- data/lib/multi_markdown/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7553de673aaa6df4d48dbdb6b8c31fc82d4f073a
|
4
|
+
data.tar.gz: 08cf7a6720c8b1ea805244e75c6537dd0de25518
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0d3e167e1bb1ade9c110bd6486062bfef7f5e17509a66ca14b2f7012851d5918c2c8ce9bfac2ef6def3d72d0fe8f930e0418568a82d9bae2c2ae52c19808367
|
7
|
+
data.tar.gz: 74a156ba6f7f872903f80303b1d90c90ec1a7332145a3a74e661e52d080e5de54a2c5dccc6caaa63b2bdb056a3a12e09521f7fd4bac32f26c68802eb193a7cf5
|
data/ext/Makefile
CHANGED
@@ -12,12 +12,12 @@ NULLCMD = :
|
|
12
12
|
#### Start of system configuration section. ####
|
13
13
|
|
14
14
|
srcdir = .
|
15
|
-
topdir = /opt/rubies/ruby-2.3.
|
15
|
+
topdir = /opt/rubies/ruby-2.3.1/include/ruby-2.3.0
|
16
16
|
hdrdir = $(topdir)
|
17
|
-
arch_hdrdir = /opt/rubies/ruby-2.3.
|
17
|
+
arch_hdrdir = /opt/rubies/ruby-2.3.1/include/ruby-2.3.0/x86_64-darwin14
|
18
18
|
PATH_SEPARATOR = :
|
19
19
|
VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
|
20
|
-
prefix = $(DESTDIR)/opt/rubies/ruby-2.3.
|
20
|
+
prefix = $(DESTDIR)/opt/rubies/ruby-2.3.1
|
21
21
|
rubysitearchprefix = $(rubylibprefix)/$(sitearch)
|
22
22
|
rubyarchprefix = $(rubylibprefix)/$(arch)
|
23
23
|
rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
|
@@ -63,8 +63,8 @@ bindir = $(exec_prefix)/bin
|
|
63
63
|
archdir = $(rubyarchdir)
|
64
64
|
|
65
65
|
|
66
|
-
CC =
|
67
|
-
CXX =
|
66
|
+
CC = clang
|
67
|
+
CXX = clang++
|
68
68
|
LIBRUBY = $(LIBRUBY_A)
|
69
69
|
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
70
70
|
LIBRUBYARG_SHARED =
|
@@ -80,12 +80,12 @@ optflags = -O3 -fno-fast-math
|
|
80
80
|
debugflags = -ggdb3
|
81
81
|
warnflags = -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wshorten-64-to-32 -Wimplicit-function-declaration -Wdivision-by-zero -Wdeprecated-declarations -Wextra-tokens
|
82
82
|
CCDLFLAGS = -fno-common
|
83
|
-
CFLAGS = $(CCDLFLAGS)
|
83
|
+
CFLAGS = $(CCDLFLAGS) -O3 -Wno-error=shorten-64-to-32 -pipe -fbracket-depth=512 -DNDEBUG=1 $(ARCH_FLAG)
|
84
84
|
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
|
85
85
|
DEFS =
|
86
|
-
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/Users/tillsc/github/tillsc/multi_markdown/ext/mmd -I/Users/tillsc/github/tillsc/multi_markdown/ext/mmd/include -I/usr/include -I/opt/rubies/ruby-2.3.
|
87
|
-
CXXFLAGS = $(CCDLFLAGS) $(cxxflags) -
|
88
|
-
ldflags = -L. -L/opt/rubies/ruby-2.3.
|
86
|
+
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -I/Users/tillsc/github/tillsc/multi_markdown/ext/mmd -I/Users/tillsc/github/tillsc/multi_markdown/ext/mmd/include -I/usr/include -I/opt/rubies/ruby-2.3.1/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT $(DEFS) $(cppflags)
|
87
|
+
CXXFLAGS = $(CCDLFLAGS) $(cxxflags) -fbracket-depth=512 -DNDEBUG=1 $(ARCH_FLAG)
|
88
|
+
ldflags = -L. -L/opt/rubies/ruby-2.3.1/lib -fstack-protector -L/usr/local/lib
|
89
89
|
dldflags = -Wl,-undefined,dynamic_lookup -Wl,-multiply_defined,suppress
|
90
90
|
ARCH_FLAG =
|
91
91
|
DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
|
@@ -101,7 +101,7 @@ RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version)
|
|
101
101
|
RUBYW_BASE_NAME = rubyw
|
102
102
|
RUBY_BASE_NAME = ruby
|
103
103
|
|
104
|
-
arch = x86_64-
|
104
|
+
arch = x86_64-darwin14
|
105
105
|
sitearch = $(arch)
|
106
106
|
ruby_version = 2.3.0
|
107
107
|
ruby = $(bindir)/$(RUBY_BASE_NAME)
|
@@ -122,8 +122,8 @@ TOUCH = exit >
|
|
122
122
|
|
123
123
|
preload =
|
124
124
|
|
125
|
-
libpath = . $(libdir) /opt/rubies/ruby-2.3.
|
126
|
-
LIBPATH = -L. -L$(libdir) -L/opt/rubies/ruby-2.3.
|
125
|
+
libpath = . $(libdir) /opt/rubies/ruby-2.3.1/lib
|
126
|
+
LIBPATH = -L. -L$(libdir) -L/opt/rubies/ruby-2.3.1/lib
|
127
127
|
DEFFILE =
|
128
128
|
|
129
129
|
CLEANFILES = mkmf.log
|
data/ext/extconf.rb
CHANGED
@@ -3,12 +3,12 @@ require 'mkmf'
|
|
3
3
|
LIBDIR = RbConfig::CONFIG['libdir']
|
4
4
|
INCLUDEDIR = RbConfig::CONFIG['includedir']
|
5
5
|
|
6
|
-
if RbConfig::CONFIG['CC'] == 'clang'
|
6
|
+
if RbConfig::CONFIG['CC'] == 'clang' || RbConfig::CONFIG['CC_VERSION'].to_s.include?("clang")
|
7
7
|
$CFLAGS="#{$CFLAGS} -fbracket-depth=512 -DNDEBUG=1"
|
8
8
|
$CXXFLAGS="#{$CXXFLAGS} -fbracket-depth=512 -DNDEBUG=1"
|
9
9
|
else
|
10
|
-
$CFLAGS="#{$CFLAGS} -std=c99 -
|
11
|
-
$CXXFLAGS="#{$CXXFLAGS} -std=c99 -
|
10
|
+
$CFLAGS="#{$CFLAGS} -std=c99 -DNDEBUG=1"
|
11
|
+
$CXXFLAGS="#{$CXXFLAGS} -std=c99 -DNDEBUG=1"
|
12
12
|
end
|
13
13
|
|
14
14
|
HEADER_DIRS = [
|
data/lib/multi_markdown.bundle
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rmultimarkdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.4.0.
|
4
|
+
version: 6.4.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Till Schulte-Coerne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|