Advertisement
Guest User

php

a guest
Jan 22nd, 2014
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. cd /usr/work/src/php5.5-201401220830
  4. make -s clean
  5. export CC=gcc
  6. export CFLAGS="-O2 -pipe -march=native"
  7. ./configure \
  8. --enable-fpm \
  9. --with-mysql=/usr/local \
  10. --with-mysqli \
  11. --without-pear \
  12. --with-pdo-mysql \
  13. --without-sqlite3 \
  14. --without-pdo-sqlite \
  15. --without-xmlrpc \
  16. --disable-xmlreader \
  17. --disable-xmlwriter \
  18. --disable-dom \
  19. --enable-json \
  20. --disable-debug \
  21. --enable-session \
  22. --with-zlib \
  23. --with-curl \
  24. --enable-inline-optimization \
  25. --with-gnu-ld \
  26. --disable-exif \
  27. --enable-static \
  28. --disable-posix \
  29. --disable-ftp \
  30. --with-jpeg-dir \
  31. --enable-sockets \
  32. --without-sqlite3 \
  33. --disable-tokenizer \
  34. --with-gd \
  35. --enable-gd-native-ttf \
  36. --enable-calendar \
  37. --enable-bcmath \
  38. --enable-mbstring \
  39. --with-mcrypt \
  40. --enable-libxml \
  41. --enable-debug \
  42. --with-freetype-dir
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement