kopia lustrzana https://gitlab.com/sane-project/backends
Make sure that getopt is not built on OS/2 (from Franz Bakan <fbakan@gmx.net>).
rodzic
1cfaf7a3ce
commit
56e3295552
|
@ -11,6 +11,9 @@
|
|||
sure that no errors occur because xgettext/xmsgfmt think that
|
||||
"%" is a C format string. Regenerated all po files.
|
||||
|
||||
* configure configure.in include/sane/config.h.in: Make sure that
|
||||
getopt is not built on OS/2 (from Franz Bakan <fbakan@gmx.net>).
|
||||
|
||||
2005-07-07 Frank Zago
|
||||
|
||||
* AUTHORS backend/leo.c backend/leo.h backend/matsushita.c
|
||||
|
|
Plik diff jest za duży
Load Diff
|
@ -217,7 +217,12 @@ if test "$ac_cv_header_os2_h" = "yes" ; then
|
|||
AC_DEFINE(strncasecmp, strnicmp, [Define for OS/2 only])
|
||||
AC_DEFINE(strcasecmp, stricmp, [Define for OS/2 only])
|
||||
fi
|
||||
|
||||
dnl On OS/2, libc knows getopt
|
||||
AH_BOTTOM([
|
||||
#ifdef __INNOTEK_LIBC__
|
||||
#define ELIDE_CODE 1
|
||||
#endif
|
||||
])
|
||||
dnl ***********************************************************************
|
||||
dnl checks for system services
|
||||
dnl ***********************************************************************
|
||||
|
|
|
@ -559,3 +559,9 @@ unsigned int usleep (unsigned int useconds);
|
|||
void vsyslog(int priority, const char *format, va_list args);
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifdef __INNOTEK_LIBC__
|
||||
#define ELIDE_CODE 1
|
||||
#endif
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue