Changeset 47e8b04 in git
- Timestamp:
- Jul 18, 2013, 3:03:17 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 87977c77f3d3666b9c0306a8fd7e7e93a76b25e6
- Parents:
- c8e1159b19cf2962fcc89a7d558f7fc2ef5222ec
- git-author:
- Yue Ren <ren@mathematik.uni-kl.de>2013-07-18 15:03:17+02:00
- git-committer:
- Yue Ren <ren@mathematik.uni-kl.de>2013-07-18 15:27:11+02:00
- Files:
-
- 7 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rc8e115 r47e8b04 8 8 libpolys kernel numeric gfanlib dyn_modules \ 9 9 IntegerProgramming Singular dox \ 10 emacs debian redhat desktop 10 emacs debian redhat desktop 11 11 12 12 # PACKAGES = $(SUBDIRS) -
configure.ac
rc8e115 r47e8b04 42 42 if test -z "$DOXYGEN"; 43 43 then AC_MSG_WARN([Doxygen not found - continuing without Doxygen support]) 44 fi 44 fi 45 45 AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"]) 46 46 47 47 LT_INIT 48 48 … … 82 82 SING_CHECK_DBM 83 83 SING_CHECK_GFANLIB 84 SING_CHECK_POLYMAKE 84 85 85 86 ### the following is needed due to the use of om_sing_opt_show_mem in misc_ip.cc... … … 142 143 AC_DEFINE_UNQUOTED([LDFLAGS],"$LDFLAGS",[LDFLAGS]) 143 144 AC_DEFINE_UNQUOTED([LIBS],"$LIBS",[LIBS]) 144 145 145 146 146 147 SING_SHOW_FLAGS([Compiler/linker flags: ]) 147 148 148 149 149 150 AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([dox/Doxyfile])]) 150 151 AC_CONFIG_FILES([dox/Makefile]) … … 170 171 AC_CONFIG_FILES([dyn_modules/syzextra/Makefile]) 171 172 AC_CONFIG_FILES([dyn_modules/callgfanlib/Makefile]) 173 AC_CONFIG_FILES([dyn_modules/callpolymake/Makefile]) 172 174 173 175 AC_CONFIG_FILES([Singular/Makefile]) -
dyn_modules/Makefile.am
rc8e115 r47e8b04 1 1 ACLOCAL_AMFLAGS = -I ../m4 2 2 3 PACKAGES=bigintm syzextra callgfanlib 3 PACKAGES=bigintm syzextra callgfanlib callpolymake 4 4 SUBDIRS=$(PACKAGES) 5 5 -
dyn_modules/callgfanlib/Makefile.am
rc8e115 r47e8b04 6 6 if ENABLE_P_PROCS_DYNAMIC 7 7 module_LTLIBRARIES=gfanlib.la 8 9 if WANT_DEBUG10 module_LTLIBRARIES+=gfanlib_g.la11 endif12 13 8 endif 14 9 endif 15 10 16 CXXTEMPLFLAGS = ${PIPE} -lcddgmp 11 12 CXXTEMPLFLAGS = 17 13 ## -fno-implicit-templates 18 14 ## --no-exceptions … … 52 48 # gfanlib_g_la_CXXFLAGS = ${DEBUGCXXFLAGS} 53 49 54 gfanlib_la_LIBADD = ${abs_top_builddir}/gfanlib/libgfan.la -lcddgmp 50 51 gfanlib_la_LIBADD = ${abs_top_builddir}/gfanlib/libgfan.la ${CDDGMPLDFLAGS} 55 52 # gfanlib_g_la_LIBADD = ${gfanlib_la_LIBADD} 56 53 -
dyn_modules/callgfanlib/gfanlib.cc
rc8e115 r47e8b04 1 #ifdef HAVE_CONFIG_H 2 #include "config.h" 3 #endif /* HAVE_CONFIG_H */ 4 1 5 #include <kernel/mod2.h> 2 6 … … 5 9 #include <bbpolytope.h> 6 10 #include <gitfan.h> 7 #include "Singular/ipid.h"11 #include "Singular/ipid.h" 8 12 9 13 template class gfan::Vector<gfan::Integer>; -
m4/gfanlib-check.m4
rc8e115 r47e8b04 12 12 if test "x$ENABLE_GFANLIB" = xyes; then 13 13 AC_MSG_RESULT(yes) 14 AC_CHECK_LIB(cddgmp,dd_set_global_constants,[ 15 CDDGMPLDFLAGS="-lcddgmp" 16 PASSED_ALL_TESTS_FOR_GFANLIB="yes"; 17 ],[ 18 PASSED_ALL_TESTS_FOR_GFANLIB="no"; 19 echo "Error! cddgmp needed!" 20 exit -1 21 ]) 14 22 else 15 23 AC_MSG_RESULT(no) 24 PASSED_ALL_TESTS_FOR_GFANLIB="no"; 16 25 fi 17 26 18 AM_CONDITIONAL(HAVE_GFANLIB, test "x$ ENABLE_GFANLIB" = xyes)27 AM_CONDITIONAL(HAVE_GFANLIB, test "x$PASSED_ALL_TESTS_FOR_GFANLIB" = xyes) 19 28 20 29 ])
Note: See TracChangeset
for help on using the changeset viewer.