mirror of
https://gitlab.com/libtiff/libtiff.git
synced 2026-01-18 21:51:18 +01:00
* 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
13 lines
325 B
C
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_ */
|