[Pinfo-devel] r310 - pinfo/trunk
Bas Zoetekouw
bas at alioth.debian.org
Sun Sep 19 13:07:13 UTC 2010
Author: bas
Date: 2010-09-19 13:07:10 +0000 (Sun, 19 Sep 2010)
New Revision: 310
Modified:
pinfo/trunk/config.h.in
pinfo/trunk/configure.ac
Log:
Fix autoconf stuff for newer autoconf/automake/libtool
Modified: pinfo/trunk/config.h.in
===================================================================
--- pinfo/trunk/config.h.in 2010-09-19 11:36:28 UTC (rev 309)
+++ pinfo/trunk/config.h.in 2010-09-19 13:07:10 UTC (rev 310)
@@ -275,6 +275,13 @@
/* Define if integer division by zero raises signal SIGFPE. */
#undef INTDIV0_RAISES_SIGFPE
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+ */
+#undef LT_OBJDIR
+
+/* Define to 1 if your C compiler doesn't accept -c and -o together. */
+#undef NO_MINUS_C_MINUS_O
+
/* Package name */
#undef PACKAGE
@@ -290,6 +297,9 @@
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
/* Define to the version of this package. */
#undef PACKAGE_VERSION
@@ -302,7 +312,7 @@
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
- automatically deduced at run-time.
+ automatically deduced at runtime.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
@@ -336,7 +346,7 @@
#undef inline
#endif
-/* Define to `long' if <sys/types.h> does not define. */
+/* Define to `long int' if <sys/types.h> does not define. */
#undef off_t
/* Define as the type of the result of subtracting two pointers, if the system
@@ -346,7 +356,7 @@
/* Define to empty if the C compiler doesn't support this keyword. */
#undef signed
-/* Define to `unsigned' if <sys/types.h> does not define. */
+/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t
/* Define to unsigned long or unsigned long long if <stdint.h> and
Modified: pinfo/trunk/configure.ac
===================================================================
--- pinfo/trunk/configure.ac 2010-09-19 11:36:28 UTC (rev 309)
+++ pinfo/trunk/configure.ac 2010-09-19 13:07:10 UTC (rev 310)
@@ -33,6 +33,7 @@
# put the config into config.h
AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_MACRO_DIR([macros])
# id main dir by src/pinfo.c file
AC_CONFIG_SRCDIR([src/pinfo.c])
@@ -78,6 +79,7 @@
AM_CONDITIONAL(HAVE_SIGBLOCK,test "x$ac_cv_lib_bsd_sigblock" = "xyes" -o \
"x$ac_cv_func_sigblock" = "xyes" )
+AM_PROG_CC_C_O
####################################################
## some additional utilities we need
More information about the Pinfo-devel
mailing list