Is there a way to setup configure.ac so that it automatically sets the USE_HILDON flag if building for LCIA? I know how to set up a configure.ac that will check for "--enable-hildon" flag, but for UME I thought I recall that if LCIA arch then always USE_HILDON. I don't know exactly how to do this or if we ever decided on a standard.
Here's the doc I'm following / updating: http://moblin.org/toolkits/basicDevGuides/simpleApp/toolkits_DevGds_simpleApp_GTKApp.php ======== configure.ac ================= AC_ARG_WITH( hildon, AC_HELP_STRING( [--with-hildon], [build the hildon user interface (default=yes)] ), [ if test $withval = "no" then build_hildon="false" else build_hildon="true" fi ], [ build_hildon="true" ] ) if test $build_hildon = "true" then PKG_CHECK_MODULES( HILDON, hildon-1, ... Thanks, Bob
-- Ubuntu-mobile mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-mobile
