minor unused variable warning cleanup

* app/interface.c: minor unused variable warning cleanup

* plug-ins/bumpmap/bumpmap.c: another warning cleanup

* plug-ins/flame/flame.c: time(NULL) instead of time(0)

* plug-ins/gpc/Makefile.am
* plug-ins/megawidget/Makefile.am: install in $libdir instead of
$gimpplugindir since they *are* libs. Some archs try to exec them, and it
barfs

-Yosh
This commit is contained in:
Manish Singh 1998-06-28 06:33:38 +00:00
parent 14560bb94c
commit 83e02a396f
10 changed files with 21 additions and 10 deletions

View File

@ -1,3 +1,16 @@
Sat Jun 27 23:28:26 PDT 1998 Manish Singh <yosh@gimp.org>
* app/interface.c: minor unused variable warning cleanup
* plug-ins/bumpmap/bumpmap.c: another warning cleanup
* plug-ins/flame/flame.c: time(NULL) instead of time(0)
* plug-ins/gpc/Makefile.am
* plug-ins/megawidget/Makefile.am: install in $libdir instead
of $gimpplugindir since they *are* libs. Some archs try to
exec them, and it barfs
Sun Jun 28 00:23:52 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/tile.c : fix from Scott Goehring for a thread deadlock

3
TODO
View File

@ -410,4 +410,7 @@ gradient map layer/paint mode
map values from current gradient to value/intensity
script-fu
proper font selector instead of typing the silly thing in
maybe a color history too...

View File

@ -240,8 +240,6 @@ create_color_area (GtkWidget *parent)
GdkPixmap *
create_tool_pixmap (GtkWidget *parent, ToolType type)
{
int i;
/*
* FIXME this really should be dones without using the #defined tool names
* but it should work this way for now

View File

@ -240,8 +240,6 @@ create_color_area (GtkWidget *parent)
GdkPixmap *
create_tool_pixmap (GtkWidget *parent, ToolType type)
{
int i;
/*
* FIXME this really should be dones without using the #defined tool names
* but it should work this way for now

View File

@ -240,8 +240,6 @@ create_color_area (GtkWidget *parent)
GdkPixmap *
create_tool_pixmap (GtkWidget *parent, ToolType type)
{
int i;
/*
* FIXME this really should be dones without using the #defined tool names
* but it should work this way for now

View File

@ -87,6 +87,7 @@
#include <math.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -87,6 +87,7 @@
#include <math.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -171,7 +171,7 @@ static void run(char *name, int n_params, GParam * param, int *nreturn_vals,
*nreturn_vals = 1;
*return_vals = values;
SRAND_FUNC (time(0));
SRAND_FUNC (time(NULL));
run_mode = param[0].data.d_int32;

View File

@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(gimpplugindir)/plug-ins
pluginlibdir = $(libdir)
pluginlib_LIBRARIES = libgpc.a

View File

@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in
pluginlibdir = $(gimpplugindir)/plug-ins
pluginlibdir = $(libdir)
pluginlib_LIBRARIES = libmegawidget.a
@ -37,4 +37,3 @@ files:
echo $$subdir/$$file; \
done; \
done