Check-in Number:
|
3921 | |
Date: |
2003-Jan-17 18:22:58 (local)
2003-Jan-17 17:22:58 (UTC) |
User: | ms |
Branch: | |
Comment: |
Get CORBA::WString_var for free by defining wstring in IDL, and remove unused
autoconf datatype size tests. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/as/as-gui/as_stub.idl 1.1 -> 1.2
--- as_stub.idl 2003/01/16 08:44:16 1.1
+++ as_stub.idl 2003/01/17 17:22:58 1.2
@@ -32,16 +32,16 @@
struct Astuple {
unsigned long nDate;
unsigned long nTime;
- string szName;
- string szTask;
- string szRemark;
+ wstring szName;
+ wstring szTask;
+ wstring szRemark;
};
interface Account {
void Log(in Astuple Msgline);
- string Dump();
+ wstring Dump();
};
interface Asdatabase {
- Account Open(in string Filename);
+ Account Open(in wstring Filename);
};
|
|
ossp-pkg/as/as-gui/as_uuid.cpp 1.3 -> 1.4
--- as_uuid.cpp 2003/01/16 11:51:19 1.3
+++ as_uuid.cpp 2003/01/17 17:22:58 1.4
@@ -29,6 +29,9 @@
#include <stdlib.h>
#endif
+#ifdef TIME_WITH_SYS_TIME
+#include <sys/time.h>
+#endif /* TIME_WITH_SYS_TIME */
#ifdef HAVE_SYS_SOCKIO_H
#include <sys/sockio.h>
#endif /* HAVE_SYS_SOCKIO_H */
|
|
ossp-pkg/as/as-gui/configure.in 1.15 -> 1.16
--- configure.in 2003/01/16 11:51:19 1.15
+++ configure.in 2003/01/17 17:22:58 1.16
@@ -99,11 +99,6 @@
LIBS="$LIBS -lX11 -lXext -lSM -lm"
fi
-dnl Check type sizes
-AC_CHECK_SIZEOF(char)
-AC_CHECK_SIZEOF(int)
-AC_CHECK_SIZEOF(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"])
|
|