~ubuntu-branches/ubuntu/karmic/fltk1.1/karmic

« back to all changes in this revision

Viewing changes to FL/filename.H

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-05-22 13:57:06 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050522135706-mchag24yf42lu7bu
Tags: 1.1.6-5
* Revert previous change, which seems to have been ineffective for some
  reason, in favor of commenting out the problematic Makefile rule
  altogether.  (Closes: #310151.)
* debian/control: Go back to specifying the URL as part of the
  description rather than via a non-standard field that doesn't seem to
  have caught on.  (Closes: #310240.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * "$Id: filename.H,v 1.11.2.4.2.14 2004/04/11 04:38:54 easysw Exp $"
 
2
 * "$Id: filename.H,v 1.11.2.4.2.15 2004/10/18 20:29:54 easysw Exp $"
3
3
 *
4
4
 * Filename header file for the Fast Light Tool Kit (FLTK).
5
5
 *
51
51
#  endif /* __cplusplus */
52
52
 
53
53
 
54
 
#  if defined(WIN32) && !defined(__CYGWIN__)
 
54
#  if defined(WIN32) && !defined(__CYGWIN__) && !defined(__WATCOMC__)
55
55
 
56
56
struct dirent {char d_name[1];};
57
57
 
65
65
#    include <sys/types.h>
66
66
#    include "/usr/include/dirent.h"
67
67
 
 
68
#  elif defined(__WATCOMC__)
 
69
#    include <sys/types.h>
 
70
#    include <direct.h>
 
71
 
68
72
#  else
69
73
/*
70
74
 * WARNING: on some systems (very few nowadays?) <dirent.h> may not exist.
127
131
#endif /* FL_FILENAME_H */
128
132
 
129
133
/*
130
 
 * End of "$Id: filename.H,v 1.11.2.4.2.14 2004/04/11 04:38:54 easysw Exp $".
 
134
 * End of "$Id: filename.H,v 1.11.2.4.2.15 2004/10/18 20:29:54 easysw Exp $".
131
135
 */