aboutsummaryrefslogtreecommitdiff
path: root/devel/clanlib
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2007-09-09 23:32:10 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2007-09-09 23:32:10 +0000
commita481e6e33eca6486336157129d68d1f659a7bdc2 (patch)
treec5e0a07ae165e42a3426926a080afcc69c64e9ad /devel/clanlib
parentd8986754ee959151f65bddb2bb499fe93ac14d8d (diff)
downloadports-a481e6e33eca6486336157129d68d1f659a7bdc2.tar.gz
ports-a481e6e33eca6486336157129d68d1f659a7bdc2.zip
Notes
Diffstat (limited to 'devel/clanlib')
-rw-r--r--devel/clanlib/files/patch-Sources::GUI::messagebox_generic.h11
-rw-r--r--devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.cpp29
-rw-r--r--devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.h45
3 files changed, 0 insertions, 85 deletions
diff --git a/devel/clanlib/files/patch-Sources::GUI::messagebox_generic.h b/devel/clanlib/files/patch-Sources::GUI::messagebox_generic.h
deleted file mode 100644
index a6679fd661a5..000000000000
--- a/devel/clanlib/files/patch-Sources::GUI::messagebox_generic.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- Sources/GUI/messagebox_generic.h.orig Wed May 30 21:37:42 2007
-+++ Sources/GUI/messagebox_generic.h Wed May 30 21:38:24 2007
-@@ -26,7 +26,7 @@
- const std::string &button2,
- const std::string &button3);
-
-- CL_MessageBox_Generic::~CL_MessageBox_Generic();
-+ ~CL_MessageBox_Generic();
-
- void set_text(const std::string &text);
-
diff --git a/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.cpp b/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.cpp
deleted file mode 100644
index fa0c3eae93ba..000000000000
--- a/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
---- Sources/SmallJPEG/jpgd/jpegdecoder.cpp.orig 2007-08-09 21:32:35.000000000 +0200
-+++ Sources/SmallJPEG/jpgd/jpegdecoder.cpp 2007-08-09 21:35:03.000000000 +0200
-@@ -102,7 +102,7 @@
- blocks[i] = q;
-
- // Round to qword boundry, to avoid misaligned accesses with MMX code
-- return ((void *)(((uint)q + 7) & ~7));
-+ return ((void *)(((ulong)q + 7) & ~7));
- }
- //------------------------------------------------------------------------------
- // Clear buffer to word values.
-@@ -1870,7 +1870,7 @@
- q = (uchar *)alloc(max_blocks_per_row * 64 * sizeof(BLOCK_TYPE) + 8);
-
- // Align to 8-byte boundry, for MMX code
-- q = (uchar *)(((uint)q + 7) & ~7);
-+ q = (uchar *)(((ulong)q + 7) & ~7);
-
- // The block_seg[] array's name dates back to the
- // 16-bit assembler implementation. "seg" stood for "segment".
-@@ -1880,7 +1880,7 @@
- for (i = 0; i < max_blocks_per_row; i++)
- block_max_zag_set[i] = 64;
-
-- Psample_buf = (uchar *)(((uint)alloc(max_blocks_per_row * 64 + 8) + 7) & ~7);
-+ Psample_buf = (uchar *)(((ulong)alloc(max_blocks_per_row * 64 + 8) + 7) & ~7);
-
- total_lines_left = image_y_size;
-
diff --git a/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.h b/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.h
deleted file mode 100644
index d46537e5e06c..000000000000
--- a/devel/clanlib/files/patch-Sources::SmallJPEG::jpgd::jpegdecoder.h
+++ /dev/null
@@ -1,45 +0,0 @@
---- Sources/SmallJPEG/jpgd/jpegdecoder.h.orig Wed May 30 21:51:53 2007
-+++ Sources/SmallJPEG/jpgd/jpegdecoder.h Wed May 30 21:53:54 2007
-@@ -493,26 +493,26 @@
-
- void find_eoi(void);
- //------------------
-- /*inline*/ uint jpeg_decoder::rol(uint i, uchar j);
-- /*inline*/ uint jpeg_decoder::get_char(void);
-- /*inline*/ uint jpeg_decoder::get_char(bool *Ppadding_flag);
-- /*inline*/ void jpeg_decoder::stuff_char(uchar q);
-- /*inline*/ uchar jpeg_decoder::get_octet(void);
-- /*inline*/ uint jpeg_decoder::get_bits_1(int num_bits);
-- /*inline*/ uint jpeg_decoder::get_bits_2(int numbits);
-- /*inline*/ int jpeg_decoder::huff_decode(Phuff_tables_t Ph);
-+ /*inline*/ uint rol(uint i, uchar j);
-+ /*inline*/ uint get_char(void);
-+ /*inline*/ uint get_char(bool *Ppadding_flag);
-+ /*inline*/ void stuff_char(uchar q);
-+ /*inline*/ uchar get_octet(void);
-+ /*inline*/ uint get_bits_1(int num_bits);
-+ /*inline*/ uint get_bits_2(int numbits);
-+ /*inline*/ int huff_decode(Phuff_tables_t Ph);
- #ifdef SUPPORT_X86ASM
-- /*inline*/ uint jpeg_decoder::huff_extend(uint i, int c);
-+ /*inline*/ uint huff_extend(uint i, int c);
- #endif
-- /*inline*/ uchar jpeg_decoder::clamp(int i);
-+ /*inline*/ uchar clamp(int i);
-
- #ifdef SUPPORT_MMX
-- /*inline*/ uint jpeg_decoder::get_high_byte_mmx(void);
-- /*inline*/ uint jpeg_decoder::get_high_word_mmx(void);
-- /*inline*/ void jpeg_decoder::get_bits_2_mmx_init(void);
-- /*inline*/ void jpeg_decoder::get_bits_2_mmx_deinit(void);
-- /*inline*/ uint jpeg_decoder::get_bits_2_mmx(int numbits);
-- /*inline*/ int jpeg_decoder::huff_decode_mmx(Phuff_tables_t Ph);
-+ /*inline*/ uint get_high_byte_mmx(void);
-+ /*inline*/ uint get_high_word_mmx(void);
-+ /*inline*/ void get_bits_2_mmx_init(void);
-+ /*inline*/ void get_bits_2_mmx_deinit(void);
-+ /*inline*/ uint get_bits_2_mmx(int numbits);
-+ /*inline*/ int huff_decode_mmx(Phuff_tables_t Ph);
- #endif
- //------------------
- int image_x_size;