diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2012-01-17 01:13:09 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2012-01-17 02:28:14 +0100 |
commit | 03351d7d10f06dbf9fb52343c9f1a360c17ef702 (patch) | |
tree | 1dc0b54760a36aefd28168d582fccd3016814433 /configure.in | |
parent | 36b13ef610ea01e70a32bbb16bdd903b80da3217 (diff) |
add human theme to configure
Conflicts:
configure.in
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 824de639fc27..c66a6c51db94 100644 --- a/configure.in +++ b/configure.in @@ -855,7 +855,7 @@ AC_ARG_WITH(vba-package-format, AC_ARG_WITH(theme, AS_HELP_STRING([--with-theme="theme1 theme2..."], [Choose which themes to include. By default those themes with an '*' are included. - Possible choices: *default, *crystal, *hicontrast, *oxygen, *tango, classic, industrial.]), + Possible choices: *default, *crystal, *hicontrast, *oxygen, *tango, classic, industrial, human.]), ,) AC_ARG_WITH(helppack-integration, @@ -7992,8 +7992,8 @@ fi WITH_THEMES="" for theme in $with_theme; do case $theme in - default|crystal|hicontrast|oxygen|tango) : ;; - *) AC_MSG_ERROR([Unknown value for --with-themes: $theme]) ;; + default|crystal|hicontrast|oxygen|tango|human) : ;; + *) AC_MSG_ERROR([Unknown value for --with-theme: $theme]) ;; esac WITH_THEMES="$WITH_THEMES $theme" SCPDEFS="$SCPDEFS -DTHEME_`echo $theme|tr '[[:lower:]]' '[[:upper:]]'`" |