> 
> --047d7bdc98822077b104f5026095
> Content-Type: text/plain; charset=ISO-8859-1
> 
> I just built FriCAS from the most recent svn trunk on a fresh and up
> to date OpenSuSE 13.1 x86_64 Linux system. Using SBCL from the
> repository worked fine. But in fact I did have a couple of unusual
> problems.
> 
> 1) Default locale on this system is en_US.UTF-8.  This caused a
> problem with building the hypertex files for hyperdoc because of
> legacy shell code that assumes the old default sort order.  I needed
> the following small patch:
> 
> wspage@linux-24ag:~/fricas> svn diff
> Index: src/doc/Makefile.in
> ===================================================================
> --- src/doc/Makefile.in    (revision 1692)
> +++ src/doc/Makefile.in    (working copy)
> @@ -206,7 +206,7 @@
>  examples.list: $(wildcard ${ALGEBRASOURCES}/*.spad.pamphlet)
>      (for a in ${EXAMPLES}; do echo $$a; done; \
>       sed -n 's/^)abb[a-z]* [a-z][a-z]*  *\([A-Z0-9][A-Z0-9]*\) *\([^
> ]*\)/\1 \2/p' ${ALGEBRASOURCES}/*.spad.pamphlet\
> -    ) | sort -k1,1 | ${AWK} '{if(a==$$1){print};a=$$a}' | sort -k2 > $@
> +    ) | LC_ALL=C sort -k1,1 | ${AWK} '{if(a==$$1){print};a=$$a}' |
> LC_ALL=C sort -k2 > $@
> 
>  xmpexp.ht: examples.list
>      echo '% !! DO NOT MODIFY BY HAND !! It is generated.' > $@
> 
> ============

Does it work when you set just LC_COLLATE?  I am affraid that
if we set LC_ALL=C somebody will be rejecting non-ascii characters.
I think ATM we are pure ASCII, but it would be good to allow
more in the future.

> 2) The other problem occurred after I successfully compiled and
> installed FriCAS.  When I tried to start FriCAS I got the message:
> 
> wspage@linux-24ag:~/fricas>  fricas
> The directory for FriCAS,
> /usr/local/lib/fricas/target/x86_64-suse-linux, does not exist.
> Goodbye.
> 
> ====
> 
> I checked and in fact install had put the AXIOM directory in
> /usr/local/lib64 but the Makefile still assumes that it will always be
> at in lib. So I manually edited the file at
> 
> /usr/local/bin/fricas
> 
> as follows:
> 
> exec_prefix="${FRICAS_PREFIX:-/usr/local}"
> AXIOM="${exec_prefix}/lib64/fricas/target/x86_64-suse-linux"
> export AXIOM
> 
> ====

Can you send me configure output?  I wonder if Suse just ignores
location that we specify, or our Makefile got confused.

-- 
                              Waldek Hebisch
[email protected] 

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/fricas-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to