Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Yosemite build #18

Merged
merged 1 commit into from
Dec 9, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
== Version 0.0.10
2014-12-05: Build compatibility with Mac OS X 10.10 (Yosemite)

== Version 0.0.7

2010-11-12: PrintJob instances now take an options hash, thanks to [ransombriggs]
Expand Down
2 changes: 1 addition & 1 deletion cups.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = %q{cups}
s.version = "0.1.9"
s.version = "0.1.10"
s.authors = ["Nathan Stitt", "Tadej Murovec", "Ivan Turkovic", "Chris Mowforth"]
s.email = ["[email protected]", "[email protected]", "[email protected]", "[email protected]"]
s.summary = "A lightweight Ruby library for printing."
Expand Down
3 changes: 3 additions & 0 deletions ext/ruby_cups.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Enable access to IPP private structures post Cups 1.5
// (In Mac OS 10.8 thru 10.9 specifically enabled by Apple but not 10.10)
#define _IPP_PRIVATE_STRUCTURES 1
#include <cups/cups.h>

// st.h is needed for ST_CONTINUE constant
Expand Down