public
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/FooBarWidget/passenger.git
Click here to lend your support to: passenger and make a donation at www.pledgie.com !
Fix website URL in gem specification. Remove dependency on Rails and 
rspec: fixes issue #20. Compile the Apache unit test executable with the 
correct architecture flags.
Hongli Lai (Phusion) (author)
Sat Apr 19 09:54:17 -0700 2008
commit  3ae8f88a27e9686fc52177e167503b60ac81cc8e
tree    24ee49c571f032cbb202b3ce665b911ba0ddde99
parent  8b205b5fc45fa886be33fd43de4123d8604a4fcf
...
239
240
241
242
 
 
243
244
245
...
333
334
335
336
 
337
338
339
...
344
345
346
347
348
349
350
351
...
239
240
241
 
242
243
244
245
246
...
334
335
336
 
337
338
339
340
...
345
346
347
 
 
348
349
350
0
@@ -239,7 +239,8 @@ subdir 'test' do
0
       " ../ext/apache2/Utils.o" <<
0
       " ../ext/apache2/Logging.o"
0
     create_executable "Apache2ModuleTests", objects,
0
- "#{LDFLAGS} #{APR1_LIBS} ../ext/boost/src/libboost_thread.a -lpthread"
0
+ "#{LDFLAGS} #{APR1_LIBS} #{MULTI_ARCH_FLAGS} " <<
0
+ "../ext/boost/src/libboost_thread.a -lpthread"
0
   end
0
   
0
   TEST::AP2_OBJECTS.each_pair do |target, sources|
0
@@ -333,7 +334,7 @@ end
0
 
0
 spec = Gem::Specification.new do |s|
0
   s.platform = Gem::Platform::RUBY
0
- s.homepage = "http://passenger.phusion.nl/"
0
+ s.homepage = "http://www.modrails.com/"
0
   s.summary = "Apache module for Ruby on Rails support."
0
   s.name = "passenger"
0
   s.version = PACKAGE_VERSION
0
@@ -344,8 +345,6 @@ spec = Gem::Specification.new do |s|
0
   s.require_path = "lib"
0
   s.add_dependency 'rake', '>= 0.8.1'
0
   s.add_dependency 'fastthread', '>= 1.0.1'
0
- s.add_dependency 'rspec', '>= 1.1.2'
0
- s.add_dependency 'rails', '>= 1.2.0'
0
   s.extensions << 'ext/passenger/extconf.rb'
0
   s.files = FileList[
0
     'Rakefile',

Comments

    No one has commented yet.