diff mangle.h @ 29835:f1b71fa008e8

Use configure code to define PIC instead of duplicating the check in mangle.h. While it is currently not necessary, it might be a good idea to move this outside the x86-only block in configure, as well as adding -pie to LDFLAGS.
author reimar
date Tue, 10 Nov 2009 13:08:36 +0000
parents 54aafbe45eb4
children
line wrap: on
line diff
--- a/mangle.h	Tue Nov 10 11:51:22 2009 +0000
+++ b/mangle.h	Tue Nov 10 13:08:36 2009 +0000
@@ -31,10 +31,6 @@
 #define attribute_used
 #endif
 
-// keep in sync with configure PIC check and libavutil/internal.h
-#if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
-#    define PIC
-#endif
 #if ARCH_X86_64 && defined(PIC)
 #define MANGLE(a) EXTERN_PREFIX #a "(%%rip)"
 #else