home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Magazine / HomeAutomation / Apache / bin / php-config < prev    next >
Encoding:
Text File  |  2000-07-11  |  509 b   |  20 lines

  1. #! /bin/sh
  2.  
  3. prefix='/Apache'
  4. includes='-I/Apache/include/php -I/studi/kuhlmann/cross-install/apache/Apache/include/php/main -I/studi/kuhlmann/cross-install/apache/Apache/include/php/Zend -I/studi/kuhlmann/cross-install/apache/Apache/include/php/TSRM'
  5. extension_dir='/Apache/lib/php/extensions/debug-non-zts-20000401'
  6.  
  7. case "$1" in
  8. --prefix)
  9.     echo $prefix;;
  10. --includes)
  11.     echo $includes;;
  12. --extension-dir)
  13.     echo $extension_dir;;
  14. *)
  15.     echo "Usage: $0 [--prefix|--includes|--extension-dir]"
  16.     exit 1;;
  17. esac
  18.  
  19. exit 0
  20.