Home | History | Annotate | Download | only in jpeg-6b

Lines Matching refs:MAXMEM

19   --enable-maxmem[=N]     enable use of temp files, set max mem usage to N MB"
1566 # If no "-enable-maxmem", use jmemnobs
1568 MAXMEM="no"
1569 # Check whether --enable-maxmem or --disable-maxmem was given.
1572 MAXMEM="$enableval"
1575 # support --with-maxmem for backwards compatibility with IJG V5.
1576 # Check whether --with-maxmem or --without-maxmem was given.
1579 MAXMEM="$withval"
1582 if test "x$MAXMEM" = xyes; then
1583 MAXMEM=1
1585 if test "x$MAXMEM" != xno; then
1586 if test -n "`echo $MAXMEM | sed 's/[0-9]//g'`"; then
1587 { echo "configure: error: non-numeric argument to --enable-maxmem" 1>&2; exit 1; }
1589 DEFAULTMAXMEM=`expr $MAXMEM \* 1048576`