ensure .ardour directory is created, update build docs
authorTim Mayberry <mojofunk@gmail.com>
Sun, 19 Mar 2006 12:33:15 +0000 (12:33 +0000)
committerTim Mayberry <mojofunk@gmail.com>
Sun, 19 Mar 2006 12:33:15 +0000 (12:33 +0000)
git-svn-id: svn://localhost/trunk/ardour2@406 d708f5d6-7413-0410-9779-e7cbd77b26cf

DOCUMENTATION/BUILD
libs/ardour/globals.cc

index 0ad880aa29568daee153e6f4ca64f739c568be57..b43a876f33ae0c4233aa9e4f39c4895b39eb45bc 100644 (file)
@@ -60,11 +60,9 @@ requirement.
           - see ftp://ftp.gnome.org/pub/GNOME/MIRRORS.html
              and then follow to sources/libart_lgpl
            
-       glib 1.2   (http://www.gtk.org)
-           glib-1.2.8 (included with most distributions)
+       Glib 2.6   (http://www.gtk.org)
 
-       GTK+ 1.2   (http://www.gtk.org)
-       gtk+-1.2.8 (included with most distributions)
+       GTK+ 2.6   (http://www.gtk.org)
 
        libglade2 (http://www.gnome.org/)
        unsure of minimum version. XXX todo.
index 9c3cadafe2b3103447b0c82e96dd7e04c718767a..e3953860e27f3d9a369470eb44f7fcb283f88172 100644 (file)
@@ -311,7 +311,11 @@ ARDOUR::get_user_ardour_path ()
                
        path = envvar;
        path += "/.ardour/";
-       
+
+       /* create it if necessary */
+
+       mkdir (path.c_str (), 0755);
+
        return path;
 }