From c787100de9e72a47de595df01afb93a9153b4f0f Mon Sep 17 00:00:00 2001 From: asl Date: Fri, 31 Mar 2006 11:31:20 +0000 Subject: [PATCH] in case when CORBA using is disabled (light configuration) swig product is excluded from list of mandatory products --- configure.ac | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b0c36f69a..ec64c83c5 100644 --- a/configure.ac +++ b/configure.ac @@ -376,7 +376,12 @@ function check_fatal_error { # -------------------------------------- -basic_mandatory_products="cc_ok threads_ok hdf5_ok occ_ok" +if test x$corba_gen = xtrue; then + basic_mandatory_products="cc_ok threads_ok python_ok swig_ok hdf5_ok occ_ok" +else + basic_mandatory_products="cc_ok threads_ok python_ok hdf5_ok occ_ok" +fi + echo --- General mandatory products - Light configuration: summary $basic_mandatory_products check_fatal_error $basic_mandatory_products -- 2.39.2