Changeset 1089
- Timestamp:
- 11/06/06 11:50:30
- Files:
-
- trunk/Makefile.am (modified) (1 diff)
- trunk/configure.ac (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Makefile.am
r1014 r1089 8 8 endif 9 9 10 if BUILD_UIGTK 10 11 SUBDIRS += libtinymailui-gtk 12 endif 11 13 12 14 if BUILD_MOZEMBED trunk/configure.ac
r1088 r1089 53 53 dnl ### default values (will get overwritten) 54 54 build_gnome=true 55 build_uigtk=true 55 56 build_demoui=true 56 57 build_mozembed=false … … 62 63 dnl ### Select the platform library ## 63 64 AC_ARG_WITH(platform, 64 [ --with-platform=gnome-desktop platform to compile [gnome-desktop]], 65 AC_HELP_STRING([--with-platform=gnome-desktop], 66 [Platform to compile (gnome-desktop, maemo, olpc or gpe)]), 65 67 [case "${with_platform}" in 66 68 gnome-desktop) 67 69 PLATFORMDIR=libtinymail-gnome-desktop 70 build_uigtk=true 68 71 build_demoui=true 69 72 PLATFORM=1 … … 75 78 build_gnome=false 76 79 with_html_component=none 80 build_uigtk=true 77 81 build_demoui=true 78 82 PLATFORM=2 … … 80 84 gpe) 81 85 PLATFORMDIR=libtinymail-gpe 86 build_uigtk=true 82 87 build_demoui=true 83 88 PLATFORM=3 … … 89 94 build_gnome=false 90 95 with_html_component=none 96 build_uigtk=true 91 97 build_demoui=true 92 98 PLATFORM=4 … … 94 100 *) 95 101 PLATFORMDIR=${with_platform} 102 build_uigtk=false 96 103 build_demoui=false 97 104 PLATFORM=0 … … 102 109 AC_SUBST(PLATFORM) 103 110 111 112 dnl ### Enable uigtk ## 113 AC_ARG_ENABLE(uigtk, 114 AC_HELP_STRING([--enable-uigtk], 115 [Build the gtk+ implementation for the ui components (yes, no)]), 116 [case "${enableval}" in 117 yes) build_uigtk=true ;; 118 no) build_uigtk=false ;; 119 *) AC_MSG_ERROR(bad value ${enableval} for --enable-uigtk) ;; 120 esac],[build_uigtk=$build_uigtk]) 121 AM_CONDITIONAL(BUILD_UIGTK, test x$build_uigtk = xtrue) 122 104 123 dnl ### Enable demoui ## 105 124 AC_ARG_ENABLE(demoui, 106 [ --enable-demoui build the demo user interface [default=$build_demoui]], 125 AC_HELP_STRING([--enable-demoui], 126 [Build the demo user interface (yes, no)]), 107 127 [case "${enableval}" in 108 128 yes) build_demoui=true ;; … … 114 134 dnl ### Enable gnome features ## 115 135 AC_ARG_ENABLE(gnome, 116 [ --enable-gnome build using gnome features [default=yes]], 136 AC_HELP_STRING([--enable-gnome], 137 [Build using gnome features]), 117 138 [case "${enableval}" in 118 139 yes) build_gnome=true ;; … … 124 145 dnl ### Select the html component ## 125 146 AC_ARG_WITH(html-component, 126 [ --with-html-component set which html component to use [default=none]], 147 AC_HELP_STRING([--with-html-component], 148 [Set which html component to use (none, mozembed, gtkhtml)]), 127 149 [case "$with_html_component" in 128 150 mozembed) 129 151 build_mozembed=true 130 152 build_gtkhtml=false 153 build_demoui=true 131 154 ;; 132 155 gtkhtml) 133 156 build_mozembed=false 134 157 build_gtkhtml=false 158 build_demoui=true 135 159 ;; 136 160 none) … … 149 173 dnl ### Enable the python language bindings ## 150 174 AC_ARG_ENABLE(python-bindings, 151 [ --enable-python-bindings build python bindings [default=no]], 175 AC_HELP_STRING([--enable-python-bindings], 176 [Build python bindings (no, yes)]), 152 177 [case "${enableval}" in 153 178 yes) build_pytinymail=true ;; … … 159 184 dnl ### Enable building the unit tests ## 160 185 AC_ARG_ENABLE(unit-tests, 161 [ --enable-unit-tests build unit tests [default=no]], 186 AC_HELP_STRING([--enable-unit-tests], 187 [Build unit tests (no, yes)]), 162 188 [case "${enableval}" in 163 189 yes) build_unittests=true ;; … … 169 195 dnl ### Enable building the tests ## 170 196 AC_ARG_ENABLE(tests, 171 [ --enable-tests build tests [default=no]], 197 AC_HELP_STRING([--enable-tests], 198 [Build tests (no, yes)]), 172 199 [case "${enableval}" in 173 200 yes) build_tests=true ;; … … 179 206 dnl ### doxygen 180 207 AC_ARG_ENABLE(doxygen, 181 [ --enable-doxygen build doxygen docs [default=no]], 208 AC_HELP_STRING([--enable-doxygen], 209 [Build doxygen docs (no, yes)]), 182 210 [case "${enableval}" in 183 211 yes) build_doxygen=true ;;
