1999-03-08 00:24:44 +08:00
|
|
|
@REM This file is executed by the GIMP. Do NOT run this yourself.
|
|
|
|
@echo off
|
|
|
|
mkdir %2
|
|
|
|
copy %1\gimprc_user %2\gimprc
|
1999-03-17 04:14:07 +08:00
|
|
|
copy %1\unitrc %2\unitrc
|
Update gcc instructions. Remove warning about gettext being GPL, as the
* README.win32: Update gcc instructions. Remove warning about
gettext being GPL, as the GIMP is GPL, too, of course, and it
thus doesn't matter.
* user_install.bat: Rename the template user gtkrc to gtkrc_user,
to reduce user confusion.
* app/main.c: Small change for gcc on Win32 compilation.
* */makefile.cygwin
* app/module_db.c: With newest gcc-2.95 -fnative-struct on Win32,
no need to have differently named DLLs (including modules) for
(built by) gcc and MSVC.
* app/module_db.c: Use g_strdup_printf() instead of
strlen(), g_malloc() and g_snprintf()
* libgimp/Makefile.am: No need to distribute gimpfeatures.h.win32,
the suitable gimpfeatures.h is built when making the dist.
* libgimp/gimpfeatures.h.win32: Removed.
* libgimp/makefile.cygwin
* libgimp/makefile.msc: Remove gimpfeatures.h.win32.
* libgimp/gimp.h: Win32 startup code changed a bit.
* plug-ins/makefile.cygwin
* plug-ins/makefile.msc: Add the winsnap unofficial plug-in.
* plug-ins/common/animationplay.c
* plug-ins/common/gz.c: (Win32) Hack aroung WinMain getting
clashing declarations because these guys include gdkx.h (which
includes windows.h), and gimp.h also declares WinMain on its own.
1999-07-22 03:52:20 +08:00
|
|
|
copy %1\gtkrc_user %2\gtkrc
|
1999-03-08 00:24:44 +08:00
|
|
|
mkdir %2\brushes
|
1999-09-25 02:28:35 +08:00
|
|
|
mkdir %2\generated_brushes
|
1999-03-08 00:24:44 +08:00
|
|
|
mkdir %2\gradients
|
|
|
|
mkdir %2\palettes
|
|
|
|
mkdir %2\patterns
|
|
|
|
mkdir %2\plug-ins
|
|
|
|
mkdir %2\modules
|
|
|
|
mkdir %2\scripts
|
1999-03-26 07:14:36 +08:00
|
|
|
mkdir %2\gfig
|
2000-02-04 23:12:17 +08:00
|
|
|
mkdir %2\gflare
|
1999-03-26 07:14:36 +08:00
|
|
|
mkdir %2\fractalexplorer
|
1999-08-28 05:06:00 +08:00
|
|
|
mkdir %2\gimpressionist
|
|
|
|
mkdir %2\gimpressionist\Brushes
|
|
|
|
mkdir %2\gimpressionist\Paper
|
|
|
|
mkdir %2\gimpressionist\Presets
|
|
|
|
mkdir %2\levels
|
|
|
|
mkdir %2\curves
|
1999-03-08 00:24:44 +08:00
|
|
|
|
|
|
|
pause
|