summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2006-10-26 20:39:04 +0000
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>2006-10-26 20:39:04 +0000
commit8b77562fee3a461adb39d4ddef5d3a0e13fb1952 (patch)
tree4470ad0275d1a51f47bb3bda1c050adc0f5bc59a /HACKING
parenta68608ef1fafdd8b10e70c835c8b8c0b2c57f3b6 (diff)
downloadlibtool-8b77562fee3a461adb39d4ddef5d3a0e13fb1952.tar.gz
Assume presence of a config header in all files, to provoke
test failures on all systems. * libltdl/lt__alloc.c: Likewise. * libltdl/libltdl/lt__dirent.h: Likewise. * libltdl/libltdl/lt__glibc.h: Likewise. * libltdl/libltdl/lt__private.h: Likewise. * libltdl/libltdl/lt__strl.h: Likewise. * tests/recursive.at: Use AC_CONFIG_HEADERS. * tests/nonrecursive.at: Likewise. Invoke autoheader. * HACKING: Adjust. Report by Patrick Welche.
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING12
1 files changed, 4 insertions, 8 deletions
diff --git a/HACKING b/HACKING
index dd3a7e2b..9fc90707 100644
--- a/HACKING
+++ b/HACKING
@@ -291,17 +291,13 @@ yyyy-mm-dd Name of Author <email@address> (tiny change)
to various system libc interfaces that differ between hosts supported
by libtool. Typically, the files that implement this layer begin:
- #ifdef HAVE_CONFIG_H
- # if defined(LT_CONFIG_H)
- # include LT_CONFIG_H
- # else
- # include <config.h>
- # endif
+ #if defined(LT_CONFIG_H)
+ # include LT_CONFIG_H
+ #else
+ # include <config.h>
#endif
#include "lt_system.h"
- The `ifdef HAVE_CONFIG_H' helps facilitate code sharing with gnulib.
-
Or if they are installed headers that must work outside the libtool
source tree, simply: