Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.83 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. diff -ur cairo-fb03eba44f1ae7dd76dd3db82bfb55b06b0932ae/configure.ac cairo-1.9.10/configure.ac
  2. --- cairo-fb03eba44f1ae7dd76dd3db82bfb55b06b0932ae/configure.ac 2010-07-08 20:06:08.000000000 +0200
  3. +++ cairo-1.9.10/configure.ac   2010-07-09 01:34:43.000000000 +0200
  4. @@ -15,6 +15,15 @@
  5.  AC_PROG_LIBTOOL dnl ([1.4]) Don't remove!
  6.  GTK_DOC_CHECK([1.6])
  7.  
  8. +dnl Check if we have a C++ compiler, needed to link libcairo.so
  9. +dnl AC_PROG_CXX does not abort in case no compiler is found.
  10. +dnl Thus checking if ac_ct_CXX is empty (checking CXX would not work,
  11. +dnl as in case no compiler is found, it's set to be g++)
  12. +AC_PROG_CXX
  13. +if test -z "$ac_ct_CXX"; then
  14. +  AC_ERROR(["No C++ compiler found! Will not be able to link libcairo"])
  15. +fi
  16. +
  17.  AC_SYS_LARGEFILE
  18.  
  19.  dnl ===========================================================================