diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-21 16:05:11 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-21 16:05:11 +0000 |
commit | e3bacca862168b6bfe1b50b6825038337f2e2d94 (patch) | |
tree | aaa88f9aea055723f40c5eb936905865d6cd1510 /package/tcp_wrappers/patches | |
parent | b0ea1ce67a85f203d4a8f5eb80e80a295feac5c6 (diff) |
Convert tcp_wrappers to new packaging style, add a patch for target optimizations
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1009 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/tcp_wrappers/patches')
-rw-r--r-- | package/tcp_wrappers/patches/opt_cflags.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/tcp_wrappers/patches/opt_cflags.patch b/package/tcp_wrappers/patches/opt_cflags.patch new file mode 100644 index 000000000..7b7633393 --- /dev/null +++ b/package/tcp_wrappers/patches/opt_cflags.patch @@ -0,0 +1,12 @@ +--- tcp_wrappers_7.6/Makefile.orig 2005-05-21 18:11:32.000000000 +0200 ++++ tcp_wrappers_7.6/Makefile 2005-05-21 18:14:28.000000000 +0200 +@@ -689,7 +689,8 @@ + shared/%.o: %.c + $(CC) $(CFLAGS) $(SHCFLAGS) -c $< -o $@ + +-CFLAGS = -O2 -g -DFACILITY=$(FACILITY) $(ACCESS) $(PARANOID) $(NETGROUP) \ ++OPT_CFLAGS = -O2 -g ++CFLAGS = $(OPT_CFLAGS) -DFACILITY=$(FACILITY) $(ACCESS) $(PARANOID) $(NETGROUP) \ + $(BUGS) $(SYSTYPE) $(AUTH) $(UMASK) \ + -DREAL_DAEMON_DIR=\"$(REAL_DAEMON_DIR)\" $(STYLE) $(KILL_OPT) \ + -DSEVERITY=$(SEVERITY) -DRFC931_TIMEOUT=$(RFC931_TIMEOUT) \ |