aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2015-03-18 11:58:05 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2015-03-18 11:58:05 -0400
commitac617d7b9ff855b8eddec125256b93e47d618152 (patch)
tree6725f19232173f9fd6a74f58455b07dca309a807
parente340f75841ee0a3328d395e67f5e01c0c1bd4831 (diff)
Updated the location of ncurses on the build server; src/Makefile
-rw-r--r--src/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index 62ceb493..0ccbb723 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -309,15 +309,16 @@ $(basedir).i386: ; hg archive $@ -X ".hg*"
release: $(basedir).i386
make deps clean doc
PKG_CONFIG_PATH=/opt/gtk/lib/pkgconfig make -j4
- make -j4 curses
+ make -j4 CURSES_CFLAGS=-I/opt/ncursesw/include/ncursesw \
+ CURSES_LIBS="-L/opt/ncursesw/lib -lncursesw" curses
cp -r ../doc ../lexers ../textadept* $<
tar czf /tmp/$<.tgz $< && rm -rf $<
$(basedir).x86_64: ; hg archive $@ -X ".hg*"
release64: $(basedir).x86_64
make clean libluajit64
- PKG_CONFIG_PATH=/opt/gtk64/lib/pkgconfig make -j4 CFLAGS='$(CFLAGS) -m64' \
- CXXFLAGS='$(CXXFLAGS) -m64' || return 0
- make -j4 CFLAGS='$(CFLAGS) -m64' CXXFLAGS='$(CXXFLAGS) -m64' \
+ PKG_CONFIG_PATH=/opt/gtk64/lib/pkgconfig make -j4 CFLAGS="$(CFLAGS) -m64" \
+ CXXFLAGS="$(CXXFLAGS) -m64" || return 0
+ make -j4 CFLAGS="$(CFLAGS) -m64" CXXFLAGS="$(CXXFLAGS) -m64" \
CURSES_CFLAGS=-I/opt/ncursesw64/include/ncursesw \
CURSES_LIBS="-L/opt/ncursesw64/lib -lncursesw" curses || return 0
cp -r ../doc ../lexers ../textadept* $<