remove bogus trailing slash
2003-07-13 Manish Singh <yosh@gimp.org> * app/composite/Makefile.am: remove bogus trailing slash * libgimp/gimp.c: use raise() instead of kill() with getpid()
This commit is contained in:

committed by
Manish Singh

parent
9d2b63962e
commit
473a15a4c3
@ -1,3 +1,9 @@
|
|||||||
|
2003-07-13 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* app/composite/Makefile.am: remove bogus trailing slash
|
||||||
|
|
||||||
|
* libgimp/gimp.c: use raise() instead of kill() with getpid()
|
||||||
|
|
||||||
2003-07-13 Helvetix Victorinox <helvetix@gimp.org>
|
2003-07-13 Helvetix Victorinox <helvetix@gimp.org>
|
||||||
|
|
||||||
* app/paint-funcs/Makefile.am include files from app/composite/
|
* app/paint-funcs/Makefile.am include files from app/composite/
|
||||||
|
@ -20,14 +20,14 @@ noinst_LIBRARIES = libappcomposite.a
|
|||||||
|
|
||||||
libappcomposite_mmx_sources = \
|
libappcomposite_mmx_sources = \
|
||||||
gimp-composite-mmx.c \
|
gimp-composite-mmx.c \
|
||||||
gimp-composite-mmx.h \
|
gimp-composite-mmx.h
|
||||||
|
|
||||||
libappcomposite_a_sources = \
|
libappcomposite_a_sources = \
|
||||||
gimp-composite.c \
|
gimp-composite.c \
|
||||||
gimp-composite-generic.c \
|
gimp-composite-generic.c \
|
||||||
gimp-composite-generic.h \
|
gimp-composite-generic.h \
|
||||||
gimp-composite.h \
|
gimp-composite.h \
|
||||||
gimp-composite-dispatch.c \
|
gimp-composite-dispatch.c \
|
||||||
gimp-composite-util.h
|
gimp-composite-util.h
|
||||||
|
|
||||||
libappcomposite_a_built_sources = gimp-composite-dispatch.c
|
libappcomposite_a_built_sources = gimp-composite-dispatch.c
|
||||||
|
@ -1276,7 +1276,7 @@ gimp_debug_stop (void)
|
|||||||
{
|
{
|
||||||
#ifndef G_OS_WIN32
|
#ifndef G_OS_WIN32
|
||||||
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Waiting for debugger...");
|
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Waiting for debugger...");
|
||||||
kill (getpid (), SIGSTOP);
|
raise (SIGSTOP);
|
||||||
#else
|
#else
|
||||||
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Debugging not implemented on Win32");
|
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Debugging not implemented on Win32");
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user