glib.m4 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. # Configure paths for GLIB
  2. # Owen Taylor 97-11-3
  3. dnl AM_PATH_GLIB([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
  4. dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if "gmodule" or
  5. dnl gthread is specified in MODULES, pass to glib-config
  6. dnl
  7. AC_DEFUN([AM_PATH_GLIB],
  8. [dnl
  9. dnl Get the cflags and libraries from the glib-config script
  10. dnl
  11. AC_ARG_WITH(glib-prefix,[ --with-glib-prefix=PFX Prefix where GLIB is installed (optional)],
  12. glib_config_prefix="$withval", glib_config_prefix="")
  13. AC_ARG_WITH(glib-exec-prefix,[ --with-glib-exec-prefix=PFX Exec prefix where GLIB is installed (optional)],
  14. glib_config_exec_prefix="$withval", glib_config_exec_prefix="")
  15. AC_ARG_ENABLE(glibtest, [ --disable-glibtest Do not try to compile and run a test GLIB program],
  16. , enable_glibtest=yes)
  17. if test x$glib_config_exec_prefix != x ; then
  18. glib_config_args="$glib_config_args --exec-prefix=$glib_config_exec_prefix"
  19. if test x${GLIB_CONFIG+set} != xset ; then
  20. GLIB_CONFIG=$glib_config_exec_prefix/bin/glib-config
  21. fi
  22. fi
  23. if test x$glib_config_prefix != x ; then
  24. glib_config_args="$glib_config_args --prefix=$glib_config_prefix"
  25. if test x${GLIB_CONFIG+set} != xset ; then
  26. GLIB_CONFIG=$glib_config_prefix/bin/glib-config
  27. fi
  28. fi
  29. for module in . $4
  30. do
  31. case "$module" in
  32. gmodule)
  33. glib_config_args="$glib_config_args gmodule"
  34. ;;
  35. gthread)
  36. glib_config_args="$glib_config_args gthread"
  37. ;;
  38. esac
  39. done
  40. AC_PATH_PROG(GLIB_CONFIG, glib-config, no)
  41. min_glib_version=ifelse([$1], ,0.99.7,$1)
  42. AC_MSG_CHECKING(for GLIB - version >= $min_glib_version)
  43. no_glib=""
  44. if test "$GLIB_CONFIG" = "no" ; then
  45. no_glib=yes
  46. else
  47. GLIB_CFLAGS=`$GLIB_CONFIG $glib_config_args --cflags`
  48. GLIB_LIBS=`$GLIB_CONFIG $glib_config_args --libs`
  49. glib_config_major_version=`$GLIB_CONFIG $glib_config_args --version | \
  50. sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
  51. glib_config_minor_version=`$GLIB_CONFIG $glib_config_args --version | \
  52. sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
  53. glib_config_micro_version=`$GLIB_CONFIG $glib_config_args --version | \
  54. sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
  55. if test "x$enable_glibtest" = "xyes" ; then
  56. ac_save_CFLAGS="$CFLAGS"
  57. ac_save_LIBS="$LIBS"
  58. CFLAGS="$CFLAGS $GLIB_CFLAGS"
  59. LIBS="$GLIB_LIBS $LIBS"
  60. dnl
  61. dnl Now check if the installed GLIB is sufficiently new. (Also sanity
  62. dnl checks the results of glib-config to some extent
  63. dnl
  64. rm -f conf.glibtest
  65. AC_TRY_RUN([
  66. #include <glib.h>
  67. #include <stdio.h>
  68. #include <stdlib.h>
  69. int
  70. main ()
  71. {
  72. int major, minor, micro;
  73. char *tmp_version;
  74. system ("touch conf.glibtest");
  75. /* HP/UX 9 (%@#!) writes to sscanf strings */
  76. tmp_version = g_strdup("$min_glib_version");
  77. if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  78. printf("%s, bad version string\n", "$min_glib_version");
  79. exit(1);
  80. }
  81. if ((glib_major_version != $glib_config_major_version) ||
  82. (glib_minor_version != $glib_config_minor_version) ||
  83. (glib_micro_version != $glib_config_micro_version))
  84. {
  85. printf("\n*** 'glib-config --version' returned %d.%d.%d, but GLIB (%d.%d.%d)\n",
  86. $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version,
  87. glib_major_version, glib_minor_version, glib_micro_version);
  88. printf ("*** was found! If glib-config was correct, then it is best\n");
  89. printf ("*** to remove the old version of GLIB. You may also be able to fix the error\n");
  90. printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
  91. printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
  92. printf("*** required on your system.\n");
  93. printf("*** If glib-config was wrong, set the environment variable GLIB_CONFIG\n");
  94. printf("*** to point to the correct copy of glib-config, and remove the file config.cache\n");
  95. printf("*** before re-running configure\n");
  96. }
  97. else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
  98. (glib_minor_version != GLIB_MINOR_VERSION) ||
  99. (glib_micro_version != GLIB_MICRO_VERSION))
  100. {
  101. printf("*** GLIB header files (version %d.%d.%d) do not match\n",
  102. GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
  103. printf("*** library (version %d.%d.%d)\n",
  104. glib_major_version, glib_minor_version, glib_micro_version);
  105. }
  106. else
  107. {
  108. if ((glib_major_version > major) ||
  109. ((glib_major_version == major) && (glib_minor_version > minor)) ||
  110. ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
  111. {
  112. return 0;
  113. }
  114. else
  115. {
  116. printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n",
  117. glib_major_version, glib_minor_version, glib_micro_version);
  118. printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n",
  119. major, minor, micro);
  120. printf("*** GLIB is always available from ftp://ftp.gtk.org.\n");
  121. printf("***\n");
  122. printf("*** If you have already installed a sufficiently new version, this error\n");
  123. printf("*** probably means that the wrong copy of the glib-config shell script is\n");
  124. printf("*** being found. The easiest way to fix this is to remove the old version\n");
  125. printf("*** of GLIB, but you can also set the GLIB_CONFIG environment to point to the\n");
  126. printf("*** correct copy of glib-config. (In this case, you will have to\n");
  127. printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
  128. printf("*** so that the correct libraries are found at run-time))\n");
  129. }
  130. }
  131. return 1;
  132. }
  133. ],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  134. CFLAGS="$ac_save_CFLAGS"
  135. LIBS="$ac_save_LIBS"
  136. fi
  137. fi
  138. if test "x$no_glib" = x ; then
  139. AC_MSG_RESULT(yes)
  140. ifelse([$2], , :, [$2])
  141. else
  142. AC_MSG_RESULT(no)
  143. if test "$GLIB_CONFIG" = "no" ; then
  144. echo "*** The glib-config script installed by GLIB could not be found"
  145. echo "*** If GLIB was installed in PREFIX, make sure PREFIX/bin is in"
  146. echo "*** your path, or set the GLIB_CONFIG environment variable to the"
  147. echo "*** full path to glib-config."
  148. else
  149. if test -f conf.glibtest ; then
  150. :
  151. else
  152. echo "*** Could not run GLIB test program, checking why..."
  153. CFLAGS="$CFLAGS $GLIB_CFLAGS"
  154. LIBS="$LIBS $GLIB_LIBS"
  155. AC_TRY_LINK([
  156. #include <glib.h>
  157. #include <stdio.h>
  158. ], [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ],
  159. [ echo "*** The test program compiled, but did not run. This usually means"
  160. echo "*** that the run-time linker is not finding GLIB or finding the wrong"
  161. echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your"
  162. echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  163. echo "*** to the installed location Also, make sure you have run ldconfig if that"
  164. echo "*** is required on your system"
  165. echo "***"
  166. echo "*** If you have an old version installed, it is best to remove it, although"
  167. echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
  168. echo "***"
  169. echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that"
  170. echo "*** came with the system with the command"
  171. echo "***"
  172. echo "*** rpm --erase --nodeps gtk gtk-devel" ],
  173. [ echo "*** The test program failed to compile or link. See the file config.log for the"
  174. echo "*** exact error that occured. This usually means GLIB was incorrectly installed"
  175. echo "*** or that you have moved GLIB since it was installed. In the latter case, you"
  176. echo "*** may want to edit the glib-config script: $GLIB_CONFIG" ])
  177. CFLAGS="$ac_save_CFLAGS"
  178. LIBS="$ac_save_LIBS"
  179. fi
  180. fi
  181. GLIB_CFLAGS=""
  182. GLIB_LIBS=""
  183. ifelse([$3], , :, [$3])
  184. fi
  185. AC_SUBST(GLIB_CFLAGS)
  186. AC_SUBST(GLIB_LIBS)
  187. rm -f conf.glibtest
  188. ])