xaizek / pms (License: GPLv3+) (since 2018-12-07)
Older version of Practical Music Search written in C++.
<root> / configure.ac (30f6be77d86dfd85c1ea3256226d5afb9899d370) (906B) (mode 100644) [raw]
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.68])
AC_INIT(pms, 0.50, kimtjen@gmail.com)
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_COPYRIGHT(Copyright (c) 2006-2012 Kim Tore Jensen)
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([build.h])

# Checks for programs.
AC_PROG_CXX
AC_PROG_CC

# Checks for libraries.
AX_WITH_CURSES
if test "x$ax_cv_ncursesw" != xyes; then
    AC_MSG_ERROR([requires ncurses with wide character support])
fi

# Checks for header files.
AC_CHECK_HEADERS([locale.h netdb.h stdlib.h sys/socket.h sys/time.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_SIZE_T

# Checks for library functions.
AC_CHECK_FUNCS([gettimeofday memset select setlocale socket])

AC_CONFIG_FILES([Makefile src/Makefile])
AC_OUTPUT
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/pms

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/pms

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master