Displaying 4 results from an estimated 4 matches for "mrule".
Did you mean:
rule
2006 May 17
0
[tftp-hpa] [patch] building on hpux and add CPPFLAGS
...================================================================
--- MCONFIG.in.orig
+++ MCONFIG.in
@@ -50,7 +50,7 @@ INSTALL_DATA = @INSTALL_DATA@
# Compiler and compiler flags
CC = @CC@
CFLAGS = @CFLAGS@ -I$(SRCROOT)
-
+CPPFLAGS = @CPPFLAGS@
# Link flags
LDFLAGS = @LDFLAGS@
Index: MRULES
===================================================================
--- MRULES.orig
+++ MRULES
@@ -3,20 +3,20 @@
.SUFFIXES: .c .cc .o .s .S .i
.c.o:
- $(CC) $(CFLAGS) -c $<
+ $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
.c.s:
- $(CC) $(CFLAGS) -S -o $@ $<
+ $(CC) $(CFLAGS) $(CPPFLAGS) -S -o $...
2017 May 11
4
Using queue priorities to add agents
Hi,
I have a scenario that I am failing to implement using the Queue app, but
which I had thought would be commonplace...
1) (this bit works fine) I want a queue caller to have access to the basic
set of agents initially, with an overflow to additional agents if they are
busy - This is done using penalty:
queues.conf:
member => SIP/dev1,0,Agent1
member => SIP/dev2,0,Agent2
member =>
2004 Feb 21
1
[PATCH] sleep for klibc utils
This implements a sleep command.
diff -p -purN klibc-0.111/utils/Makefile klibc-0.111.utils/utils/Makefile
--- klibc-0.111/utils/Makefile 2004-02-10 00:18:15.000000000 +0100
+++ klibc-0.111.utils/utils/Makefile 2004-02-21 22:33:08.000000000 +0100
@@ -5,7 +5,7 @@ include ../MRULES
MAKEDEPS = -Wp,-MD,.$(subst /,-,$*).d
CFLAGS = $(MAKEDEPS) $(OPTFLAGS) $(REQFLAGS) -W -Wall
LIBS = $(KLIBC) $(LIBGCC)
-PROGS = chroot dd fstype mkdir mkfifo mount pivot_root umount true false
+PROGS = chroot dd fstype mkdir mkfifo mount pivot_root umount true false sleep
all: $(P...
2003 May 19
0
[PATCH] getpwnam() implementation in tftpd.c
...kref.com>
York Refrigeration
diff -urN tftp-hpa-0.34.orig/tftpd/Makefile tftp-hpa-0.34/tftpd/Makefile
--- tftp-hpa-0.34.orig/tftpd/Makefile 2001-11-27 11:18:11.000000000 +0100
+++ tftp-hpa-0.34/tftpd/Makefile 2003-05-17 21:18:08.000000000 +0200
@@ -4,6 +4,20 @@
-include ../MCONFIG
include ../MRULES
+# Setting this to something else that `true' will cause tftpd to directly
+# use the system's password and group functions. Assuming you use GNU libc,
+# when this is not `true', you will need to install the /etc/nsswitch.conf
+# configuration file and the required libnss_* librar...