Commit b4985b91 authored by Sam Hocevar's avatar Sam Hocevar

* ./Makefile.opts.in: removed configuration stuff which does not need to

    rebuild anything to Makefile.config, so that editing it will not cause
    a complete rebuild.
parent 2ead2268
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
############################################################################### ###############################################################################
ifeq ($(shell [ ! -r Makefile.opts ] && echo 1),) ifeq ($(shell [ ! -r Makefile.opts ] && echo 1),)
include Makefile.config
include Makefile.opts include Makefile.opts
endif endif
...@@ -366,7 +367,7 @@ dist: ...@@ -366,7 +367,7 @@ dist:
# Copy misc files # Copy misc files
cp FAQ AUTHORS COPYING TODO todo.pl ChangeLog* README* INSTALL* \ cp FAQ AUTHORS COPYING TODO todo.pl ChangeLog* README* INSTALL* \
ABOUT-NLS BUGS MODULES vlc.spec \ ABOUT-NLS BUGS MODULES vlc.spec \
Makefile Makefile.opts.in Makefile.dep Makefile.modules \ Makefile Makefile.*.in Makefile.dep Makefile.modules \
configure configure.in install-sh install-win32 macosx-dmg \ configure configure.in install-sh install-win32 macosx-dmg \
config.sub config.guess aclocal.m4 mkinstalldirs \ config.sub config.guess aclocal.m4 mkinstalldirs \
tmp/vlc/ tmp/vlc/
......
###############################################################################
# vlc (VideoLAN Client) options Makefile
# (c)1998 VideoLAN
###############################################################################
#
# Plugins to build
# WARNING: if you do not have a dynamic loader on your platform, remove
# the plugins in this line and put them as built-ins, otherwise your
# application won't be able to load them.
#
PLUGINS :=@PLUGINS@
#
# Built-in modules to build
# WARNING: do NOT put gtk and gnome together in this rule.
#
BUILTINS :=@BUILTINS@
...@@ -10,21 +10,7 @@ HAVE_MAKEFILE_OPTS = 1 ...@@ -10,21 +10,7 @@ HAVE_MAKEFILE_OPTS = 1
############################################################################### ###############################################################################
# #
# Plugins to build # Build options
# WARNING: if you do not have a dynamic loader on your platform, remove
# the plugins in this line and put them as built-ins, otherwise your
# application won't be able to load them.
#
PLUGINS :=@PLUGINS@
#
# Built-in modules to build
# WARNING: do NOT put gtk and gnome together in this rule.
#
BUILTINS :=@BUILTINS@
#
# Additional build options
# #
SYS = @SYS@ SYS = @SYS@
ALIASES =@ALIASES@ ALIASES =@ALIASES@
......
...@@ -8702,7 +8702,7 @@ done ...@@ -8702,7 +8702,7 @@ done
ac_given_srcdir=$srcdir ac_given_srcdir=$srcdir
ac_given_INSTALL="$INSTALL" ac_given_INSTALL="$INSTALL"
trap 'rm -fr `echo "Makefile.opts po/Makefile.in include/defs.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 trap 'rm -fr `echo "Makefile.config Makefile.opts po/Makefile.in include/defs.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
EOF EOF
cat >> $CONFIG_STATUS <<EOF cat >> $CONFIG_STATUS <<EOF
...@@ -8917,7 +8917,7 @@ EOF ...@@ -8917,7 +8917,7 @@ EOF
cat >> $CONFIG_STATUS <<EOF cat >> $CONFIG_STATUS <<EOF
CONFIG_FILES=\${CONFIG_FILES-"Makefile.opts po/Makefile.in"} CONFIG_FILES=\${CONFIG_FILES-"Makefile.config Makefile.opts po/Makefile.in"}
EOF EOF
cat >> $CONFIG_STATUS <<\EOF cat >> $CONFIG_STATUS <<\EOF
for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
......
...@@ -1717,7 +1717,7 @@ AC_SUBST(waveout_LDFLAGS) ...@@ -1717,7 +1717,7 @@ AC_SUBST(waveout_LDFLAGS)
AC_SUBST(x11_LDFLAGS) AC_SUBST(x11_LDFLAGS)
AC_SUBST(xvideo_LDFLAGS) AC_SUBST(xvideo_LDFLAGS)
AC_OUTPUT([Makefile.opts po/Makefile.in]) AC_OUTPUT([Makefile.config Makefile.opts po/Makefile.in])
echo " echo "
vlc configuration vlc configuration
......
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