ossp-pkg/xds/configure.ac 1.11 -> 1.12
--- configure.ac 2001/08/02 14:39:15 1.11
+++ configure.ac 2001/08/02 14:56:14 1.12
@@ -2,7 +2,7 @@
AC_INIT(libxds)
AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.11 $)
+AC_REVISION($Revision: 1.12 $)
dnl Get rid of the lousy -g and -O defaults in CFLAGS.
dnl
@@ -52,6 +52,12 @@
have_64_bit_support="#undef XDS_HAVE_64_BIT_SUPPORT"
else
have_64_bit_support="#define XDS_HAVE_64_BIT_SUPPORT"
+ xdr_64_bit_objects="xdr-encode-int64.o xdr-decode-int64.o"
+ xdr_64_bit_objects="$xdr_64_bit_objects xdr-encode-uint64.o xdr-decode-uint64.o"
+ xml_64_bit_objects="xml-encode-int64.o xml-decode-int64.o"
+ xml_64_bit_objects="$xml_64_bit_objects xml-encode-uint64.o xml-decode-uint64.o"
+ tests_64_bit="xdr-int64.exe xdr-uint64.exe xml-int64.exe xml-uint64.exe"
+ tests_64_bit="$tests_64_bit xds-mystruct"
fi
AC_SUBST([xds_uint8_t])
AC_SUBST([xds_uint16_t])
@@ -62,6 +68,9 @@
AC_SUBST([xds_int32_t])
AC_SUBST([xds_int64_t])
AC_SUBST([have_64_bit_support])
+AC_SUBST([xdr_64_bit_objects])
+AC_SUBST([xml_64_bit_objects])
+AC_SUBST([tests_64_bit])
dnl Find the library containing the xdr_xxx() functions.
dnl
|
|