Changeset 554 for libcaca/trunk/configure.ac
- Timestamp:
- Mar 8, 2006, 9:03:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r545 r554 37 37 AC_ARG_ENABLE(gl, 38 38 [ --enable-gl OpenGL support (autodetected)]) 39 AC_ARG_ENABLE(network, 40 [ --enable-network Network support (autodetected)]) 39 41 40 42 dnl example programs features … … 138 140 fi 139 141 142 if test "${enable_network}" != "no"; then 143 ac_cv_my_have_network="no" 144 AC_CHECK_HEADERS(sys/socket.h, 145 [ac_cv_my_have_network="yes" 146 AC_DEFINE(USE_NETWORK, 1, Define to activate the network backend driver) 147 CACA_DRIVERS="${CACA_DRIVERS} network"]) 148 if test "${ac_cv_my_have_network}" = "no" -a "${enable_network}" = "yes"; then 149 AC_MSG_ERROR([cannot find standard networking socket files]) 150 fi 151 fi 152 140 153 if test "${enable_ncurses}" != "no"; then 141 154 ac_cv_my_have_ncurses="no"
Note: See TracChangeset
for help on using the changeset viewer.