Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-11-10 15:59:56 +0300
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-11-10 15:59:56 +0300
commit7fc58b1eeb5980120a44329c8a553085fe71d98a (patch)
tree3052e079dd53af7ad932055c01e0409de40602f1 /libavutil/internal.h
parent5755bc88e51a82dd00897d840df2a688631da768 (diff)
Remove code checking for __PIC__ or __pic__ and setting PIC from libavutil/internal.h,
configure is supposed to take care of that already. Originally committed as revision 20498 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 141186bb5f..7f620d8dd7 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -91,10 +91,6 @@
# define INT_BIT (CHAR_BIT * sizeof(int))
#endif
-#if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
-# define PIC
-#endif
-
#ifndef offsetof
# define offsetof(T, F) ((unsigned int)((char *)&((T *)0)->F))
#endif