Changeset 5fb1d5d
- Timestamp:
- 10/25/05 13:38:42 (17 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- fbf47ee
- Parents:
- b87e133
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
r41660d5 r5fb1d5d 171 171 fi 172 172 173 AC_MSG_CHECKING(if we are using DAG 2.4)174 if grep '2.4.' $dag_root/VERSION > /dev/null; then175 dag2_4=true176 else177 dag2_4=false178 fi179 180 173 if test -r "$dag_root/tools" -a -r "$dag_root/include"; then 181 174 dag_tools_dir="$dag_root/tools" … … 205 198 fi 206 199 AC_MSG_RESULT($ac_cv_lbl_dag_api) 200 201 AC_MSG_CHECKING(if we are using DAG 2.4) 202 if grep '2.4.' $dag_root/VERSION > /dev/null 2>&1; then 203 dag2_4=yes 204 else 205 dag2_4=no 206 fi 207 AC_MSG_RESULT($dag2_4) 207 208 else 208 209 AC_DEFINE(HAVE_DAG,0,[conditional for building with DAG support]) … … 210 211 211 212 AM_CONDITIONAL(HAVE_DAG, test x$ac_cv_lbl_dag_api = xyes) 212 AM_CONDITIONAL(DAG2_4, test x$dag2_4 = x true)213 AM_CONDITIONAL(DAG2_4, test x$dag2_4 = xyes) 213 214 214 215
Note: See TracChangeset
for help on using the changeset viewer.