ossp-pkg/xds/configure.ac 1.15 -> 1.16
--- configure.ac 2001/08/08 11:49:07 1.15
+++ configure.ac 2001/08/08 19:15:23 1.16
@@ -1,8 +1,8 @@
dnl configure.in -- Process this file with autoconf to produce a configure script.
-AC_INIT(libxds)
+AC_INIT(xds)
AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.15 $)
+AC_REVISION($Revision: 1.16 $)
dnl Get rid of the lousy -g and -O defaults in CFLAGS.
dnl
@@ -50,17 +50,6 @@
[AC_MSG_WARN([no signed 64 bit data type found])
xds_int64_t=undefined])
dnl
-if test "$xds_int64_t" = "undefined" -o "$xds_uint64_t" = "undefined"; then
- 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.exe"
-fi
AC_SUBST([xds_uint8_t])
AC_SUBST([xds_uint16_t])
AC_SUBST([xds_uint32_t])
@@ -69,10 +58,12 @@
AC_SUBST([xds_int16_t])
AC_SUBST([xds_int32_t])
AC_SUBST([xds_int64_t])
+if test "$xds_int64_t" = "undefined" -o "$xds_uint64_t" = "undefined"; then
+ have_64_bit_support="#undef XDS_HAVE_64_BIT_SUPPORT"
+else
+ have_64_bit_support="#define XDS_HAVE_64_BIT_SUPPORT"
+fi
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
@@ -81,6 +72,6 @@
dnl Write results.
dnl
-AC_CONFIG_FILES(xds.h Makefile regression-tests/Makefile docs/Makefile)
-AC_CONFIG_COMMANDS([default], [chmod -w xds.h Makefile regression-tests/Makefile docs/Makefile])
+AC_CONFIG_FILES(xds.h Makefile docs/Makefile)
+AC_CONFIG_COMMANDS([default], [chmod -w xds.h Makefile docs/Makefile])
AC_OUTPUT
|
|