diff options
author | mharo <mharo@FreeBSD.org> | 2000-04-01 07:56:55 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-04-01 07:56:55 +0800 |
commit | 192ccda53e154576aad90b40fed7fd12280d374c (patch) | |
tree | f1392995085a658745c3c1ab419ac446e00840d4 /misc/xenmenu/files | |
parent | bb19f33134d67add7fd82f6b9faba045db0e5252 (diff) | |
download | freebsd-ports-gnome-192ccda53e154576aad90b40fed7fd12280d374c.tar.gz freebsd-ports-gnome-192ccda53e154576aad90b40fed7fd12280d374c.tar.zst freebsd-ports-gnome-192ccda53e154576aad90b40fed7fd12280d374c.zip |
- Update MASTER_SITES and WWW: line of pkg/DESCR
- Support CFLAGS properly
PR: 17722
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'misc/xenmenu/files')
-rw-r--r-- | misc/xenmenu/files/patch-ab | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/misc/xenmenu/files/patch-ab b/misc/xenmenu/files/patch-ab new file mode 100644 index 000000000000..5e09a4008e43 --- /dev/null +++ b/misc/xenmenu/files/patch-ab @@ -0,0 +1,40 @@ +--- Makefile.in.orig Sun Mar 1 20:52:43 1998 ++++ Makefile.in Fri Mar 31 04:11:51 2000 +@@ -5,6 +5,7 @@ + + # Name of the program with which to compile + CC=@CC@ ++CFLAGS=@CFLAGS@ + + # Location of the directory in which menu should be installed + prefix=@prefix@ +@@ -27,22 +28,22 @@ + + + xenmenu: xenmenu.o menu_func.o opt_func.o get_input.o dochoice.o rpmenu.o +- $(CC) -o xenmenu xenmenu.o menu_func.o opt_func.o get_input.o \ ++ $(CC) $(CFLAGS) -o xenmenu xenmenu.o menu_func.o opt_func.o get_input.o \ + dochoice.o rpmenu.o + xenmenu.o: xenmenu.c config.h xenmenu.h menu_func.h opt_func.h get_input.h \ + dochoice.h rpmenu.h +- $(CC) -c xenmenu.c -o xenmenu.o ++ $(CC) $(CFLAGS) -c xenmenu.c -o xenmenu.o + + dochoice.o: dochoice.c xenmenu.h opt_func.h menu_func.h dochoice.h +- $(CC) -c dochoice.c -o dochoice.o ++ $(CC) $(CFLAGS) -c dochoice.c -o dochoice.o + get_input.o: get_input.c +- $(CC) -c get_input.c -o get_input.o ++ $(CC) $(CFLAGS) -c get_input.c -o get_input.o + menu_func.o: menu_func.c config.h xenmenu.h menu_func.h get_input.h +- $(CC) -c menu_func.c -o menu_func.o ++ $(CC) $(CFLAGS) -c menu_func.c -o menu_func.o + opt_func.o: opt_func.c opt_func.h xenmenu.h menu_func.h +- $(CC) -c opt_func.c -o opt_func.o ++ $(CC) $(CFLAGS) -c opt_func.c -o opt_func.o + rpmenu.o: rpmenu.c config.h rpmenu.h xenmenu.h menu_func.h +- $(CC) -c rpmenu.c -o rpmenu.o ++ $(CC) $(CFLAGS) -c rpmenu.c -o rpmenu.o + + rpmenu.h: opt_func.h + xenmenu.h: opt_func.h |