Changeset 7ad41e7e4f87fdd35dba09ea411b54478c946d9b
- Timestamp:
- 05/21/04 13:54:37
(4 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1085140477 +0000
- git-parent:
[dc4cbfaab333880c1901726be09e847f2fd97df5]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1085140477 +0000
- Message:
* configure.ac: fixed libspeex > 1.1.0 detection.
* ALL: bumped version number to 0.7.2.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7bb6260 |
r7ad41e7 |
|
| 2 | 2 | dnl $Id$ |
|---|
| 3 | 3 | |
|---|
| 4 | | AC_INIT(vlc,0.7.2-test3) |
|---|
| | 4 | AC_INIT(vlc,0.7.2) |
|---|
| 5 | 5 | |
|---|
| 6 | 6 | CONFIGURE_LINE="$0 $*" |
|---|
| … | … | |
| 14 | 14 | dnl XXX: we don't put any flags here, because automake 1.5 doesn't support |
|---|
| 15 | 15 | dnl them. And we need the comma otherwize automake will choke on it. |
|---|
| 16 | | AM_INIT_AUTOMAKE(vlc,0.7.2-test3) |
|---|
| | 16 | AM_INIT_AUTOMAKE(vlc,0.7.2) |
|---|
| 17 | 17 | AM_CONFIG_HEADER(config.h) |
|---|
| 18 | 18 | |
|---|
| … | … | |
| 2307 | 2307 | then |
|---|
| 2308 | 2308 | AC_CHECK_HEADERS(speex.h, [ |
|---|
| 2309 | | AX_ADD_PLUGINS([speex]) |
|---|
| 2310 | | AX_ADD_LDFLAGS([speex],[-lspeex]) ],[]) |
|---|
| | 2309 | AC_MSG_CHECKING(for libspeex version > 1.1.0) |
|---|
| | 2310 | AC_EGREP_CPP(yes, |
|---|
| | 2311 | [#include <speex.h> |
|---|
| | 2312 | #ifdef SPEEX_SET_SUBMODE_ENCODING |
|---|
| | 2313 | yes |
|---|
| | 2314 | #endif], |
|---|
| | 2315 | [ AC_MSG_RESULT([yes]) |
|---|
| | 2316 | AX_ADD_PLUGINS([speex]) |
|---|
| | 2317 | AX_ADD_LDFLAGS([speex],[-lspeex]) ], |
|---|
| | 2318 | [ AC_MSG_RESULT([no]) |
|---|
| | 2319 | AC_MSG_WARN([Your libspeex is too old, please get the development |
|---|
| | 2320 | version.]) ] ) |
|---|
| | 2321 | ],[]) |
|---|
| 2311 | 2322 | fi |
|---|
| 2312 | 2323 | |
|---|
| r7bb6260 |
r7ad41e7 |
|
| 2 | 2 | |
|---|
| 3 | 3 | CFBundleName = "VLC"; |
|---|
| 4 | | CFBundleShortVersionString = "0.7.2-test3"; |
|---|
| 5 | | CFBundleGetInfoString = "VLC media player 0.7.2-test3, Copyright (c) 1996-2004 VideoLAN."; |
|---|
| | 4 | CFBundleShortVersionString = "0.7.2"; |
|---|
| | 5 | CFBundleGetInfoString = "VLC media player 0.7.2, Copyright (c) 1996-2004 VideoLAN."; |
|---|
| 6 | 6 | NSHumanReadableCopyright = "Copyright (c) 1996-2004 VideoLAN."; |
|---|
| r7bb6260 |
r7ad41e7 |
|
| 546 | 546 | <string>VLC</string> |
|---|
| 547 | 547 | <key>CFBundleGetInfoString</key> |
|---|
| 548 | | <string>VLC media player 0.7.2-test3, Copyright (c) 1996-2003 VideoLAN.</string> |
|---|
| | 548 | <string>VLC media player 0.7.2, Copyright (c) 1996-2003 VideoLAN.</string> |
|---|
| 549 | 549 | <key>CFBundleIconFile</key> |
|---|
| 550 | 550 | <string>vlc.icns</string> |
|---|
| … | … | |
| 558 | 558 | <string>APPL</string> |
|---|
| 559 | 559 | <key>CFBundleShortVersionString</key> |
|---|
| 560 | | <string>0.7.2-test3</string> |
|---|
| | 560 | <string>0.7.2</string> |
|---|
| 561 | 561 | <key>CFBundleSignature</key> |
|---|
| 562 | 562 | <string>VLC#</string> |
|---|
| … | … | |
| 605 | 605 | </array> |
|---|
| 606 | 606 | <key>CFBundleVersion</key> |
|---|
| 607 | | <string>0.7.2-test3</string> |
|---|
| | 607 | <string>0.7.2</string> |
|---|
| 608 | 608 | <key>NSAppleScriptEnabled</key> |
|---|
| 609 | 609 | <string>YES</string> |
|---|