mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-02-22 01:38:44 -08:00
23 lines
387 B
Plaintext
Executable File
23 lines
387 B
Plaintext
Executable File
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT(configure.in)
|
|
AM_INIT_AUTOMAKE(xhydra, 0.1)
|
|
AM_CONFIG_HEADER(config.h)
|
|
AM_MAINTAINER_MODE
|
|
|
|
AC_ISC_POSIX
|
|
AC_PROG_CC
|
|
AM_PROG_CC_STDC
|
|
AC_HEADER_STDC
|
|
|
|
pkg_modules="gtk+-3.0 >= 3.24.24"
|
|
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
|
|
AC_SUBST(PACKAGE_CFLAGS)
|
|
AC_SUBST(PACKAGE_LIBS)
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
src/Makefile
|
|
])
|
|
|