Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
medialibrary
Commits
5533610a
Commit
5533610a
authored
Aug 09, 2016
by
Hugo Beauzée-Luyssen
Browse files
Include config.h from source files
parent
07e862a7
Changes
65
Hide whitespace changes
Inline
Side-by-side
src/Album.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <algorithm>
#include "Album.h"
...
...
src/AlbumTrack.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "AlbumTrack.h"
#include "Album.h"
#include "Artist.h"
...
...
src/Artist.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "Artist.h"
#include "Album.h"
#include "AlbumTrack.h"
...
...
src/AudioTrack.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "AudioTrack.h"
#include "Media.h"
...
...
src/Device.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "Device.h"
namespace
medialibrary
...
...
src/Factory.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "MediaLibrary.h"
extern
"C"
medialibrary
::
IMediaLibrary
*
NewMediaLibrary
()
...
...
src/File.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "File.h"
#include "Media.h"
...
...
src/Folder.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "File.h"
#include "Folder.h"
#include "Device.h"
...
...
src/Genre.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "Genre.h"
#include "Album.h"
...
...
src/History.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "History.h"
#include "database/SqliteTools.h"
...
...
src/Label.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <cassert>
#include <cstdlib>
#include <cstring>
...
...
src/Media.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <algorithm>
#include <cassert>
#include <cstdlib>
...
...
src/Movie.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "Movie.h"
#include "Media.h"
#include "database/SqliteTools.h"
...
...
src/Playlist.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "Playlist.h"
#include "Media.h"
...
...
src/Settings.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "Settings.h"
#include "database/SqliteTools.h"
...
...
src/Show.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "Show.h"
#include "Media.h"
...
...
src/ShowEpisode.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "ShowEpisode.h"
#include "database/SqliteTools.h"
#include "Show.h"
...
...
src/VideoTrack.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "VideoTrack.h"
#include "Media.h"
...
...
src/database/SqliteConnection.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "SqliteConnection.h"
#include "database/SqliteTools.h"
...
...
src/database/SqliteTools.cpp
View file @
5533610a
...
...
@@ -20,6 +20,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "SqliteTools.h"
namespace
medialibrary
...
...
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment