ossp-pkg/as/as-gui/configure.in 1.16 -> 1.17
--- configure.in 2003/01/17 17:22:58 1.16
+++ configure.in 2003/01/21 14:41:15 1.17
@@ -99,6 +99,15 @@
LIBS="$LIBS -lX11 -lXext -lSM -lm"
fi
+dnl Check data type sizes of particular architecture
+dnl Hack: We're really interested in the unsigned types,
+dnl but they're the same size according to ISO C++
+AC_CHECK_SIZEOF(char)
+AC_CHECK_SIZEOF(short)
+AC_CHECK_SIZEOF(int)
+AC_CHECK_SIZEOF(long)
+AC_CHECK_SIZEOF(long long)
+
dnl Check some X resources, typical of XFree86
AC_CHECK_LIB(Xft, XftFreeTypeOpen, [LIBS="$LIBS -lXft"])
AC_CHECK_LIB(Xrender, XRenderFindFormat, [LIBS="$LIBS -lXrender"])
|
|