Changeset 24aeb0f in git
- Timestamp:
- Oct 26, 2013, 3:13:30 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 6aee8f3596288969a7c2be2063263a666f4fbe08
- Parents:
- a867b2ad8475230ee7943dfc47b1565ab179aca4
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
dyn_modules/callgfanlib/gfan.h
ra867b2 r24aeb0f 14 14 #include <cdd/cdd.h> 15 15 #include <cdd/cddmp.h> 16 #elif HAVE_CDDLIB_SETOPER_H 17 #include <cddlib/setoper.h> 18 #include <cddlib/cdd.h> 19 #include <cddlib/cddmp.h> 16 20 #else 17 21 #include <setoper.h> -
gfanlib/configure.ac
ra867b2 r24aeb0f 46 46 47 47 # if setoper.h is there, assume that also cdd.h is there 48 #AC_CHECK_HEADERS([cdd/cdd.h cdd.h],,,49 #[50 ## include <setoper.h>51 #])52 53 if test "$ac_cv_header_cdd_h" == no -a "$ac_cv_header_cdd_cdd_h" == no54 then55 AC_MSG_WARN([Error, cdd.h is missing!])56 fi57 48 58 49 if test "x$ENABLE_GFANLIB" = xyes; then 59 50 if test "$ac_cv_header_setoper_h" == no -a "$ac_cv_header_cdd_setoper_h" == no -a "$ac_cv_header_cddlib_setoper_h" == no 60 then61 exit 162 fi63 if test "$ac_cv_header_cdd_h" == no -a "$ac_cv_header_cdd_cdd_h" == no64 51 then 65 52 exit 1 -
gfanlib/gfanlib_zcone.cpp
ra867b2 r24aeb0f 17 17 #include "cdd/setoper.h" 18 18 #include "cdd/cdd.h" 19 #elif HAVE_CDDLIB_SETOPER_H 20 #include "cddlib/setoper.h" 21 #include "cddlib/cdd.h" 19 22 #else 20 23 #include "setoper.h" -
m4/gfanlib-check.m4
ra867b2 r24aeb0f 33 33 [PASSED_ALL_TESTS_FOR_GFANLIB="yes"], 34 34 [AC_MSG_WARN([libcddgmp is not installed.])] 35 [PASSED_ALL_TESTS_FOR_GFANLIB="no"; 36 exit 1] 35 [PASSED_ALL_TESTS_FOR_GFANLIB="no" 36 ] 37 ) 38 fi 39 if test "$PASSED_ALL_TESTS_FOR_GFANLIB" != yes; then 40 AC_LINK_IFELSE( 41 [AC_LANG_PROGRAM([#include <cddlib/setoper.h> 42 #include "cddlib/cdd.h"], 43 [dd_set_global_constants()])], 44 [LIBS="$SAVE_LIBS -lcddgmp"] [CDDGMPLDFLAGS="-lcddgmp"] 45 [PASSED_ALL_TESTS_FOR_GFANLIB="yes"], 46 [AC_MSG_WARN([libcddgmp is not installed.])] 47 [PASSED_ALL_TESTS_FOR_GFANLIB="no" 48 ] 37 49 ) 38 50 fi
Note: See TracChangeset
for help on using the changeset viewer.