Changeset 769f28 in git
- Timestamp:
- May 4, 2011, 5:50:13 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- daa55674a51a8126e258528bc2337f3cf5370b6d
- Parents:
- 6d0563e99698a63b26dc8a73020ec11b7a1f07e0
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-05-04 17:50:13+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:34+01:00
- Files:
-
- 1 added
- 3 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r6d0563e r769f28 88 88 omalloc/omlimits.h 89 89 doc/NTL 90 factory/cf_gmp.h91 90 factory/factory.h 92 91 factory/factoryconf.h 93 factory/gen_cf_gmp.sh94 92 ntl/include/NTL/gmp_aux.h 95 93 ntl/include/NTL/mach_desc.h -
Makefile.am
r6d0563e r769f28 1 1 ALLOC=omalloc 2 2 3 PACKAGES=$(ALLOC) libpolys3 PACKAGES=$(ALLOC) factory libpolys 4 4 5 5 SUBDIRS=$(PACKAGES) -
configure.ac
r6d0563e r769f28 5 5 AC_PROG_CXX 6 6 AC_CONFIG_FILES([Makefile]) 7 AC_CONFIG_SUBDIRS([omalloc libpolys])7 AC_CONFIG_SUBDIRS([omalloc factory libpolys]) 8 8 AC_OUTPUT -
factory/GNUmakefile.in
r6d0563e r769f28 796 796 config.status: configure 797 797 ./config.status --recheck 798 799 # create cf_gmp.h800 cf_gmp.h: GNUmakefile gen_cf_gmp.template801 echo "#!/bin/sh" >gen_cf_gmp.sh802 echo "GMP_H_T=\"`g++ $(LIBCXXFLAGS) -M gen_cf_gmp.cc|grep gmp.h` \"" >>gen_cf_gmp.sh803 cat gen_cf_gmp.template >>gen_cf_gmp.sh804 $(SHELL) gen_cf_gmp.sh -
factory/configure.in
r6d0563e r769f28 49 49 AC_ARG_WITH( 50 50 gmp, 51 [ --with-gmp(=<gmp_ inc_path>(,<gmp_lib_path>))51 [ --with-gmp(=<gmp_path>) 52 52 specify where to find gmp library.]) 53 53 … … 119 119 in process, be graceful when there is no \`gmp.h'], 120 120 [ if test "x$with_Singular" = xyes && test "x$enable_gmp" != xno; then 121 with_gmp='$( includedir)'121 with_gmp='$(prefix)' 122 122 fi ]) 123 123 … … 128 128 yes|no|"") 129 129 gmp_in_installation=no ;; 130 '$(includedir)'|'${includedir}')131 gmp_in_installation=yes ;;132 *,*)133 saveIFS="$IFS"; IFS="${IFS},"134 set dummy $with_gmp135 IFS="$saveIFS"136 CPPFLAGS="-I$2 $CPPFLAGS"137 LDFLAGS="-L$3 $LDFLAGS"138 gmp_in_installation=no ;;139 130 *) 140 CPPFLAGS="-I$with_gmp $CPPFLAGS"141 LDFLAGS="-L$with_gmp/ ../lib $LDFLAGS"131 CPPFLAGS="-I$with_gmp/include $CPPFLAGS" 132 LDFLAGS="-L$with_gmp/lib $LDFLAGS" 142 133 gmp_in_installation=no ;; 143 134 esac -
for_Hans_with_love.sh
r6d0563e r769f28 32 32 done 33 33 34 for d in factory; do 35 echo "===============" 36 echo "run aclocal -I $TOP_DIR/m4, autoconf in $d" 37 echo "---------------" 38 cd $d; 39 aclocal -I $TOP_DIR/m4 40 autoconf 41 cd $TOP_DIR 42 echo 43 done 44 34 45 for d in libpolys; do 35 46 echo "==============="
Note: See TracChangeset
for help on using the changeset viewer.