Commit d0a61d5a authored by Gildas Bazin's avatar Gildas Bazin

* install-win32, Makefile.am: added the html faq to the win32 package.
* toolbox, msvc/*: few fixes to the msvc project files generation.
   (compiling plugins won't work yet because there are a few hacks that
    need to be done in order to compile dlls that use the c-runtime)
parent 4d3ce49c
...@@ -546,6 +546,9 @@ package-win32: ...@@ -546,6 +546,9 @@ package-win32:
cp po/$${i}.gmo tmp/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \ cp po/$${i}.gmo tmp/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
done done
cd doc/faq ; $(MAKE) html ; cd ../.. ;
cp doc/faq/index.html tmp/faq.htm ;
# Create package # Create package
wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} tmp/nsi wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} tmp/nsi
# Clean up # Clean up
......
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
;;;;;;;;;;;;; ;;;;;;;;;;;;;
; CHANGELOG ; ; CHANGELOG ;
;;;;;;;;;;;;; ;;;;;;;;;;;;;
; modifications by Gildas Bazin <gbazin@netcourrier.com> 01 Mar 2003
; . added a shortcut to the faq in the menu.
; modifications by Gildas Bazin <gbazin@netcourrier.com> 26 Feb 2003 ; modifications by Gildas Bazin <gbazin@netcourrier.com> 26 Feb 2003
; . added the locale directory. ; . added the locale directory.
; modifications by Samuel Hocevar <sam@zoy.org> 05 Apr 2002 ; modifications by Samuel Hocevar <sam@zoy.org> 05 Apr 2002
...@@ -62,6 +64,7 @@ Section "Install" ...@@ -62,6 +64,7 @@ Section "Install"
CreateDirectory "$SMPROGRAMS\VideoLAN" CreateDirectory "$SMPROGRAMS\VideoLAN"
CreateShortCut "$SMPROGRAMS\VideoLAN\vlc.lnk" "$INSTDIR\vlc.exe" CreateShortCut "$SMPROGRAMS\VideoLAN\vlc.lnk" "$INSTDIR\vlc.exe"
CreateShortCut "$SMPROGRAMS\VideoLAN\FAQ.lnk" "$INSTDIR\faq.htm"
CreateShortCut "$SMPROGRAMS\VideoLAN\Uninstall VLC.lnk" "$INSTDIR\uninstall.exe" CreateShortCut "$SMPROGRAMS\VideoLAN\Uninstall VLC.lnk" "$INSTDIR\uninstall.exe"
WriteUninstaller "uninstall.exe" WriteUninstaller "uninstall.exe"
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
#define HAVE_ARGZ_H 1 #define HAVE_ARGZ_H 1
/* Define to 1 if you have the <arpa/inet.h> header file. */ /* Define to 1 if you have the <arpa/inet.h> header file. */
#define HAVE_ARPA_INET_H 1 /* #undef HAVE_ARPA_INET_H */
/* Define to 1 if you have the `atoll' function. */ /* Define to 1 if you have the `atoll' function. */
/* #undef HAVE_ATOLL */ /* #undef HAVE_ATOLL */
......
...@@ -15,18 +15,6 @@ Package=<4> ...@@ -15,18 +15,6 @@ Package=<4>
############################################################################### ###############################################################################
Project: "plugins"=.\plugins.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "vlc"=.\vlc.dsp - Package Owner=<4> Project: "vlc"=.\vlc.dsp - Package Owner=<4>
Package=<5> Package=<5>
......
#! /bin/sh #! /bin/sh
## toolbox for the VLC media player ## toolbox for the VLC media player
## $Id: toolbox,v 1.9 2003/02/02 04:01:29 sam Exp $ ## $Id: toolbox,v 1.10 2003/03/01 19:25:13 gbazin Exp $
## ##
## Authors: Samuel Hocevar <sam@zoy.org> ## Authors: Samuel Hocevar <sam@zoy.org>
...@@ -238,6 +238,7 @@ EOF ...@@ -238,6 +238,7 @@ EOF
cat >> ${target} << EOF cat >> ${target} << EOF
# Begin Source File${M} # Begin Source File${M}
SOURCE="..\\${cfile}"${M} SOURCE="..\\${cfile}"${M}
# ADD CPP /D "__VLC__" /D "__PLUGIN__" /D "MODULE_NAME=${plugin}" /D "MODULE_NAME_IS_${plugin}" ${M}
# End Source File${M} # End Source File${M}
EOF EOF
done done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment