Blame view

site/jpgraph/docs/chunkhtml/apis02.html 4.33 KB
d72ac078   Guillaume   Ajout graphe V1.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
  <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Compiling PHP5</title><link rel="stylesheet" type="text/css" href="manual.css"><meta name="generator" content="DocBook XSL Stylesheets V1.76.0"><link rel="home" href="index.html" title="JpGraph Manual"><link rel="up" href="api.html" title="Appendix I. Compiling PHP"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Compiling PHP5</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center">Appendix I. Compiling PHP</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" title="Compiling PHP5"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id2654114"></a>Compiling PHP5</h2></div></div></div>
          
          <div class="sect2" title="Client version"><div class="titlepage"><div><div><h3 class="title"><a name="id2654119"></a>Client version</h3></div></div></div>
              
              <pre class="screen">#! /bin/sh
  # mkphp5-cli
  # Build a command line version of PHP5
  ./configure \
  --prefix=/usr/share/php5 \
  --datadir=/usr/share/php5 \
  --libdir=/usr/share/php5 \
  --includedir=/usr/include/php5 \
  --enable-force-cgi-redirect \
  --bindir=/usr/bin \
  --with-config-file-path=/etc/php5/cli \
  --with-config-file-scan-dir=/etc/php5/cli \
  --enable-mbstring --enable-mbregex \
  --with-mysql  \
  --with-gd --enable-gd-imgstrttf --enable-gd-native-ttf \
  --with-zlib-dir=/usr/lib \
  --with-png-dir=/usr/lib --with-jpeg-dir=/usr/lib --with-xpm-dir=/usr/X11R6 \
  --with-tiff-dir=/usr/lib --with-ttf-dir=/usr/lib \
  --with-freetype-dir=/usr/lib \
  --enable-ftp \
  --enable-memory-limit \ 
  --enable-safe-mode \
  --enable-bcmath -enable-calendar \
  --enable-ctype \
  --with-ftp \
  --enable-magic-quotes \
  --enable-inline-optimization \
  --enable-tokenizer \
  --with-bz2 \
  --with-iconv \
  --with-pear=/usr/share/php5
  
  </pre>
          </div>
          <div class="sect2" title="Apache module"><div class="titlepage"><div><div><h3 class="title"><a name="id2654131"></a>Apache module</h3></div></div></div>
              
              <pre class="screen">#! /bin/sh
  # mkphp5-sapi
  # Build a SAPI (Apache module) version of PHP5
  ./configure --prefix=/usr/share \
  --datadir=/usr/share/php --with-apxs2=/usr/sbin/apxs2 \
  --libdir=/usr/share --includedir=/usr/include \
  --bindir=/usr/bin \
  --with-config-file-path=/etc/php5/apache2 \
  --enable-mbstring --enable-mbregex \
  --with-mysql  \
  --with-gd --enable-gd-imgstrttf --enable-gd-native-ttf \
  --with-zlib-dir=/usr/lib \
  --with-png-dir=/usr/lib --with-jpeg-dir=/usr/lib --with-xpm-dir=/usr/X11R6 \
  --with-tiff-dir=/usr/lib --with-ttf-dir=/usr/lib \
  --with-freetype-dir=/usr/lib \
  --enable-ftp \
  --enable-memory-limit --enable-safe-mode \
  --bindir=/usr/bin \
  --enable-bcmath -enable-calendar \
  --enable-ctype --with-ftp \
  --enable-magic-quotes \
  --enable-inline-optimization \
  --with-bz2 \
  --with-iconv
  
  !#</pre>
          </div>
          <div class="sect2" title="CGI extension"><div class="titlepage"><div><div><h3 class="title"><a name="id2654142"></a>CGI extension</h3></div></div></div>
              
              <pre class="screen">#! /bin/sh
  # mkphp5-cgi
  # Build a CGI version of PHP5
  ./configure --prefix=/usr/share \
  --datadir=/usr/share/php \
  --libdir=/usr/share --includedir=/usr/include \
  --enable-force-cgi-redirect \
  --bindir=/usr/bin \
  --with-config-file-path=/etc/php5/apache2 \
  --enable-mbstring --enable-mbregex \
  --with-mysql  \
  --with-gd --enable-gd-native-ttf \
  --with-zlib-dir=/usr/lib \
  --with-png-dir=/usr/lib --with-jpeg-dir=/usr/lib --with-xpm-dir=/usr/X11R6 \
  --with-freetype-dir=/usr/lib \
  --enable-ftp \
  --enable-safe-mode \
  --bindir=/usr/bin \
  --enable-bcmath -enable-calendar \
  --enable-ctype \
  --enable-magic-quotes \
  --enable-inline-optimization \
  --enable-tokenizer \
  --with-bz2 \
  --with-iconv
  
  </pre>
          </div>
      </div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"><a accesskey="u" href="api.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>