Codebase list xjadeo / 8e630a5
Imported Upstream version 0.6.0~rc4 Alessio Treglia 13 years ago
5 changed file(s) with 9 addition(s) and 33 deletion(s). Raw diff Collapse all Expand all
238238 /* #undef TTFFONTFILE */
239239
240240 /* Version number of package */
241 #define VERSION "0.6.0-rc3"
241 #define VERSION "0.6.0-rc4"
242242
243243 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
244244 significant byte first (like Motorola and SPARC, unlike Intel). */
25902590
25912591 VERSION_MAJOR=0
25922592 VERSION_MINOR=6
2593 VERSION_SUB=0-rc3
2593 VERSION_SUB=0-rc4
25942594
25952595 am__api_version='1.11'
25962596
62326232 # Put the nasty error message in config.log where it belongs
62336233 echo "$LIBLO_PKG_ERRORS" >&5
62346234
6235 as_fn_error $? "Package requirements (liblo) were not met:
6236
6237 $LIBLO_PKG_ERRORS
6238
6239 Consider adjusting the PKG_CONFIG_PATH environment variable if you
6240 installed software in a non-standard prefix.
6241
6242 Alternatively, you may set the environment variables LIBLO_CFLAGS
6243 and LIBLO_LIBS to avoid the need to call pkg-config.
6244 See the pkg-config man page for more details." "$LINENO" 5
6235 NULL=0
62456236 elif test $pkg_failed = untried; then
62466237 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
62476238 $as_echo "no" >&6; }
6248 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
6249 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
6250 as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
6251 is in your PATH or set the PKG_CONFIG environment variable to the full
6252 path to pkg-config.
6253
6254 Alternatively, you may set the environment variables LIBLO_CFLAGS
6255 and LIBLO_LIBS to avoid the need to call pkg-config.
6256 See the pkg-config man page for more details.
6257
6258 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
6259 See \`config.log' for more details" "$LINENO" 5 ; }
6239 NULL=0
62606240 else
62616241 LIBLO_CFLAGS=$pkg_cv_LIBLO_CFLAGS
62626242 LIBLO_LIBS=$pkg_cv_LIBLO_LIBS
77
88 VERSION_MAJOR=0
99 VERSION_MINOR=6
10 VERSION_SUB=0-rc3
10 VERSION_SUB=0-rc4
1111
1212 dnl Every other copy of the package version number gets its value from here
1313 AM_INIT_AUTOMAKE(xjadeo, [${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_SUB}])
193193 if test -n "$liblosrc"; then
194194 AC_CHECK_FILES([$liblosrc/src/.libs/liblo.a $liblosrc/lo/lo.h],[AC_DEFINE(HAVE_LIBLO) HAVE_LIBLO=1 LIBLO_CFLAGS="-I$liblosrc/lo" LIBLO_LIBS="$liblosrc/src/.libs/liblo.a" ])
195195 else
196 PKG_CHECK_MODULES(LIBLO, liblo, [ AC_DEFINE(HAVE_LIBLO) HAVE_LIBLO=1 ])
196 PKG_CHECK_MODULES(LIBLO, liblo, [ AC_DEFINE(HAVE_LIBLO) HAVE_LIBLO=1 ], [ NULL=0] )
197197 fi
198198 ])
199199
6363 &nbsp;&nbsp;&nbsp;
6464 <ulink
6565 url="http://xjadeo.sourceforge.net/xjadeo.pdf">This manual as PDF
66 </ulink>
67 &nbsp;&nbsp;&nbsp;
68 <ulink
69 url="http://sourceforge.net/apps/phpbb/xjadeo">Message Board
7066 </ulink>
7167 </para>
7268 </abstract>
210210
211211 void QJadeo::filePreferences()
212212 {
213 PrefDialog *pdialog = new PrefDialog::PrefDialog(this);
213 PrefDialog *pdialog = new PrefDialog(this);
214214 if (pdialog) {
215215 /* set values */
216216 pdialog->prefLineJackMidi->setText(m_jackmidiport);
251251
252252 void QJadeo::fileImport()
253253 {
254 ImportDialog *idialog = new ImportDialog::ImportDialog(this);
254 ImportDialog *idialog = new ImportDialog(this);
255255
256256 if (idialog) {
257257 QString src, dst;
279279 }
280280 /* start encoding */
281281 if(!src.isEmpty() && !dst.isEmpty())
282 iprog = new ImportProgress::ImportProgress(this);
282 iprog = new ImportProgress(this);
283283 if(iprog) {
284284 if(!iprog->setEncoderFiles(src,dst)) {
285285 iprog->setEncoderArgs(m_importcodec,fps,w,h);