qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] Changes to qemacs/configure


From: Charlie Gordon
Subject: [Qemacs-commit] Changes to qemacs/configure
Date: Thu, 20 Apr 2006 15:58:06 +0000

Index: qemacs/configure
diff -u qemacs/configure:1.5 qemacs/configure:1.6
--- qemacs/configure:1.5        Wed May 11 12:16:59 2005
+++ qemacs/configure    Thu Apr 20 15:58:06 2006
@@ -50,12 +50,12 @@
 mpegaudio_hp="yes"
 
 tiny="no"
-x11="yes"
-xv="yes"
+x11="no"
+xv="no"
 xrender="no"
-png="yes"
+png="no"
 ffmpeg="no"
-html="yes"
+html="no"
 plugins="yes"
 initcalls="yes"
 exe=""
@@ -96,13 +96,21 @@
     source_path_used="no"
 fi
 
-if test -d ./ffmpeg ; then
+if test -d "./ffmpeg" ; then
     ffmpeg="yes"
     ffmpeg_srcdir="./ffmpeg"
 fi
 
-if test ! -f /usr/include/png.h ; then
-    png="no"
+if test -f "/usr/include/png.h" ; then
+    png="yes"
+fi
+
+if test -f "/usr/include/X11/Xlib.h" ; then
+    x11="yes"
+    html="yes"
+    if test -f "/usr/include/X11/extensions/Xv.h" ; then
+        xv="yes"
+    fi
 fi
 
 for opt do
@@ -151,6 +159,8 @@
   ;;
   --disable-plugins) plugins="no"
   ;;
+  --disable-ffmpeg) ffmpeg="no"
+  ;;
   --with-ffmpegdir=*)  ffmpeg_srcdir=${opt#--with-ffmpegdir=} ; ffmpeg="yes"
   ;;
   --with-ffmpeglibdir=*)  ffmpeg_libdir=${opt#--with-ffmpeglibdir=}
@@ -182,6 +192,14 @@
     exe=".exe"
 fi
 
+if test "$x11" = "no" ; then
+    xv="no"
+    xrender="no"
+    png="no"
+    ffmpeg="no"
+    html="no"
+fi
+
 # endianness : guess with cpu type. Should also use prefix
 if test "$cpu" = "powerpc"; then
     bigendian="yes"
@@ -267,6 +285,7 @@
 echo "  --disable-html           disable graphical html support"
 echo "  --disable-png            disable png support"
 echo "  --disable-plugins        disable plugins support"
+echo "  --disable-ffmpeg         disable ffmpeg support"
 echo "  --with-ffmpegdir=DIR     find ffmpeg sources and libraries in DIR"
 echo "                           for audio/video/image support"
 echo ""




reply via email to

[Prev in Thread] Current Thread [Next in Thread]