diff -rc gtk+-1.2.10.orig/examples/aspectframe/Makefile gtk+-1.2.10/examples/aspectframe/Makefile
*** gtk+-1.2.10.orig/examples/aspectframe/Makefile	Sat Nov  7 10:11:57 1998
--- gtk+-1.2.10/examples/aspectframe/Makefile	Mon Jul 16 11:35:24 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  aspectframe: aspectframe.c 
! 	$(CC) `gtk-config --cflags`  aspectframe.c -o aspectframe `gtk-config --libs`
  
  clean: 
  	rm -f *.o aspectframe
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  aspectframe: aspectframe.c 
! 	$(CC) `gtk-config --cflags`  aspectframe.c -o aspectframe `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o aspectframe
diff -rc gtk+-1.2.10.orig/examples/base/Makefile gtk+-1.2.10/examples/base/Makefile
*** gtk+-1.2.10.orig/examples/base/Makefile	Mon Dec  7 09:18:51 1998
--- gtk+-1.2.10/examples/base/Makefile	Mon Jul 16 16:57:16 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  base: base.c 
! 	$(CC) `gtk-config --cflags`  base.c -o base `gtk-config --libs`
  
  clean: 
  	rm -f *.o base
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  base: base.c 
! 	$(CC) `gtk-config --cflags`  base.c -o base `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o base
diff -rc gtk+-1.2.10.orig/examples/buttons/Makefile gtk+-1.2.10/examples/buttons/Makefile
*** gtk+-1.2.10.orig/examples/buttons/Makefile	Sat Nov  7 10:11:58 1998
--- gtk+-1.2.10/examples/buttons/Makefile	Mon Jul 16 16:57:33 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  buttons: buttons.c 
! 	$(CC) `gtk-config --cflags`  buttons.c -o buttons `gtk-config --libs`
  
  clean: 
  	rm -f *.o buttons
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  buttons: buttons.c 
! 	$(CC) `gtk-config --cflags`  buttons.c -o buttons `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o buttons
diff -rc gtk+-1.2.10.orig/examples/calendar/Makefile gtk+-1.2.10/examples/calendar/Makefile
*** gtk+-1.2.10.orig/examples/calendar/Makefile	Wed Feb 23 04:55:56 2000
--- gtk+-1.2.10/examples/calendar/Makefile	Mon Jul 16 11:33:59 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  calendar: calendar.c
! 	$(CC) `gtk-config --cflags` calendar.c -o calendar `gtk-config --libs`
  
  clean: 
  	rm -f calendar
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  calendar: calendar.c
! 	$(CC) `gtk-config --cflags` calendar.c -o calendar `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f calendar
Binary files gtk+-1.2.10.orig/examples/calendar/calendar and gtk+-1.2.10/examples/calendar/calendar differ
diff -rc gtk+-1.2.10.orig/examples/clist/Makefile gtk+-1.2.10/examples/clist/Makefile
*** gtk+-1.2.10.orig/examples/clist/Makefile	Sat Nov  7 10:12:01 1998
--- gtk+-1.2.10/examples/clist/Makefile	Mon Jul 16 16:57:58 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  clist: clist.c 
! 	$(CC) `gtk-config --cflags`  clist.c -o clist `gtk-config --libs`
  
  clean: 
  	rm -f *.o clist
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  clist: clist.c 
! 	$(CC) `gtk-config --cflags`  clist.c -o clist `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o clist
diff -rc gtk+-1.2.10.orig/examples/entry/Makefile gtk+-1.2.10/examples/entry/Makefile
*** gtk+-1.2.10.orig/examples/entry/Makefile	Sat Nov  7 10:12:02 1998
--- gtk+-1.2.10/examples/entry/Makefile	Mon Jul 16 16:58:12 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  entry: entry.c 
! 	$(CC) `gtk-config --cflags`  entry.c -o entry `gtk-config --libs`
  
  clean: 
  	rm -f *.o entry
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  entry: entry.c 
! 	$(CC) `gtk-config --cflags`  entry.c -o entry `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o entry
diff -rc gtk+-1.2.10.orig/examples/eventbox/Makefile gtk+-1.2.10/examples/eventbox/Makefile
*** gtk+-1.2.10.orig/examples/eventbox/Makefile	Sat Nov  7 10:12:03 1998
--- gtk+-1.2.10/examples/eventbox/Makefile	Mon Jul 16 16:58:29 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  eventbox: eventbox.c 
! 	$(CC) `gtk-config --cflags`  eventbox.c -o eventbox `gtk-config --libs`
  
  clean: 
  	rm -f *.o eventbox
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  eventbox: eventbox.c 
! 	$(CC) `gtk-config --cflags`  eventbox.c -o eventbox `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o eventbox
diff -rc gtk+-1.2.10.orig/examples/filesel/Makefile gtk+-1.2.10/examples/filesel/Makefile
*** gtk+-1.2.10.orig/examples/filesel/Makefile	Sat Nov  7 10:12:04 1998
--- gtk+-1.2.10/examples/filesel/Makefile	Mon Jul 16 16:58:40 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  filesel: filesel.c 
! 	$(CC) `gtk-config --cflags`  filesel.c -o filesel `gtk-config --libs`
  
  clean: 
  	rm -f *.o filesel
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  filesel: filesel.c 
! 	$(CC) `gtk-config --cflags`  filesel.c -o filesel `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o filesel
diff -rc gtk+-1.2.10.orig/examples/fixed/Makefile gtk+-1.2.10/examples/fixed/Makefile
*** gtk+-1.2.10.orig/examples/fixed/Makefile	Fri Jan 29 03:53:13 1999
--- gtk+-1.2.10/examples/fixed/Makefile	Mon Jul 16 16:58:55 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  fixed: fixed.c 
! 	$(CC) `gtk-config --cflags`  fixed.c -o fixed `gtk-config --libs`
  
  clean: 
  	rm -f *.o fixed
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  fixed: fixed.c 
! 	$(CC) `gtk-config --cflags`  fixed.c -o fixed `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o fixed
diff -rc gtk+-1.2.10.orig/examples/frame/Makefile gtk+-1.2.10/examples/frame/Makefile
*** gtk+-1.2.10.orig/examples/frame/Makefile	Fri Jan 29 03:53:14 1999
--- gtk+-1.2.10/examples/frame/Makefile	Mon Jul 16 16:59:07 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  frame: frame.c 
! 	$(CC) `gtk-config --cflags`  frame.c -o frame `gtk-config --libs`
  
  clean: 
  	rm -f *.o frame
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  frame: frame.c 
! 	$(CC) `gtk-config --cflags`  frame.c -o frame `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o frame
diff -rc gtk+-1.2.10.orig/examples/gtkdial/Makefile gtk+-1.2.10/examples/gtkdial/Makefile
*** gtk+-1.2.10.orig/examples/gtkdial/Makefile	Sat Nov  7 10:12:06 1998
--- gtk+-1.2.10/examples/gtkdial/Makefile	Mon Jul 16 16:59:31 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  dial_test: gtkdial.o dial_test.o
! 	$(CC) dial_test.o gtkdial.o -o dial_test `gtk-config --libs`
  
  dial_test.o: dial_test.c gtkdial.h
  	$(CC) `gtk-config --cflags` -c dial_test.c -o dial_test.o
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  dial_test: gtkdial.o dial_test.o
! 	$(CC) dial_test.o gtkdial.o -o dial_test `gtk-config --libs` $(LDFLAGS)
  
  dial_test.o: dial_test.c gtkdial.h
  	$(CC) `gtk-config --cflags` -c dial_test.c -o dial_test.o
diff -rc gtk+-1.2.10.orig/examples/helloworld/Makefile gtk+-1.2.10/examples/helloworld/Makefile
*** gtk+-1.2.10.orig/examples/helloworld/Makefile	Sat Nov  7 10:12:07 1998
--- gtk+-1.2.10/examples/helloworld/Makefile	Mon Jul 16 16:59:44 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  helloworld: helloworld.c 
! 	$(CC) `gtk-config --cflags`  helloworld.c -o helloworld `gtk-config --libs`
  
  clean: 
  	rm -f *.o helloworld
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  helloworld: helloworld.c 
! 	$(CC) `gtk-config --cflags`  helloworld.c -o helloworld `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o helloworld
diff -rc gtk+-1.2.10.orig/examples/helloworld2/Makefile gtk+-1.2.10/examples/helloworld2/Makefile
*** gtk+-1.2.10.orig/examples/helloworld2/Makefile	Sat Nov  7 10:12:09 1998
--- gtk+-1.2.10/examples/helloworld2/Makefile	Mon Jul 16 16:59:57 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  helloworld2: helloworld2.c 
! 	$(CC) `gtk-config --cflags`  helloworld2.c -o helloworld2 `gtk-config --libs`
  
  clean: 
  	rm -f *.o helloworld2
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  helloworld2: helloworld2.c 
! 	$(CC) `gtk-config --cflags`  helloworld2.c -o helloworld2 `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o helloworld2
diff -rc gtk+-1.2.10.orig/examples/list/Makefile gtk+-1.2.10/examples/list/Makefile
*** gtk+-1.2.10.orig/examples/list/Makefile	Sat Nov  7 10:12:10 1998
--- gtk+-1.2.10/examples/list/Makefile	Mon Jul 16 17:00:10 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  list: list.c 
! 	$(CC) `gtk-config --cflags`  list.c -o list `gtk-config --libs`
  
  clean: 
  	rm -f *.o list
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  list: list.c 
! 	$(CC) `gtk-config --cflags`  list.c -o list `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o list
diff -rc gtk+-1.2.10.orig/examples/menu/Makefile gtk+-1.2.10/examples/menu/Makefile
*** gtk+-1.2.10.orig/examples/menu/Makefile	Thu Jan 28 04:35:00 1999
--- gtk+-1.2.10/examples/menu/Makefile	Mon Jul 16 17:00:47 2001
***************
*** 1,13 ****
  
  CC = gcc
  
  all: menu itemfactory
  
  menu: menu.c 
! 	$(CC) `gtk-config --cflags` menu.c -o menu `gtk-config --libs`
  
  itemfactory: itemfactory.c
! 	$(CC) `gtk-config --cflags` itemfactory.c -o itemfactory `gtk-config --libs`
  
  clean: 
  	rm -f *.o menu itemfactory
--- 1,15 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  all: menu itemfactory
  
  menu: menu.c 
! 	$(CC) `gtk-config --cflags` menu.c -o menu `gtk-config --libs` $(LDFLAGS)
  
  itemfactory: itemfactory.c
! 	$(CC) `gtk-config --cflags` itemfactory.c -o itemfactory `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o menu itemfactory
diff -rc gtk+-1.2.10.orig/examples/notebook/Makefile gtk+-1.2.10/examples/notebook/Makefile
*** gtk+-1.2.10.orig/examples/notebook/Makefile	Sat Nov  7 10:12:12 1998
--- gtk+-1.2.10/examples/notebook/Makefile	Mon Jul 16 17:01:00 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  notebook: notebook.c 
! 	$(CC) `gtk-config --cflags`  notebook.c -o notebook `gtk-config --libs`
  
  clean: 
  	rm -f *.o notebook
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  notebook: notebook.c 
! 	$(CC) `gtk-config --cflags`  notebook.c -o notebook `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o notebook
diff -rc gtk+-1.2.10.orig/examples/packbox/Makefile gtk+-1.2.10/examples/packbox/Makefile
*** gtk+-1.2.10.orig/examples/packbox/Makefile	Sat Nov  7 10:12:14 1998
--- gtk+-1.2.10/examples/packbox/Makefile	Mon Jul 16 17:01:11 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  packbox: packbox.c 
! 	$(CC) `gtk-config --cflags`  packbox.c -o packbox `gtk-config --libs`
  
  clean: 
  	rm -f *.o packbox
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  packbox: packbox.c 
! 	$(CC) `gtk-config --cflags`  packbox.c -o packbox `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o packbox
diff -rc gtk+-1.2.10.orig/examples/packer/Makefile gtk+-1.2.10/examples/packer/Makefile
*** gtk+-1.2.10.orig/examples/packer/Makefile	Tue Jun  1 12:26:22 1999
--- gtk+-1.2.10/examples/packer/Makefile	Mon Jul 16 17:01:23 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  packer: pack.c 
! 	$(CC) -g `gtk-config --cflags`  pack.c -o packer `gtk-config --libs`
  
  clean: 
  	rm -f *.o packer
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  packer: pack.c 
! 	$(CC) -g `gtk-config --cflags`  pack.c -o packer `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o packer
diff -rc gtk+-1.2.10.orig/examples/paned/Makefile gtk+-1.2.10/examples/paned/Makefile
*** gtk+-1.2.10.orig/examples/paned/Makefile	Sat Nov  7 10:12:16 1998
--- gtk+-1.2.10/examples/paned/Makefile	Mon Jul 16 17:01:43 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  paned: paned.c 
! 	$(CC) `gtk-config --cflags`  paned.c -o paned `gtk-config --libs`
  
  clean: 
  	rm -f *.o paned
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  paned: paned.c 
! 	$(CC) `gtk-config --cflags`  paned.c -o paned `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o paned
diff -rc gtk+-1.2.10.orig/examples/pixmap/Makefile gtk+-1.2.10/examples/pixmap/Makefile
*** gtk+-1.2.10.orig/examples/pixmap/Makefile	Sat Nov  7 10:12:18 1998
--- gtk+-1.2.10/examples/pixmap/Makefile	Mon Jul 16 17:01:54 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  pixmap: pixmap.c 
! 	$(CC) `gtk-config --cflags`  pixmap.c -o pixmap `gtk-config --libs`
  
  clean: 
  	rm -f *.o pixmap
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  pixmap: pixmap.c 
! 	$(CC) `gtk-config --cflags`  pixmap.c -o pixmap `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o pixmap
diff -rc gtk+-1.2.10.orig/examples/progressbar/Makefile gtk+-1.2.10/examples/progressbar/Makefile
*** gtk+-1.2.10.orig/examples/progressbar/Makefile	Sat Nov  7 10:12:19 1998
--- gtk+-1.2.10/examples/progressbar/Makefile	Mon Jul 16 17:02:05 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  progressbar: progressbar.c 
! 	$(CC) `gtk-config --cflags`  progressbar.c -o progressbar `gtk-config --libs`
  
  clean: 
  	rm -f *.o progressbar
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  progressbar: progressbar.c 
! 	$(CC) `gtk-config --cflags`  progressbar.c -o progressbar `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o progressbar
diff -rc gtk+-1.2.10.orig/examples/radiobuttons/Makefile gtk+-1.2.10/examples/radiobuttons/Makefile
*** gtk+-1.2.10.orig/examples/radiobuttons/Makefile	Sat Nov  7 10:12:20 1998
--- gtk+-1.2.10/examples/radiobuttons/Makefile	Mon Jul 16 17:02:20 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  radiobuttons: radiobuttons.c 
! 	$(CC) `gtk-config --cflags`  radiobuttons.c -o radiobuttons `gtk-config --libs`
  
  clean: 
  	rm -f *.o radiobuttons
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  radiobuttons: radiobuttons.c 
! 	$(CC) `gtk-config --cflags`  radiobuttons.c -o radiobuttons `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o radiobuttons
diff -rc gtk+-1.2.10.orig/examples/rangewidgets/Makefile gtk+-1.2.10/examples/rangewidgets/Makefile
*** gtk+-1.2.10.orig/examples/rangewidgets/Makefile	Sat Nov  7 10:12:21 1998
--- gtk+-1.2.10/examples/rangewidgets/Makefile	Mon Jul 16 17:02:35 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  rangewidgets: rangewidgets.c 
! 	$(CC) `gtk-config --cflags`  rangewidgets.c -o rangewidgets `gtk-config --libs`
  
  clean: 
  	rm -f *.o rangewidgets
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  rangewidgets: rangewidgets.c 
! 	$(CC) `gtk-config --cflags`  rangewidgets.c -o rangewidgets `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o rangewidgets
diff -rc gtk+-1.2.10.orig/examples/rulers/Makefile gtk+-1.2.10/examples/rulers/Makefile
*** gtk+-1.2.10.orig/examples/rulers/Makefile	Sat Nov  7 10:12:23 1998
--- gtk+-1.2.10/examples/rulers/Makefile	Mon Jul 16 17:02:50 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  rulers: rulers.c 
! 	$(CC) `gtk-config --cflags`  rulers.c -o rulers `gtk-config --libs`
  
  clean: 
  	rm -f *.o rulers
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  rulers: rulers.c 
! 	$(CC) `gtk-config --cflags`  rulers.c -o rulers `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o rulers
diff -rc gtk+-1.2.10.orig/examples/scribble-simple/Makefile gtk+-1.2.10/examples/scribble-simple/Makefile
*** gtk+-1.2.10.orig/examples/scribble-simple/Makefile	Sat Nov  7 10:12:24 1998
--- gtk+-1.2.10/examples/scribble-simple/Makefile	Mon Jul 16 17:03:21 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  scribble-simple: scribble-simple.c 
! 	$(CC) `gtk-config --cflags`  scribble-simple.c -o scribble-simple `gtk-config --libs`
  
  clean: 
  	rm -f *.o scribble-simple
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  scribble-simple: scribble-simple.c 
! 	$(CC) `gtk-config --cflags`  scribble-simple.c -o scribble-simple `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o scribble-simple
diff -rc gtk+-1.2.10.orig/examples/scrolledwin/Makefile gtk+-1.2.10/examples/scrolledwin/Makefile
*** gtk+-1.2.10.orig/examples/scrolledwin/Makefile	Sat Nov  7 10:12:25 1998
--- gtk+-1.2.10/examples/scrolledwin/Makefile	Mon Jul 16 17:03:34 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  scrolledwin: scrolledwin.c 
! 	$(CC) `gtk-config --cflags`  scrolledwin.c -o scrolledwin `gtk-config --libs`
  
  clean: 
  	rm -f *.o scrolledwin
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  scrolledwin: scrolledwin.c 
! 	$(CC) `gtk-config --cflags`  scrolledwin.c -o scrolledwin `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o scrolledwin
diff -rc gtk+-1.2.10.orig/examples/selection/Makefile gtk+-1.2.10/examples/selection/Makefile
*** gtk+-1.2.10.orig/examples/selection/Makefile	Sat Nov  7 10:12:27 1998
--- gtk+-1.2.10/examples/selection/Makefile	Mon Jul 16 17:04:00 2001
***************
*** 1,13 ****
  
  CC = gcc
  
  all: gettargets setselection
  
  gettargets: gettargets.c 
! 	$(CC) `gtk-config --cflags` gettargets.c -o gettargets `gtk-config --libs`
  
  setselection: setselection.c
! 	$(CC) `gtk-config --cflags` setselection.c -o setselection `gtk-config --libs`
   
  clean: 
  	rm -f *.o gettargets setselection
--- 1,15 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  all: gettargets setselection
  
  gettargets: gettargets.c 
! 	$(CC) `gtk-config --cflags` gettargets.c -o gettargets `gtk-config --libs` $(LDFLAGS)
  
  setselection: setselection.c
! 	$(CC) `gtk-config --cflags` setselection.c -o setselection `gtk-config --libs` $(LDFLAGS)
   
  clean: 
  	rm -f *.o gettargets setselection
diff -rc gtk+-1.2.10.orig/examples/spinbutton/Makefile gtk+-1.2.10/examples/spinbutton/Makefile
*** gtk+-1.2.10.orig/examples/spinbutton/Makefile	Tue Feb  2 04:12:52 1999
--- gtk+-1.2.10/examples/spinbutton/Makefile	Mon Jul 16 17:04:12 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  spinbutton: spinbutton.c 
! 	$(CC) `gtk-config --cflags`  spinbutton.c -o spinbutton `gtk-config --libs`
  
  clean: 
  	rm -f *.o spinbutton
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  spinbutton: spinbutton.c 
! 	$(CC) `gtk-config --cflags`  spinbutton.c -o spinbutton `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o spinbutton
diff -rc gtk+-1.2.10.orig/examples/statusbar/Makefile gtk+-1.2.10/examples/statusbar/Makefile
*** gtk+-1.2.10.orig/examples/statusbar/Makefile	Sat Nov  7 10:12:28 1998
--- gtk+-1.2.10/examples/statusbar/Makefile	Mon Jul 16 17:04:33 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  statusbar: statusbar.c 
! 	$(CC) `gtk-config --cflags`  statusbar.c -o statusbar `gtk-config --libs`
  
  clean: 
  	rm -f *.o statusbar
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  statusbar: statusbar.c 
! 	$(CC) `gtk-config --cflags`  statusbar.c -o statusbar `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o statusbar
diff -rc gtk+-1.2.10.orig/examples/table/Makefile gtk+-1.2.10/examples/table/Makefile
*** gtk+-1.2.10.orig/examples/table/Makefile	Sat Nov  7 10:12:29 1998
--- gtk+-1.2.10/examples/table/Makefile	Mon Jul 16 17:04:44 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  table: table.c 
! 	$(CC) `gtk-config --cflags`  table.c -o table `gtk-config --libs`
  
  clean: 
  	rm -f *.o table
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  table: table.c 
! 	$(CC) `gtk-config --cflags`  table.c -o table `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o table
diff -rc gtk+-1.2.10.orig/examples/text/Makefile gtk+-1.2.10/examples/text/Makefile
*** gtk+-1.2.10.orig/examples/text/Makefile	Sat Nov  7 10:12:30 1998
--- gtk+-1.2.10/examples/text/Makefile	Mon Jul 16 17:04:59 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  text: text.c 
! 	$(CC) `gtk-config --cflags`  text.c -o text `gtk-config --libs`
  
  clean: 
  	rm -f *.o text
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  text: text.c 
! 	$(CC) `gtk-config --cflags`  text.c -o text `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o text
diff -rc gtk+-1.2.10.orig/examples/tictactoe/Makefile gtk+-1.2.10/examples/tictactoe/Makefile
*** gtk+-1.2.10.orig/examples/tictactoe/Makefile	Sat Nov  7 10:12:31 1998
--- gtk+-1.2.10/examples/tictactoe/Makefile	Mon Jul 16 17:05:16 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  ttt_test: tictactoe.o ttt_test.o
! 	$(CC) ttt_test.o tictactoe.o -o ttt_test `gtk-config --libs`
  
  ttt_test.o: ttt_test.c tictactoe.h
  	$(CC) `gtk-config --cflags` -c ttt_test.c -o ttt_test.o
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  ttt_test: tictactoe.o ttt_test.o
! 	$(CC) ttt_test.o tictactoe.o -o ttt_test `gtk-config --libs` $(LDFLAGS)
  
  ttt_test.o: ttt_test.c tictactoe.h
  	$(CC) `gtk-config --cflags` -c ttt_test.c -o ttt_test.o
diff -rc gtk+-1.2.10.orig/examples/tree/Makefile gtk+-1.2.10/examples/tree/Makefile
*** gtk+-1.2.10.orig/examples/tree/Makefile	Sat Nov  7 10:12:33 1998
--- gtk+-1.2.10/examples/tree/Makefile	Mon Jul 16 17:05:27 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  tree: tree.c 
! 	$(CC) `gtk-config --cflags`  tree.c -o tree `gtk-config --libs`
  
  clean: 
  	rm -f *.o tree
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  tree: tree.c 
! 	$(CC) `gtk-config --cflags`  tree.c -o tree `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o tree
diff -rc gtk+-1.2.10.orig/examples/wheelbarrow/Makefile gtk+-1.2.10/examples/wheelbarrow/Makefile
*** gtk+-1.2.10.orig/examples/wheelbarrow/Makefile	Sat Nov  7 10:12:34 1998
--- gtk+-1.2.10/examples/wheelbarrow/Makefile	Mon Jul 16 17:05:39 2001
***************
*** 1,8 ****
  
  CC = gcc
  
  wheelbarrow: wheelbarrow.c 
! 	$(CC) `gtk-config --cflags` wheelbarrow.c -o wheelbarrow `gtk-config --libs`
  
  clean: 
  	rm -f *.o wheelbarrow
--- 1,10 ----
  
  CC = gcc
  
+ LDFLAGS='-Wl,-brtl'
+ 
  wheelbarrow: wheelbarrow.c 
! 	$(CC) `gtk-config --cflags` wheelbarrow.c -o wheelbarrow `gtk-config --libs` $(LDFLAGS)
  
  clean: 
  	rm -f *.o wheelbarrow
