Files
libtiff/port/libport_config.h.in
Roger Leigh 419d7dd1c9 libport: Adjust header and library to only define and link if required
* Make libport an OBJECT library when in use, otherwise a dummy
  INTERFACE library
* libport.h will work if getopt is present or not present.  If
  present, will fall back to <unistd.h>, else will define
  symbols
* Add generated libport_config.h to define HAVE_GETOPT and HAVE_UNISTD_H
* dummy.c no longer needed with CMake
* libtiff/libtiffxx no longer link with libport
2021-02-08 19:54:08 +00:00

13 lines
325 B
C

/* libtiff/libport_config.h.in. Not generated, but originated from autoheader. */
#ifndef _LIBPORT_CONFIG_H_
#define _LIBPORT_CONFIG_H_
/* Define to 1 if you have the `getopt' function. */
#undef HAVE_GETOPT
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
#endif /* _LIBPORT_CONFIG_H_ */