diff options
author | Mike Hommey <glandium@debian.org> | 2005-11-02 18:11:56 +0000 |
---|---|---|
committer | Mike Hommey <glandium@debian.org> | 2005-11-02 18:11:56 +0000 |
commit | be76071f9a3b9df6a8da9407331419b72dd5bb08 (patch) | |
tree | 373701a07eb44a65ac7c7f65f470ea068a1f7f9e /testModule.c | |
parent | ad2c1c92d52784675427043d846082abe741f903 (diff) | |
download | libxml2-be76071f9a3b9df6a8da9407331419b72dd5bb08.tar.gz |
* autogen.sh: Changed the way we rebuild the examples.
* debian/rules: Added history support in xmllint. Closes: #318083.
* debian/control: Added build dependency upon libreadline5-dev for history support in xmllint.
* xmllint.c: Added some spaces in usage(). Closes: #335015.
* testModule.c: Added PATH_MAX definition for the Hurd. Closes: #333623.
Diffstat (limited to 'testModule.c')
-rw-r--r-- | testModule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testModule.c b/testModule.c index fecc852..92e1949 100644 --- a/testModule.c +++ b/testModule.c @@ -29,6 +29,10 @@ #define MODULE_PATH ".libs" #endif +#ifndef PATH_MAX /* for The Hurd */ +#define PATH_MAX 4096 +#endif + typedef int (*hello_world_t)(void); int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) { |