From d8e2b2b4129e9cd472934baee5a8bac21aa2dab1 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 28 Apr 2009 05:50:02 +0000 Subject: [PATCH] cleanup --with-profile handling SVN revision: 40433 --- configure.ac | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index 95d09df51..b53d55670 100644 --- a/configure.ac +++ b/configure.ac @@ -271,16 +271,10 @@ AC_SUBST(requirements_e) profile="SLOW_PC" AC_ARG_WITH(profile, -[ --with-profile=TARGET_PROFILE specify a target format profile of: - LOWRES_PDA, MEDIUMRES_PDA, HIRES_PDA, - SLOW_PC, MEDIUM_PC, FAST_PC ], -[ - v=$withval; - profile=$v - echo " Enlightenment build profile set to "$profile; -],[ - profile="SLOW_PC" -]) + AS_HELP_STRING([--with-profile=TARGET_PROFILE], [specify a target format profile of: + LOWRES_PDA, MEDIUMRES_PDA, HIRES_PDA, SLOW_PC, MEDIUM_PC, FAST_PC]), + [profile=$withval]) +AC_MSG_NOTICE([Enlightenment build profile set to $profile]) EDJE_DEF="-DLOWRES_PDA=1 -DMEDIUMRES_PDA=2 -DHIRES_PDA=3 -DSLOW_PC=4 -DMEDIUM_PC=5 -DFAST_PC=6" EDJE_DEF=$EDJE_DEF" -DE17_PROFILE"=$profile AC_SUBST(EDJE_DEF)