A line had been deleted by mistake.

* app/devices.c (devices_write_rc): A line had been deleted by
  mistake.

* app/frac.c: Removed some CRs.

* app/install.c (install_run): Typo.

* modules/module.def: New file.

* Makefile.am app/Makefile.am libgimp/Makefile.am
  modules/Makefile.am: Added Win32 implementation files to
  distributed file set.
This commit is contained in:
Tor Lillqvist 1999-03-08 21:59:55 +00:00
parent 93509593e3
commit c8f7dfc8fa
16 changed files with 60 additions and 15 deletions

View File

@ -1,3 +1,18 @@
1999-03-08 Tor Lillqvist <tml@iki.fi>
* app/devices.c (devices_write_rc): A line had been deleted by
mistake.
* app/frac.c: Removed some CRs.
* app/install.c (install_run): Typo.
* modules/module.def: New file.
* Makefile.am app/Makefile.am libgimp/Makefile.am
modules/Makefile.am: Added Win32 implementation files to
distributed file set.
Mon Mar 8 21:23:10 CET 1999 Marc Lehmann <pcg@goof.com>
* app/layer_cmds.c: updated gimp_layer_new and gimp_layer_set_mode to

View File

@ -6,6 +6,7 @@ bin_SCRIPTS = gimptool
EXTRA_DIST = \
README.i18n \
README.win32 \
ChangeLog.pre-1-0 \
MAINTAINERS \
TODO \
@ -15,12 +16,15 @@ EXTRA_DIST = \
gimp1_1_splash.ppm \
rmshm \
user_install \
user_install.bat \
gimp_tips.txt \
ps-menurc \
gimp.1 \
gimptool.1 \
gtkrc.forest2 \
gimp.m4
gimp.m4 \
gimprc.win32 \
config.h.win32
gimpdata_DATA = \
gimprc \

View File

@ -369,7 +369,11 @@ EXTRA_DIST = \
tools/penedit.xpm \
tools/pennorm.xpm \
tools/penstroke.xpm \
tools/ptoselection.xpm
tools/ptoselection.xpm \
makefile.msc \
gimp.def \
gimp.rc \
wilber.ico
CPPFLAGS = \

View File

@ -625,6 +625,8 @@ devices_write_rc (void)
char *filename;
FILE *fp;
devices_save_current_info ();
filename = gimp_personal_rc_file ("devicerc");
fp = fopen (filename, "wb");
g_free (filename);

View File

@ -554,8 +554,8 @@ install_run (InstallCallback callback)
}
else
executable = FALSE;
}
#endif /* !NATIVE_WIN32 */
}
if (executable == FALSE)
gtk_text_insert (GTK_TEXT (text), font, NULL, NULL,

View File

@ -938,8 +938,8 @@ compress_range(gint x, gint y, gint s_log) {
}
/* Quantize a value in the range 0.0 .. max to the range 0..imax
* ensuring that 0.0 is encoded as 0 and max as imax.
/* Quantize a value in the range 0.0 .. max to the range 0..imax
* ensuring that 0.0 is encoded as 0 and max as imax.
*/
static gint
quantize(double value, double max, gint imax) {
@ -1203,8 +1203,8 @@ typedef struct map_info_struct
map_info *map_head = NULL; /* head of the linked list of all affine maps */
/* Read the affine map for a range, or split the range if the compressor
did so in the function compress_range().
/* Read the affine map for a range, or split the range if the compressor
did so in the function compress_range().
*/
static void
decompress_range(gint x, gint y, gint s_log)
@ -1268,9 +1268,9 @@ decompress_range(gint x, gint y, gint s_log)
map->dom_x = map->dom_y = 0;
}
/* Scale the range and domain if necessary. This implementation
* uses only an integer scale to make sure that the union of all
* ranges is exactly the scaled image, that ranges never overlap,
/* Scale the range and domain if necessary. This implementation
* uses only an integer scale to make sure that the union of all
* ranges is exactly the scaled image, that ranges never overlap,
* and that all range sizes are even.
*/
if (image_scale != 1) {
@ -1347,7 +1347,7 @@ refine_image()
}
}
/* Go through all ranges to smooth the transition between adjacent
/* Go through all ranges to smooth the transition between adjacent
ranges, except those of minimal size.
*/
static void

View File

@ -625,6 +625,8 @@ devices_write_rc (void)
char *filename;
FILE *fp;
devices_save_current_info ();
filename = gimp_personal_rc_file ("devicerc");
fp = fopen (filename, "wb");
g_free (filename);

View File

@ -625,6 +625,8 @@ devices_write_rc (void)
char *filename;
FILE *fp;
devices_save_current_info ();
filename = gimp_personal_rc_file ("devicerc");
fp = fopen (filename, "wb");
g_free (filename);

View File

@ -554,8 +554,8 @@ install_run (InstallCallback callback)
}
else
executable = FALSE;
}
#endif /* !NATIVE_WIN32 */
}
if (executable == FALSE)
gtk_text_insert (GTK_TEXT (text), font, NULL, NULL,

View File

@ -554,8 +554,8 @@ install_run (InstallCallback callback)
}
else
executable = FALSE;
}
#endif /* !NATIVE_WIN32 */
}
if (executable == FALSE)
gtk_text_insert (GTK_TEXT (text), font, NULL, NULL,

View File

@ -554,8 +554,8 @@ install_run (InstallCallback callback)
}
else
executable = FALSE;
}
#endif /* !NATIVE_WIN32 */
}
if (executable == FALSE)
gtk_text_insert (GTK_TEXT (text), font, NULL, NULL,

View File

@ -625,6 +625,8 @@ devices_write_rc (void)
char *filename;
FILE *fp;
devices_save_current_info ();
filename = gimp_personal_rc_file ("devicerc");
fp = fopen (filename, "wb");
g_free (filename);

View File

@ -625,6 +625,8 @@ devices_write_rc (void)
char *filename;
FILE *fp;
devices_save_current_info ();
filename = gimp_personal_rc_file ("devicerc");
fp = fopen (filename, "wb");
g_free (filename);

View File

@ -16,7 +16,12 @@ INCLUDES = \
EXTRA_DIST = \
chain.xpm \
gimpfeatures.h.in
gimpfeatures.h.in \
makefile.msc \
gimp.def \
gimpi.def \
gimpui.def \
gimpfeatures.h.win32
lib_LTLIBRARIES = libgimp.la libgimpui.la
noinst_LIBRARIES = libgimpi.a

View File

@ -11,6 +11,10 @@ INCLUDES = \
$(GTK_CFLAGS) \
-I$(includedir)
EXTRA_DIST = \
makefile.msc \
module.def
module_LTLIBRARIES = \
libcolorsel_gtk.la \
libcolorsel_triangle.la

3
modules/module.def Normal file
View File

@ -0,0 +1,3 @@
EXPORTS
module_init
module_unload