-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure script now performs better checks for ncurses lib, helping …
…builds on xUbuntu. Updated buildobs script.
- Loading branch information
trisyoungs
committed
Dec 4, 2013
1 parent
a316316
commit 9ab50d4
Showing
6 changed files
with
11 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
AC_PREREQ(2.60) | ||
|
||
# Set program name, version, bug-address and source directory | ||
m4_define([ATEN_VERSION],[1.855]) | ||
m4_define([ATEN_VERSION],[1.856]) | ||
AC_INIT(aten,ATEN_VERSION,[email protected]) | ||
AC_CONFIG_SRCDIR([src/main.cpp]) | ||
|
||
|
@@ -88,10 +88,12 @@ if test "$with_qt" != "framework"; then | |
PKG_PROG_PKG_CONFIG | ||
fi | ||
|
||
|
||
# Check for other dependencies | ||
AC_CHECK_HEADER([$RLINCDIR/readline.h],,[AC_MSG_ERROR([Cannot find headers for readline.])]) | ||
|
||
# Determine whether to link against libncurses or libncurses5 | ||
AC_SEARCH_LIBS(tgetent, [ncurses ncurses5 curses termcap]) | ||
|
||
# Set up compilation for Qt GUI | ||
if test "$with_qt" = "framework"; then | ||
QTGUI_LIBS="-framework QtGui -framework QtOpenGL -framework QtCore" | ||
|
@@ -109,7 +111,7 @@ if test "x$with_qt" = "x"; then | |
PKG_CHECK_MODULES(QTGUI, QtGui >= 4.1.0) | ||
PKG_CHECK_MODULES(QTOPENGL, QtOpenGL >= 4.1.0) | ||
fi | ||
GUI_LDLIBS="$QTGUI_LIBS $QTOPENGL_LIBS -lreadline -lncurses -lGL" | ||
GUI_LDLIBS="$QTGUI_LIBS $QTOPENGL_LIBS -lreadline -lGL" | ||
GUI_CFLAGS="$QTGUI_CFLAGS -I$RLINCDIR" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Format: 1.0 | ||
Source: aten | ||
Version: 1.855 | ||
Version: 1.856 | ||
Binary: aten | ||
Maintainer: Tristan Youngs <[email protected]> | ||
Architecture: any | ||
Build-Depends: debhelper (>= 4.1.16), libqt4-dev | libqt4-core, libqt4-opengl-dev, libreadline5-dev | libreadline-dev, libgl1-mesa-dev, pkgconfig | pkg-config, libncurses5 | ||
Files: | ||
c9261a9523963a7d298046de12c9b803 4307358 aten-1.855.tar.gz | ||
0f7cda0fc1d5e6e2ca1c6247eb944c61 4309758 aten-1.856.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters