diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-07-22 02:35:58 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-07-22 02:35:58 +0000 |
commit | 778ce44486d91b893fb9a6dbf8e444df27d735b4 (patch) | |
tree | c7faa1c7f0ee9d0a2b7860030b74a8b75c346859 /x11/bbrun/files | |
parent | e19c294b9bc7325130fa15fdf9f2ef1387d0a9a8 (diff) | |
download | ports-778ce44486d91b893fb9a6dbf8e444df27d735b4.tar.gz ports-778ce44486d91b893fb9a6dbf8e444df27d735b4.zip |
Notes
Diffstat (limited to 'x11/bbrun/files')
-rw-r--r-- | x11/bbrun/files/patch-Makefile | 14 | ||||
-rw-r--r-- | x11/bbrun/files/patch-bbrun.c | 23 |
2 files changed, 32 insertions, 5 deletions
diff --git a/x11/bbrun/files/patch-Makefile b/x11/bbrun/files/patch-Makefile index 9c48d6f7ce99..bffa640c44f0 100644 --- a/x11/bbrun/files/patch-Makefile +++ b/x11/bbrun/files/patch-Makefile @@ -1,25 +1,29 @@ ---- Makefile.orig Wed Feb 6 15:05:51 2002 -+++ Makefile Tue Jun 18 01:37:36 2002 -@@ -1,16 +1,17 @@ +--- Makefile.orig Sat Jul 20 12:47:49 2002 ++++ Makefile Sat Jul 20 20:24:41 2002 +@@ -1,16 +1,15 @@ -CC = gcc -LIBS = -lXpm `gtk-config --libs` -CFLAGS = `gtk-config --cflags` +LIBS = -lXpm `${GTK_CONFIG} --libs` -L${LOCALBASE}/lib -lgnugetopt -+CFLAGS += `${GTK_CONFIG} --cflags` -Wall ++CFLAGS = `${GTK_CONFIG} --cflags` -Wall OBJS = bbrun.o \ ../wmgeneral/wmgeneral.o \ ../wmgeneral/misc.o \ ../wmgeneral/list.o .c.o: -- $(CC) -c -O2 -Wall $< -o $*.o $(CFLAGS) +- $(CC) -g -c -O2 -Wall $< -o $*.o $(CFLAGS) + $(CC) -c $< -o $*.o $(CFLAGS) bbrun: $(OBJS) - $(CC) -Wall -g -o bbrun $^ $(LIBS) + $(CC) -o bbrun $^ $(LIBS) + install: + cp bbrun /usr/local/bin/ +@@ -18,3 +17,5 @@ clean: rm -f bbrun $(OBJS) + rm -f core + +all: bbrun diff --git a/x11/bbrun/files/patch-bbrun.c b/x11/bbrun/files/patch-bbrun.c new file mode 100644 index 000000000000..376c2989112b --- /dev/null +++ b/x11/bbrun/files/patch-bbrun.c @@ -0,0 +1,23 @@ +--- bbrun.c.orig Sat Jul 20 13:24:53 2002 ++++ bbrun.c Sat Jul 20 20:31:49 2002 +@@ -3,7 +3,11 @@ + #include <string.h> + #include <getopt.h> + #include <unistd.h> ++#ifdef __FreeBSD__ ++#include <sys/types.h> ++#else + #include <linux/types.h> ++#endif + #include <X11/xpm.h> + #include <gtk/gtk.h> + #include <gdk/gdkkeysyms.h> +@@ -20,7 +24,7 @@ + #define ADVANCED_WINDOW_ROWS 3 + #define ADVANCED_WINDOW_COLS 10 + +-#define u32 __u32 ++#define u32 u_int32_t + #define __DEBUG__ 0 + #define VERSION "1.4" + |