Commit 632c8544 authored by Christophe Mutricy's avatar Christophe Mutricy

Move qt4/dialogs/about.hpp to include/vlc_about.h so all interfaces modules can use it.

The change in configure.ac is suboptimal. It would be better to change DEFAULT_INCLUDES to use -I${top_builddir}/include rather than -I${top_builddir}. Automake wizard requested.
parent d074490d
...@@ -6057,7 +6057,7 @@ dnl Handle substvars that use $(top_srcdir) ...@@ -6057,7 +6057,7 @@ dnl Handle substvars that use $(top_srcdir)
dnl dnl
VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config" VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
AC_SUBST(VLC_CONFIG) AC_SUBST(VLC_CONFIG)
CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include" CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include -I\$(top_builddir)/include"
dnl dnl
dnl Restore *FLAGS dnl Restore *FLAGS
......
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
AUTOMAKE_OPTIONS = subdir-objects AUTOMAKE_OPTIONS = subdir-objects
MOSTLYCLEANFILES = $(UIH) MOSTLYCLEANFILES = $(UIH)
CLEANFILES += dialogs/about.hpp
SUFFIXES += .ui .h .hpp .moc.cpp SUFFIXES += .ui .h .hpp .moc.cpp
nodist_SOURCES_qt4 = \ nodist_SOURCES_qt4 = \
...@@ -63,7 +62,7 @@ nodist_SOURCES_qt4 = \ ...@@ -63,7 +62,7 @@ nodist_SOURCES_qt4 = \
ui/sout.h ui/sout.h
if ENABLE_QT4 if ENABLE_QT4
BUILT_SOURCES += $(nodist_SOURCES_qt4) dialogs/about.hpp BUILT_SOURCES += $(nodist_SOURCES_qt4)
endif endif
resources.cpp: res.qrc resources.cpp: res.qrc
...@@ -80,21 +79,7 @@ resources.cpp: res.qrc ...@@ -80,21 +79,7 @@ resources.cpp: res.qrc
sed -e 's/Q_(\"_(\\\"\(.*\)\\\")"/Q_("\1"/' $@.tmp >$@ sed -e 's/Q_(\"_(\\\"\(.*\)\\\")"/Q_("\1"/' $@.tmp >$@
rm -f $@.tmp rm -f $@.tmp
dialogs/help.cpp: dialogs/about.hpp dialogs/help.cpp: $(top_builddir)/include/vlc_about.h
dialogs/about.hpp: Modules.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
mkdir -p -- dialogs
echo "/* Automatically generated file - DO NOT EDIT */" > dialogs/about.hpp.tmp
echo "static const char psz_license[] =" >> dialogs/about.hpp.tmp
cat $(top_srcdir)/COPYING | sed s/'"'/'\\"'/g | awk '{ print "\""$$0"\\n\"" }' >> dialogs/about.hpp.tmp
echo ";" >> dialogs/about.hpp.tmp
echo "static const char psz_thanks[] =" >> dialogs/about.hpp.tmp
grep -v '$$Id:' $(top_srcdir)/THANKS | sed s/'"'/'\\"'/g | awk '{ print "\""$$0"\\n\"" }'|sed s/"<.*.> "// >> dialogs/about.hpp.tmp
echo ";" >> dialogs/about.hpp.tmp
echo "static const char psz_authors[] =" >> dialogs/about.hpp.tmp
grep N: $(top_srcdir)/AUTHORS | cut -d" " -f 2- | sed s/'"'/'\\"'/g | awk '{ print "\""$$0"\\n\"" }' >> dialogs/about.hpp.tmp
echo ";" >> dialogs/about.hpp.tmp
mv -f -- dialogs/about.hpp.tmp dialogs/about.hpp
SOURCES_qt4 = qt4.cpp \ SOURCES_qt4 = qt4.cpp \
menus.cpp \ menus.cpp \
...@@ -142,7 +127,6 @@ noinst_HEADERS = \ ...@@ -142,7 +127,6 @@ noinst_HEADERS = \
dialogs/preferences.hpp \ dialogs/preferences.hpp \
dialogs/interaction.hpp \ dialogs/interaction.hpp \
dialogs/sout.hpp \ dialogs/sout.hpp \
dialogs/about.hpp \
dialogs/help.hpp \ dialogs/help.hpp \
dialogs/gototime.hpp \ dialogs/gototime.hpp \
dialogs/open.hpp \ dialogs/open.hpp \
......
...@@ -7,7 +7,7 @@ AUTOMAKE_OPTIONS = subdir-objects ...@@ -7,7 +7,7 @@ AUTOMAKE_OPTIONS = subdir-objects
NULL = NULL =
EXTRA_DIST = extras/COPYING modules/builtin.h.in libvlc.sym EXTRA_DIST = extras/COPYING modules/builtin.h.in libvlc.sym
BUILT_SOURCES = modules/builtin.h misc/revision.c BUILT_SOURCES = modules/builtin.h misc/revision.c ../include/vlc_about.h
CLEANFILES = $(BUILT_SOURCES) CLEANFILES = $(BUILT_SOURCES)
############################################################################### ###############################################################################
...@@ -112,6 +112,20 @@ endif ...@@ -112,6 +112,20 @@ endif
modules/modules.c: modules/builtin.h modules/modules.c: modules/builtin.h
../include/vlc_about.h: Makefile.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
rm -f -- "$@.tmp"
mkdir -p -- ../include
echo "/* Automatically generated file - DO NOT EDIT */" > "$@.tmp"
echo "static const char psz_license[] =" >> "$@.tmp"
cat $(top_srcdir)/COPYING | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }' >> "$@.tmp"
echo ";" >> "$@.tmp"
echo "static const char psz_thanks[] =" >> "$@.tmp"
grep -v '$$Id:' $(top_srcdir)/THANKS | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }'|sed s/"<.*.> "// >> "$@.tmp"
echo ";" >> "$@.tmp"
echo "static const char psz_authors[] =" >> "$@.tmp"
grep N: $(top_srcdir)/AUTHORS | cut -d" " -f 2- | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }' >> "$@.tmp"
echo ";" >> "$@.tmp"
mv -f -- "$@.tmp" "$@"
############################################################################### ###############################################################################
# Building libvlc # Building libvlc
############################################################################### ###############################################################################
......
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