Skip to content

Commit

Permalink
add dependency header path for osx 10.9
Browse files Browse the repository at this point in the history
  • Loading branch information
elsonLee committed Apr 16, 2014
1 parent c3152f0 commit f8fc9c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions depends/check-ncurses.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
ls /usr/include/ncurses.h 1> /dev/null ||
ls /usr/include/ncurses/ncurses.h 1> /dev/null ||
ls /usr/local/include/ncurses.h 1> /dev/null ||
ls /opt/local/include/ncurses.h 1> /dev/null ||
{ echo "ERROR: Install ncurses before continuing."; exit 1; }
1 change: 1 addition & 0 deletions depends/check-readline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
## Check for the readline library.
ls /usr/include/readline/readline.h 1> /dev/null || \
ls /usr/local/include/readline/readline.h 1> /dev/null || \
ls /opt/local/include/readline/readline.h 1> /dev/null || \
{ echo "ERROR: Install readline before continuing."; exit 1; }
1 change: 1 addition & 0 deletions depends/check-zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
## Check for the z library.
ls /usr/include/zlib.h 1> /dev/null ||
ls /usr/local/include/zlib.h 1> /dev/null ||
ls /opt/local/include/zlib.h 1> /dev/null ||
{ echo "ERROR: Install zlib before continuing."; exit 1; }

0 comments on commit f8fc9c6

Please sign in to comment.