You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
Index: narcisse81-0.0.4/src/Makefile |
|
--- narcisse81-0.0.4/src/Makefile.orig 2005-10-12 20:37:57 +0200 |
|
+++ narcisse81-0.0.4/src/Makefile 2007-11-10 18:18:42 +0100 |
|
@@ -1,6 +1,6 @@ |
|
CC=gcc |
|
LDLIBS=`gtk-config --libs` |
|
-CFLAGS=-Wall -Werror -g `gtk-config --cflags` |
|
+CFLAGS=`gtk-config --cflags` |
|
|
|
OBJECTS = main.o mainmenu.o global.o icon.o command.o \ |
|
ref_view.o ref_edit.o ref_dele.o ref_copy.o ref_plan.o \ |
|
@@ -24,7 +24,7 @@ |
|
user_view.o user_edit.o user_dele.o \ |
|
monitor.o connection.o about.o graph.o message.o |
|
|
|
-all: run |
|
+all: narcisse81 |
|
|
|
run: narcisse81 |
|
./narcisse81 -s |
|
@@ -33,7 +33,7 @@ |
|
$(CC) $(CFLAGS) -c $< -o $@ |
|
|
|
narcisse81: $(OBJECTS) |
|
- $(CC) $(LDLIBS) $(OBJECTS) -o narcisse81 |
|
+ $(CC) $(OBJECTS) -o narcisse81 $(LDLIBS) |
|
|
|
main.o: main.c global.h icon.h |
|
mainmenu.o: mainmenu.c global.h icon.h |
|
Index: narcisse81-0.0.4/src/main.c |
|
--- narcisse81-0.0.4/src/main.c.orig 2005-10-11 20:38:40 +0200 |
|
+++ narcisse81-0.0.4/src/main.c 2007-11-10 18:18:42 +0100 |
|
@@ -27,7 +27,7 @@ |
|
#include "global.h" |
|
#include "icon.h" |
|
|
|
-static GtkWidget *main_window; |
|
+GtkWidget *main_window; |
|
static GtkWidget *actual_form = NULL; |
|
static GtkWidget *form_container; |
|
static GtkWidget *menu_item_edit; |
|
Index: src/dio87d/r_cmdjob.c |
|
--- src/dio87d/r_cmdjob.c.orig 2007-10-19 17:37:41 +0200 |
|
+++ src/dio87d/r_cmdjob.c 2007-11-10 18:19:51 +0100 |
|
@@ -27,6 +27,7 @@ |
|
#include <unistd.h> |
|
#include <string.h> |
|
#include <assert.h> |
|
+#include <sys/signal.h> |
|
|
|
#include <libdg87/daemon.h> |
|
#include <libdg87/command.h>
|
|
|