summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
0447b87)
@@ -1,13 +1,15 @@
adns (1.3); urgency=low
- Bugfixes:
- * In configure.in, quote macro name argument to define() to
- suppress spurious autoconf error. (Report from Mihai Ibanescu.)
+ Portability fixes:
* Cast ptrdiff_t to int for %.*s length in adnsheloex and adnslogres,
as is required. (Report from Jim Meyering.)
- * Use autoconf's values for {bin,lib,include}_dir rather than inventing
+ * In configure.in, quote macro name argument to define() to
+ suppress spurious autoconf error. (Report from Mihai Ibanescu.)
+ * Use autoconf's values for {bin,lib,include}dir rather than inventing
our own from @exec_prefix@, making configure --libdir work.
(Patch from Mihai Ibanescu.)
+ * Remove spurious `_' from {bin,lib,include}dir Makefile variables.
+ (Report from Mihai Ibanescu.)
--
- Bugfixes:
- * In configure.in, quote macro name argument to define() to
- suppress spurious autoconf error. (Report from Mihai Ibanescu.)
* Cast ptrdiff_t to int for %.*s length in adnsheloex and adnslogres,
as is required. (Report from Jim Meyering.)
* Cast ptrdiff_t to int for %.*s length in adnsheloex and adnslogres,
as is required. (Report from Jim Meyering.)
- * Use autoconf's values for {bin,lib,include}_dir rather than inventing
+ * In configure.in, quote macro name argument to define() to
+ suppress spurious autoconf error. (Report from Mihai Ibanescu.)
+ * Use autoconf's values for {bin,lib,include}dir rather than inventing
our own from @exec_prefix@, making configure --libdir work.
(Patch from Mihai Ibanescu.)
our own from @exec_prefix@, making configure --libdir work.
(Patch from Mihai Ibanescu.)
+ * Remove spurious `_' from {bin,lib,include}dir Makefile variables.
+ (Report from Mihai Ibanescu.)
all: $(TARGETS)
install: $(TARG_INSTALL)
all: $(TARGETS)
install: $(TARG_INSTALL)
set -xe; for f in $(TARG_INSTALL); \
set -xe; for f in $(TARG_INSTALL); \
- do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
+ do $(INSTALL_PROGRAM) $$f $(bindir)/$$f; done
- for f in $(TARGETS); do rm -f $(bin_dir)/$$f; done
+ for f in $(TARGETS); do rm -f $(bindir)/$$f; done
adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
$(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
adnshost: $(ADH_OBJS) $(DYNAMIC_DEP)
$(CC) $(LDFLAGS) $(ADH_OBJS) $(DYNAMIC_LINK) -o $@ $(LDLIBS)
ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
install:
ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
install:
- mkdir -p $(lib_dir)
- $(INSTALL_PROGRAM) $(SHLIBFILE) $(lib_dir)/$(SHLIBFILE)
- ln -sf $(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
- ln -sf $(SHLIBSONAME) $(lib_dir)/$(SHLIBFORLINK)
+ mkdir -p $(libdir)
+ $(INSTALL_PROGRAM) $(SHLIBFILE) $(libdir)/$(SHLIBFILE)
+ ln -sf $(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
+ ln -sf $(SHLIBSONAME) $(libdir)/$(SHLIBFORLINK)
- rm -f $(lib_dir)/$(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
+ rm -f $(libdir)/$(SHLIBFILE) $(libdir)/$(SHLIBSONAME)
$(SHLIBFORLINK):
ln -s $(SHLIBSONAME) $(SHLIBFORLINK)
$(SHLIBFORLINK):
ln -s $(SHLIBSONAME) $(SHLIBFORLINK)
prefix= @prefix@
exec_prefix= @exec_prefix@
prefix= @prefix@
exec_prefix= @exec_prefix@
-bin_dir= @bindir@
-lib_dir= @libdir@
-include_dir= @includedir@
+bindir= @bindir@
+libdir= @libdir@
+includedir= @includedir@
AC_INSTALL= @INSTALL@
ifeq ($(AC_INSTALL),./install-sh -c)
AC_INSTALL= @INSTALL@
ifeq ($(AC_INSTALL),./install-sh -c)
include adns.make
install:
include adns.make
install:
- mkdir -p $(lib_dir) $(include_dir)
+ mkdir -p $(libdir) $(includedir)
set -xe; for f in $(TARGETS); \
set -xe; for f in $(TARGETS); \
- do $(INSTALL_DATA) $$f $(lib_dir)/$$f; done
- $(INSTALL_DATA) $(srcdir)/../src/adns.h $(include_dir)/adns.h
+ do $(INSTALL_DATA) $$f $(libdir)/$$f; done
+ $(INSTALL_DATA) $(srcdir)/../src/adns.h $(includedir)/adns.h
- for f in $(TARGETS); do rm -f $(lib_dir)/$$f; done
- rm -f $(include_dir)/adns.h
+ for f in $(TARGETS); do rm -f $(libdir)/$$f; done
+ rm -f $(includedir)/adns.h