charguess 1.2 → 1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- == 1.2 2009-12-09
1
+ == 1.3 2009-12-09
2
2
 
3
3
  * 1 bugfix:
4
4
  * Fixed build tasks
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.2") do |p|
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
@@ -6,7 +6,7 @@ require 'rake'
6
6
  libcharguess = File.expand_path(File.dirname(__FILE__), "../libcharguess/cpp")
7
7
 
8
8
  Dir.chdir(libcharguess) do
9
- sh("./configure")
9
+ sh("env CXXFLAGS=\"$CXXFLAGS -fPIC\" ./configure")
10
10
  sh("make")
11
11
  end
12
12
 
@@ -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@,-g -O2,;t t
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: charguess
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.2"
4
+ version: "1.3"
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Ernesto Jim\xC3\xA9nez"