Removed boost program_options from build
authorErich Keane <erich.keane@intel.com>
Tue, 3 Feb 2015 22:11:38 +0000 (14:11 -0800)
committerPatrick Lankswert <patrick.lankswert@intel.com>
Thu, 5 Feb 2015 15:15:29 +0000 (15:15 +0000)
Program Options were only used for the ocicuc directory, however
that has been removed.  Therefore we don't need to use it to build
anymore.  Additionally, it was not included in any files or used
in any make files.

Change-Id: I12a195b28d549fc1ca86062f9628aca59def4a61
Signed-off-by: Erich Keane <erich.keane@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/301
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Ossama Othman <ossama.othman@intel.com>
Reviewed-by: Patrick Lankswert <patrick.lankswert@intel.com>
extlibs/buildDependencies.sh
resource/third_party_libs.scons

index 9b919d2..9c65248 100755 (executable)
@@ -43,7 +43,7 @@ function buildBoost {
     if [ ! -d "${BOOST_NAME}" ]; then
         unpackBoost
     fi
-    
+
     TOOLCHAIN=${ANDROID_NDK}/toolchains/${TOOLSET}-${VERSION}/prebuilt/linux-x86/bin
     echo "Copying user configs to boost"
     cp ../resource/patches/user-config-${TOOLSET}.jam ${BOOST_NAME}/tools/build/v2/user-config.jam
@@ -62,7 +62,6 @@ function buildBoost {
         -s PLATFORM=android-${PLATFORM} \
         -s VERSION=${VERSION} \
         --with-thread \
-        --with-program_options \
         install
     popd
 
index 28fa4f1..e02d6be 100644 (file)
@@ -28,10 +28,6 @@ if target_os in ['linux', 'tizen']:
 
                conf = Configure(lib_env)
 
-               if not conf.CheckLib('boost_program_options'):
-                       print 'Did not find boost_program_options, exiting!'
-                       Exit(1)
-
                if not conf.CheckLib('glib-2.0'):
                        print 'Install glib-2 on ubuntu with the following command'
                        print 'sudo apt-get install libglib2.0-dev'