blob: 2a665e87aade8de20ac88fde4f5d5b2935f3153d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
http://bugs.gentoo.org/154461
Index: configure.in
===================================================================
RCS file: /cvs/e/e17/libs/imlib2/configure.in,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -p -r1.132 -r1.133
--- configure.in 30 Sep 2006 08:15:32 -0000 1.132
+++ configure.in 25 Oct 2006 04:45:08 -0000 1.133
@@ -10,7 +10,7 @@ AM_CONFIG_HEADER(config.h)
AC_C_BIGENDIAN
AC_PROG_CC
-
+AM_PROG_AS
case $host_os in
solaris*)
http://bugs.gentoo.org/154304
Index: configure.in
===================================================================
RCS file: /cvs/e/e17/libs/imlib2/configure.in,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -p -r1.134 -r1.135
--- configure.in 7 Nov 2006 04:37:34 -0000 1.134
+++ configure.in 8 Nov 2006 06:46:58 -0000 1.135
@@ -183,10 +183,13 @@ AC_ARG_WITH(freetype-config, [ --with-f
freetype_cflags=`$FREETYPE_CONFIG --cflags`
freetype_libs=`$FREETYPE_CONFIG --libs`
-AC_CHECK_HEADER(X11/X.h,
- [ have_x="yes" ],
- [ have_x="no" ])
-
+AC_PATH_X
+if test "x$have_x" != "xdisabled"; then
+ AC_CHECK_HEADER(X11/X.h,
+ [ have_x="yes" ],
+ [ have_x="no" ])
+fi
+
if test "x$have_x" = "xno"; then
# If --without-x was passed, this will be "disabled" instead of "no" --
# so always treat "no" as an error
|