ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/acinclude.m4
(Generate patch)

Comparing deliantra/server/acinclude.m4 (file contents):
Revision 1.4 by root, Sun May 7 11:09:12 2006 UTC vs.
Revision 1.5 by elmex, Sun Aug 13 17:15:59 2006 UTC

144 144
145 AC_SUBST(PYTHON_LIB) 145 AC_SUBST(PYTHON_LIB)
146 AC_SUBST(PY_LIBS) 146 AC_SUBST(PY_LIBS)
147 AC_SUBST(PY_INCLUDES) 147 AC_SUBST(PY_INCLUDES)
148]) 148])
149
150dnl CF_CHECK_CROSSEDIT(X11LIBS, ACTION-IF-FOUND , ACTION-IF-NOT-FOUND)
151dnl check if a sample X test code can compile
152dnl
153
154AC_DEFUN([CF_CHECK_CROSSEDIT],[
155
156 ac_save_LIBS="$LIBS"
157
158 LIBS="$1 $LIBS"
159 AC_MSG_CHECKING(for crossedit required headers)
160 AC_TRY_LINK([
161#include <X11/Xaw/AllWidgets.h>
162 ], ,
163 AC_MSG_RESULT(yes)
164 [$2],
165 AC_MSG_RESULT(no)
166 [$3])
167 LIBS="$ac_save_LIBS"
168])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines