project('elinks', ['c','cpp'], version:'0.17.GIT', license:'GPLv2', default_options:['cpp_std=gnu++17']) srcs=[] srcdir = meson.source_root() txt = run_command('git', '--git-dir=' + srcdir + '/.git', 'rev-parse', 'HEAD', check:false).stdout().strip() dirty = run_command(srcdir + '/git-dirty.sh', check:false).stdout().strip() add_global_arguments('-DBUILD_ID="' + txt + dirty + '"', language : 'c') conf_data = configuration_data() conf_data.set('VERSION', meson.project_version()) conf_data.set('PACKAGE', meson.project_name()) conf_data.set('CONFIG_LARGEFILE', get_option('largefile')) conf_data.set('CONFIG_BOOKMARKS', get_option('bookmarks')) conf_data.set('CONFIG_XBEL_BOOKMARKS', get_option('xbel')) conf_data.set('CONFIG_SCRIPTING_SPIDERMONKEY', get_option('sm-scripting')) conf_data.set('CONFIG_NLS', get_option('nls')) conf_data.set('CONFIG_GETTEXT', get_option('gettext')) conf_data.set('CONFIG_COOKIES', get_option('cookies')) conf_data.set('CONFIG_FORMHIST', get_option('formhist')) conf_data.set('CONFIG_GLOBHIST', get_option('globhist')) conf_data.set('CONFIG_MAILCAP', get_option('mailcap')) conf_data.set('CONFIG_MIMETYPES', get_option('mimetypes')) conf_data.set('CONFIG_IPV6', get_option('ipv6')) conf_data.set('CONFIG_BITTORRENT', get_option('bittorrent')) conf_data.set('CONFIG_DATA', get_option('data')) conf_data.set('CONFIG_GEMINI', get_option('gemini')) conf_data.set('CONFIG_URI_REWRITE', get_option('uri-rewrite')) conf_data.set('CONFIG_CGI', get_option('cgi')) conf_data.set('CONFIG_DGI', get_option('dgi')) conf_data.set('CONFIG_FINGER', get_option('finger')) conf_data.set('CONFIG_FSP', get_option('fsp')) conf_data.set('CONFIG_FTP', get_option('ftp')) conf_data.set('CONFIG_GOPHER', get_option('gopher')) conf_data.set('CONFIG_NNTP', get_option('nntp')) conf_data.set('CONFIG_SMB', get_option('smb')) conf_data.set('CONFIG_MOUSE', get_option('mouse')) conf_data.set('CONFIG_SYSMOUSE', get_option('sysmouse')) conf_data.set('CONFIG_88_COLORS', get_option('88-colors')) conf_data.set('CONFIG_256_COLORS', get_option('256-colors')) conf_data.set('CONFIG_TRUE_COLOR', get_option('true-color')) conf_data.set('CONFIG_EXMODE', get_option('exmode')) conf_data.set('CONFIG_LEDS', get_option('leds')) conf_data.set('CONFIG_MARKS', get_option('marks')) conf_data.set('CONFIG_CSS', get_option('css')) conf_data.set('CONFIG_DOM', get_option('html-highlight')) conf_data.set('CONFIG_BACKTRACE', get_option('backtrace')) conf_data.set('CONFIG_NO_ROOT', get_option('no-root')) conf_data.set('CONFIG_DEBUG', get_option('withdebug')) conf_data.set('CONFIG_FASTMEM', get_option('fastmem')) conf_data.set('CONFIG_OWN_LIBC', get_option('own-libc')) conf_data.set('CONFIG_SMALL', get_option('small')) conf_data.set('CONFIG_UTF8', get_option('utf-8')) conf_data.set('CONFIG_COMBINE', get_option('combining')) conf_data.set('CONFIG_XTERM', get_option('xterm')) conf_data.set('CONFIG_GPM', get_option('gpm')) conf_data.set('CONFIG_TERMINFO', get_option('terminfo')) conf_data.set('CONFIG_GZIP', get_option('zlib')) conf_data.set('CONFIG_BZIP2', get_option('bzlib')) conf_data.set('CONFIG_BROTLI', get_option('brotli')) conf_data.set('CONFIG_ZSTD', get_option('zstd')) conf_data.set('CONFIG_IDN2', get_option('idn')) conf_data.set('CONFIG_LZMA', get_option('lzma')) conf_data.set('CONFIG_GSSAPI', get_option('gssapi')) conf_data.set('CONFIG_ECMASCRIPT_SMJS', get_option('spidermonkey')) conf_data.set('CONFIG_SCRIPTING_GUILE', get_option('guile')) conf_data.set('CONFIG_SCRIPTING_PERL', get_option('perl')) conf_data.set('CONFIG_SCRIPTING_PYTHON', get_option('python')) conf_data.set('CONFIG_REPRODUCIBLE', get_option('reproducible')) conf_data.set('SOURCE_DATE_EPOCH', get_option('source-date-epoch')) luapkg = get_option('luapkg') if luapkg != '' conf_data.set('CONFIG_SCRIPTING_LUA', true) else conf_data.set('CONFIG_SCRIPTING_LUA', false) endif conf_data.set('CONFIG_TRE', get_option('tre')) conf_data.set('CONFIG_SCRIPTING_RUBY', get_option('ruby')) conf_data.set('CONFIG_GNUTLS', get_option('gnutls')) conf_data.set('CONFIG_OPENSSL', get_option('openssl')) conf_data.set('CONFIG_LIBEV', get_option('libev')) conf_data.set('CONFIG_LIBEVENT', get_option('libevent')) conf_data.set('CONFIG_X', get_option('x')) conf_data.set('CONFIG_XML', get_option('xml')) conf_data.set('CONFIG_QUICKJS', get_option('quickjs')) conf_data.set('CONFIG_MUJS', get_option('mujs')) conf_data.set('CONFIG_CODEPOINT', get_option('codepoint')) if conf_data.get('CONFIG_SCRIPTING_SPIDERMONKEY') or conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or conf_data.get('CONFIG_MUJS') conf_data.set('CONFIG_ECMASCRIPT', true) else conf_data.set('CONFIG_ECMASCRIPT', false) endif conf_data.set('CONFIG_ECMASCRIPT_SMJS_HEARTBEAT', true) conf_data.set('CONFIG_SCRIPTING', true) system = host_machine.system() if system == 'haiku' conf_data.set('CONFIG_OS_BEOS', true) else conf_data.set('CONFIG_OS_BEOS', false) endif if system == 'windows' conf_data.set('CONFIG_OS_WIN32', true) else conf_data.set('CONFIG_OS_WIN32', false) endif if system == 'dos' conf_data.set('CONFIG_OS_DOS', true) else conf_data.set('CONFIG_OS_DOS', false) endif if system != 'dos' and system != 'haiku' and system != 'windows' conf_data.set('CONFIG_OS_UNIX', true) else conf_data.set('CONFIG_OS_UNIX', false) endif if conf_data.get('CONFIG_GNUTLS') or conf_data.get('CONFIG_OPENSSL') conf_data.set('CONFIG_SSL', true) else conf_data.set('CONFIG_SSL', false) endif conf_data.set('CONFIG_OS_OS2', false) conf_data.set('CONFIG_OS_RISCOS', false) # AC_HEADER_DIRENT conf_data.set('HAVE_DIRENT_H', 1) # AC_HEADER_SYS_WAIT conf_data.set('HAVE_SYS_WAIT_H', 1) # AC_HEADER_TIME conf_data.set('HAVE_SYS_TIME_H', 1) compiler = meson.get_compiler('c') extracflags = [] extracppflags = [] if conf_data.get('CONFIG_ECMASCRIPT') extracppflags += ['-fpermissive', '-Wno-sign-compare'] else extracflags += ['-Wc++-compat'] endif if compiler.has_header('wchar.h') conf_data.set('HAVE_WCHAR_H', 1) endif if compiler.has_header('wctype.h') conf_data.set('HAVE_WCTYPE_H', 1) endif if compiler.has_header('fcntl.h') conf_data.set('HAVE_FCNTL_H', 1) endif if compiler.has_header('libgen.h') conf_data.set('HAVE_LIBGEN_H', 1) endif if compiler.has_header('unistd.h') conf_data.set('HAVE_UNISTD_H', 1) endif if compiler.has_header('arpa/inet.h') conf_data.set('HAVE_ARPA_INET_H', 1) endif if compiler.has_header('netinet/in_systm.h') conf_data.set('HAVE_NETINET_IN_SYSTM_H', 1) endif if compiler.has_header('netinet/in_system.h') conf_data.set('HAVE_NETINET_IN_SYSTEM_H', 1) endif if compiler.has_header('netinet/ip.h') conf_data.set('HAVE_NETINET_IP_H', 1) endif if compiler.has_header('netdb.h') conf_data.set('HAVE_NETDB_H', 1) endif if compiler.has_header('netinet/in.h') conf_data.set('HAVE_NETINET_IN_H', 1) endif if compiler.has_header('netinet/in6_var.h') conf_data.set('HAVE_NETINET_IN6_VAR_H', 1) endif if compiler.has_header('ifaddrs.h') conf_data.set('HAVE_IFADDRS_H', 1) endif if compiler.has_header('sys/cygwin.h') conf_data.set('HAVE_SYS_CYGWIN_H', 1) endif if compiler.has_header('io.h') conf_data.set('HAVE_IO_H', 1) endif if compiler.has_header('sys/fmutex.h') conf_data.set('HAVE_SYS_FMUTEX_H', 1) endif if compiler.has_header('sys/ioctl.h') conf_data.set('HAVE_SYS_IOCTL_H', 1) endif if compiler.has_header('sys/kd.h') conf_data.set('HAVE_SYS_KD_H', 1) endif if compiler.has_header('sys/sockio.h') conf_data.set('HAVE_SYS_SOCKIO_H', 1) endif if compiler.has_header('sys/resource.h') conf_data.set('HAVE_SYS_RESOURCE_H', 1) endif if compiler.has_header('sys/select.h') conf_data.set('HAVE_SYS_SELECT_H', 1) endif if compiler.has_header('sys/socket.h') conf_data.set('HAVE_SYS_SOCKET_H', 1) endif if compiler.has_header('sys/utsname.h') conf_data.set('HAVE_SYS_UTSNAME_H', 1) endif if compiler.has_header('net/if.h') conf_data.set('HAVE_NET_IF_H', 1) endif if compiler.has_header('stdint.h') conf_data.set('HAVE_STDINT_H', 1) endif if compiler.has_header('inttypes.h') conf_data.set('HAVE_INTTYPES_H', 1) endif if compiler.has_header('pwd.h') conf_data.set('HAVE_PWD_H', 1) endif if compiler.has_header('termios.h') conf_data.set('HAVE_TERMIOS_H', 1) endif if compiler.has_header('poll.h') conf_data.set('HAVE_POLL_H', 1) endif if compiler.has_header('sys/types.h') conf_data.set('HAVE_SYS_TYPES_H', 1) endif if compiler.has_header('gpm.h') conf_data.set('HAVE_GPM_H', 1) endif if compiler.has_header('idn2.h') conf_data.set('HAVE_IDN2_H', 1) endif if compiler.has_header('event.h') conf_data.set('HAVE_EVENT_H', 1) endif if compiler.has_header('alloca.h') conf_data.set('HAVE_ALLOCA_H', 1) endif if compiler.has_header('stdalign.h') conf_data.set('HAVE_STDALIGN_H', 1) endif if compiler.has_header('term.h') conf_data.set('HAVE_TERM_H', 1) endif st = get_option('static') deps = [] if conf_data.get('CONFIG_GZIP') zdeps = dependency('zlib', static: st) deps += zdeps endif if conf_data.get('CONFIG_TRE') tredeps = dependency('tre', static: st) deps += tredeps endif eh = '' if conf_data.get('CONFIG_LIBEV') conf_data.set('HAVE_LIBEV_EVENT_H', compiler.has_header('libev/event.h')) conf_data.set('HAVE_LIBEV', true) eh = '#include ' eventdeps = compiler.find_library('ev', static: st) deps += eventdeps conf_data.set('CONFIG_LIBEVENT', false) elif conf_data.get('CONFIG_LIBEVENT') eh = '#include ' eventdeps = dependency('libevent', static: st) deps += eventdeps conf_data.set('HAVE_LIBEVENT', true) else eventdeps = [] endif gnutlsdeps = [] ssldeps = [] if conf_data.get('CONFIG_OPENSSL') ssldeps = dependency('openssl', static: st) deps += ssldeps conf_data.set('USE_OPENSSL', true) conf_data.set('CONFIG_GNUTLS', false) elif conf_data.get('CONFIG_GNUTLS') gnutlsdeps = dependency('gnutls', static: st) libgcryptdeps = dependency('libgcrypt', static: st) deps += gnutlsdeps deps += libgcryptdeps endif if conf_data.get('CONFIG_GSSAPI') gssapideps = dependency('krb5-gssapi', static: st) deps += gssapideps endif if conf_data.get('CONFIG_BROTLI') brotlideps = dependency('libbrotlidec', static: st) deps += brotlideps endif if conf_data.get('CONFIG_ZSTD') zstddeps = dependency('libzstd', static: st) deps += zstddeps endif if conf_data.get('CONFIG_LZMA') lzmadeps = dependency('liblzma', static: st) deps += lzmadeps endif if conf_data.get('CONFIG_IDN2') idndeps = dependency('libidn2', static: st) deps += idndeps endif x11deps = [] conf_data.set('HAVE_X11', false) if conf_data.get('CONFIG_X') x11deps = dependency('x11', static: st) deps += x11deps conf_data.set('HAVE_X11', compiler.has_header('X11/Xlib.h')) endif if conf_data.get('CONFIG_BZIP2') bz2deps = dependency('bzip2', static: st, required: false) if not bz2deps.found() bz2deps = compiler.find_library('bz2', static: st, dirs: ['/usr/local/lib']) endif deps += bz2deps endif mozjsdeps = [] if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_SCRIPTING_SPIDERMONKEY') mozjsdeps = dependency('mozjs-102', static: st) deps += mozjsdeps endif if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or conf_data.get('CONFIG_MUJS') sqlite3deps = dependency('sqlite3', static: st) deps += sqlite3deps conf_data.set('CONFIG_XML', true) endif if conf_data.get('CONFIG_SCRIPTING_LUA') luadeps = dependency(luapkg, static: st) deps += luadeps endif if conf_data.get('CONFIG_XBEL_BOOKMARKS') expatdeps = dependency('expat', static: st, required: false) if not expatdeps.found() expatdeps = compiler.find_library('expat', static: st, dirs: ['/usr/local/lib']) endif deps += expatdeps endif if conf_data.get('CONFIG_GPM') libgpmdeps = compiler.find_library('gpm', static: st) deps += libgpmdeps endif if conf_data.get('CONFIG_XML') xmlplusplusdeps = dependency('libxml++-5.0', static: st) deps += xmlplusplusdeps endif if conf_data.get('CONFIG_SCRIPTING_PYTHON') python3deps = dependency('python3-embed', static: st) deps += python3deps endif if conf_data.get('CONFIG_SCRIPTING_PERL') perl_libs = '' perl_l = run_command('perl', '-MExtUtils::Embed', '-e', 'ldopts', check:true) if perl_l.returncode() == 0 perl_libs = perl_l.stdout().strip().split() endif perl_cflags = '' perl_c = run_command('perl', '-MExtUtils::Embed', '-e', 'ccopts', check:true) if perl_c.returncode() == 0 perl_cflags = perl_c.stdout().strip().split() endif perl_dep = declare_dependency(compile_args: perl_cflags, link_args: perl_libs) deps += perl_dep endif conf_data.set('CONFIG_PERL_POPPX_WITHOUT_N_A', 1) rubydeps = [] if conf_data.get('CONFIG_SCRIPTING_RUBY') rubydeps = dependency('ruby', static: st) deps += rubydeps endif guiledeps = [] if conf_data.get('CONFIG_SCRIPTING_GUILE') guiledeps = dependency('guile-3.0', static: st) deps += guiledeps endif if conf_data.get('CONFIG_FSP') fspdeps = compiler.find_library('fsplib', static: st) deps += fspdeps endif if conf_data.get('CONFIG_SMB') smbdeps = dependency('smbclient', static: st) deps += smbdeps endif dep_atomic = dependency('', required: false) if not compiler.links('''#include int main() { struct { uint64_t *v; } x; return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) & (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL); }''', name: 'GCC atomic builtins required -latomic') dep_atomic = compiler.find_library('atomic', static: st) endif if conf_data.get('CONFIG_QUICKJS') quickjsdeps = compiler.find_library('quickjs/libquickjs', static: true) deps += quickjsdeps deps += dep_atomic endif if conf_data.get('CONFIG_MUJS') mujsdeps = dependency('mujs', static: st) deps += mujsdeps endif if not conf_data.get('CONFIG_OS_DOS') and compiler.has_header('sys/un.h') conf_data.set('CONFIG_INTERLINK', true) conf_data.set('HAVE_SYS_UN_H', 1) else conf_data.set('CONFIG_INTERLINK', false) endif if conf_data.get('CONFIG_TERMINFO') terminfodeps = dependency('ncursesw', static: st) deps += terminfodeps endif if conf_data.get('CONFIG_OS_DOS') wattdeps = compiler.find_library('watt', static: st, dirs: ['/usr/local/lib']) deps += wattdeps else wattdeps = [] endif #AC_STRUCT_TM #AC_C_CONST #AC_C_INLINE if conf_data.get('CONFIG_ECMASCRIPT') conf_data.set('NONSTATIC_INLINE', '') else conf_data.set('NONSTATIC_INLINE', 'inline') endif #AC_SYS_LARGEFILE #AC_TYPE_SIZE_T #AC_TYPE_OFF_T #EL_CHECK_TYPE(ssize_t, int) conf_data.set('HAVE_LONG_LONG', 1) conf_data.set('HAVE_OFF_T', 1) conf_data.set('HAVE_INT32_T', 1) conf_data.set('HAVE_UINT32_T', 1) conf_data.set('HAVE_UINT16_T', 1) conf_data.set('HAVE_VARIADIC_MACROS', 1) #AC_FUNC_MEMCMP #AC_FUNC_MMAP if compiler.has_function('mmap', prefix: '#include ') conf_data.set('HAVE_MMAP', 1) endif if compiler.has_function('strftime', prefix: '#include ') conf_data.set('HAVE_STRFTIME', 1) endif if compiler.has_function('strptime', prefix: '#include ', args: '-D_XOPEN_SOURCE') conf_data.set('HAVE_STRPTIME', 1) endif if compiler.has_function('atoll', prefix : '#include ') conf_data.set('HAVE_ATOLL', 1) endif if compiler.has_function('gethostbyaddr', prefix : '#include ') conf_data.set('HAVE_GETHOSTBYADDR', 1) endif if compiler.has_function('herror', prefix : '#include ') conf_data.set('HAVE_HERROR', 1) endif if compiler.has_function('strerror', prefix : '#include ') conf_data.set('HAVE_STRERROR', 1) endif if compiler.has_function('popen', prefix : '#include ') conf_data.set('HAVE_POPEN', 1) endif if compiler.has_function('uname', prefix : '#include ') conf_data.set('HAVE_UNAME', 1) endif if compiler.has_function('access', prefix : '#include ') conf_data.set('HAVE_ACCESS', 1) endif if compiler.has_function('chmod', prefix : '#include ') conf_data.set('HAVE_CHMOD', 1) endif if compiler.has_function('alarm', prefix : '#include ') conf_data.set('HAVE_ALARM', 1) endif if compiler.has_function('timegm', prefix : '#include ') conf_data.set('HAVE_TIMEGM', 1) endif if compiler.has_function('mremap', prefix : '#include ', args: '-D_GNU_SOURCE') conf_data.set('HAVE_MREMAP', 1) endif if compiler.has_function('strcasecmp', prefix : '#include ') conf_data.set('HAVE_STRCASECMP', 1) endif if compiler.has_function('strncasecmp', prefix : '#include ') conf_data.set('HAVE_STRNCASECMP', 1) endif if compiler.has_function('strcasestr', prefix : '#include ', args: '-D_GNU_SOURCE') conf_data.set('HAVE_STRCASESTR', 1) endif conf_data.set('HAVE_STRSTR', 1) conf_data.set('HAVE_STRCHR', 1) conf_data.set('HAVE_STRRCHR', 1) if compiler.has_function('memmove', prefix : '#include ') conf_data.set('HAVE_MEMMOVE', 1) endif if compiler.has_function('bcopy', prefix : '#include ') conf_data.set('HAVE_BCOPY', 1) endif if compiler.has_function('stpcpy', prefix : '#include ') conf_data.set('HAVE_STPCPY', 1) endif if compiler.has_function('strdup', prefix : '#include ') conf_data.set('HAVE_STRDUP', 1) endif if compiler.has_function('index', prefix : '#include ') conf_data.set('HAVE_INDEX', 1) endif if compiler.has_function('isdigit', prefix : '#include ') conf_data.set('HAVE_ISDIGIT', 1) endif if compiler.has_function('mempcpy', prefix : '#include ', args: '-D_GNU_SOURCE') conf_data.set('HAVE_MEMPCPY', 1) endif if compiler.has_function('memrchr', prefix : '#include ', args: '-D_GNU_SOURCE') conf_data.set('HAVE_MEMRCHR', 1) endif if compiler.has_function('snprintf', prefix : '#include ') conf_data.set('HAVE_SNPRINTF', 1) endif if compiler.has_function('vsnprintf', prefix : '#include \n#include ', args: '-D_ISOC99_SOURCE') conf_data.set('HAVE_VSNPRINTF', 1) conf_data.set('HAVE_C99_VSNPRINTF', 1) endif if compiler.has_function('asprintf', prefix : '#include ', args: '-D_GNU_SOURCE') conf_data.set('HAVE_ASPRINTF', 1) endif if compiler.has_function('vasprintf', prefix : '#include ', args: '-D_GNU_SOURCE') conf_data.set('HAVE_VASPRINTF', 1) endif if compiler.has_function('getifaddrs', prefix : '#include ') conf_data.set('HAVE_GETIFADDRS', 1) endif if compiler.has_function('getpwnam', prefix : '#include ') conf_data.set('HAVE_GETPWNAM', 1) endif if compiler.has_function('inet_aton', prefix : '#include ', dependencies: wattdeps) conf_data.set('HAVE_INET_ATON', 1) endif if compiler.has_function('inet_pton', prefix : '#include ', dependencies: wattdeps) conf_data.set('HAVE_INET_PTON', 1) endif if compiler.has_function('inet_ntop', prefix : '#include ', dependencies: wattdeps) conf_data.set('HAVE_INET_NTOP', 1) endif if compiler.has_function('fflush', prefix : '#include ') conf_data.set('HAVE_FFLUSH', 1) endif if compiler.has_function('fsync', prefix : '#include ') conf_data.set('HAVE_FSYNC', 1) endif if compiler.has_function('fseeko', prefix : '#include ') conf_data.set('HAVE_FSEEKO', 1) endif if compiler.has_function('ftello', prefix : '#include ') conf_data.set('HAVE_FTELLO', 1) endif if compiler.has_function('sigaction', prefix : '#include ') conf_data.set('HAVE_SIGACTION', 1) endif if compiler.has_function('gettimeofday', prefix : '#include ') conf_data.set('HAVE_GETTIMEOFDAY', 1) endif if compiler.has_function('clock_gettime', prefix : '#include ') conf_data.set('HAVE_CLOCK_GETTIME', 1) endif if compiler.has_function('setenv', prefix : '#include ') conf_data.set('HAVE_SETENV', 1) conf_data.set('HAVE_SETENV_OR_PUTENV', true) endif if compiler.has_function('putenv', prefix : '#include ') conf_data.set('HAVE_PUTENV', 1) conf_data.set('HAVE_SETENV_OR_PUTENV', true) endif if compiler.has_function('unsetenv', prefix : '#include ') conf_data.set('HAVE_UNSETENV', 1) endif if compiler.has_function('getuid', prefix : '#include ') conf_data.set('HAVE_GETUID', 1) endif if compiler.has_function('geteuid', prefix : '#include ') conf_data.set('HAVE_GETEUID', 1) endif if compiler.has_function('wcwidth', prefix : '#include ', args: '-D_XOPEN_SOURCE') conf_data.set('HAVE_WCWIDTH', 1) endif if not conf_data.get('CONFIG_OS_DOS') and compiler.has_function('fork', prefix : '#include ') conf_data.set('HAVE_FORK', 1) endif if compiler.has_function('getpid', prefix : '#include ') conf_data.set('HAVE_GETPID', 1) endif if compiler.has_function('setpgid', prefix : '#include ') conf_data.set('HAVE_SETPGID', 1) endif if compiler.has_function('getpgid', prefix : '#include ') conf_data.set('HAVE_GETPGID', 1) endif if compiler.has_function('setpgrp', prefix : '#include ') conf_data.set('HAVE_SETPGRP', 1) endif if compiler.has_function('getpgrp', prefix : '#include ') conf_data.set('HAVE_GETPGRP', 1) endif if compiler.has_function('raise', prefix : '#include ') conf_data.set('HAVE_RAISE', 1) endif if compiler.has_function('kill', prefix : '#include ') conf_data.set('HAVE_KILL', 1) endif if compiler.has_function('fpathconf', prefix : '#include ') conf_data.set('HAVE_FPATHCONF', 1) endif if compiler.has_function('poll', prefix : '#include ') conf_data.set('HAVE_POLL', 1) endif if compiler.has_function('event_base_set', prefix: eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_BASE_SET', 1) endif if compiler.has_function('event_get_version', prefix: eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_GET_VERSION', 1) endif if compiler.has_function('event_get_method', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_GET_METHD', 1) endif if compiler.has_function('event_base_free', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_BASE_FREE', 1) endif if compiler.has_function('event_base_new', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_BASE_NEW', 1) endif if compiler.has_function('event_reinit', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_REINIT', 1) endif if compiler.has_function('event_base_get_method', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_BASE_GET_METHOD', 1) endif if compiler.has_function('event_reinit', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_REINIT', 1) endif if compiler.has_function('event_config_set_flag', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_CONFIG_SET_FLAG', 1) endif if compiler.has_function('event_get_struct_event_size', prefix : eh, dependencies: eventdeps) conf_data.set('HAVE_EVENT_GET_STRUCT_EVENT_SIZE', 1) endif if compiler.has_function('RAND_add', prefix: '#include ', dependencies: ssldeps) conf_data.set('HAVE_RAND_ADD', 1) endif if compiler.has_function('RAND_bytes', prefix: '#include ', dependencies: ssldeps) conf_data.set('HAVE_RAND_BYTES', 1) endif if compiler.has_function('ASN1_STRING_get0_data', prefix: '#include ', dependencies: ssldeps) conf_data.set('HAVE_ASN1_STRING_GET0_DATA', 1) endif iconvdeps = compiler.find_library('iconv', static: st, dirs: ['/usr/local/lib'], required: false) if iconvdeps.found() deps += iconvdeps endif if compiler.has_function('nl_langinfo', prefix: '#include ') conf_data.set('HAVE_LANGINFO_CODESET', 1) endif if compiler.has_function('iconv', prefix: '#include ', dependencies: iconvdeps) conf_data.set('HAVE_ICONV', 1) endif if conf_data.get('CONFIG_OS_DOS') or compiler.has_function('alloca', prefix: '#include ') conf_data.set('HAVE_ALLOCA', 1) endif if compiler.has_function('rb_errinfo', prefix: '#include ', dependencies: rubydeps) conf_data.set('HAVE_RB_ERRINFO', 1) endif if compiler.has_function('gnutls_priority_set_direct', prefix: '#include ', dependencies: gnutlsdeps) conf_data.set('HAVE_GNUTLS_PRIORITY_SET_DIRECT', 1) endif if compiler.has_function('gnutls_certificate_set_x509_system_trust', prefix: '#include ', dependencies: gnutlsdeps) conf_data.set('HAVE_GNUTLS_CERTIFICATE_SET_X509_SYSTEM_TRUST', 1) endif if compiler.has_function('mkstemps', prefix: '#include ', args: '-D_GNU_SOURCE') conf_data.set('HAVE_MKSTEMPS', 1) endif if compiler.has_function('strtoul', prefix: '#include ') conf_data.set('HAVE_STRTOUL', 1) endif if compiler.compiles('int a; typeof(a) b;') conf_data.set('HAVE_TYPEOF', 1) endif conf_data.set('ICONV_CONST', true) sysconfdir = get_option('prefix') / get_option('sysconfdir')/'elinks' conf_data.set('CONFDIR', sysconfdir) conf_data.set('sysconfdir', sysconfdir) conf_data.set('SOMETHING', '@SOMETHING@') conf_data.set('api_srcdir', srcdir + '/src') conf_data.set('LIBDIR', get_option('prefix') / 'lib') conf_data.set('LOCALEDIR', get_option('prefix') / 'share/locale') conf_data.set('HAVE_SA_STORAGE', true) conf_data.set('HAVE_SA_IN6', true) conf_data.set('SIZEOF_CHAR', compiler.sizeof('char')) conf_data.set('SIZEOF_SHORT', compiler.sizeof('short')) conf_data.set('SIZEOF_INT', compiler.sizeof('int')) conf_data.set('SIZEOF_LONG', compiler.sizeof('long')) conf_data.set('SIZEOF_LONG_LONG', compiler.sizeof('long long')) conf_data.set('SIZEOF_OFF_T', compiler.sizeof('off_t')) conf_data.set('CONFIG_GNUTLS_OPENSSL_COMPAT', false) configure_file(input : 'config2.h.in', output : 'config.h', configuration : conf_data) testdeps = files('src/intl/charsets.c', 'src/osdep/stub.c', 'src/util/conv.c', 'src/util/error.c', 'src/util/file.c', 'src/util/hash.c', 'src/util/memory.c', 'src/util/string.c', 'src/util/time.c') if conf_data.get('CONFIG_DEBUG') testdeps += files('src/util/memdebug.c') endif if conf_data.get('CONFIG_UTF8') testdeps += files('src/intl/width.c') endif if not conf_data.get('CONFIG_SMALL') testdeps += files('src/util/fastfind.c') endif subdir('po') subdir('src') subdir('contrib') subdir('doc')