Changeset 888b457 in git
- Timestamp:
- Apr 23, 2013, 1:21:12 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'ad2543eab51733612ba7d118afc77edca719600e')
- Children:
- b56249a26a4a4c196f337af607b16766d14d2821
- Parents:
- ebc74a292ebc8a867db62c32c3f68fda997029a7
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
dyn_modules/callgfanlib/gfan.cc
rebc74a2 r888b457 32 32 #endif 33 33 34 #ifdef HAVE_CDD_SETOPER_H 35 #include <cdd/setoper.h> 36 #include <cdd/cdd.h> 37 #include <cdd/cddmp.h> 38 #else 34 39 #include <setoper.h> 35 40 #include <cdd.h> 36 41 #include <cddmp.h> 42 #endif 37 43 38 44 #ifndef gfan_DEBUG -
dyn_modules/callgfanlib/gfan.h
rebc74a2 r888b457 9 9 #include <libpolys/misc/int64vec.h> 10 10 11 #include <gfanlib/config.h> 12 #ifdef HAVE_CDD_SETOPER_H 13 #include <cdd/setoper.h> 14 #include <cdd/cdd.h> 15 #include <cdd/cddmp.h> 16 #else 11 17 #include <setoper.h> 12 18 #include <cdd.h> 13 19 #include <cddmp.h> 20 #endif 14 21 #include <bbfan.h> 15 22 #include <bbcone.h> -
gfanlib/configure.ac
rebc74a2 r888b457 35 35 # exit 1 36 36 # fi 37 AC_CHECK_HEADERS([ setoper.h])38 if test "$ac_cv_header_setoper_h" == no 37 AC_CHECK_HEADERS([cdd/setoper.h setoper.h]) 38 if test "$ac_cv_header_setoper_h" == no -a "$ac_cv_header_cdd_setoper_h" == no 39 39 then 40 40 AC_MSG_WARN([Error, setoper.h is missing!]) 41 41 fi 42 42 43 AC_CHECK_HEADERS([cdd.h],,, 44 [ 45 # include <setoper.h> 46 ]) 43 # if setoper.h is there, assume that also cdd.h is there 44 #AC_CHECK_HEADERS([cdd/cdd.h cdd.h],,, 45 #[ 46 ## include <setoper.h> 47 #]) 47 48 48 if test "$ac_cv_header_cdd_h" == no 49 if test "$ac_cv_header_cdd_h" == no -a "$ac_cv_header_cdd_cdd_h" == no 49 50 then 50 51 AC_MSG_WARN([Error, cdd.h is missing!]) … … 52 53 53 54 if test "x$ENABLE_GFANLIB" = xyes; then 54 if test "$ac_cv_header_setoper_h" == no 55 if test "$ac_cv_header_setoper_h" == no -a "$ac_cv_header_cdd_setoper_h" == no 55 56 then 56 57 exit 1 57 58 fi 58 if test "$ac_cv_header_cdd_h" == no 59 if test "$ac_cv_header_cdd_h" == no -a "$ac_cv_header_cdd_cdd_h" == no 59 60 then 60 61 exit 1 … … 82 83 83 84 AC_CONFIG_FILES([Makefile]) 85 AC_CONFIG_HEADERS([config.h]) 84 86 AC_OUTPUT -
gfanlib/gfanlib_zcone.cpp
rebc74a2 r888b457 11 11 #include <set> 12 12 13 #include "config.h" 14 #ifdef HAVE_CDD_SETOPER_H 15 #include "cdd/setoper.h" 16 #include "cdd/cdd.h" 17 #else 13 18 #include "setoper.h" 14 19 #include "cdd.h" 20 #endif 15 21 16 22 namespace gfan{
Note: See TracChangeset
for help on using the changeset viewer.