]> git.sesse.net Git - vlc/blob - src/config/dirs.c
Add --data-path option. Access the src share directory now works from build tree.
[vlc] / src / config / dirs.c
1 /*****************************************************************************
2  * dirs.c: crossplatform directories configuration
3  *****************************************************************************
4  * Copyright (C) 2009 the VideoLAN team
5  *
6  * Authors: Antoine Cellerier <dionoea at videolan dot org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include <vlc_common.h>
28
29 #include "../libvlc.h"
30
31 #include "configuration.h"
32
33 /**
34  * Determines the shared data directory
35  *
36  * @return a string (always succeeds). Needs to be freed.
37  */
38 char *__config_GetDataDir( vlc_object_t *p_obj )
39 {
40     char *psz_path = config_GetPsz( p_obj, "data-path" );
41     if( psz_path && *psz_path )
42         return psz_path;
43     free( psz_path );
44     return strdup( config_GetDataDirDefault() );
45 }
46