Changeset 685f8edcc3e7bfa3e3a40fd15ecec75c4e01b565
- Timestamp:
- 08/27/02 01:36:20
(6 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1030404980 +0000
- git-parent:
[15f3b0f6fa0eac7207eec34e80e1f65506d4f599]
- git-author:
- Sam Hocevar <sam@videolan.org> 1030404980 +0000
- Message:
- ./bootstrap: we touch m4/Makefile.am so that configure doesn't complain
about a missing m4/Makefile.in.
- ./include/vlc_common.h: workaround for Borland's redefinition of PACKAGE.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8cdab6d |
r685f8ed |
|
| 2 | 2 | |
|---|
| 3 | 3 | ## bootstrap.sh file for vlc, the VideoLAN Client |
|---|
| 4 | | ## $Id: bootstrap,v 1.5 2002/08/26 21:46:06 sam Exp $ |
|---|
| | 4 | ## $Id: bootstrap,v 1.6 2002/08/26 23:36:20 sam Exp $ |
|---|
| 5 | 5 | ## |
|---|
| 6 | 6 | ## Authors: Samuel Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 50 | 50 | # do cp ${aclocaldir}/${file} m4/ |
|---|
| 51 | 51 | #done |
|---|
| | 52 | # Yuck! |
|---|
| | 53 | touch m4/Makefile.am |
|---|
| 52 | 54 | # Yuck! |
|---|
| 53 | 55 | echo 'AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])' > m4/gettext.m4 |
|---|
| r44fc8c8 |
r685f8ed |
|
| 54 | 54 | dnl Gettext stuff |
|---|
| 55 | 55 | ALL_LINGUAS="de en_GB fr ja no ru nl pl se" |
|---|
| 56 | | |
|---|
| 57 | | AC_DEFINE_UNQUOTED(VLC_PACKAGE, "${PACKAGE}", [Package name]) |
|---|
| 58 | | AC_DEFINE_UNQUOTED(VLC_VERSION, "${VERSION}", [Package version]) |
|---|
| 59 | 56 | AM_GNU_GETTEXT_VERSION(0.10.40) |
|---|
| 60 | 57 | AM_GNU_GETTEXT |
|---|
| … | … | |
| 2073 | 2070 | AC_SUBST(WINDRES) |
|---|
| 2074 | 2071 | AC_SUBST(BCBUILDER) |
|---|
| 2075 | | AC_SUBST(PACKAGE) |
|---|
| 2076 | | AC_SUBST(VERSION) |
|---|
| 2077 | 2072 | AC_SUBST(NEED_GETOPT) |
|---|
| 2078 | 2073 | AC_SUBST(MOZILLA) |
|---|
| r6038883 |
r685f8ed |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1998, 1999, 2000 VideoLAN |
|---|
| 5 | | * $Id: vlc.h,v 1.12 2002/08/26 08:36:12 sam Exp $ |
|---|
| | 5 | * $Id: vlc.h,v 1.13 2002/08/26 23:36:20 sam Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * This program is free software; you can redistribute it and/or modify |
|---|
| … | … | |
| 96 | 96 | *****************************************************************************/ |
|---|
| 97 | 97 | #if defined( __VLC__ ) |
|---|
| 98 | | # include "config.h" |
|---|
| 99 | | # include "vlc_config.h" |
|---|
| 100 | | # include "modules_inner.h" |
|---|
| 101 | 98 | # include "vlc_common.h" |
|---|
| 102 | | # include "os_specific.h" |
|---|
| 103 | | # include "vlc_messages.h" |
|---|
| 104 | | # include "mtime.h" |
|---|
| 105 | | # include "modules.h" |
|---|
| 106 | | # include "main.h" |
|---|
| 107 | | # include "configuration.h" |
|---|
| 108 | | # include "vlc_objects.h" |
|---|
| 109 | 99 | #endif |
|---|
| 110 | 100 | |
|---|
| r00724b7 |
r685f8ed |
|
| 4 | 4 | ***************************************************************************** |
|---|
| 5 | 5 | * Copyright (C) 1998, 1999, 2000 VideoLAN |
|---|
| 6 | | * $Id: vlc_common.h,v 1.23 2002/08/21 23:19:58 sam Exp $ |
|---|
| | 6 | * $Id: vlc_common.h,v 1.24 2002/08/26 23:36:20 sam Exp $ |
|---|
| 7 | 7 | * |
|---|
| 8 | 8 | * Authors: Samuel Hocevar <sam@via.ecp.fr> |
|---|
| … | … | |
| 26 | 26 | |
|---|
| 27 | 27 | /***************************************************************************** |
|---|
| 28 | | * Compiler-specific workarounds |
|---|
| 29 | | *****************************************************************************/ |
|---|
| | 28 | * Required vlc headers |
|---|
| | 29 | *****************************************************************************/ |
|---|
| | 30 | #if defined( __BORLANDC__ ) |
|---|
| | 31 | # undef PACKAGE |
|---|
| | 32 | #endif |
|---|
| | 33 | |
|---|
| | 34 | #include "config.h" |
|---|
| | 35 | |
|---|
| 30 | 36 | #if defined( __BORLANDC__ ) |
|---|
| 31 | 37 | # undef HAVE_VARIADIC_MACROS |
|---|
| 32 | 38 | # undef HAVE_STDINT_H |
|---|
| 33 | 39 | #endif |
|---|
| | 40 | |
|---|
| | 41 | #include "vlc_config.h" |
|---|
| | 42 | #include "modules_inner.h" |
|---|
| 34 | 43 | |
|---|
| 35 | 44 | /***************************************************************************** |
|---|
| … | … | |
| 465 | 474 | * I18n stuff |
|---|
| 466 | 475 | *****************************************************************************/ |
|---|
| 467 | | #ifndef PACKAGE /* Borland C++ uses this ! */ |
|---|
| 468 | | #define PACKAGE VLC_PACKAGE |
|---|
| 469 | | #endif |
|---|
| 470 | | #define VERSION VLC_VERSION |
|---|
| 471 | | |
|---|
| 472 | 476 | #if defined( ENABLE_NLS ) && defined ( HAVE_GETTEXT ) && !defined( __BORLANDC__ ) && !defined( NEED_GNOMESUPPORT_H ) |
|---|
| 473 | 477 | # include <libintl.h> |
|---|
| … | … | |
| 485 | 489 | |
|---|
| 486 | 490 | /***************************************************************************** |
|---|
| 487 | | * Plug-in stuff |
|---|
| | 491 | * Additional vlc stuff |
|---|
| 488 | 492 | *****************************************************************************/ |
|---|
| 489 | 493 | #include "vlc_symbols.h" |
|---|
| | 494 | #include "os_specific.h" |
|---|
| | 495 | #include "vlc_messages.h" |
|---|
| | 496 | #include "mtime.h" |
|---|
| | 497 | #include "modules.h" |
|---|
| | 498 | #include "main.h" |
|---|
| | 499 | #include "configuration.h" |
|---|
| | 500 | #include "vlc_objects.h" |
|---|
| | 501 | |
|---|
| | 502 | #if defined( __BORLANDC__ ) |
|---|
| | 503 | # undef PACKAGE |
|---|
| | 504 | # define PACKAGE |
|---|
| | 505 | #endif |
|---|
| | 506 | |
|---|
| r19ea8fe |
r685f8ed |
|
| 41 | 41 | { |
|---|
| 42 | 42 | Image1->Picture->Icon = p_intfGlobal->p_sys->p_window->Icon; |
|---|
| 43 | | LabelVersion->Caption = "Version " VLC_VERSION; |
|---|
| | 43 | LabelVersion->Caption = "Version " VERSION; |
|---|
| 44 | 44 | } |
|---|
| 45 | 45 | //--------------------------------------------------------------------------- |
|---|