1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

* bootstrap:

+ Minor indentation fix.
  * toolbox:
    + Exclude vlc_symbols.h and modules_{plugins,builtins}.h from POTFILES.in.
  * po/*:
    + Re-ran toolbox --update po.
This commit is contained in:
Sam Hocevar 2003-07-16 15:52:05 +00:00
parent 1f570ed08b
commit 0bf20368a6
14 changed files with 3018 additions and 2591 deletions

View File

@ -1,7 +1,7 @@
#! /bin/sh #! /bin/sh
## bootstrap file for the VLC media player ## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.68 2003/07/08 13:40:57 sam Exp $ ## $Id: bootstrap,v 1.69 2003/07/16 15:52:04 sam Exp $
## ##
## Authors: Sam Hocevar <sam@zoy.org> ## Authors: Sam Hocevar <sam@zoy.org>
@ -318,14 +318,14 @@ if automake-1.7 --version >/dev/null 2>&1; then
amvers="-1.7" amvers="-1.7"
# If we also have 1.6, use it instead because it is faster # If we also have 1.6, use it instead because it is faster
if automake-1.6 --version >/dev/null 2>&1; then if automake-1.6 --version >/dev/null 2>&1; then
if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" ">" "1.6.1" > /dev/null 2>&1 if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" ">" "1.6.1" > /dev/null 2>&1; then
then amvers="-1.6" amvers="-1.6"
fi fi
fi fi
elif automake-1.6 --version >/dev/null 2>&1; then elif automake-1.6 --version >/dev/null 2>&1; then
amvers="-1.6" amvers="-1.6"
if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" "<=" "1.6.1" > /dev/null 2>&1 if expr "`automake-1.6 --version | sed -e '1s/[^0-9]*//' -e q`" "<=" "1.6.1" > /dev/null 2>&1; then
then AUTOMAKESUCKS=yes AUTOMAKESUCKS=yes
fi fi
elif automake-1.5 --version >/dev/null 2>&1; then elif automake-1.5 --version >/dev/null 2>&1; then
INSTALLSUCKS=yes INSTALLSUCKS=yes

View File

@ -590,7 +590,9 @@ modules/misc/dummy/dummy.c
modules/misc/dummy/dummy.h modules/misc/dummy/dummy.h
modules/misc/dummy/input.c modules/misc/dummy/input.c
modules/misc/dummy/interface.c modules/misc/dummy/interface.c
modules/misc/dummy/renderer.c
modules/misc/dummy/vout.c modules/misc/dummy/vout.c
modules/misc/freetype.c
modules/misc/gtk_main.c modules/misc/gtk_main.c
modules/misc/httpd.c modules/misc/httpd.c
modules/misc/logger/logger.c modules/misc/logger/logger.c
@ -648,7 +650,6 @@ modules/video_filter/filter_common.h
modules/video_filter/invert.c modules/video_filter/invert.c
modules/video_filter/logo.c modules/video_filter/logo.c
modules/video_filter/motionblur.c modules/video_filter/motionblur.c
modules/video_filter/osd_text.c
modules/video_filter/transform.c modules/video_filter/transform.c
modules/video_filter/wall.c modules/video_filter/wall.c
modules/video_output/aa.c modules/video_output/aa.c

519
po/de.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

511
po/fr.po

File diff suppressed because it is too large Load Diff

506
po/it.po

File diff suppressed because it is too large Load Diff

512
po/ja.po

File diff suppressed because it is too large Load Diff

517
po/nl.po

File diff suppressed because it is too large Load Diff

511
po/no.po

File diff suppressed because it is too large Load Diff

511
po/pl.po

File diff suppressed because it is too large Load Diff

527
po/ru.po

File diff suppressed because it is too large Load Diff

525
po/sv.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

11
toolbox
View File

@ -1,7 +1,7 @@
#! /bin/sh #! /bin/sh
## toolbox for the VLC media player ## toolbox for the VLC media player
## $Id: toolbox,v 1.41 2003/07/14 20:36:55 sigmunau Exp $ ## $Id: toolbox,v 1.42 2003/07/16 15:52:04 sam Exp $
## ##
## Authors: Samuel Hocevar <sam@zoy.org> ## Authors: Samuel Hocevar <sam@zoy.org>
@ -369,11 +369,13 @@ then
echo "# automatically created by toolbox --update-po" > po/POTFILES.in echo "# automatically created by toolbox --update-po" > po/POTFILES.in
echo "" >> po/POTFILES.in echo "" >> po/POTFILES.in
echo "# main sources" >> po/POTFILES.in echo "# main sources" >> po/POTFILES.in
find include src -name '*.[chm]' -o -name '*.[ch]pp' | sort >> po/POTFILES.in find include src -name '*.[chm]' -o -name '*.[ch]pp' \
| grep -v '\(vlc_symbols\|misc/modules_\)' \
| sort >> po/POTFILES.in
echo "" >> po/POTFILES.in echo "" >> po/POTFILES.in
echo "# modules" >> po/POTFILES.in echo "# modules" >> po/POTFILES.in
find modules -name '*.[chm]' -o -name '*.[ch]pp' \ find modules -name '*.[chm]' -o -name '*.[ch]pp' \
| grep -v '\(gui/win32/\|\.moc\.\)' \ | grep -v '\(gui/win32/\)' \
| sort >> po/POTFILES.in | sort >> po/POTFILES.in
# clean old potfiles # clean old potfiles
cd po cd po
@ -569,6 +571,9 @@ then
# FIXME: a lot of Makefiles are still there # FIXME: a lot of Makefiles are still there
fi fi
##
## Build a woody-friendly package
##
if test "${action}" = "woody" if test "${action}" = "woody"
then then
set -ex set -ex