Stop panning once whole page can be visible
[llpp.git] / buildall.sh
bloba2cb032de2331821eb2669ea3224b1b3e440b535
1 # builds "hard" prerequisites and llpp
2 set -e
4 use_sumatrapdf_patched_mupdf=false
6 mkdir -p 3rdp
7 cd 3rdp
9 root=$(pwd)
11 openjpeg=http://openjpeg.googlecode.com/svn/trunk/
12 jbig2dec=git://git.ghostscript.com/jbig2dec.git
13 lablgl=:pserver:anoncvs@camlcvs.inria.fr:/caml
14 mupdf=git://git.ghostscript.com/mupdf.git
15 sumatrapdf=http://sumatrapdf.googlecode.com/svn/trunk
17 test -d openjpeg || svn -r r608 checkout $openjpeg openjpeg
18 test -d jbig2dec || git clone $jbig2dec jbig2dec
19 test -d lablgl || cvs -d $lablgl co -d lablgl bazar-ocaml/lablGL
21 if ! test -d mupdf; then
22 if $use_sumatrapdf_patched_mupdf; then
23 svn checkout $sumatrapdf/mupdf mupdf
24 else
25 git clone $mupdf
29 mkdir -p $root/bin
30 mkdir -p $root/lib
31 mkdir -p $root/include
33 (cd openjpeg \
34 && make dist \
35 && cp dist/*.h $root/include/ \
36 && cp dist/*.a $root/lib/)
38 (cd jbig2dec \
39 && make -f Makefile.unix install prefix=$root && rm -f $root/lib/*.so*)
41 (cd lablgl \
42 && cat Makefile.config.linux.mdk > Makefile.config \
43 && make glut glutopt \
44 && make install \
45 BINDIR=$root/bin \
46 LIBDIR=$root/lib/ocaml \
47 DLLDIR=$root/lib/ocaml/stublibs \
48 INSTALLDIR=$root/lib/ocaml/lablGL)
50 export CPATH=$CPATH:$root/include:$root/mupdf/pdf:$root/mupdf/fitz
51 export LIBRARY_PATH=$LIBRARY_PATH:$root/lib:$root/mupdf/build/release
53 (cd mupdf && make build=release)
55 cd ..
57 srcpath=$(dirname $0)
59 if test "$1" = "opt"; then
60 cclib="-lmupdf -lfitz -lz -ljpeg -lopenjpeg -ljbig2dec -lfreetype -lpthread"
61 ocamlopt -c -o link.o -ccopt -O $srcpath/link.c
62 ocamlopt -c -o main.cmo -I $root/lib/ocaml/lablGL $srcpath/main.ml
64 ocamlopt -o llpp \
65 -I $root/lib/ocaml/lablGL \
66 str.cmxa unix.cmxa lablgl.cmxa lablglut.cmxa \
67 link.o \
68 -cclib "$cclib" \
69 main.cmx
70 else
71 cclib="-lmupdf -lfitz -lz -ljpeg -lopenjpeg -ljbig2dec -lfreetype"
72 ocamlc -c -o link.o -ccopt -O $srcpath/link.c
73 ocamlc -c -o main.cmo -I $root/lib/ocaml/lablGL $srcpath/main.ml
75 ocamlc -custom -o llpp \
76 -I $root/lib/ocaml/lablGL \
77 str.cma unix.cma lablgl.cma lablglut.cma \
78 link.o \
79 -cclib "$cclib" \
80 main.cmo