Changeset ea0001 in git
- Timestamp:
- May 12, 2011, 1:11:06 PM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 17b0b0589ef61f1aceedb2f51df2a1d7c82454e5
- Parents:
- 9a90342ac6c7e2f12bfda27f0321e45d10c13c82
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-05-12 13:11:06+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:07+01:00
- Files:
-
- 9 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r9a9034 rea0001 1 1 AC_INIT([singular], [3.1.2.sw]) 2 2 AC_CONFIG_AUX_DIR([.]) 3 AM_MAINTAINER_MODE 3 4 AM_INIT_AUTOMAKE 4 5 AC_PROG_CC -
factory/Makefile.am
r9a9034 rea0001 193 193 194 194 gftables: gengftables 195 @if test - r${srcdir}/gftables; then \196 if test ! - r${builddir}/gftables; then \197 cp -r${srcdir}/gftables ${builddir}; \195 @if test -x ${srcdir}/gftables; then \ 196 if test ! -x ${builddir}/gftables; then \ 197 ln -snf ${srcdir}/gftables ${builddir}; \ 198 198 fi; \ 199 199 else \ -
factory/configure.ac
r9a9034 rea0001 18 18 AC_CONFIG_HEADER(config.h) 19 19 AC_CONFIG_AUX_DIR([.]) 20 AM_MAINTAINER_MODE 20 21 AM_INIT_AUTOMAKE 21 22 … … 268 269 # hence we do not need to mind it here 269 270 gftabledir='${datadir}/factory/gftables' 270 explicit_gftabledir="$explicit_datadir/ factory/gftables"271 explicit_gftabledir="$explicit_datadir/gftables" 271 272 272 273 # for installation of the templates -
libpolys/coeffs/ffields.cc
r9a9034 rea0001 17 17 #include <resources/feFopen.h> 18 18 #include <math.h> 19 #include <factory/factory.h> 19 20 20 21 … … 611 612 else r->m_nfCharQ = -c; 612 613 char buf[100]; 613 sprintf(buf, "gftables/%d",r->m_nfCharQ);614 sprintf(buf,GFTABLEDIR "/%d",r->m_nfCharQ); 614 615 FILE * fp = feFopen(buf,"r",NULL,TRUE); 615 616 if (fp==NULL) -
libpolys/configure.ac
r9a9034 rea0001 4 4 AC_CONFIG_SRCDIR([reporter/reporter.h]) 5 5 AC_CONFIG_HEADER([config.h misc/auxiliary.h]) 6 AM_MAINTAINER_MODE 6 7 AM_INIT_AUTOMAKE 7 8 -
libpolys/tests/Makefile.am
r9a9034 rea0001 31 31 rings_test_LDADD = $(polys_test_LDADD) 32 32 33 noinst_SCRIPTS = p_Procs_FieldGeneral.so \ 34 p_Procs_FieldIndep.so \ 35 p_Procs_FieldQ.so \ 36 p_Procs_FieldZp.so 33 37 38 p_Procs_FieldGeneral.so: ${top_builddir}/polys/.libs/p_Procs_FieldGeneral.so 39 ln -snf ${top_builddir}/polys/.libs/p_Procs_FieldGeneral.so ${builddir} 40 41 p_Procs_FieldIndep.so: ${top_builddir}/polys/.libs/p_Procs_FieldIndep.so 42 ln -snf ${top_builddir}/polys/.libs/p_Procs_FieldIndep.so ${builddir} 43 44 p_Procs_FieldQ.so: ${top_builddir}/polys/.libs/p_Procs_FieldQ.so 45 ln -snf ${top_builddir}/polys/.libs/p_Procs_FieldQ.so ${builddir} 46 47 p_Procs_FieldZp.so: ${top_builddir}/polys/.libs/p_Procs_FieldZp.so 48 ln -snf ${top_builddir}/polys/.libs/p_Procs_FieldZp.so ${builddir} 34 49 35 50 BUILT_SOURCES = $(simple_test_SOURCES) $(coeffs_test_SOURCES) $(rings_test_SOURCES) $(polys_test_SOURCES) -
omalloc/configure.ac
r9a9034 rea0001 12 12 AC_CONFIG_AUX_DIR([.]) 13 13 14 AM_MAINTAINER_MODE 14 15 AM_INIT_AUTOMAKE 15 16
Note: See TracChangeset
for help on using the changeset viewer.