Changeset 1208 for libcaca/trunk/configure.ac
- Timestamp:
- Oct 20, 2006, 12:43:17 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r1207 r1208 63 63 64 64 dnl conditional builds 65 AC_ARG_ENABLE(plugins, 66 [ --enable-plugins build X11 and GL drivers as plugins]) 65 67 AC_ARG_ENABLE(doc, 66 68 [ --enable-doc build documentation (needs doxygen and LaTeX)]) 67 69 68 AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h inttypes.h endian.h unistd.h arpa/inet.h netinet/in.h winsock2.h errno.h locale.h getopt.h )70 AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h inttypes.h endian.h unistd.h arpa/inet.h netinet/in.h winsock2.h errno.h locale.h getopt.h dlfcn.h) 69 71 AC_CHECK_FUNCS(signal ioctl vsnprintf getenv putenv strcasecmp htons) 70 72 AC_CHECK_FUNCS(usleep gettimeofday) … … 157 159 AC_DEFINE(USE_X11, 1, Define to 1 to activate the X11 backend driver) 158 160 CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}" 159 CACA_LIBS="${CACA_LIBS} -lX11 ${X_LIBS}"161 X11_LIBS="${X11_LIBS} -lX11 ${X_LIBS}" 160 162 CACA_DRIVERS="${CACA_DRIVERS} x11"], 161 163 [ac_cv_my_have_x11="no"], … … 181 183 if test "${ac_cv_my_have_gl}" = "yes"; then 182 184 AC_DEFINE(USE_GL, 1, Define to 1 to activate the OpenGL backend driver) 183 CACA_LIBS="${CACA_LIBS} -lGL -lglut"185 GL_LIBS="${GL_LIBS} -lGL -lglut" 184 186 CACA_DRIVERS="${CACA_DRIVERS} gl" 185 187 elif test "${enable_gl}" = "yes"; then … … 225 227 AM_CONDITIONAL(USE_KERNEL, test "${ac_cv_my_have_vga}" = "yes") 226 228 229 if test "${enable_plugins}" = "yes"; then 230 ac_cv_my_have_plugins="yes" 231 AC_DEFINE(USE_PLUGINS, 1, Define to 1 to activate plugins) 232 CACA_LIBS="${CACA_LIBS} -ldl" 233 else 234 CACA_LIBS="${CACA_LIBS} ${X11_LIBS} ${GL_LIBS}" 235 fi 236 AM_CONDITIONAL(USE_PLUGINS, test "${ac_cv_my_have_plugins}" = "yes") 237 227 238 AC_MSG_CHECKING(valid output drivers) 228 239 if test -z "${CACA_DRIVERS}"; then … … 238 249 AC_SUBST(GETOPT_LIBS) 239 250 AC_SUBST(CACA_LIBS) 251 AC_SUBST(X11_LIBS) 252 AC_SUBST(GL_LIBS) 240 253 241 254 # Optimizations … … 262 275 if test "${enable_imlib2}" != "no"; then 263 276 IMLIB2="no" 264 PKG_CHECK_MODULES( imlib2, imlib2, [IMLIB2="yes"], [AC_MSG_RESULT(no)])277 PKG_CHECK_MODULES(IMLIB2, imlib2, [IMLIB2="yes"], [AC_MSG_RESULT(no)]) 265 278 if test "${IMLIB2}" = no; then 266 279 AC_MSG_ERROR([[cannot find Imlib2 development files. Without Imlib2, cacaview will only open BMP files; if this is really what you want, re-run configure with '--disable-imlib2'.]]) … … 270 283 # Build development tools? 271 284 PANGOFT2="no" 272 PKG_CHECK_MODULES( pangoft2, pangoft2, [PANGOFT2="yes"], [AC_MSG_RESULT(no)])285 PKG_CHECK_MODULES(PANGOFT2, pangoft2, [PANGOFT2="yes"], [AC_MSG_RESULT(no)]) 273 286 AM_CONDITIONAL(USE_PANGO, test "${PANGOFT2}" != "no") 274 287
Note: See TracChangeset
for help on using the changeset viewer.