Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 732024 | Differences between
and this patch

Collapse All | Expand All

(-)boinc-client_release-7.14-7.14.2.orig/m4/ax_check_glu.m4 (-2 / +2 lines)
Lines 19-25 Link Here
19
    else
19
    else
20
      ax_try_lib="${ax_lib}"
20
      ax_try_lib="${ax_lib}"
21
    fi
21
    fi
22
    LIBS="-L${prefix}/lib ${ax_try_lib} ${GL_LIBS} ${ax_save_LIBS}"
22
    LIBS="${ax_try_lib} ${GL_LIBS} ${ax_save_LIBS}"
23
    #
23
    #
24
    # libGLU typically links with libstdc++ on POSIX platforms. However,
24
    # libGLU typically links with libstdc++ on POSIX platforms. However,
25
    # setting the language to C++ means that test program source is named
25
    # setting the language to C++ means that test program source is named
Lines 37-43 Link Here
37
# endif
37
# endif
38
# include <GL/glu.h>]],
38
# include <GL/glu.h>]],
39
                     [[gluBeginCurve(0)]])],
39
                     [[gluBeginCurve(0)]])],
40
    [ax_cv_check_glu_libglu="-L${prefix}/lib ${ax_try_lib}"; break])
40
    [ax_cv_check_glu_libglu="${ax_try_lib}"; break])
41
    if test X$ax_compiler_ms = Xyes; then
41
    if test X$ax_compiler_ms = Xyes; then
42
      AC_LANG_POP([C])
42
      AC_LANG_POP([C])
43
    fi
43
    fi
(-)boinc-client_release-7.14-7.14.2.orig/m4/ax_check_glut.m4 (-2 / +2 lines)
Lines 41-47 Link Here
41
    else
41
    else
42
      ax_try_lib="${ax_lib}"
42
      ax_try_lib="${ax_lib}"
43
    fi
43
    fi
44
    LIBS="-L${prefix}/lib ${ax_try_lib} ${GLUT_LIBS} ${ax_save_LIBS}"
44
    LIBS="${ax_try_lib} ${GLUT_LIBS} ${ax_save_LIBS}"
45
    AC_LINK_IFELSE(
45
    AC_LINK_IFELSE(
46
    [AC_LANG_PROGRAM([[
46
    [AC_LANG_PROGRAM([[
47
#define FREEGLUT_STATIC 1
47
#define FREEGLUT_STATIC 1
Lines 50-56 Link Here
50
# endif
50
# endif
51
# include <GL/glut.h>]],
51
# include <GL/glut.h>]],
52
                     [[glutMainLoop()]])],
52
                     [[glutMainLoop()]])],
53
    [ax_cv_check_glut_libglut="-L${prefix}/lib ${ax_try_lib}"; break])
53
    [ax_cv_check_glut_libglut="${ax_try_lib}"; break])
54
54
55
  done
55
  done
56
  LIBS=${ax_save_LIBS}
56
  LIBS=${ax_save_LIBS}

Return to bug 732024