File: 20_redefine_fix.patch

package info (click to toggle)
libvisual 0.4.0-17
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,724 kB
  • sloc: ansic: 15,686; sh: 8,761; makefile: 59; sed: 16; cpp: 7
file content (15 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: fix redefine.
Author: Brandon Holtsclaw <me@brandonholtsclaw.com>
Last-Update: 2010-05-02
Index: libvisual-0.4.0/libvisual/lv_defines.h
===================================================================
--- libvisual-0.4.0.orig/libvisual/lv_defines.h
+++ libvisual-0.4.0/libvisual/lv_defines.h
@@ -63,7 +63,6 @@
 
 /* Compiler specific optimalization macros */
 #if __GNUC__ >= 3
-# define inline			inline __attribute__ ((always_inline))
 # define __malloc		__attribute__ ((malloc))
 # define __packed		__attribute__ ((packed))
 # define VIS_LIKELY(x)		__builtin_expect (!!(x), 1)