~ubuntu-branches/ubuntu/breezy/soundtracker/breezy

« back to all changes in this revision

Viewing changes to app/preferences.c

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2005-04-18 07:19:14 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050418071914-b9m1ptfdnz8mqm7a
Tags: 0.6.7-5
* disable alsa (closes: #286350, #304711)
- it was doing double-free.
* update jack support, not enabled.
- 02_jack_output: Patch from Kai Vehmanen available as
  http://eca.cx/download/soundtracker-0.6.7-pre6-kv3.tar.gz
  applied.
- Build-Depend on libjack0.80.0-dev
- remove --disable-jack from configure line
* change soundtracker.1 section from 1x to 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    FILE *file;
51
51
};
52
52
 
53
 
static char *
 
53
char *
54
54
prefs_get_prefsdir (void)
55
55
{
56
56
    static char xdir[128];
69
69
 
70
70
    if(stat(dir, &st) < 0) {
71
71
        mkdir(dir, S_IRUSR | S_IWUSR | S_IXUSR);
 
72
    strcat(dir, "/tmp");
 
73
        mkdir(dir, S_IRUSR | S_IWUSR | S_IXUSR);
72
74
        error_warning(_("A directory called '.soundtracker' has been created in your\nhome directory to store configuration files.\n"));
73
75
    }
74
76
}