comparison configure.ac @ 803:2bd629a29fa3 qt5

Update configure
author Chris Cannam
date Mon, 13 May 2013 14:39:31 +0100
parents c808c57e5560
children a8f3195b0761
comparison
equal deleted inserted replaced
802:98cf98a217d2 803:2bd629a29fa3
1 1
2 AC_INIT(SVcore, 1.8, cannam@all-day-breakfast.com) 2 AC_INIT([SVcore], [2.1], cannam@all-day-breakfast.com)
3 3
4 AC_CONFIG_SRCDIR(base/Pitch.h) 4 AC_CONFIG_SRCDIR(base/Pitch.h)
5 5
6 # Autoconf will set CXXFLAGS; we don't usually want it to, because we 6 # Autoconf will set CXXFLAGS; we don't usually want it to, because we
7 # either define our own flags (at least if GCC is in use) or else use 7 # either define our own flags (at least if GCC is in use) or else use
112 112
113 AC_CONFIG_FILES([config.pri]) 113 AC_CONFIG_FILES([config.pri])
114 114
115 AC_OUTPUT 115 AC_OUTPUT
116 116
117 if ! $QMAKE -r; then 117 if ! $QMAKE -r svcore.pro; then
118 AC_MSG_ERROR([qmake failed: Command was "$QMAKE -r"]) 118 AC_MSG_ERROR([qmake failed: Command was "$QMAKE -r"])
119 fi 119 fi
120 120
121 AC_MSG_NOTICE([ 121 AC_MSG_NOTICE([
122 122
124 Please check the above messages for any warnings that you 124 Please check the above messages for any warnings that you
125 might care about, and then run "make". 125 might care about, and then run "make".
126 126
127 The file config.pri contains the configuration settings for 127 The file config.pri contains the configuration settings for
128 qmake. If you want to adjust these by hand, edit config.pri 128 qmake. If you want to adjust these by hand, edit config.pri
129 and run "qmake -r" again to regenerate the Makefile. 129 and run "$QMAKE -r" again to regenerate the Makefile.
130 ]) 130 ])