diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2012-12-22 11:51:49 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2012-12-22 11:51:49 +0000 |
commit | f3773e93eb758b46c34fe3eb0a44d941e03a3705 (patch) | |
tree | 0c59b9ecf2afafeb480f2f48bb5e4057f08ebdc3 /graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx | |
parent | Update to 20121205 (diff) |
Fix build with CUPS [1], and assorted other fixes:
- #include <cups/ppd.h> [1]
- remove gphoto2 and fltk ABI versions from LIB_DEPENDS, to quiet portlint
- fix int-vs-long format string Clang compiler warning in espmsg.c
- declare static char *hex const in http-md5.cxx to fix non-writable
string literal Clang warning
Submitted by: Hans Petter Selasky [1]
Diffstat (limited to 'graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx')
-rw-r--r-- | graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx b/graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx new file mode 100644 index 000000000000..39d70a733107 --- /dev/null +++ b/graphics/flphoto/files/patch-Fl_Print_Dialog2.cxx @@ -0,0 +1,10 @@ +--- ./Fl_Print_Dialog2.cxx.orig 2006-11-26 22:45:08.000000000 +0100 ++++ ./Fl_Print_Dialog2.cxx 2012-12-22 12:41:39.000000000 +0100 +@@ -56,6 +56,7 @@ + + #ifdef HAVE_LIBCUPS + # include <cups/cups.h> ++# include <cups/ppd.h> + #endif // HAVE_LIBCUPS + + |