You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.8 KiB
60 lines
1.8 KiB
Index: Make.inc.in |
|
--- Make.inc.in.orig 2004-01-23 18:08:43 +0100 |
|
+++ Make.inc.in 2005-02-17 19:08:46 +0100 |
|
@@ -14,7 +14,7 @@ |
|
sbindir = @sbindir@ |
|
mandir = @mandir@ |
|
datadir = @datadir@ |
|
-dictdir = $(datadir)/freeradius |
|
+dictdir = $(datadir) |
|
logdir = @logdir@ |
|
raddbdir = @raddbdir@ |
|
radacctdir = @radacctdir@ |
|
@@ -45,7 +45,7 @@ |
|
|
|
LOGDIR = ${logdir} |
|
RADDBDIR = ${raddbdir} |
|
-RUNDIR = ${localstatedir}/run/radiusd |
|
+RUNDIR = ${localstatedir} |
|
SBINDIR = ${sbindir} |
|
RADIR = ${radacctdir} |
|
|
|
Index: raddb/radiusd.conf.in |
|
--- raddb/radiusd.conf.in.orig 2005-02-07 20:52:05 +0100 |
|
+++ raddb/radiusd.conf.in 2005-02-17 19:08:46 +0100 |
|
@@ -31,7 +31,7 @@ |
|
|
|
# Location of config and logfiles. |
|
confdir = ${raddbdir} |
|
-run_dir = ${localstatedir}/run/radiusd |
|
+run_dir = ${localstatedir} |
|
|
|
# |
|
# The logging messages for the server are appended to the |
|
Index: src/modules/rlm_ldap/rlm_ldap.c |
|
--- src/modules/rlm_ldap/rlm_ldap.c.orig 2005-02-07 20:51:28 +0100 |
|
+++ src/modules/rlm_ldap/rlm_ldap.c 2005-02-17 19:08:46 +0100 |
|
@@ -193,6 +193,7 @@ |
|
* every use of the pthread functions. |
|
*/ |
|
#define pthread_mutex_lock(a) |
|
+#define pthread_mutex_trylock(a) 0 |
|
#define pthread_mutex_unlock(a) |
|
#define pthread_mutex_init(a,b) |
|
#define pthread_mutex_destroy(a) |
|
Index: src/modules/rlm_sql/drivers/Makefile.in |
|
--- src/modules/rlm_sql/drivers/Makefile.in.orig 2003-10-09 06:00:26 +0200 |
|
+++ src/modules/rlm_sql/drivers/Makefile.in 2005-02-17 19:08:46 +0100 |
|
@@ -18,10 +18,10 @@ |
|
|
|
common: |
|
@[ -d lib/ ] || mkdir lib |
|
- @for mod in $(SQL_MODULES); do \ |
|
+ @for mod in $(SQL_MODULES) NOOP; do \ |
|
what=$(WHAT_TO_MAKE); \ |
|
[ "$$what" = "all" ] && what="$(TARGET_LIBS)"; \ |
|
echo "Making $$what in $$mod..."; \ |
|
- (cd $$mod && $(MAKE) $(MFLAGS) $$what) || exit 1;\ |
|
+ [ -d $$mod ] || exit 0; (cd $$mod && $(MAKE) $(MFLAGS) $$what) || exit 1;\ |
|
done |
|
|
|
|