diff options
| author | John Dennis <jdennis@jdennis.(none)> | 2009-07-14 11:25:37 -0400 |
|---|---|---|
| committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-07-15 08:56:51 -0400 |
| commit | d54321a3935f8dd62a0cf7281cbdaf96e7c6e294 (patch) | |
| tree | 42ec0d93df08b6190213147bf2b78128812dd1d8 /path_utils/configure.ac | |
| parent | e02d262cd539c3520222ad4e276daacaa7be6d46 (diff) | |
| download | ding-libs2-d54321a3935f8dd62a0cf7281cbdaf96e7c6e294.tar.gz ding-libs2-d54321a3935f8dd62a0cf7281cbdaf96e7c6e294.tar.xz ding-libs2-d54321a3935f8dd62a0cf7281cbdaf96e7c6e294.zip | |
add path_utils filesystem path manipulation utility functions
remove trace macro, not needed
modifications to satisfy Stephen's checkin review
correct spelling of PATH_UTILS_ERROR_NOT_FULLY_NORMALIZED
add checks for truncation, return error
add checks for getcwd errors
modify (dst >= dst_end) test to be (dst > dst_end)
remove all use of tabs
remove all trailing whitespace
add missing truncation check after strncpy()
Fix path_utils.pc
Also correct a minor typo.
Diffstat (limited to 'path_utils/configure.ac')
| -rw-r--r-- | path_utils/configure.ac | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/path_utils/configure.ac b/path_utils/configure.ac new file mode 100644 index 0000000..9207a07 --- /dev/null +++ b/path_utils/configure.ac @@ -0,0 +1,18 @@ +AC_INIT([path_utils], [0.1], [jdennis@redhat.com]) +AC_CONFIG_SRCDIR([path_utils.c]) +AC_CONFIG_AUX_DIR([build]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_PROG_CC +AC_PROG_LIBTOOL +AC_CONFIG_MACRO_DIR([m4]) +AC_PROG_INSTALL + +AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) + +m4_pattern_allow([AM_SILENT_RULES]) +AM_SILENT_RULES + +AC_CONFIG_HEADERS([config.h]) + +AC_CONFIG_FILES([Makefile path_utils.pc]) +AC_OUTPUT |
