mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
Remove these too
This commit is contained in:
parent
d8986754ee
commit
a481e6e33e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=199224
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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;
|
Loading…
Reference in New Issue
Block a user