blob: d4a2708f044129aef0004aca1c812ccc2543f142 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Nel] [patch] configure issue on GNU/Linux</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:David.Mentre%40irisa.fr">
<LINK REL="Previous" HREF="000056.html">
<LINK REL="Next" HREF="000062.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Nel] [patch] configure issue on GNU/Linux</H1>
<B>David =?iso-8859-1?q?Mentr=E9?=</B>
<A HREF="mailto:David.Mentre%40irisa.fr"
TITLE="[Nel] [patch] configure issue on GNU/Linux">David.Mentre@irisa.fr</A><BR>
<I>28 Nov 2000 11:04:18 +0100</I>
<P><UL>
<LI> Previous message: <A HREF="000056.html">[Nel] error in CVS?</A></li>
<LI> Next message: <A HREF="000062.html">[Nel] [patch] configure issue on GNU/Linux</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#57">[ date ]</a>
<a href="thread.html#57">[ thread ]</a>
<a href="subject.html#57">[ subject ]</a>
<a href="author.html#57">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Hi all nelers,
Issue:
With the current connfigure.in, the freetype availability test use cc
rather than c++ to make the test, resulting in test failure due to
unset include path.
Solution:
Use c++ as the default compiler for TRY_COMPILE macros.
Path:
--- configure.in.old Tue Nov 28 10:22:18 2000
+++ configure.in Tue Nov 28 10:50:10 2000
@@ -23,6 +23,7 @@
dnl Checks for programs.
AC_PROG_MAKE_SET
+AC_LANG_CPLUSPLUS
AC_PROG_CC
AC_PROG_CXX
Comment:
With this patch, configures works properly. And compilation worked
until my quota was full. ;)
Best regards,
d.
--
<A HREF="mailto:David.Mentre@irisa.fr">David.Mentre@irisa.fr</A> -- <A HREF="http://www.irisa.fr/prive/dmentre/">http://www.irisa.fr/prive/dmentre/</A>
Opinions expressed here are only mine.
</pre>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI> Previous message: <A HREF="000056.html">[Nel] error in CVS?</A></li>
<LI> Next message: <A HREF="000062.html">[Nel] [patch] configure issue on GNU/Linux</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#57">[ date ]</a>
<a href="thread.html#57">[ thread ]</a>
<a href="subject.html#57">[ subject ]</a>
<a href="author.html#57">[ author ]</a>
</LI>
</UL>
</body></html>
|