Browse code

Move ebx_available and ebp_available from CONFIG_LIST to HAVE_LIST, it's not configurable by the user.

Originally committed as revision 8795 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2007/04/24 16:06:30
Showing 2 changed files
... ...
@@ -566,8 +566,6 @@ CONFIG_LIST='
566 566
     bktr
567 567
     dc1394
568 568
     dv1394
569
-    ebp_available
570
-    ebx_available
571 569
     ffmpeg
572 570
     ffplay
573 571
     ffserver
... ...
@@ -626,6 +624,8 @@ HAVE_LIST="
626 626
     dev_video_bktr_ioctl_bt848_h
627 627
     dlfcn_h
628 628
     dlopen
629
+    ebp_available
630
+    ebx_available
629 631
     fast_64bit
630 632
     fast_cmov
631 633
     freetype2
... ...
@@ -57,7 +57,7 @@
57 57
 #  define REGSP   esp
58 58
 #endif
59 59
 
60
-#if defined(ARCH_X86_64) || (defined(ARCH_X86_32) && defined(CONFIG_EBX_AVAILABLE) && defined(CONFIG_EBP_AVAILABLE))
60
+#if defined(ARCH_X86_64) || (defined(ARCH_X86_32) && defined(HAVE_EBX_AVAILABLE) && defined(HAVE_EBP_AVAILABLE))
61 61
 #  define CONFIG_7REGS 1
62 62
 #endif
63 63