ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
(Generate patch)

Comparing gvpe/configure.ac (file contents):
Revision 1.23 by pcg, Tue Jan 27 06:05:02 2004 UTC vs.
Revision 1.25 by pcg, Sun Feb 8 07:24:25 2004 UTC

239 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])], 239 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])],
240 [ 240 [
241 echo 241 echo
242 echo "**********************************************************************" 242 echo "**********************************************************************"
243 echo "**********************************************************************" 243 echo "**********************************************************************"
244 echo "**** --enable-rohc not yet implemented *******************************" 244 echo "**** --enable-rohc is highly experimental, do not use ****************"
245 echo "**********************************************************************"
246 echo "**** uuh sorry, I am such an ass, but I didn't find any rfc3095 (ROHC)"
247 echo "**** implementation to be used in GPL code on the web."
248 echo "**** so this option is just a fake. Please implement one and send it"
249 echo "**** to me ;)"
250 echo "**********************************************************************"
251 echo "**********************************************************************"
252 echo "**********************************************************************" 245 echo "**********************************************************************"
253 echo "**********************************************************************" 246 echo "**********************************************************************"
254 echo 247 echo
248 rohc=true
249 AC_DEFINE_UNQUOTED(ENABLE_ROHC, 1, [ROHC support])
255 ] 250 ]
256) 251)
252
253AM_CONDITIONAL(ROHC, test x$rohc = xtrue)
257 254
258AC_ARG_ENABLE(icmp, 255AC_ARG_ENABLE(icmp,
259 [AC_HELP_STRING(--enable-icmp, [enable icmp protocol support (default disabled).])], 256 [AC_HELP_STRING(--enable-icmp, [enable icmp protocol support (default disabled).])],
260 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.]) 257 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
261) 258)
351echo "*** Digest used: $DIGEST" 348echo "*** Digest used: $DIGEST"
352echo "*** HMAC length: $HMAC" 349echo "*** HMAC length: $HMAC"
353echo "*** RAND used: $RAND" 350echo "*** RAND used: $RAND"
354echo "*** Max. MTU: $MTU" 351echo "*** Max. MTU: $MTU"
355echo "*** Compression: $COMPRESS" 352echo "*** Compression: $COMPRESS"
356echo "***"
357 353
358if test "x$DIGEST" = xmd4; then 354if test "x$DIGEST" = xmd4; then
359echo "*** WARNING" 355echo "***"
360echo "*** The digest you have chosen ($DIGEST) is known to be insecure" 356echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
361echo "***"
362fi 357fi
358
359if test "$HMAC" -lt 12; then
360echo "***"
361echo "*** WARNING: The hmac length you have chosen ($HMAC) might be insecure"
362fi
363
364if test "$RAND" -lt 8; then
365echo "***"
366echo "*** WARNING: The random prefix you have chosen ($RAND) might be insecure"
367fi
368
369echo "***"
363 370
364echo 371echo
365 372
366]) 373])
367 374
368AC_SUBST(INCLUDES) 375AC_SUBST(INCLUDES)
369 376
370AC_OUTPUT(Makefile po/Makefile.in 377AC_OUTPUT(Makefile po/Makefile.in
371src/Makefile 378src/Makefile
379src/rohc/Makefile
372doc/Makefile 380doc/Makefile
373lib/Makefile 381lib/Makefile
374m4/Makefile 382m4/Makefile
375) 383)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines