Changeset 014c5b76f3f37b722aa86fcc1cd85e1c9369e2a9
- Timestamp:
- 03/02/08 19:31:07
(8 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1202063467 +0000
- git-parent:
[249229af3260e94e3b034aad037b55f717ac5df8]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1202063467 +0000
- Message:
Remove libintl from the source tree.
People use libintil from the contrib anyway.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbcca390 |
r014c5b7 |
|
| 6 | 6 | # something. DIST_SUBDIRS stores the directories where nothing is built but |
|---|
| 7 | 7 | # which have makefiles with distribution information. |
|---|
| 8 | | # - intl (gettext) is needed by src and modules |
|---|
| 9 | 8 | # - src (libvlc) is nedeed by modules, mozilla and bindings |
|---|
| 10 | 9 | # - libs/* are needed by modules |
|---|
| 11 | | SUBDIRS = intl po libs/loader libs/srtp src modules \ |
|---|
| | 10 | SUBDIRS = po libs/loader libs/srtp src modules \ |
|---|
| 12 | 11 | mozilla bindings activex share doc |
|---|
| 13 | 12 | DIST_SUBDIRS = $(SUBDIRS) m4 ipkg |
|---|
| r46ff91c |
r014c5b7 |
|
| 394 | 394 | dnl |
|---|
| 395 | 395 | AM_GNU_GETTEXT_VERSION(0.16.1) |
|---|
| 396 | | AM_GNU_GETTEXT |
|---|
| 397 | | AS_IF([test "${nls_cv_force_use_gnu_gettext}" = "yes"], [ |
|---|
| 398 | | AC_DEFINE(HAVE_INCLUDED_GETTEXT, 1, [Define if we use the local libintl]) |
|---|
| 399 | | AM_CPPFLAGS="${AM_CPPFLAGS} -I\$(top_builddir)/intl" |
|---|
| 400 | | ], [ |
|---|
| 401 | | VLC_ADD_LIBS([libvlc vlc], [${LTLIBINTL}]) |
|---|
| 402 | | ]) |
|---|
| | 396 | AM_GNU_GETTEXT([external]) |
|---|
| | 397 | VLC_ADD_LIBS([libvlc vlc], [${LTLIBINTL}]) |
|---|
| 403 | 398 | |
|---|
| 404 | 399 | dnl |
|---|
| 405 | 400 | dnl Iconv stuff |
|---|
| 406 | 401 | dnl |
|---|
| | 402 | AM_ICONV |
|---|
| 407 | 403 | AS_IF([test "$am_cv_func_iconv" != "yes"], |
|---|
| 408 | 404 | [AC_MSG_ERROR([libiconv is needed for VLC to work properly])]) |
|---|
| … | … | |
| 6103 | 6099 | bindings/python/Makefile |
|---|
| 6104 | 6100 | doc/Makefile |
|---|
| 6105 | | intl/Makefile |
|---|
| 6106 | 6101 | ipkg/Makefile |
|---|
| 6107 | 6102 | libs/loader/Makefile |
|---|