diff options
Diffstat (limited to 'office/pdftk/pdftk-1.41-add_custom_optflags.patch')
-rw-r--r-- | office/pdftk/pdftk-1.41-add_custom_optflags.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/office/pdftk/pdftk-1.41-add_custom_optflags.patch b/office/pdftk/pdftk-1.41-add_custom_optflags.patch new file mode 100644 index 0000000000..b81e10e1a6 --- /dev/null +++ b/office/pdftk/pdftk-1.41-add_custom_optflags.patch @@ -0,0 +1,20 @@ +diff -Nur pdftk-1.41.orig/pdftk/Makefile.Generic pdftk-1.41/pdftk/Makefile.Generic +--- pdftk-1.41.orig/pdftk/Makefile.Generic 2006-09-21 12:37:12.000000000 -0500 ++++ pdftk-1.41/pdftk/Makefile.Generic 2009-11-26 00:03:40.823641779 -0600 +@@ -23,12 +23,13 @@ + # if you want pdftk to ask before overwriting a file, set + # ASK_ABOUT_WARNINGS to true; otherwise: false; override this default + # with the dont_ask or do_ask command-line options +-CPPFLAGS= -O2 -DPATH_DELIM=0x2f -DASK_ABOUT_WARNINGS=false -fdollars-in-identifiers +-CXXFLAGS= -lgcj ++OPT= -O2 ++CPPFLAGS= $(OPT) -DPATH_DELIM=0x2f -DASK_ABOUT_WARNINGS=false -fdollars-in-identifiers ++CXXFLAGS= $(OPT) -lgcj + + # itext compiler flags + # -O3 might cause pdftk to segfault on cat operation (gcc 3.4.4) +-export GCJFLAGS= -O2 ++export GCJFLAGS= $(OPT) -w + + # + export ARFLAGS= rs |