Skip to content
This repository has been archived by the owner on Aug 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #166 from rubys/165-fix-link-issue-on-mageia
Browse files Browse the repository at this point in the history
fix: support mageia when system libraries are installed
  • Loading branch information
flavorjones committed Feb 26, 2021
2 parents b3a8e5e + 2cdc4ce commit ff6f8d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed
### Security

## next
### Fixed
- Support Mageia distros when libxml2/libxslt system libraries are install. #165 (Thank you,
@pterjan!)

## [2.0.4] - 2020-11-27
### Fixed
- Fixed a bug where `Nokogiri::HTML5.fragment(nil)` would raise an error. Now
Expand Down
1 change: 1 addition & 0 deletions ext/nokogumbo/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

$CFLAGS += " -std=c99"
$LDFLAGS.gsub!('-Wl,--no-undefined', '')
$DLDFLAGS.gsub!('-Wl,--no-undefined', '')
$warnflags = CONFIG['warnflags'] = '-Wall'

NG_SPEC = Gem::Specification.find_by_name('nokogiri', "= #{Nokogiri::VERSION}")
Expand Down

0 comments on commit ff6f8d3

Please sign in to comment.