charguess 1.2 → 1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +1 -1
- data/Rakefile +1 -1
- data/ext/charguess/extconf.rb +1 -1
- data/ext/libcharguess/cpp/config.status +4 -4
- metadata +1 -1
data/History.txt
CHANGED
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# Generate all the Rake tasks
|
4
4
|
# Run 'rake -T' to see list of generated tasks (from gem root directory)
|
5
|
-
$hoe = Hoe.new('charguess', "1.
|
5
|
+
$hoe = Hoe.new('charguess', "1.3") do |p|
|
6
6
|
p.developer('Ernesto Jiménez', 'erjica@gmail.com')
|
7
7
|
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
|
8
8
|
p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
|
data/ext/charguess/extconf.rb
CHANGED
@@ -302,7 +302,7 @@ Report bugs to <bug-autoconf@gnu.org>."
|
|
302
302
|
ac_cs_version="\
|
303
303
|
config.status
|
304
304
|
configured by ./configure, generated by GNU Autoconf 2.57,
|
305
|
-
with options \"\"
|
305
|
+
with options \" 'CXXFLAGS= -fPIC'\"
|
306
306
|
|
307
307
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
308
308
|
Free Software Foundation, Inc.
|
@@ -382,8 +382,8 @@ if $ac_cs_silent; then
|
|
382
382
|
fi
|
383
383
|
|
384
384
|
if $ac_cs_recheck; then
|
385
|
-
echo "running /bin/sh ./configure " $ac_configure_extra_args " --no-create --no-recursion" >&6
|
386
|
-
exec /bin/sh ./configure $ac_configure_extra_args --no-create --no-recursion
|
385
|
+
echo "running /bin/sh ./configure " 'CXXFLAGS= -fPIC' $ac_configure_extra_args " --no-create --no-recursion" >&6
|
386
|
+
exec /bin/sh ./configure 'CXXFLAGS= -fPIC' $ac_configure_extra_args --no-create --no-recursion
|
387
387
|
fi
|
388
388
|
|
389
389
|
#
|
@@ -521,7 +521,7 @@ s,@am__fastdepCC_TRUE@,,;t t
|
|
521
521
|
s,@am__fastdepCC_FALSE@,#,;t t
|
522
522
|
s,@CPP@,gcc -E,;t t
|
523
523
|
s,@CXX@,g++,;t t
|
524
|
-
s,@CXXFLAGS
|
524
|
+
s,@CXXFLAGS@, -fPIC,;t t
|
525
525
|
s,@ac_ct_CXX@,g++,;t t
|
526
526
|
s,@CXXDEPMODE@,depmode=gcc3,;t t
|
527
527
|
s,@am__fastdepCXX_TRUE@,,;t t
|