Changes: 4.3 New Features * [1208377] raise and iconify windows with mouse wheel * [1210550] makefile option to compile plugins statically * makefile help was added. run 'make help' to get it * deskno gui changes Fixed Bugs * deskno can't be staticaly compiled * typo fixes * Makefile errors for shared and static plugin build 4.2 Fixed Bugs * [1161921] menu image is too small * [1106944] ERROR used before int declaration breaks build * [1106946] -isystem needs space? * [1206383] makefile fails if CFLAGS set on command line * [1206385] DnD in launchbar fails if url has a space * fixed typos in error messages New Features * New code for panel's buttons. Affected plugins are wincmd, launchbar and menu * Depreceted option menu widget was replaced by combo box * sys tray is packed into shadowed in frame * pad is inserted betwean tasks in a taskbar * clock was made flat
20 lines
559 B
Text
20 lines
559 B
Text
$NetBSD: patch-aa,v 1.4 2005/06/30 22:38:09 leonardschmidt Exp $
|
|
|
|
--- Makefile.common.orig 2005-05-31 15:39:18.000000000 +0000
|
|
+++ Makefile.common
|
|
@@ -83,13 +83,13 @@ endif
|
|
# compile flags
|
|
|
|
RM = rm -f
|
|
-CC = gcc
|
|
+#CC = gcc
|
|
AR = ar
|
|
LIBS = $(shell pkg-config --libs gtk+-2.0 gdk-pixbuf-2.0 gdk-pixbuf-xlib-2.0) -L/usr/X11R6/lib -lXmu
|
|
INCS2 = $(shell pkg-config --cflags gtk+-2.0 gdk-pixbuf-2.0 gdk-pixbuf-xlib-2.0)
|
|
INCS := $(INCS2:-I%=-isystem %)
|
|
|
|
-CFLAGS = -O2
|
|
+#CFLAGS = -O2
|
|
ifeq (1,$(DEVEL))
|
|
override CFLAGS += -g
|
|
endif
|