Advertisement
LACabeza

./configure php5

Jan 24th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.72 KB | None | 0 0
  1. ./configure \
  2. --prefix=/usr/share/php5 \
  3. --datadir=/usr/share/php5 \
  4. --libdir=/usr/share/php5 \
  5. --includedir=/usr/include/php5 \
  6. --bindir=/usr/bin \
  7. --with-config-file-path=/etc/php5 \
  8. --with-config-file-scan-dir=/etc/php5 \
  9. --with-gd --enable-gd-native-ttf \
  10. --with-zlib \
  11. --with-bz2 \
  12. --with-zlib-dir=/usr/lib \
  13. --with-png-dir=/usr/lib \
  14. --with-jpeg-dir=/usr/lib \
  15. --with-xpm-dir=/usr \
  16. --with-freetype-dir=/usr/lib \
  17. --with-iconv \
  18. --with-pear=/usr/share/php5 \
  19. --with-curl \
  20. --with-mcrypt \
  21. --with-pgsql \
  22. --with-openssl \
  23. --enable-maintainer-zts \
  24. --enable-intl \
  25. --enable-bcmath \
  26. --enable-calendar \
  27. --enable-ctype \
  28. --enable-inline-optimization \
  29. --enable-tokenizer \
  30. --enable-mbstring \
  31. --enable-mbregex
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement