Browse Source

Properly substitute DLOPEN flags to build with ADL support when -ldl is needed and not when opencl is not found.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
9d84e91560
  1. 3
      configure.ac

3
configure.ac

@ -136,6 +136,8 @@ if test "$found_opencl" = 1; then @@ -136,6 +136,8 @@ if test "$found_opencl" = 1; then
DLOPEN_FLAGS=""
fi
fi
else
DLOPEN_FLAGS=""
fi
AC_SEARCH_LIBS(addstr, ncurses pdcurses, ,
@ -238,6 +240,7 @@ AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$prefix/bin"], [Path to cgminer install]) @@ -238,6 +240,7 @@ AC_DEFINE_UNQUOTED([CGMINER_PREFIX], ["$prefix/bin"], [Path to cgminer install])
AC_SUBST(OPENCL_LIBS)
AC_SUBST(JANSSON_LIBS)
AC_SUBST(PTHREAD_FLAGS)
AC_SUBST(DLOPEN_FLAGS)
AC_SUBST(PTHREAD_LIBS)
AC_SUBST(NCURSES_LIBS)
AC_SUBST(PDCURSES_LIBS)

Loading…
Cancel
Save