summaryrefslogtreecommitdiffstats
path: root/e
diff options
context:
space:
mode:
authorJustin Boffemmyer2009-05-21 21:55:13 -0400
committerJustin Boffemmyer2009-05-21 21:55:13 -0400
commit2bc5399d558eb32af19f974d4dba3a4852e85575 (patch)
treee587d14290ded560b92823a2d35eb0888ec29897 /e
parent87c14cfce7bdc1aa12ba8665a06f8e04621d54be (diff)
Revert "e/imlib2: better support for building without X"
This reverts commit 87c14cfce7bdc1aa12ba8665a06f8e04621d54be. Accidentally committed the wrong patch file (I was testing it different times). This patch only removed reference to Xlib.h, but failed to remove the imlib2 defines based on Xlib.h.
Diffstat (limited to 'e')
-rwxr-xr-xe/imlib2/BUILD4
-rwxr-xr-xe/imlib2/CONFIGURE1
-rwxr-xr-xe/imlib2/DEPENDS4
-rw-r--r--e/imlib2/HISTORY9
-rw-r--r--e/imlib2/Imlib2.h.patch13
-rwxr-xr-xe/imlib2/PRE_BUILD4
6 files changed, 1 insertions, 34 deletions
diff --git a/e/imlib2/BUILD b/e/imlib2/BUILD
index b3b9881b01..7b82be6ea5 100755
--- a/e/imlib2/BUILD
+++ b/e/imlib2/BUILD
@@ -1,7 +1,5 @@
if [[ $HOST == x86_64-* ]]; then
- OPTS="--disable-mmx $IMLIB2_X11 $OPTS"
-else
- OPTS="$IMLIB2_X11 $OPTS"
+ OPTS="--disable-mmx $OPTS"
fi &&
default_build
diff --git a/e/imlib2/CONFIGURE b/e/imlib2/CONFIGURE
deleted file mode 100755
index a770cab7ca..0000000000
--- a/e/imlib2/CONFIGURE
+++ /dev/null
@@ -1 +0,0 @@
-config_query_option IMLIB2_X11 "Enable X11 support?" y "" "--without-x"
diff --git a/e/imlib2/DEPENDS b/e/imlib2/DEPENDS
index 9e8de0c5a0..4991b369e2 100755
--- a/e/imlib2/DEPENDS
+++ b/e/imlib2/DEPENDS
@@ -8,10 +8,6 @@ if [[ $IMLIB2_CVS == y ]]; then
depends automake-1.9
fi &&
-if [[ -z $IMLIB2_X11 ]]; then
- depends xorg-libs
-fi &&
-
optional_depends 'tiff' \
'--with-tiff' \
'--without-tiff' \
diff --git a/e/imlib2/HISTORY b/e/imlib2/HISTORY
index 1f0ff5df5a..73d51e1955 100644
--- a/e/imlib2/HISTORY
+++ b/e/imlib2/HISTORY
@@ -1,12 +1,3 @@
-2009-5-21 Justin Boffemmyer <flux@sourcemage.org>
- * CONFIGURE: new, ask if X support is wanted
- * BUILD: add IMLIB2_X11 to OPTS
- * DEPENDS: test IMLIB2_X11 and depends xorg-libs if building with X
- support
- * PRE_BUILD: patch Imlib2.h if building without X support
- * Imlib2.h.patch: new, patch to remove all X11 defines for building
- without X support
-
2008-10-23 Vlad Glagolev <stealth@sourcemage.org>
* DETAILS: updated spell to 1.4.2; quoting paths; cleaned up;
SECURITY_PATCH+=1 (http://secunia.com/Advisories/32354/);
diff --git a/e/imlib2/Imlib2.h.patch b/e/imlib2/Imlib2.h.patch
deleted file mode 100644
index 5b3c122555..0000000000
--- a/e/imlib2/Imlib2.h.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/lib/Imlib2.h 2008-08-17 05:39:12.000000000 -0400
-+++ src/lib/Imlib2.h 2009-05-22 00:00:30.000000000 -0400
-@@ -22,10 +22,6 @@
- # endif
- # endif
-
--# ifndef X_DISPLAY_MISSING
--# include <X11/Xlib.h>
--# endif
--
- /* Data types to use */
- # ifndef DATA64
- # define DATA64 unsigned long long
diff --git a/e/imlib2/PRE_BUILD b/e/imlib2/PRE_BUILD
index e859dc1e53..e2c00f43c4 100755
--- a/e/imlib2/PRE_BUILD
+++ b/e/imlib2/PRE_BUILD
@@ -7,7 +7,3 @@ if [[ $IMLIB2_CVS == y ]]; then
sed -i "s/; automake/; automake-1.9/" autogen.sh &&
NOCONFIGURE=ON ./autogen.sh
fi
-
-if [[ $IMLIB2_X11 == "--without-x" ]]; then
- patch -p0 < "$SCRIPT_DIRECTORY"/Imlib2.h.patch
-fi