Mercurial > hg > xemacs-beta
comparison configure.ac @ 4440:e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Fri, 04 Apr 2008 10:48:58 -0700 |
parents | 42711a251efd |
children | ac6231e0c1df |
comparison
equal
deleted
inserted
replaced
4439:f4eb31866c38 | 4440:e4225b6d9389 |
---|---|
4239 dnl Search for the Athena library... | 4239 dnl Search for the Athena library... |
4240 if test "$athena_3d" = "no"; then | 4240 if test "$athena_3d" = "no"; then |
4241 AC_CHECK_LIB($athena_variant, XawScrollbarSetThumb, | 4241 AC_CHECK_LIB($athena_variant, XawScrollbarSetThumb, |
4242 [ | 4242 [ |
4243 dnl Must not be a 3d library... | 4243 dnl Must not be a 3d library... |
4244 AC_CHECK_LIB($athena_variant, threeDClassRec, | 4244 AC_CHECK_LIB($athena_variant, XawSme3dComputeTopShadowRGB, |
4245 [AC_MSG_WARN([Could not find a non-3d Athena widget library.])], | 4245 [AC_MSG_WARN([Could not find a non-3d Athena widget library.])], |
4246 athena_lib=$athena_variant) | 4246 athena_lib=$athena_variant) |
4247 ], | 4247 ], |
4248 AC_MSG_WARN([Could not find an Athena widget library.])) | 4248 AC_MSG_WARN([Could not find an Athena widget library.])) |
4249 else | 4249 else |
4250 dnl The real configuration, need 3d library | 4250 dnl The real configuration, need 3d library |
4251 AC_CHECK_LIB($athena_variant, threeDClassRec, athena_lib=$athena_variant, | 4251 AC_CHECK_LIB($athena_variant, XawSme3dComputeTopShadowRGB, athena_lib=$athena_variant, |
4252 dnl OK, couldn't find it with a proper name, try the standard Athena lib | 4252 dnl OK, couldn't find it with a proper name, try the standard Athena lib |
4253 dnl If that is 3d, presume the user asked for what they have installed. | 4253 dnl If that is 3d, presume the user asked for what they have installed. |
4254 AC_CHECK_LIB(Xaw, threeDClassRec, | 4254 AC_CHECK_LIB(Xaw, XawSme3dComputeTopShadowRGB, |
4255 [ | 4255 [ |
4256 athena_lib=Xaw; | 4256 athena_lib=Xaw; |
4257 AC_MSG_WARN([Assuming that libXaw is actually $athena_variant.]); | 4257 AC_MSG_WARN([Assuming that libXaw is actually $athena_variant.]); |
4258 ], | 4258 ], |
4259 [AC_MSG_WARN([Could not find a 3d Athena widget library that looked like $athena_variant.])])) | 4259 [AC_MSG_WARN([Could not find a 3d Athena widget library that looked like $athena_variant.])])) |