aboutsummaryrefslogtreecommitdiffstats
path: root/art
diff options
context:
space:
mode:
Diffstat (limited to 'art')
-rw-r--r--art/ChangeLog4
-rw-r--r--art/about-box.pngbin39617 -> 52381 bytes
-rw-r--r--art/splash.pngbin61538 -> 77974 bytes
3 files changed, 4 insertions, 0 deletions
diff --git a/art/ChangeLog b/art/ChangeLog
index bf1d89ce00..8040b9d6b5 100644
--- a/art/ChangeLog
+++ b/art/ChangeLog
@@ -1,3 +1,7 @@
+2003-05-27 Jakub Steiner <jimmac@ximian.com>
+
+ * about-box.png, splash.png: Update copyright info
+
2003-05-21 Ettore Perazzoli <ettore@ximian.com>
* about-box.png, splash.png: New artwork from Jakub.
diff --git a/art/about-box.png b/art/about-box.png
index 9cf4e5b75c..11db319958 100644
--- a/art/about-box.png
+++ b/art/about-box.png
Binary files differ
diff --git a/art/splash.png b/art/splash.png
index 399e66db1c..0a29786661 100644
--- a/art/splash.png
+++ b/art/splash.png
Binary files differ
#n11'>11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
--- Makefile.FREEBSD.orig   Thu Aug 16 14:22:12 2001
+++ Makefile.FREEBSD    Thu Aug 16 14:21:42 2001
@@ -1,15 +1,13 @@
-CC = gcc
 OS = -DFREEBSD
 
-LIBDIR = -L/usr/X11R6/lib
-LIBDIR = -L/usr/X11R6/lib
-INCDIR = -I/usr/X11R6/include
+LIBDIR = -L${LOCALBASE}/lib -L${LOCALBASE}/lib
+INCDIR = -I${LOCALBASE}/include
 
 # Edit OSLIBS as appropriate to include OS specific libraries.
 
 OSLIBS = -lkvm
 LIBS   = -lXpm -lXext -lX11 -lm $(OSLIBS)
-CFLAGS = -Wall -O2 $(OS)
+CFLAGS += -Wall $(OS)
 
 OBJS = wmcube.o \
    ../wmgeneral/wmgeneral.o \
@@ -20,7 +18,7 @@
    $(CC) $(CFLAGS) $(INCDIR) -c $< -o $*.o
 
 wmcube: $(OBJS)
-   $(CC) -o wmcube $(OBJS) -lXext $(LIBDIR) $(LIBS)
+   $(CC) -o wmcube $(OBJS) $(LIBDIR) $(LIBS)
 
 all:: wmcube