diff options
author | mallum <mallum@b067294f-1dea-0310-9683-c47a78595994> | 2004-02-07 17:57:48 +0000 |
---|---|---|
committer | mallum <mallum@b067294f-1dea-0310-9683-c47a78595994> | 2004-02-07 17:57:48 +0000 |
commit | 252946683b89489f37fc18a680fc61c77ffe8ae0 (patch) | |
tree | 8734d26f52d127e3dfb99495d267ffe1452979b8 | |
parent | 8ede4b902a3eb8aa0f1325bb1e8ec2eb35e2e008 (diff) | |
download | matchbox-common-252946683b89489f37fc18a680fc61c77ffe8ae0.tar.gz matchbox-common-252946683b89489f37fc18a680fc61c77ffe8ae0.tar.bz2 matchbox-common-252946683b89489f37fc18a680fc61c77ffe8ae0.zip |
configure.ac tweaks
git-svn-id: https://svn.o-hand.com/repos/matchbox/trunk/matchbox-common@704 b067294f-1dea-0310-9683-c47a78595994
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 7 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2004-02-07 Matthew Allum,,, <mallum@handhelds.org> + + * configure.ac: + fix --enable-pda-folders gubbins + 2004-02-03 Matthew Allum, mallum@handhelds.org * matchbox-session: diff --git a/configure.ac b/configure.ac index 56b1a5e..1880161 100644 --- a/configure.ac +++ b/configure.ac @@ -19,9 +19,9 @@ AM_CONFIG_HEADER([config.h]) dnl ----- Args ------------------------------------------------------------- -AC_ARG_ENABLE(pda-folders, +AC_ARG_ENABLE(pda_folders, [ --enable-pda-folders Use PDA style app folder setup ( Rather than Desktop )], - enable_pdafolders=$enableval, enable_pdafolders=no) + enable_pda_folders=$enableval, enable_pda_folders=no) ## AC_ARG_ENABLE(small-icons, ## [ --enable-small-icons Enable small defualt icons.], @@ -43,7 +43,7 @@ AM_CONDITIONAL(WANT_PNG, test x$found_png = xyes) ## AM_CONDITIONAL(WANT_SMALL_ICONS, test x$enable_sicons = xyes) -AM_CONDITIONAL(WANT_PDA_FOLDERS, test x$enable_pdafolders = xyes) +AM_CONDITIONAL(WANT_PDA_FOLDERS, test x$enable_pda_folders = xyes) ## XXX should we install a .pc file so the panel and desktop can ## can check common has been installed ? @@ -70,4 +70,5 @@ echo " source code location: ${srcdir} Installing PNGs ${found_png} + Installing PDA Folders ${enable_pda_folders} " |