/* Commit HEAD at time of configuring */
#undef RADIUSD_VERSION_COMMIT
-/* Raw version string from VERSION */
+/* Raw version string from VERSION file */
#undef RADIUSD_VERSION_STRING
/* Define as the return type of signal handlers (`int' or `void'). */
install: install.raddbdir $(R)$(raddbdir)/example.pl
$(R)$(raddbdir)/example.pl: src/modules/rlm_perl/example.pl
- @$(INSTALL) -m 755 src/modules/rlm_perl/example.pl $(R)$(raddbdir)/
+ @$(ECHO) INSTALL $(notdir $<)
+ @$(INSTALL) -m 755 $< $(R)$(raddbdir)/
TGT_LDLIBS := @python_ldflags@
SRC_CFLAGS := @python_cflags@
+install: install.raddbdir $(R)$(raddbdir)/example.py
+
$(R)$(raddbdir)/example.py: src/modules/rlm_python/example.py
- @$(INSTALL) -m 755 src/modules/rlm_python/example.py $(R)$(raddbdir)/
+ @$(ECHO) INSTALL $(notdir $<)
+ @$(INSTALL) -m 755 $< $(R)$(raddbdir)/
if test "$ac_cv_header_json_json_h" != "yes"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: silently building without JSON support. requires: json-c." >&5
$as_echo "$as_me: WARNING: silently building without JSON support. requires: json-c." >&2;}
+ else
+ rest_ldflags+=-ljson-c
fi
targetname=rlm_rest # keep this! Don't change!
if test "$ac_cv_header_json_json_h" != "yes"; then
AC_MSG_WARN([silently building without JSON support. requires: json-c.])
+ else
+ rest_ldflags+=-ljson-c
fi
targetname=modname # keep this! Don't change!
SRC_CFLAGS := @ruby_cflags@
TGT_LDLIBS := @ruby_ldflags@
+install: install.raddbdir $(R)$(raddbdir)/example.rb
+
$(R)$(raddbdir)/example.rb: src/modules/rlm_ruby/example.rb
- @$(INSTALL) -m 755 src/modules/rlm_ruby/example.rb $(R)$(raddbdir)/
+ @$(ECHO) INSTALL $(notdir $<)
+ @$(INSTALL) -m 755 $< $(R)$(raddbdir)/