본문 바로가기
정보관리(데이터베이스, DB)/오라클

Aquamacs 에서 PRO*C 환경 설정

by 3604 2023. 12. 9.
728x90
2012년 9월 23일 AT 12:55 AM

출처: http://blog.joomoney.net/?p=876

  1. cedet 설치
    1. http://sourceforge.net/projects/cedet/files/latest/download?source=files 에서 최신 cedet 을 다운로드
    2. cd ~/Library/Application Support/Aquamacs Emacs
    3. tar xvf ~/Downloads/cedet-1.1.tar.gz
    4. cd cedet-1.1
    5. make EMACS=/Applications/Aquamacs.app/Contents/MacOS/Aquamacs
    6. mkdir info
    7. cd info
    8. find .. -type f -name '*.info' | while read i; do j="$(basename $i)"; ln -s "$i""$j"; install-info --info-dir="$(pwd)" "$j"; done
    9. cd ..
    10. vi site-start.el
  2. ecb 설치
    1. http://sourceforge.net/projects/ecb/files/latest/download?source=files
    2. cd ~/Library/Application Support/Aquamacs Emacs
    3. tar xvf ~/Downloads/ecb-2.40.tar.gz
    4. cd ecb-2.40
    5. ln -s info-help info
    6. cd info
    7. install-info --info-dir="$(pwd)" ecb.info
    8. cd ..
    9. vi site-start.el
  3. mmm-mode 설치
    1. http://sourceforge.net/projects/mmm-mode/files/latest/download?source=files
    2. cd ~/Library/Application Support/Aquamacs Emacs
    3. tar zxvf ~/Downloads/mmm-mode-0.4.8.tar.gz
    1. mkdir info
    2. cd info
    3. find .. -type f -name '*.info' | while read i; doj="$(basename $i)"; ln -s "$i""$j"; install-info --info-dir="$(pwd)" "$j"; done
    4. cd ..
    5. vi site-start.el
728x90